diff --git a/grammar.js b/grammar.js index 5beb684..99232f5 100644 --- a/grammar.js +++ b/grammar.js @@ -371,14 +371,10 @@ module.exports = grammar({ token('⍥'), // ([1], Dip, Stack, ("dip", '⊙')), token('dip'), - token('di'), token('⊙'), // ([1], Gap, Stack, ("gap", '⋅')), token('gap'), - token('ga'), token('⋅'), - // ([1], Oust, Planet, ("oust", '⟜')), - token('oust'), token('⟜'), // ([1], Invert, OtherModifier, ("invert", '⍘')), token('invert'), @@ -391,6 +387,9 @@ module.exports = grammar({ token('⊐'), token('tribute'), token('≐'), + + // Since 0.24 + token('reach'), ), modifier2: $ => choice( // (2[1], Fold, AggregatingModifier, ("fold", '∧')), diff --git a/src/grammar.json b/src/grammar.json index 8817e8c..23cc6ab 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -1967,13 +1967,6 @@ "value": "dip" } }, - { - "type": "TOKEN", - "content": { - "type": "STRING", - "value": "di" - } - }, { "type": "TOKEN", "content": { @@ -1988,13 +1981,6 @@ "value": "gap" } }, - { - "type": "TOKEN", - "content": { - "type": "STRING", - "value": "ga" - } - }, { "type": "TOKEN", "content": { @@ -2002,13 +1988,6 @@ "value": "⋅" } }, - { - "type": "TOKEN", - "content": { - "type": "STRING", - "value": "oust" - } - }, { "type": "TOKEN", "content": { @@ -2064,6 +2043,13 @@ "type": "STRING", "value": "≐" } + }, + { + "type": "TOKEN", + "content": { + "type": "STRING", + "value": "reach" + } } ] }, diff --git a/src/node-types.json b/src/node-types.json index 81aaffa..56356ba 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -570,10 +570,6 @@ "type": "deshape", "named": false }, - { - "type": "di", - "named": false - }, { "type": "dip", "named": false @@ -630,10 +626,6 @@ "type": "fork", "named": false }, - { - "type": "ga", - "named": false - }, { "type": "gap", "named": false @@ -746,10 +738,6 @@ "type": "os", "named": false }, - { - "type": "oust", - "named": false - }, { "type": "pack", "named": false @@ -782,6 +770,10 @@ "type": "range", "named": false }, + { + "type": "reach", + "named": false + }, { "type": "recv", "named": false diff --git a/src/parser.c b/src/parser.c index a9914c0..f401fb0 100644 --- a/src/parser.c +++ b/src/parser.c @@ -16,9 +16,9 @@ #define LANGUAGE_VERSION 14 #define STATE_COUNT 177 #define LARGE_STATE_COUNT 132 -#define SYMBOL_COUNT 272 +#define SYMBOL_COUNT 270 #define ALIAS_COUNT 0 -#define TOKEN_COUNT 246 +#define TOKEN_COUNT 244 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 0 #define MAX_ALIAS_SEQUENCE_LENGTH 5 @@ -216,86 +216,84 @@ enum { anon_sym_repeat = 189, anon_sym_66 = 190, anon_sym_dip = 191, - anon_sym_di = 192, - anon_sym_67 = 193, - anon_sym_gap = 194, - anon_sym_ga = 195, - anon_sym_68 = 196, - anon_sym_oust = 197, - anon_sym_69 = 198, - anon_sym_invert = 199, - anon_sym_70 = 200, - anon_sym_spawn = 201, - anon_sym_pack = 202, - anon_sym_71 = 203, - anon_sym_tribute = 204, - anon_sym_72 = 205, - anon_sym_fold = 206, - anon_sym_73 = 207, - anon_sym_distribute = 208, - anon_sym_74 = 209, - anon_sym_table = 210, - anon_sym_75 = 211, - anon_sym_cross = 212, - anon_sym_76 = 213, - anon_sym_group = 214, - anon_sym_77 = 215, - anon_sym_partition = 216, - anon_sym_78 = 217, - anon_sym_both = 218, - anon_sym_79 = 219, - anon_sym_bracket = 220, - anon_sym_80 = 221, - anon_sym_fork = 222, - anon_sym_81 = 223, - anon_sym_under = 224, - anon_sym_82 = 225, - anon_sym_level = 226, - anon_sym_83 = 227, - anon_sym_fill = 228, - anon_sym_84 = 229, - anon_sym_bind = 230, - anon_sym_SQUOTE = 231, - anon_sym_QMARK = 232, - anon_sym_try = 233, - anon_sym_85 = 234, - anon_sym_combinate = 235, - anon_sym_86 = 236, - anon_sym_87 = 237, - anon_sym_88 = 238, - anon_sym_89 = 239, - anon_sym_90 = 240, - anon_sym_91 = 241, - anon_sym_92 = 242, - anon_sym_93 = 243, - sym__whitespace = 244, - sym__end_of_line = 245, - sym_source_file = 246, - sym_PROGRAM = 247, - sym_module = 248, - sym_segment = 249, - sym_term = 250, - sym_multiLineFunction = 251, - sym_switchFunctions = 252, - sym_array = 253, - sym_number = 254, - sym_other_constant = 255, - sym_character = 256, - sym_signature = 257, - sym_placeHolder = 258, - sym_branchSeparator = 259, - sym_compound = 260, - sym_primitive = 261, - sym_constant = 262, - sym_function = 263, - sym_modifier1 = 264, - sym_modifier2 = 265, - sym_deprecated = 266, - aux_sym_PROGRAM_repeat1 = 267, - aux_sym_module_repeat1 = 268, - aux_sym_switchFunctions_repeat1 = 269, - aux_sym_array_repeat1 = 270, - aux_sym_array_repeat2 = 271, + anon_sym_67 = 192, + anon_sym_gap = 193, + anon_sym_68 = 194, + anon_sym_69 = 195, + anon_sym_invert = 196, + anon_sym_70 = 197, + anon_sym_spawn = 198, + anon_sym_pack = 199, + anon_sym_71 = 200, + anon_sym_tribute = 201, + anon_sym_72 = 202, + anon_sym_reach = 203, + anon_sym_fold = 204, + anon_sym_73 = 205, + anon_sym_distribute = 206, + anon_sym_74 = 207, + anon_sym_table = 208, + anon_sym_75 = 209, + anon_sym_cross = 210, + anon_sym_76 = 211, + anon_sym_group = 212, + anon_sym_77 = 213, + anon_sym_partition = 214, + anon_sym_78 = 215, + anon_sym_both = 216, + anon_sym_79 = 217, + anon_sym_bracket = 218, + anon_sym_80 = 219, + anon_sym_fork = 220, + anon_sym_81 = 221, + anon_sym_under = 222, + anon_sym_82 = 223, + anon_sym_level = 224, + anon_sym_83 = 225, + anon_sym_fill = 226, + anon_sym_84 = 227, + anon_sym_bind = 228, + anon_sym_SQUOTE = 229, + anon_sym_QMARK = 230, + anon_sym_try = 231, + anon_sym_85 = 232, + anon_sym_combinate = 233, + anon_sym_86 = 234, + anon_sym_87 = 235, + anon_sym_88 = 236, + anon_sym_89 = 237, + anon_sym_90 = 238, + anon_sym_91 = 239, + anon_sym_92 = 240, + anon_sym_93 = 241, + sym__whitespace = 242, + sym__end_of_line = 243, + sym_source_file = 244, + sym_PROGRAM = 245, + sym_module = 246, + sym_segment = 247, + sym_term = 248, + sym_multiLineFunction = 249, + sym_switchFunctions = 250, + sym_array = 251, + sym_number = 252, + sym_other_constant = 253, + sym_character = 254, + sym_signature = 255, + sym_placeHolder = 256, + sym_branchSeparator = 257, + sym_compound = 258, + sym_primitive = 259, + sym_constant = 260, + sym_function = 261, + sym_modifier1 = 262, + sym_modifier2 = 263, + sym_deprecated = 264, + aux_sym_PROGRAM_repeat1 = 265, + aux_sym_module_repeat1 = 266, + aux_sym_switchFunctions_repeat1 = 267, + aux_sym_array_repeat1 = 268, + aux_sym_array_repeat2 = 269, }; static const char * const ts_symbol_names[] = { @@ -491,12 +489,9 @@ static const char * const ts_symbol_names[] = { [anon_sym_repeat] = "repeat", [anon_sym_66] = "⍥", [anon_sym_dip] = "dip", - [anon_sym_di] = "di", [anon_sym_67] = "⊙", [anon_sym_gap] = "gap", - [anon_sym_ga] = "ga", [anon_sym_68] = "⋅", - [anon_sym_oust] = "oust", [anon_sym_69] = "⟜", [anon_sym_invert] = "invert", [anon_sym_70] = "⍘", @@ -505,6 +500,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_71] = "⊐", [anon_sym_tribute] = "tribute", [anon_sym_72] = "≐", + [anon_sym_reach] = "reach", [anon_sym_fold] = "fold", [anon_sym_73] = "∧", [anon_sym_distribute] = "distribute", @@ -766,12 +762,9 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_repeat] = anon_sym_repeat, [anon_sym_66] = anon_sym_66, [anon_sym_dip] = anon_sym_dip, - [anon_sym_di] = anon_sym_di, [anon_sym_67] = anon_sym_67, [anon_sym_gap] = anon_sym_gap, - [anon_sym_ga] = anon_sym_ga, [anon_sym_68] = anon_sym_68, - [anon_sym_oust] = anon_sym_oust, [anon_sym_69] = anon_sym_69, [anon_sym_invert] = anon_sym_invert, [anon_sym_70] = anon_sym_70, @@ -780,6 +773,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_71] = anon_sym_71, [anon_sym_tribute] = anon_sym_tribute, [anon_sym_72] = anon_sym_72, + [anon_sym_reach] = anon_sym_reach, [anon_sym_fold] = anon_sym_fold, [anon_sym_73] = anon_sym_73, [anon_sym_distribute] = anon_sym_distribute, @@ -1617,10 +1611,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_di] = { - .visible = true, - .named = false, - }, [anon_sym_67] = { .visible = true, .named = false, @@ -1629,18 +1619,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_ga] = { - .visible = true, - .named = false, - }, [anon_sym_68] = { .visible = true, .named = false, }, - [anon_sym_oust] = { - .visible = true, - .named = false, - }, [anon_sym_69] = { .visible = true, .named = false, @@ -1673,6 +1655,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_reach] = { + .visible = true, + .named = false, + }, [anon_sym_fold] = { .visible = true, .named = false, @@ -2482,166 +2468,166 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(221); + if (eof) ADVANCE(222); if (lookahead == '\n') ADVANCE(720); if (lookahead == '\r') ADVANCE(1); if (lookahead == '!') ADVANCE(10); if (lookahead == '"') ADVANCE(7); - if (lookahead == '#') ADVANCE(402); + if (lookahead == '#') ADVANCE(404); if (lookahead == '$') ADVANCE(6); - if (lookahead == '%') ADVANCE(548); - if (lookahead == '&') ADVANCE(217); + if (lookahead == '%') ADVANCE(550); + if (lookahead == '&') ADVANCE(218); if (lookahead == '\'') ADVANCE(706); - if (lookahead == '(') ADVANCE(488); - if (lookahead == ')') ADVANCE(489); - if (lookahead == '*') ADVANCE(546); - if (lookahead == '+') ADVANCE(543); - if (lookahead == ',') ADVANCE(509); - if (lookahead == '-') ADVANCE(545); - if (lookahead == '.') ADVANCE(508); - if (lookahead == '/') ADVANCE(657); - if (lookahead == ';') ADVANCE(511); - if (lookahead == '<') ADVANCE(537); - if (lookahead == '=') ADVANCE(534); - if (lookahead == '>') ADVANCE(540); + if (lookahead == '(') ADVANCE(490); + if (lookahead == ')') ADVANCE(491); + if (lookahead == '*') ADVANCE(548); + if (lookahead == '+') ADVANCE(545); + if (lookahead == ',') ADVANCE(511); + if (lookahead == '-') ADVANCE(547); + if (lookahead == '.') ADVANCE(510); + if (lookahead == '/') ADVANCE(659); + if (lookahead == ';') ADVANCE(513); + if (lookahead == '<') ADVANCE(539); + if (lookahead == '=') ADVANCE(536); + if (lookahead == '>') ADVANCE(542); if (lookahead == '?') ADVANCE(707); if (lookahead == '@') ADVANCE(11); - if (lookahead == 'A') ADVANCE(368); - if (lookahead == 'E') ADVANCE(396); - if (lookahead == 'F') ADVANCE(244); - if (lookahead == 'N') ADVANCE(245); - if (lookahead == 'P') ADVANCE(327); - if (lookahead == 'S') ADVANCE(292); - if (lookahead == '[') ADVANCE(492); - if (lookahead == '\\') ADVANCE(659); - if (lookahead == ']') ADVANCE(493); - if (lookahead == '^') ADVANCE(496); - if (lookahead == '_') ADVANCE(494); - if (lookahead == '`') ADVANCE(520); - if (lookahead == 'a') ADVANCE(271); - if (lookahead == 'b') ADVANCE(319); - if (lookahead == 'c') ADVANCE(293); - if (lookahead == 'd') ADVANCE(294); - if (lookahead == 'e') ADVANCE(505); - if (lookahead == 'f') ADVANCE(258); - if (lookahead == 'g') ADVANCE(246); - if (lookahead == 'i') ADVANCE(286); - if (lookahead == 'j') ADVANCE(356); - if (lookahead == 'k') ADVANCE(304); - if (lookahead == 'l') ADVANCE(295); - if (lookahead == 'm') ADVANCE(257); - if (lookahead == 'n') ADVANCE(354); - if (lookahead == 'o') ADVANCE(375); + if (lookahead == 'A') ADVANCE(371); + if (lookahead == 'E') ADVANCE(398); + if (lookahead == 'F') ADVANCE(245); + if (lookahead == 'N') ADVANCE(246); + if (lookahead == 'P') ADVANCE(328); + if (lookahead == 'S') ADVANCE(293); + if (lookahead == '[') ADVANCE(494); + if (lookahead == '\\') ADVANCE(661); + if (lookahead == ']') ADVANCE(495); + if (lookahead == '^') ADVANCE(498); + if (lookahead == '_') ADVANCE(496); + if (lookahead == '`') ADVANCE(522); + if (lookahead == 'a') ADVANCE(273); + if (lookahead == 'b') ADVANCE(320); + if (lookahead == 'c') ADVANCE(294); + if (lookahead == 'd') ADVANCE(295); + if (lookahead == 'e') ADVANCE(507); + if (lookahead == 'f') ADVANCE(259); + if (lookahead == 'g') ADVANCE(257); + if (lookahead == 'i') ADVANCE(287); + if (lookahead == 'j') ADVANCE(357); + if (lookahead == 'k') ADVANCE(305); + if (lookahead == 'l') ADVANCE(296); + if (lookahead == 'm') ADVANCE(258); + if (lookahead == 'n') ADVANCE(355); + if (lookahead == 'o') ADVANCE(378); if (lookahead == 'p') ADVANCE(247); - if (lookahead == 'r') ADVANCE(260); - if (lookahead == 's') ADVANCE(285); + if (lookahead == 'r') ADVANCE(261); + if (lookahead == 's') ADVANCE(286); if (lookahead == 't') ADVANCE(248); - if (lookahead == 'u') ADVANCE(340); - if (lookahead == 'w') ADVANCE(259); - if (lookahead == '{') ADVANCE(490); - if (lookahead == '|') ADVANCE(235); - if (lookahead == '}') ADVANCE(491); - if (lookahead == '~') ADVANCE(640); - if (lookahead == 172) ADVANCE(517); - if (lookahead == 175) ADVANCE(521); - if (lookahead == 177) ADVANCE(519); + if (lookahead == 'u') ADVANCE(341); + if (lookahead == 'w') ADVANCE(260); + if (lookahead == '{') ADVANCE(492); + if (lookahead == '|') ADVANCE(236); + if (lookahead == '}') ADVANCE(493); + if (lookahead == '~') ADVANCE(642); + if (lookahead == 172) ADVANCE(519); + if (lookahead == 175) ADVANCE(523); + if (lookahead == 177) ADVANCE(521); if (lookahead == 183) ADVANCE(715); - if (lookahead == 215) ADVANCE(547); - if (lookahead == 247) ADVANCE(549); - if (lookahead == 951) ADVANCE(498); - if (lookahead == 960) ADVANCE(500); - if (lookahead == 964) ADVANCE(502); - if (lookahead == 8261) ADVANCE(533); - if (lookahead == 8319) ADVANCE(553); - if (lookahead == 8345) ADVANCE(555); - if (lookahead == 8592) ADVANCE(495); + if (lookahead == 215) ADVANCE(549); + if (lookahead == 247) ADVANCE(551); + if (lookahead == 951) ADVANCE(500); + if (lookahead == 960) ADVANCE(502); + if (lookahead == 964) ADVANCE(504); + if (lookahead == 8261) ADVANCE(535); + if (lookahead == 8319) ADVANCE(555); + if (lookahead == 8345) ADVANCE(557); + if (lookahead == 8592) ADVANCE(497); if (lookahead == 8594) ADVANCE(713); - if (lookahead == 8600) ADVANCE(607); - if (lookahead == 8601) ADVANCE(605); - if (lookahead == 8613) ADVANCE(559); - if (lookahead == 8615) ADVANCE(557); - if (lookahead == 8623) ADVANCE(603); + if (lookahead == 8600) ADVANCE(609); + if (lookahead == 8601) ADVANCE(607); + if (lookahead == 8613) ADVANCE(561); + if (lookahead == 8615) ADVANCE(559); + if (lookahead == 8623) ADVANCE(605); if (lookahead == 8624) ADVANCE(718); - if (lookahead == 8635) ADVANCE(609); - if (lookahead == 8652) ADVANCE(571); - if (lookahead == 8673) ADVANCE(567); - if (lookahead == 8714) ADVANCE(617); - if (lookahead == 8728) ADVANCE(515); - if (lookahead == 8730) ADVANCE(525); - if (lookahead == 8734) ADVANCE(504); - if (lookahead == 8736) ADVANCE(561); + if (lookahead == 8635) ADVANCE(611); + if (lookahead == 8652) ADVANCE(573); + if (lookahead == 8673) ADVANCE(569); + if (lookahead == 8714) ADVANCE(619); + if (lookahead == 8728) ADVANCE(517); + if (lookahead == 8730) ADVANCE(527); + if (lookahead == 8734) ADVANCE(506); + if (lookahead == 8736) ADVANCE(563); if (lookahead == 8743) ADVANCE(682); if (lookahead == 8745) ADVANCE(694); - if (lookahead == 8757) ADVANCE(661); - if (lookahead == 8758) ADVANCE(510); + if (lookahead == 8757) ADVANCE(663); + if (lookahead == 8758) ADVANCE(512); if (lookahead == 8759) ADVANCE(714); - if (lookahead == 8760) ADVANCE(652); + if (lookahead == 8760) ADVANCE(654); if (lookahead == 8762) ADVANCE(684); - if (lookahead == 8771) ADVANCE(648); - if (lookahead == 8778) ADVANCE(644); - if (lookahead == 8781) ADVANCE(593); - if (lookahead == 8784) ADVANCE(680); + if (lookahead == 8771) ADVANCE(650); + if (lookahead == 8778) ADVANCE(646); + if (lookahead == 8781) ADVANCE(595); + if (lookahead == 8784) ADVANCE(679); if (lookahead == 8785) ADVANCE(702); - if (lookahead == 8800) ADVANCE(536); - if (lookahead == 8801) ADVANCE(663); - if (lookahead == 8804) ADVANCE(539); - if (lookahead == 8805) ADVANCE(542); - if (lookahead == 8834) ADVANCE(597); + if (lookahead == 8800) ADVANCE(538); + if (lookahead == 8801) ADVANCE(665); + if (lookahead == 8804) ADVANCE(541); + if (lookahead == 8805) ADVANCE(544); + if (lookahead == 8834) ADVANCE(599); if (lookahead == 8835) ADVANCE(698); - if (lookahead == 8847) ADVANCE(599); - if (lookahead == 8848) ADVANCE(678); + if (lookahead == 8847) ADVANCE(601); + if (lookahead == 8848) ADVANCE(677); if (lookahead == 8851) ADVANCE(696); - if (lookahead == 8852) ADVANCE(591); + if (lookahead == 8852) ADVANCE(593); if (lookahead == 8853) ADVANCE(690); - if (lookahead == 8855) ADVANCE(619); - if (lookahead == 8857) ADVANCE(668); - if (lookahead == 8858) ADVANCE(583); - if (lookahead == 8859) ADVANCE(585); + if (lookahead == 8855) ADVANCE(621); + if (lookahead == 8857) ADVANCE(669); + if (lookahead == 8858) ADVANCE(585); + if (lookahead == 8859) ADVANCE(587); if (lookahead == 8860) ADVANCE(692); - if (lookahead == 8861) ADVANCE(587); + if (lookahead == 8861) ADVANCE(589); if (lookahead == 8862) ADVANCE(686); - if (lookahead == 8863) ADVANCE(595); + if (lookahead == 8863) ADVANCE(597); if (lookahead == 8864) ADVANCE(688); - if (lookahead == 8865) ADVANCE(601); - if (lookahead == 8866) ADVANCE(569); - if (lookahead == 8900) ADVANCE(638); + if (lookahead == 8865) ADVANCE(603); + if (lookahead == 8866) ADVANCE(571); + if (lookahead == 8900) ADVANCE(640); if (lookahead == 8901) ADVANCE(671); - if (lookahead == 8943) ADVANCE(575); + if (lookahead == 8943) ADVANCE(577); if (lookahead == 8962) ADVANCE(717); - if (lookahead == 8968) ADVANCE(531); - if (lookahead == 8970) ADVANCE(529); - if (lookahead == 8981) ADVANCE(615); - if (lookahead == 9013) ADVANCE(523); - if (lookahead == 9033) ADVANCE(577); - if (lookahead == 9039) ADVANCE(579); - if (lookahead == 9046) ADVANCE(581); - if (lookahead == 9048) ADVANCE(675); + if (lookahead == 8968) ADVANCE(533); + if (lookahead == 8970) ADVANCE(531); + if (lookahead == 8981) ADVANCE(617); + if (lookahead == 9013) ADVANCE(525); + if (lookahead == 9033) ADVANCE(579); + if (lookahead == 9039) ADVANCE(581); + if (lookahead == 9046) ADVANCE(583); + if (lookahead == 9048) ADVANCE(674); if (lookahead == 9051) ADVANCE(716); if (lookahead == 9052) ADVANCE(700); if (lookahead == 9059) ADVANCE(709); - if (lookahead == 9060) ADVANCE(621); - if (lookahead == 9061) ADVANCE(665); - if (lookahead == 9099) ADVANCE(624); - if (lookahead == 9633) ADVANCE(589); - if (lookahead == 9651) ADVANCE(565); - if (lookahead == 9661) ADVANCE(613); - if (lookahead == 9675) ADVANCE(527); - if (lookahead == 9707) ADVANCE(611); + if (lookahead == 9060) ADVANCE(623); + if (lookahead == 9061) ADVANCE(667); + if (lookahead == 9099) ADVANCE(626); + if (lookahead == 9633) ADVANCE(591); + if (lookahead == 9651) ADVANCE(567); + if (lookahead == 9661) ADVANCE(615); + if (lookahead == 9675) ADVANCE(529); + if (lookahead == 9707) ADVANCE(613); if (lookahead == 9715) ADVANCE(711); - if (lookahead == 9727) ADVANCE(551); - if (lookahead == 9837) ADVANCE(573); - if (lookahead == 9858) ADVANCE(627); + if (lookahead == 9727) ADVANCE(553); + if (lookahead == 9837) ADVANCE(575); + if (lookahead == 9858) ADVANCE(629); if (lookahead == 10085) ADVANCE(712); - if (lookahead == 10204) ADVANCE(673); - if (lookahead == 10747) ADVANCE(563); + if (lookahead == 10204) ADVANCE(672); + if (lookahead == 10747) ADVANCE(565); if (lookahead == 11034) ADVANCE(704); - if (lookahead == 11822) ADVANCE(633); + if (lookahead == 11822) ADVANCE(635); if (lookahead == '\t' || lookahead == ' ') ADVANCE(719); - if (('h' <= lookahead && lookahead <= 'z')) ADVANCE(400); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(222); - if (('B' <= lookahead && lookahead <= 'Z')) ADVANCE(401); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(238); + if (('h' <= lookahead && lookahead <= 'z')) ADVANCE(402); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(223); + if (('B' <= lookahead && lookahead <= 'Z')) ADVANCE(403); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(239); END_STATE(); case 1: if (lookahead == '\n') ADVANCE(720); @@ -2651,476 +2637,476 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') ADVANCE(1); if (lookahead == '!') ADVANCE(10); if (lookahead == '"') ADVANCE(7); - if (lookahead == '#') ADVANCE(402); + if (lookahead == '#') ADVANCE(404); if (lookahead == '$') ADVANCE(6); - if (lookahead == '%') ADVANCE(548); - if (lookahead == '&') ADVANCE(217); + if (lookahead == '%') ADVANCE(550); + if (lookahead == '&') ADVANCE(218); if (lookahead == '\'') ADVANCE(706); - if (lookahead == '(') ADVANCE(488); - if (lookahead == '*') ADVANCE(546); - if (lookahead == '+') ADVANCE(543); - if (lookahead == ',') ADVANCE(509); - if (lookahead == '-') ADVANCE(545); - if (lookahead == '.') ADVANCE(508); - if (lookahead == '/') ADVANCE(657); - if (lookahead == ';') ADVANCE(511); - if (lookahead == '<') ADVANCE(537); - if (lookahead == '=') ADVANCE(534); - if (lookahead == '>') ADVANCE(540); + if (lookahead == '(') ADVANCE(490); + if (lookahead == '*') ADVANCE(548); + if (lookahead == '+') ADVANCE(545); + if (lookahead == ',') ADVANCE(511); + if (lookahead == '-') ADVANCE(547); + if (lookahead == '.') ADVANCE(510); + if (lookahead == '/') ADVANCE(659); + if (lookahead == ';') ADVANCE(513); + if (lookahead == '<') ADVANCE(539); + if (lookahead == '=') ADVANCE(536); + if (lookahead == '>') ADVANCE(542); if (lookahead == '?') ADVANCE(707); if (lookahead == '@') ADVANCE(11); - if (lookahead == 'A') ADVANCE(368); - if (lookahead == 'E') ADVANCE(396); - if (lookahead == 'F') ADVANCE(244); - if (lookahead == 'N') ADVANCE(245); - if (lookahead == 'P') ADVANCE(327); - if (lookahead == 'S') ADVANCE(292); - if (lookahead == '[') ADVANCE(492); - if (lookahead == '\\') ADVANCE(659); - if (lookahead == '^') ADVANCE(496); - if (lookahead == '`') ADVANCE(520); - if (lookahead == 'a') ADVANCE(271); - if (lookahead == 'b') ADVANCE(319); - if (lookahead == 'c') ADVANCE(293); - if (lookahead == 'd') ADVANCE(294); - if (lookahead == 'e') ADVANCE(505); - if (lookahead == 'f') ADVANCE(258); - if (lookahead == 'g') ADVANCE(246); - if (lookahead == 'i') ADVANCE(286); - if (lookahead == 'j') ADVANCE(356); - if (lookahead == 'k') ADVANCE(304); - if (lookahead == 'l') ADVANCE(295); - if (lookahead == 'm') ADVANCE(257); - if (lookahead == 'n') ADVANCE(354); - if (lookahead == 'o') ADVANCE(375); + if (lookahead == 'A') ADVANCE(371); + if (lookahead == 'E') ADVANCE(398); + if (lookahead == 'F') ADVANCE(245); + if (lookahead == 'N') ADVANCE(246); + if (lookahead == 'P') ADVANCE(328); + if (lookahead == 'S') ADVANCE(293); + if (lookahead == '[') ADVANCE(494); + if (lookahead == '\\') ADVANCE(661); + if (lookahead == '^') ADVANCE(498); + if (lookahead == '`') ADVANCE(522); + if (lookahead == 'a') ADVANCE(273); + if (lookahead == 'b') ADVANCE(320); + if (lookahead == 'c') ADVANCE(294); + if (lookahead == 'd') ADVANCE(295); + if (lookahead == 'e') ADVANCE(507); + if (lookahead == 'f') ADVANCE(259); + if (lookahead == 'g') ADVANCE(257); + if (lookahead == 'i') ADVANCE(287); + if (lookahead == 'j') ADVANCE(357); + if (lookahead == 'k') ADVANCE(305); + if (lookahead == 'l') ADVANCE(296); + if (lookahead == 'm') ADVANCE(258); + if (lookahead == 'n') ADVANCE(355); + if (lookahead == 'o') ADVANCE(378); if (lookahead == 'p') ADVANCE(247); - if (lookahead == 'r') ADVANCE(260); - if (lookahead == 's') ADVANCE(285); + if (lookahead == 'r') ADVANCE(261); + if (lookahead == 's') ADVANCE(286); if (lookahead == 't') ADVANCE(248); - if (lookahead == 'u') ADVANCE(340); - if (lookahead == 'w') ADVANCE(259); - if (lookahead == '{') ADVANCE(490); - if (lookahead == '|') ADVANCE(235); - if (lookahead == '~') ADVANCE(640); - if (lookahead == 172) ADVANCE(517); - if (lookahead == 175) ADVANCE(521); - if (lookahead == 177) ADVANCE(519); + if (lookahead == 'u') ADVANCE(341); + if (lookahead == 'w') ADVANCE(260); + if (lookahead == '{') ADVANCE(492); + if (lookahead == '|') ADVANCE(236); + if (lookahead == '~') ADVANCE(642); + if (lookahead == 172) ADVANCE(519); + if (lookahead == 175) ADVANCE(523); + if (lookahead == 177) ADVANCE(521); if (lookahead == 183) ADVANCE(715); - if (lookahead == 215) ADVANCE(547); - if (lookahead == 247) ADVANCE(549); - if (lookahead == 951) ADVANCE(498); - if (lookahead == 960) ADVANCE(500); - if (lookahead == 964) ADVANCE(502); - if (lookahead == 8261) ADVANCE(533); - if (lookahead == 8319) ADVANCE(553); - if (lookahead == 8345) ADVANCE(555); - if (lookahead == 8592) ADVANCE(495); + if (lookahead == 215) ADVANCE(549); + if (lookahead == 247) ADVANCE(551); + if (lookahead == 951) ADVANCE(500); + if (lookahead == 960) ADVANCE(502); + if (lookahead == 964) ADVANCE(504); + if (lookahead == 8261) ADVANCE(535); + if (lookahead == 8319) ADVANCE(555); + if (lookahead == 8345) ADVANCE(557); + if (lookahead == 8592) ADVANCE(497); if (lookahead == 8594) ADVANCE(713); - if (lookahead == 8600) ADVANCE(607); - if (lookahead == 8601) ADVANCE(605); - if (lookahead == 8613) ADVANCE(559); - if (lookahead == 8615) ADVANCE(557); - if (lookahead == 8623) ADVANCE(603); + if (lookahead == 8600) ADVANCE(609); + if (lookahead == 8601) ADVANCE(607); + if (lookahead == 8613) ADVANCE(561); + if (lookahead == 8615) ADVANCE(559); + if (lookahead == 8623) ADVANCE(605); if (lookahead == 8624) ADVANCE(718); - if (lookahead == 8635) ADVANCE(609); - if (lookahead == 8652) ADVANCE(571); - if (lookahead == 8673) ADVANCE(567); - if (lookahead == 8714) ADVANCE(617); - if (lookahead == 8728) ADVANCE(515); - if (lookahead == 8730) ADVANCE(525); - if (lookahead == 8734) ADVANCE(504); - if (lookahead == 8736) ADVANCE(561); + if (lookahead == 8635) ADVANCE(611); + if (lookahead == 8652) ADVANCE(573); + if (lookahead == 8673) ADVANCE(569); + if (lookahead == 8714) ADVANCE(619); + if (lookahead == 8728) ADVANCE(517); + if (lookahead == 8730) ADVANCE(527); + if (lookahead == 8734) ADVANCE(506); + if (lookahead == 8736) ADVANCE(563); if (lookahead == 8743) ADVANCE(682); if (lookahead == 8745) ADVANCE(694); - if (lookahead == 8757) ADVANCE(661); - if (lookahead == 8758) ADVANCE(510); + if (lookahead == 8757) ADVANCE(663); + if (lookahead == 8758) ADVANCE(512); if (lookahead == 8759) ADVANCE(714); - if (lookahead == 8760) ADVANCE(652); + if (lookahead == 8760) ADVANCE(654); if (lookahead == 8762) ADVANCE(684); - if (lookahead == 8771) ADVANCE(648); - if (lookahead == 8778) ADVANCE(644); - if (lookahead == 8781) ADVANCE(593); - if (lookahead == 8784) ADVANCE(680); + if (lookahead == 8771) ADVANCE(650); + if (lookahead == 8778) ADVANCE(646); + if (lookahead == 8781) ADVANCE(595); + if (lookahead == 8784) ADVANCE(679); if (lookahead == 8785) ADVANCE(702); - if (lookahead == 8800) ADVANCE(536); - if (lookahead == 8801) ADVANCE(663); - if (lookahead == 8804) ADVANCE(539); - if (lookahead == 8805) ADVANCE(542); - if (lookahead == 8834) ADVANCE(597); + if (lookahead == 8800) ADVANCE(538); + if (lookahead == 8801) ADVANCE(665); + if (lookahead == 8804) ADVANCE(541); + if (lookahead == 8805) ADVANCE(544); + if (lookahead == 8834) ADVANCE(599); if (lookahead == 8835) ADVANCE(698); - if (lookahead == 8847) ADVANCE(599); - if (lookahead == 8848) ADVANCE(678); + if (lookahead == 8847) ADVANCE(601); + if (lookahead == 8848) ADVANCE(677); if (lookahead == 8851) ADVANCE(696); - if (lookahead == 8852) ADVANCE(591); + if (lookahead == 8852) ADVANCE(593); if (lookahead == 8853) ADVANCE(690); - if (lookahead == 8855) ADVANCE(619); - if (lookahead == 8857) ADVANCE(668); - if (lookahead == 8858) ADVANCE(583); - if (lookahead == 8859) ADVANCE(585); + if (lookahead == 8855) ADVANCE(621); + if (lookahead == 8857) ADVANCE(669); + if (lookahead == 8858) ADVANCE(585); + if (lookahead == 8859) ADVANCE(587); if (lookahead == 8860) ADVANCE(692); - if (lookahead == 8861) ADVANCE(587); + if (lookahead == 8861) ADVANCE(589); if (lookahead == 8862) ADVANCE(686); - if (lookahead == 8863) ADVANCE(595); + if (lookahead == 8863) ADVANCE(597); if (lookahead == 8864) ADVANCE(688); - if (lookahead == 8865) ADVANCE(601); - if (lookahead == 8866) ADVANCE(569); - if (lookahead == 8900) ADVANCE(638); + if (lookahead == 8865) ADVANCE(603); + if (lookahead == 8866) ADVANCE(571); + if (lookahead == 8900) ADVANCE(640); if (lookahead == 8901) ADVANCE(671); - if (lookahead == 8943) ADVANCE(575); + if (lookahead == 8943) ADVANCE(577); if (lookahead == 8962) ADVANCE(717); - if (lookahead == 8968) ADVANCE(531); - if (lookahead == 8970) ADVANCE(529); - if (lookahead == 8981) ADVANCE(615); - if (lookahead == 9013) ADVANCE(523); - if (lookahead == 9033) ADVANCE(577); - if (lookahead == 9039) ADVANCE(579); - if (lookahead == 9046) ADVANCE(581); - if (lookahead == 9048) ADVANCE(675); + if (lookahead == 8968) ADVANCE(533); + if (lookahead == 8970) ADVANCE(531); + if (lookahead == 8981) ADVANCE(617); + if (lookahead == 9013) ADVANCE(525); + if (lookahead == 9033) ADVANCE(579); + if (lookahead == 9039) ADVANCE(581); + if (lookahead == 9046) ADVANCE(583); + if (lookahead == 9048) ADVANCE(674); if (lookahead == 9051) ADVANCE(716); if (lookahead == 9052) ADVANCE(700); if (lookahead == 9059) ADVANCE(709); - if (lookahead == 9060) ADVANCE(621); - if (lookahead == 9061) ADVANCE(665); - if (lookahead == 9099) ADVANCE(624); - if (lookahead == 9633) ADVANCE(589); - if (lookahead == 9651) ADVANCE(565); - if (lookahead == 9661) ADVANCE(613); - if (lookahead == 9675) ADVANCE(527); - if (lookahead == 9707) ADVANCE(611); + if (lookahead == 9060) ADVANCE(623); + if (lookahead == 9061) ADVANCE(667); + if (lookahead == 9099) ADVANCE(626); + if (lookahead == 9633) ADVANCE(591); + if (lookahead == 9651) ADVANCE(567); + if (lookahead == 9661) ADVANCE(615); + if (lookahead == 9675) ADVANCE(529); + if (lookahead == 9707) ADVANCE(613); if (lookahead == 9715) ADVANCE(711); - if (lookahead == 9727) ADVANCE(551); - if (lookahead == 9837) ADVANCE(573); - if (lookahead == 9858) ADVANCE(627); + if (lookahead == 9727) ADVANCE(553); + if (lookahead == 9837) ADVANCE(575); + if (lookahead == 9858) ADVANCE(629); if (lookahead == 10085) ADVANCE(712); - if (lookahead == 10204) ADVANCE(673); - if (lookahead == 10747) ADVANCE(563); + if (lookahead == 10204) ADVANCE(672); + if (lookahead == 10747) ADVANCE(565); if (lookahead == 11034) ADVANCE(704); - if (lookahead == 11822) ADVANCE(633); + if (lookahead == 11822) ADVANCE(635); if (lookahead == '\t' || lookahead == ' ') ADVANCE(719); - if (('h' <= lookahead && lookahead <= 'z')) ADVANCE(400); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(222); - if (('B' <= lookahead && lookahead <= 'Z')) ADVANCE(401); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(238); + if (('h' <= lookahead && lookahead <= 'z')) ADVANCE(402); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(223); + if (('B' <= lookahead && lookahead <= 'Z')) ADVANCE(403); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(239); END_STATE(); case 3: if (lookahead == '\n') ADVANCE(720); if (lookahead == '\r') ADVANCE(1); if (lookahead == '!') ADVANCE(10); if (lookahead == '"') ADVANCE(7); - if (lookahead == '#') ADVANCE(402); + if (lookahead == '#') ADVANCE(404); if (lookahead == '$') ADVANCE(6); - if (lookahead == '%') ADVANCE(548); - if (lookahead == '&') ADVANCE(217); + if (lookahead == '%') ADVANCE(550); + if (lookahead == '&') ADVANCE(218); if (lookahead == '\'') ADVANCE(706); - if (lookahead == '(') ADVANCE(488); - if (lookahead == '*') ADVANCE(546); - if (lookahead == '+') ADVANCE(543); - if (lookahead == ',') ADVANCE(509); - if (lookahead == '-') ADVANCE(544); - if (lookahead == '.') ADVANCE(508); - if (lookahead == '/') ADVANCE(657); - if (lookahead == ';') ADVANCE(511); - if (lookahead == '<') ADVANCE(537); - if (lookahead == '=') ADVANCE(534); - if (lookahead == '>') ADVANCE(540); + if (lookahead == '(') ADVANCE(490); + if (lookahead == '*') ADVANCE(548); + if (lookahead == '+') ADVANCE(545); + if (lookahead == ',') ADVANCE(511); + if (lookahead == '-') ADVANCE(546); + if (lookahead == '.') ADVANCE(510); + if (lookahead == '/') ADVANCE(659); + if (lookahead == ';') ADVANCE(513); + if (lookahead == '<') ADVANCE(539); + if (lookahead == '=') ADVANCE(536); + if (lookahead == '>') ADVANCE(542); if (lookahead == '?') ADVANCE(707); if (lookahead == '@') ADVANCE(11); - if (lookahead == 'A') ADVANCE(368); - if (lookahead == 'E') ADVANCE(396); - if (lookahead == 'F') ADVANCE(244); - if (lookahead == 'N') ADVANCE(245); - if (lookahead == 'P') ADVANCE(327); - if (lookahead == 'S') ADVANCE(292); - if (lookahead == '[') ADVANCE(492); - if (lookahead == '\\') ADVANCE(659); - if (lookahead == '^') ADVANCE(496); - if (lookahead == '`') ADVANCE(520); - if (lookahead == 'a') ADVANCE(271); - if (lookahead == 'b') ADVANCE(319); - if (lookahead == 'c') ADVANCE(293); - if (lookahead == 'd') ADVANCE(294); - if (lookahead == 'e') ADVANCE(505); - if (lookahead == 'f') ADVANCE(258); - if (lookahead == 'g') ADVANCE(246); - if (lookahead == 'i') ADVANCE(286); - if (lookahead == 'j') ADVANCE(356); - if (lookahead == 'k') ADVANCE(304); - if (lookahead == 'l') ADVANCE(295); - if (lookahead == 'm') ADVANCE(257); - if (lookahead == 'n') ADVANCE(354); - if (lookahead == 'o') ADVANCE(375); + if (lookahead == 'A') ADVANCE(371); + if (lookahead == 'E') ADVANCE(398); + if (lookahead == 'F') ADVANCE(245); + if (lookahead == 'N') ADVANCE(246); + if (lookahead == 'P') ADVANCE(328); + if (lookahead == 'S') ADVANCE(293); + if (lookahead == '[') ADVANCE(494); + if (lookahead == '\\') ADVANCE(661); + if (lookahead == '^') ADVANCE(498); + if (lookahead == '`') ADVANCE(522); + if (lookahead == 'a') ADVANCE(273); + if (lookahead == 'b') ADVANCE(320); + if (lookahead == 'c') ADVANCE(294); + if (lookahead == 'd') ADVANCE(295); + if (lookahead == 'e') ADVANCE(507); + if (lookahead == 'f') ADVANCE(259); + if (lookahead == 'g') ADVANCE(257); + if (lookahead == 'i') ADVANCE(287); + if (lookahead == 'j') ADVANCE(357); + if (lookahead == 'k') ADVANCE(305); + if (lookahead == 'l') ADVANCE(296); + if (lookahead == 'm') ADVANCE(258); + if (lookahead == 'n') ADVANCE(355); + if (lookahead == 'o') ADVANCE(378); if (lookahead == 'p') ADVANCE(247); - if (lookahead == 'r') ADVANCE(260); - if (lookahead == 's') ADVANCE(285); + if (lookahead == 'r') ADVANCE(261); + if (lookahead == 's') ADVANCE(286); if (lookahead == 't') ADVANCE(248); - if (lookahead == 'u') ADVANCE(340); - if (lookahead == 'w') ADVANCE(259); - if (lookahead == '{') ADVANCE(490); - if (lookahead == '|') ADVANCE(235); - if (lookahead == '~') ADVANCE(640); - if (lookahead == 172) ADVANCE(517); - if (lookahead == 175) ADVANCE(521); - if (lookahead == 177) ADVANCE(519); + if (lookahead == 'u') ADVANCE(341); + if (lookahead == 'w') ADVANCE(260); + if (lookahead == '{') ADVANCE(492); + if (lookahead == '|') ADVANCE(236); + if (lookahead == '~') ADVANCE(642); + if (lookahead == 172) ADVANCE(519); + if (lookahead == 175) ADVANCE(523); + if (lookahead == 177) ADVANCE(521); if (lookahead == 183) ADVANCE(715); - if (lookahead == 215) ADVANCE(547); - if (lookahead == 247) ADVANCE(549); - if (lookahead == 951) ADVANCE(498); - if (lookahead == 960) ADVANCE(500); - if (lookahead == 964) ADVANCE(502); - if (lookahead == 8261) ADVANCE(533); - if (lookahead == 8319) ADVANCE(553); - if (lookahead == 8345) ADVANCE(555); + if (lookahead == 215) ADVANCE(549); + if (lookahead == 247) ADVANCE(551); + if (lookahead == 951) ADVANCE(500); + if (lookahead == 960) ADVANCE(502); + if (lookahead == 964) ADVANCE(504); + if (lookahead == 8261) ADVANCE(535); + if (lookahead == 8319) ADVANCE(555); + if (lookahead == 8345) ADVANCE(557); if (lookahead == 8594) ADVANCE(713); - if (lookahead == 8600) ADVANCE(607); - if (lookahead == 8601) ADVANCE(605); - if (lookahead == 8613) ADVANCE(559); - if (lookahead == 8615) ADVANCE(557); - if (lookahead == 8623) ADVANCE(603); + if (lookahead == 8600) ADVANCE(609); + if (lookahead == 8601) ADVANCE(607); + if (lookahead == 8613) ADVANCE(561); + if (lookahead == 8615) ADVANCE(559); + if (lookahead == 8623) ADVANCE(605); if (lookahead == 8624) ADVANCE(718); - if (lookahead == 8635) ADVANCE(609); - if (lookahead == 8652) ADVANCE(571); - if (lookahead == 8673) ADVANCE(567); - if (lookahead == 8714) ADVANCE(617); - if (lookahead == 8728) ADVANCE(515); - if (lookahead == 8730) ADVANCE(525); - if (lookahead == 8734) ADVANCE(504); - if (lookahead == 8736) ADVANCE(561); + if (lookahead == 8635) ADVANCE(611); + if (lookahead == 8652) ADVANCE(573); + if (lookahead == 8673) ADVANCE(569); + if (lookahead == 8714) ADVANCE(619); + if (lookahead == 8728) ADVANCE(517); + if (lookahead == 8730) ADVANCE(527); + if (lookahead == 8734) ADVANCE(506); + if (lookahead == 8736) ADVANCE(563); if (lookahead == 8743) ADVANCE(682); if (lookahead == 8745) ADVANCE(694); - if (lookahead == 8757) ADVANCE(661); - if (lookahead == 8758) ADVANCE(510); + if (lookahead == 8757) ADVANCE(663); + if (lookahead == 8758) ADVANCE(512); if (lookahead == 8759) ADVANCE(714); - if (lookahead == 8760) ADVANCE(652); + if (lookahead == 8760) ADVANCE(654); if (lookahead == 8762) ADVANCE(684); - if (lookahead == 8771) ADVANCE(648); - if (lookahead == 8778) ADVANCE(644); - if (lookahead == 8781) ADVANCE(593); - if (lookahead == 8784) ADVANCE(680); + if (lookahead == 8771) ADVANCE(650); + if (lookahead == 8778) ADVANCE(646); + if (lookahead == 8781) ADVANCE(595); + if (lookahead == 8784) ADVANCE(679); if (lookahead == 8785) ADVANCE(702); - if (lookahead == 8800) ADVANCE(536); - if (lookahead == 8801) ADVANCE(663); - if (lookahead == 8804) ADVANCE(539); - if (lookahead == 8805) ADVANCE(542); - if (lookahead == 8834) ADVANCE(597); + if (lookahead == 8800) ADVANCE(538); + if (lookahead == 8801) ADVANCE(665); + if (lookahead == 8804) ADVANCE(541); + if (lookahead == 8805) ADVANCE(544); + if (lookahead == 8834) ADVANCE(599); if (lookahead == 8835) ADVANCE(698); - if (lookahead == 8847) ADVANCE(599); - if (lookahead == 8848) ADVANCE(678); + if (lookahead == 8847) ADVANCE(601); + if (lookahead == 8848) ADVANCE(677); if (lookahead == 8851) ADVANCE(696); - if (lookahead == 8852) ADVANCE(591); + if (lookahead == 8852) ADVANCE(593); if (lookahead == 8853) ADVANCE(690); - if (lookahead == 8855) ADVANCE(619); - if (lookahead == 8857) ADVANCE(668); - if (lookahead == 8858) ADVANCE(583); - if (lookahead == 8859) ADVANCE(585); + if (lookahead == 8855) ADVANCE(621); + if (lookahead == 8857) ADVANCE(669); + if (lookahead == 8858) ADVANCE(585); + if (lookahead == 8859) ADVANCE(587); if (lookahead == 8860) ADVANCE(692); - if (lookahead == 8861) ADVANCE(587); + if (lookahead == 8861) ADVANCE(589); if (lookahead == 8862) ADVANCE(686); - if (lookahead == 8863) ADVANCE(595); + if (lookahead == 8863) ADVANCE(597); if (lookahead == 8864) ADVANCE(688); - if (lookahead == 8865) ADVANCE(601); - if (lookahead == 8866) ADVANCE(569); - if (lookahead == 8900) ADVANCE(638); + if (lookahead == 8865) ADVANCE(603); + if (lookahead == 8866) ADVANCE(571); + if (lookahead == 8900) ADVANCE(640); if (lookahead == 8901) ADVANCE(671); - if (lookahead == 8943) ADVANCE(575); + if (lookahead == 8943) ADVANCE(577); if (lookahead == 8962) ADVANCE(717); - if (lookahead == 8968) ADVANCE(531); - if (lookahead == 8970) ADVANCE(529); - if (lookahead == 8981) ADVANCE(615); - if (lookahead == 9013) ADVANCE(523); - if (lookahead == 9033) ADVANCE(577); - if (lookahead == 9039) ADVANCE(579); - if (lookahead == 9046) ADVANCE(581); - if (lookahead == 9048) ADVANCE(675); + if (lookahead == 8968) ADVANCE(533); + if (lookahead == 8970) ADVANCE(531); + if (lookahead == 8981) ADVANCE(617); + if (lookahead == 9013) ADVANCE(525); + if (lookahead == 9033) ADVANCE(579); + if (lookahead == 9039) ADVANCE(581); + if (lookahead == 9046) ADVANCE(583); + if (lookahead == 9048) ADVANCE(674); if (lookahead == 9051) ADVANCE(716); if (lookahead == 9052) ADVANCE(700); if (lookahead == 9059) ADVANCE(709); - if (lookahead == 9060) ADVANCE(621); - if (lookahead == 9061) ADVANCE(665); - if (lookahead == 9099) ADVANCE(624); - if (lookahead == 9633) ADVANCE(589); - if (lookahead == 9651) ADVANCE(565); - if (lookahead == 9661) ADVANCE(613); - if (lookahead == 9675) ADVANCE(527); - if (lookahead == 9707) ADVANCE(611); + if (lookahead == 9060) ADVANCE(623); + if (lookahead == 9061) ADVANCE(667); + if (lookahead == 9099) ADVANCE(626); + if (lookahead == 9633) ADVANCE(591); + if (lookahead == 9651) ADVANCE(567); + if (lookahead == 9661) ADVANCE(615); + if (lookahead == 9675) ADVANCE(529); + if (lookahead == 9707) ADVANCE(613); if (lookahead == 9715) ADVANCE(711); - if (lookahead == 9727) ADVANCE(551); - if (lookahead == 9837) ADVANCE(573); - if (lookahead == 9858) ADVANCE(627); + if (lookahead == 9727) ADVANCE(553); + if (lookahead == 9837) ADVANCE(575); + if (lookahead == 9858) ADVANCE(629); if (lookahead == 10085) ADVANCE(712); - if (lookahead == 10204) ADVANCE(673); - if (lookahead == 10747) ADVANCE(563); + if (lookahead == 10204) ADVANCE(672); + if (lookahead == 10747) ADVANCE(565); if (lookahead == 11034) ADVANCE(704); - if (lookahead == 11822) ADVANCE(633); + if (lookahead == 11822) ADVANCE(635); if (lookahead == '\t' || lookahead == ' ') ADVANCE(719); - if (('h' <= lookahead && lookahead <= 'z')) ADVANCE(400); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(222); - if (('B' <= lookahead && lookahead <= 'Z')) ADVANCE(401); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(238); + if (('h' <= lookahead && lookahead <= 'z')) ADVANCE(402); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(223); + if (('B' <= lookahead && lookahead <= 'Z')) ADVANCE(403); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(239); END_STATE(); case 4: if (lookahead == '\n') ADVANCE(720); if (lookahead == '\r') ADVANCE(1); if (lookahead == '!') ADVANCE(10); - if (lookahead == '#') ADVANCE(402); - if (lookahead == '%') ADVANCE(548); - if (lookahead == '&') ADVANCE(217); - if (lookahead == ')') ADVANCE(489); - if (lookahead == '*') ADVANCE(546); - if (lookahead == '+') ADVANCE(543); - if (lookahead == ',') ADVANCE(509); - if (lookahead == '-') ADVANCE(544); - if (lookahead == '.') ADVANCE(508); - if (lookahead == ';') ADVANCE(511); - if (lookahead == '<') ADVANCE(537); - if (lookahead == '=') ADVANCE(534); - if (lookahead == '>') ADVANCE(540); - if (lookahead == '_') ADVANCE(494); - if (lookahead == '`') ADVANCE(520); - if (lookahead == 'a') ADVANCE(272); - if (lookahead == 'b') ADVANCE(318); - if (lookahead == 'c') ADVANCE(298); - if (lookahead == 'd') ADVANCE(299); + if (lookahead == '#') ADVANCE(404); + if (lookahead == '%') ADVANCE(550); + if (lookahead == '&') ADVANCE(218); + if (lookahead == ')') ADVANCE(491); + if (lookahead == '*') ADVANCE(548); + if (lookahead == '+') ADVANCE(545); + if (lookahead == ',') ADVANCE(511); + if (lookahead == '-') ADVANCE(546); + if (lookahead == '.') ADVANCE(510); + if (lookahead == ';') ADVANCE(513); + if (lookahead == '<') ADVANCE(539); + if (lookahead == '=') ADVANCE(536); + if (lookahead == '>') ADVANCE(542); + if (lookahead == '_') ADVANCE(496); + if (lookahead == '`') ADVANCE(522); + if (lookahead == 'a') ADVANCE(274); + if (lookahead == 'b') ADVANCE(319); + if (lookahead == 'c') ADVANCE(299); + if (lookahead == 'd') ADVANCE(300); if (lookahead == 'f') ADVANCE(253); - if (lookahead == 'g') ADVANCE(300); - if (lookahead == 'i') ADVANCE(287); - if (lookahead == 'j') ADVANCE(358); - if (lookahead == 'k') ADVANCE(302); - if (lookahead == 'l') ADVANCE(303); + if (lookahead == 'g') ADVANCE(301); + if (lookahead == 'i') ADVANCE(288); + if (lookahead == 'j') ADVANCE(359); + if (lookahead == 'k') ADVANCE(303); + if (lookahead == 'l') ADVANCE(304); if (lookahead == 'm') ADVANCE(254); - if (lookahead == 'n') ADVANCE(355); + if (lookahead == 'n') ADVANCE(356); if (lookahead == 'p') ADVANCE(255); - if (lookahead == 'r') ADVANCE(262); - if (lookahead == 's') ADVANCE(301); + if (lookahead == 'r') ADVANCE(264); + if (lookahead == 's') ADVANCE(302); if (lookahead == 't') ADVANCE(256); - if (lookahead == 'u') ADVANCE(346); - if (lookahead == 'w') ADVANCE(261); - if (lookahead == '|') ADVANCE(235); - if (lookahead == '~') ADVANCE(640); - if (lookahead == 172) ADVANCE(517); - if (lookahead == 175) ADVANCE(521); - if (lookahead == 177) ADVANCE(519); - if (lookahead == 215) ADVANCE(547); - if (lookahead == 247) ADVANCE(549); - if (lookahead == 8261) ADVANCE(533); - if (lookahead == 8319) ADVANCE(553); - if (lookahead == 8345) ADVANCE(555); - if (lookahead == 8600) ADVANCE(607); - if (lookahead == 8601) ADVANCE(605); - if (lookahead == 8613) ADVANCE(559); - if (lookahead == 8615) ADVANCE(557); - if (lookahead == 8623) ADVANCE(603); - if (lookahead == 8635) ADVANCE(609); - if (lookahead == 8652) ADVANCE(571); - if (lookahead == 8673) ADVANCE(567); - if (lookahead == 8714) ADVANCE(617); - if (lookahead == 8728) ADVANCE(515); - if (lookahead == 8730) ADVANCE(525); - if (lookahead == 8736) ADVANCE(561); - if (lookahead == 8758) ADVANCE(510); - if (lookahead == 8760) ADVANCE(652); - if (lookahead == 8771) ADVANCE(648); - if (lookahead == 8778) ADVANCE(644); - if (lookahead == 8781) ADVANCE(593); - if (lookahead == 8800) ADVANCE(536); - if (lookahead == 8804) ADVANCE(539); - if (lookahead == 8805) ADVANCE(542); - if (lookahead == 8834) ADVANCE(597); - if (lookahead == 8847) ADVANCE(599); - if (lookahead == 8852) ADVANCE(591); - if (lookahead == 8855) ADVANCE(619); - if (lookahead == 8858) ADVANCE(583); - if (lookahead == 8859) ADVANCE(585); - if (lookahead == 8861) ADVANCE(587); - if (lookahead == 8863) ADVANCE(595); - if (lookahead == 8865) ADVANCE(601); - if (lookahead == 8866) ADVANCE(569); - if (lookahead == 8900) ADVANCE(638); - if (lookahead == 8943) ADVANCE(575); - if (lookahead == 8968) ADVANCE(531); - if (lookahead == 8970) ADVANCE(529); - if (lookahead == 8981) ADVANCE(615); - if (lookahead == 9013) ADVANCE(523); - if (lookahead == 9033) ADVANCE(577); - if (lookahead == 9039) ADVANCE(579); - if (lookahead == 9046) ADVANCE(581); - if (lookahead == 9060) ADVANCE(621); - if (lookahead == 9099) ADVANCE(624); - if (lookahead == 9633) ADVANCE(589); - if (lookahead == 9651) ADVANCE(565); - if (lookahead == 9661) ADVANCE(613); - if (lookahead == 9675) ADVANCE(527); - if (lookahead == 9707) ADVANCE(611); - if (lookahead == 9727) ADVANCE(551); - if (lookahead == 9837) ADVANCE(573); - if (lookahead == 9858) ADVANCE(627); - if (lookahead == 10747) ADVANCE(563); - if (lookahead == 11822) ADVANCE(633); + if (lookahead == 'u') ADVANCE(347); + if (lookahead == 'w') ADVANCE(263); + if (lookahead == '|') ADVANCE(236); + if (lookahead == '~') ADVANCE(642); + if (lookahead == 172) ADVANCE(519); + if (lookahead == 175) ADVANCE(523); + if (lookahead == 177) ADVANCE(521); + if (lookahead == 215) ADVANCE(549); + if (lookahead == 247) ADVANCE(551); + if (lookahead == 8261) ADVANCE(535); + if (lookahead == 8319) ADVANCE(555); + if (lookahead == 8345) ADVANCE(557); + if (lookahead == 8600) ADVANCE(609); + if (lookahead == 8601) ADVANCE(607); + if (lookahead == 8613) ADVANCE(561); + if (lookahead == 8615) ADVANCE(559); + if (lookahead == 8623) ADVANCE(605); + if (lookahead == 8635) ADVANCE(611); + if (lookahead == 8652) ADVANCE(573); + if (lookahead == 8673) ADVANCE(569); + if (lookahead == 8714) ADVANCE(619); + if (lookahead == 8728) ADVANCE(517); + if (lookahead == 8730) ADVANCE(527); + if (lookahead == 8736) ADVANCE(563); + if (lookahead == 8758) ADVANCE(512); + if (lookahead == 8760) ADVANCE(654); + if (lookahead == 8771) ADVANCE(650); + if (lookahead == 8778) ADVANCE(646); + if (lookahead == 8781) ADVANCE(595); + if (lookahead == 8800) ADVANCE(538); + if (lookahead == 8804) ADVANCE(541); + if (lookahead == 8805) ADVANCE(544); + if (lookahead == 8834) ADVANCE(599); + if (lookahead == 8847) ADVANCE(601); + if (lookahead == 8852) ADVANCE(593); + if (lookahead == 8855) ADVANCE(621); + if (lookahead == 8858) ADVANCE(585); + if (lookahead == 8859) ADVANCE(587); + if (lookahead == 8861) ADVANCE(589); + if (lookahead == 8863) ADVANCE(597); + if (lookahead == 8865) ADVANCE(603); + if (lookahead == 8866) ADVANCE(571); + if (lookahead == 8900) ADVANCE(640); + if (lookahead == 8943) ADVANCE(577); + if (lookahead == 8968) ADVANCE(533); + if (lookahead == 8970) ADVANCE(531); + if (lookahead == 8981) ADVANCE(617); + if (lookahead == 9013) ADVANCE(525); + if (lookahead == 9033) ADVANCE(579); + if (lookahead == 9039) ADVANCE(581); + if (lookahead == 9046) ADVANCE(583); + if (lookahead == 9060) ADVANCE(623); + if (lookahead == 9099) ADVANCE(626); + if (lookahead == 9633) ADVANCE(591); + if (lookahead == 9651) ADVANCE(567); + if (lookahead == 9661) ADVANCE(615); + if (lookahead == 9675) ADVANCE(529); + if (lookahead == 9707) ADVANCE(613); + if (lookahead == 9727) ADVANCE(553); + if (lookahead == 9837) ADVANCE(575); + if (lookahead == 9858) ADVANCE(629); + if (lookahead == 10747) ADVANCE(565); + if (lookahead == 11822) ADVANCE(635); if (lookahead == '\t' || lookahead == ' ') ADVANCE(719); - if (('e' <= lookahead && lookahead <= 'z')) ADVANCE(398); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(401); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(238); + if (('e' <= lookahead && lookahead <= 'z')) ADVANCE(400); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(403); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(239); END_STATE(); case 5: - if (lookahead == ' ') ADVANCE(201); + if (lookahead == ' ') ADVANCE(202); END_STATE(); case 6: if (lookahead == '"') ADVANCE(7); - if (lookahead != 0) ADVANCE(218); + if (lookahead != 0) ADVANCE(219); END_STATE(); case 7: - if (lookahead == '"') ADVANCE(232); + if (lookahead == '"') ADVANCE(233); if (lookahead == '\\') ADVANCE(8); if (lookahead != 0) ADVANCE(7); END_STATE(); case 8: - if (lookahead == '"') ADVANCE(233); + if (lookahead == '"') ADVANCE(234); if (lookahead == '\\') ADVANCE(8); if (lookahead == 'n' || lookahead == 't') ADVANCE(7); if (lookahead != 0) ADVANCE(7); END_STATE(); case 9: - if (lookahead == '-') ADVANCE(487); + if (lookahead == '-') ADVANCE(489); END_STATE(); case 10: - if (lookahead == '=') ADVANCE(535); + if (lookahead == '=') ADVANCE(537); END_STATE(); case 11: - if (lookahead == '\\') ADVANCE(189); - if (lookahead != 0) ADVANCE(231); + if (lookahead == '\\') ADVANCE(190); + if (lookahead != 0) ADVANCE(232); END_STATE(); case 12: - if (lookahead == 'a') ADVANCE(96); + if (lookahead == 'a') ADVANCE(97); END_STATE(); case 13: - if (lookahead == 'a') ADVANCE(142); + if (lookahead == 'a') ADVANCE(143); END_STATE(); case 14: - if (lookahead == 'a') ADVANCE(182); + if (lookahead == 'a') ADVANCE(183); END_STATE(); case 15: - if (lookahead == 'a') ADVANCE(173); + if (lookahead == 'a') ADVANCE(174); END_STATE(); case 16: if (lookahead == 'a') ADVANCE(29); END_STATE(); case 17: - if (lookahead == 'a') ADVANCE(154); + if (lookahead == 'a') ADVANCE(155); END_STATE(); case 18: - if (lookahead == 'a') ADVANCE(143); + if (lookahead == 'a') ADVANCE(144); END_STATE(); case 19: - if (lookahead == 'a') ADVANCE(103); + if (lookahead == 'a') ADVANCE(104); END_STATE(); case 20: - if (lookahead == 'a') ADVANCE(185); + if (lookahead == 'a') ADVANCE(186); END_STATE(); case 21: - if (lookahead == 'a') ADVANCE(187); + if (lookahead == 'a') ADVANCE(188); END_STATE(); case 22: if (lookahead == 'b') ADVANCE(69); @@ -3129,16 +3115,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'b') ADVANCE(64); END_STATE(); case 24: - if (lookahead == 'b') ADVANCE(198); + if (lookahead == 'b') ADVANCE(199); END_STATE(); case 25: if (lookahead == 'c') ADVANCE(78); END_STATE(); case 26: - if (lookahead == 'c') ADVANCE(200); + if (lookahead == 'c') ADVANCE(201); END_STATE(); case 27: - if (lookahead == 'c') ADVANCE(174); + if (lookahead == 'c') ADVANCE(175); END_STATE(); case 28: if (lookahead == 'c') ADVANCE(49); @@ -3150,80 +3136,80 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'c') ADVANCE(21); END_STATE(); case 31: - if (lookahead == 'd') ADVANCE(614); + if (lookahead == 'd') ADVANCE(616); END_STATE(); case 32: - if (lookahead == 'd') ADVANCE(127); + if (lookahead == 'd') ADVANCE(128); if (lookahead == 'g') ADVANCE(44); END_STATE(); case 33: - if (lookahead == 'd') ADVANCE(653); + if (lookahead == 'd') ADVANCE(655); END_STATE(); case 34: - if (lookahead == 'd') ADVANCE(532); + if (lookahead == 'd') ADVANCE(534); END_STATE(); case 35: - if (lookahead == 'd') ADVANCE(649); + if (lookahead == 'd') ADVANCE(651); END_STATE(); case 36: - if (lookahead == 'd') ADVANCE(126); + if (lookahead == 'd') ADVANCE(127); END_STATE(); case 37: - if (lookahead == 'e') ADVANCE(150); + if (lookahead == 'e') ADVANCE(151); END_STATE(); case 38: - if (lookahead == 'e') ADVANCE(205); + if (lookahead == 'e') ADVANCE(206); END_STATE(); case 39: - if (lookahead == 'e') ADVANCE(578); + if (lookahead == 'e') ADVANCE(580); END_STATE(); case 40: - if (lookahead == 'e') ADVANCE(526); + if (lookahead == 'e') ADVANCE(528); END_STATE(); case 41: - if (lookahead == 'e') ADVANCE(604); + if (lookahead == 'e') ADVANCE(606); END_STATE(); case 42: - if (lookahead == 'e') ADVANCE(632); + if (lookahead == 'e') ADVANCE(634); END_STATE(); case 43: - if (lookahead == 'e') ADVANCE(625); + if (lookahead == 'e') ADVANCE(627); END_STATE(); case 44: - if (lookahead == 'e') ADVANCE(566); + if (lookahead == 'e') ADVANCE(568); END_STATE(); case 45: - if (lookahead == 'e') ADVANCE(564); + if (lookahead == 'e') ADVANCE(566); END_STATE(); case 46: if (lookahead == 'e') ADVANCE(685); END_STATE(); case 47: - if (lookahead == 'e') ADVANCE(582); + if (lookahead == 'e') ADVANCE(584); END_STATE(); case 48: - if (lookahead == 'e') ADVANCE(594); + if (lookahead == 'e') ADVANCE(596); END_STATE(); case 49: - if (lookahead == 'e') ADVANCE(656); + if (lookahead == 'e') ADVANCE(658); END_STATE(); case 50: - if (lookahead == 'e') ADVANCE(608); + if (lookahead == 'e') ADVANCE(610); END_STATE(); case 51: - if (lookahead == 'e') ADVANCE(572); + if (lookahead == 'e') ADVANCE(574); END_STATE(); case 52: - if (lookahead == 'e') ADVANCE(602); + if (lookahead == 'e') ADVANCE(604); END_STATE(); case 53: - if (lookahead == 'e') ADVANCE(570); + if (lookahead == 'e') ADVANCE(572); END_STATE(); case 54: - if (lookahead == 'e') ADVANCE(639); + if (lookahead == 'e') ADVANCE(641); END_STATE(); case 55: - if (lookahead == 'e') ADVANCE(679); + if (lookahead == 'e') ADVANCE(678); END_STATE(); case 56: if (lookahead == 'e') ADVANCE(5); @@ -3232,19 +3218,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'e') ADVANCE(710); END_STATE(); case 58: - if (lookahead == 'e') ADVANCE(576); + if (lookahead == 'e') ADVANCE(578); END_STATE(); case 59: if (lookahead == 'e') ADVANCE(683); END_STATE(); case 60: - if (lookahead == 'e') ADVANCE(586); + if (lookahead == 'e') ADVANCE(588); END_STATE(); case 61: - if (lookahead == 'e') ADVANCE(522); + if (lookahead == 'e') ADVANCE(524); END_STATE(); case 62: - if (lookahead == 'e') ADVANCE(203); + if (lookahead == 'e') ADVANCE(204); END_STATE(); case 63: if (lookahead == 'e') ADVANCE(27); @@ -3256,34 +3242,34 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'e') ADVANCE(26); END_STATE(); case 66: - if (lookahead == 'e') ADVANCE(145); + if (lookahead == 'e') ADVANCE(146); END_STATE(); case 67: - if (lookahead == 'e') ADVANCE(149); + if (lookahead == 'e') ADVANCE(150); END_STATE(); case 68: - if (lookahead == 'e') ADVANCE(122); + if (lookahead == 'e') ADVANCE(123); END_STATE(); case 69: - if (lookahead == 'e') ADVANCE(147); + if (lookahead == 'e') ADVANCE(148); END_STATE(); case 70: - if (lookahead == 'e') ADVANCE(175); + if (lookahead == 'e') ADVANCE(176); END_STATE(); case 71: - if (lookahead == 'f') ADVANCE(206); + if (lookahead == 'f') ADVANCE(207); END_STATE(); case 72: - if (lookahead == 'f') ADVANCE(618); + if (lookahead == 'f') ADVANCE(620); END_STATE(); case 73: if (lookahead == 'f') ADVANCE(16); END_STATE(); case 74: - if (lookahead == 'g') ADVANCE(530); + if (lookahead == 'g') ADVANCE(532); END_STATE(); case 75: - if (lookahead == 'g') ADVANCE(177); + if (lookahead == 'g') ADVANCE(179); END_STATE(); case 76: if (lookahead == 'g') ADVANCE(68); @@ -3292,341 +3278,344 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'h') ADVANCE(13); END_STATE(); case 78: - if (lookahead == 'h') ADVANCE(592); + if (lookahead == 'h') ADVANCE(594); END_STATE(); case 79: - if (lookahead == 'h') ADVANCE(562); + if (lookahead == 'h') ADVANCE(680); END_STATE(); case 80: - if (lookahead == 'h') ADVANCE(110); + if (lookahead == 'h') ADVANCE(564); END_STATE(); case 81: - if (lookahead == 'h') ADVANCE(18); + if (lookahead == 'h') ADVANCE(111); END_STATE(); case 82: - if (lookahead == 'i') ADVANCE(111); + if (lookahead == 'h') ADVANCE(18); END_STATE(); case 83: - if (lookahead == 'i') ADVANCE(71); + if (lookahead == 'i') ADVANCE(112); END_STATE(); case 84: - if (lookahead == 'i') ADVANCE(24); + if (lookahead == 'i') ADVANCE(71); END_STATE(); case 85: - if (lookahead == 'i') ADVANCE(119); + if (lookahead == 'i') ADVANCE(24); END_STATE(); case 86: - if (lookahead == 'i') ADVANCE(123); + if (lookahead == 'i') ADVANCE(120); END_STATE(); case 87: - if (lookahead == 'i') ADVANCE(30); + if (lookahead == 'i') ADVANCE(124); END_STATE(); case 88: - if (lookahead == 'i') ADVANCE(131); + if (lookahead == 'i') ADVANCE(30); END_STATE(); case 89: - if (lookahead == 'i') ADVANCE(181); + if (lookahead == 'i') ADVANCE(132); END_STATE(); case 90: - if (lookahead == 'i') ADVANCE(178); + if (lookahead == 'i') ADVANCE(182); END_STATE(); case 91: - if (lookahead == 'i') ADVANCE(180); + if (lookahead == 'i') ADVANCE(178); END_STATE(); case 92: - if (lookahead == 'i') ADVANCE(179); + if (lookahead == 'i') ADVANCE(180); END_STATE(); case 93: - if (lookahead == 'i') ADVANCE(112); + if (lookahead == 'i') ADVANCE(181); END_STATE(); case 94: - if (lookahead == 'k') ADVANCE(600); + if (lookahead == 'i') ADVANCE(113); END_STATE(); case 95: - if (lookahead == 'k') ADVANCE(637); + if (lookahead == 'k') ADVANCE(602); END_STATE(); case 96: - if (lookahead == 'k') ADVANCE(623); + if (lookahead == 'k') ADVANCE(639); END_STATE(); case 97: - if (lookahead == 'k') ADVANCE(70); + if (lookahead == 'k') ADVANCE(625); END_STATE(); case 98: - if (lookahead == 'l') ADVANCE(85); + if (lookahead == 'k') ADVANCE(70); END_STATE(); case 99: - if (lookahead == 'l') ADVANCE(629); + if (lookahead == 'l') ADVANCE(86); END_STATE(); case 100: - if (lookahead == 'l') ADVANCE(580); + if (lookahead == 'l') ADVANCE(631); END_STATE(); case 101: - if (lookahead == 'l') ADVANCE(701); + if (lookahead == 'l') ADVANCE(582); END_STATE(); case 102: - if (lookahead == 'l') ADVANCE(193); + if (lookahead == 'l') ADVANCE(701); END_STATE(); case 103: if (lookahead == 'l') ADVANCE(194); END_STATE(); case 104: - if (lookahead == 'l') ADVANCE(87); + if (lookahead == 'l') ADVANCE(195); END_STATE(); case 105: - if (lookahead == 'l') ADVANCE(48); + if (lookahead == 'l') ADVANCE(88); END_STATE(); case 106: - if (lookahead == 'l') ADVANCE(197); + if (lookahead == 'l') ADVANCE(48); END_STATE(); case 107: - if (lookahead == 'm') ADVANCE(626); + if (lookahead == 'l') ADVANCE(198); END_STATE(); case 108: - if (lookahead == 'm') ADVANCE(558); + if (lookahead == 'm') ADVANCE(628); END_STATE(); case 109: - if (lookahead == 'm') ADVANCE(556); + if (lookahead == 'm') ADVANCE(560); END_STATE(); case 110: - if (lookahead == 'm') ADVANCE(554); + if (lookahead == 'm') ADVANCE(558); END_STATE(); case 111: - if (lookahead == 'm') ADVANCE(191); + if (lookahead == 'm') ADVANCE(556); END_STATE(); case 112: if (lookahead == 'm') ADVANCE(192); END_STATE(); case 113: - if (lookahead == 'n') ADVANCE(76); + if (lookahead == 'm') ADVANCE(193); END_STATE(); case 114: - if (lookahead == 'n') ADVANCE(596); + if (lookahead == 'n') ADVANCE(76); END_STATE(); case 115: - if (lookahead == 'n') ADVANCE(34); + if (lookahead == 'n') ADVANCE(598); END_STATE(); case 116: - if (lookahead == 'n') ADVANCE(518); + if (lookahead == 'n') ADVANCE(34); END_STATE(); case 117: - if (lookahead == 'n') ADVANCE(676); + if (lookahead == 'n') ADVANCE(520); END_STATE(); case 118: - if (lookahead == 'n') ADVANCE(691); + if (lookahead == 'n') ADVANCE(675); END_STATE(); case 119: - if (lookahead == 'n') ADVANCE(74); + if (lookahead == 'n') ADVANCE(691); END_STATE(); case 120: - if (lookahead == 'n') ADVANCE(188); + if (lookahead == 'n') ADVANCE(74); END_STATE(); case 121: - if (lookahead == 'n') ADVANCE(165); + if (lookahead == 'n') ADVANCE(189); END_STATE(); case 122: - if (lookahead == 'n') ADVANCE(176); + if (lookahead == 'n') ADVANCE(166); END_STATE(); case 123: - if (lookahead == 'n') ADVANCE(20); + if (lookahead == 'n') ADVANCE(177); END_STATE(); case 124: - if (lookahead == 'n') ADVANCE(91); + if (lookahead == 'n') ADVANCE(20); END_STATE(); case 125: - if (lookahead == 'o') ADVANCE(106); + if (lookahead == 'n') ADVANCE(92); END_STATE(); case 126: - if (lookahead == 'o') ADVANCE(202); + if (lookahead == 'o') ADVANCE(107); END_STATE(); case 127: - if (lookahead == 'o') ADVANCE(107); + if (lookahead == 'o') ADVANCE(203); END_STATE(); case 128: - if (lookahead == 'o') ADVANCE(72); + if (lookahead == 'o') ADVANCE(108); END_STATE(); case 129: - if (lookahead == 'o') ADVANCE(144); + if (lookahead == 'o') ADVANCE(72); END_STATE(); case 130: - if (lookahead == 'o') ADVANCE(204); + if (lookahead == 'o') ADVANCE(145); END_STATE(); case 131: - if (lookahead == 'o') ADVANCE(118); + if (lookahead == 'o') ADVANCE(205); END_STATE(); case 132: - if (lookahead == 'o') ADVANCE(167); + if (lookahead == 'o') ADVANCE(119); END_STATE(); case 133: - if (lookahead == 'p') ADVANCE(641); + if (lookahead == 'o') ADVANCE(168); END_STATE(); case 134: - if (lookahead == 'p') ADVANCE(606); + if (lookahead == 'p') ADVANCE(643); END_STATE(); case 135: - if (lookahead == 'p') ADVANCE(634); + if (lookahead == 'p') ADVANCE(608); END_STATE(); case 136: - if (lookahead == 'p') ADVANCE(612); + if (lookahead == 'p') ADVANCE(636); END_STATE(); case 137: - if (lookahead == 'p') ADVANCE(689); + if (lookahead == 'p') ADVANCE(614); END_STATE(); case 138: - if (lookahead == 'p') ADVANCE(105); + if (lookahead == 'p') ADVANCE(689); END_STATE(); case 139: - if (lookahead == 'p') ADVANCE(104); + if (lookahead == 'p') ADVANCE(106); END_STATE(); case 140: - if (lookahead == 'p') ADVANCE(132); + if (lookahead == 'p') ADVANCE(105); END_STATE(); case 141: - if (lookahead == 'p') ADVANCE(45); + if (lookahead == 'p') ADVANCE(133); END_STATE(); case 142: - if (lookahead == 'p') ADVANCE(51); + if (lookahead == 'p') ADVANCE(45); END_STATE(); case 143: - if (lookahead == 'p') ADVANCE(52); + if (lookahead == 'p') ADVANCE(51); END_STATE(); case 144: - if (lookahead == 'r') ADVANCE(528); + if (lookahead == 'p') ADVANCE(52); END_STATE(); case 145: - if (lookahead == 'r') ADVANCE(552); + if (lookahead == 'r') ADVANCE(530); END_STATE(); case 146: - if (lookahead == 'r') ADVANCE(699); + if (lookahead == 'r') ADVANCE(554); END_STATE(); case 147: - if (lookahead == 'r') ADVANCE(616); + if (lookahead == 'r') ADVANCE(699); END_STATE(); case 148: - if (lookahead == 'r') ADVANCE(84); + if (lookahead == 'r') ADVANCE(618); END_STATE(); case 149: - if (lookahead == 'r') ADVANCE(166); + if (lookahead == 'r') ADVANCE(85); END_STATE(); case 150: - if (lookahead == 'r') ADVANCE(171); + if (lookahead == 'r') ADVANCE(167); END_STATE(); case 151: if (lookahead == 'r') ADVANCE(172); END_STATE(); case 152: - if (lookahead == 'r') ADVANCE(65); + if (lookahead == 'r') ADVANCE(173); END_STATE(); case 153: - if (lookahead == 'r') ADVANCE(47); + if (lookahead == 'r') ADVANCE(65); END_STATE(); case 154: - if (lookahead == 'r') ADVANCE(92); + if (lookahead == 'r') ADVANCE(47); END_STATE(); case 155: - if (lookahead == 's') ADVANCE(158); + if (lookahead == 'r') ADVANCE(93); END_STATE(); case 156: - if (lookahead == 's') ADVANCE(574); + if (lookahead == 's') ADVANCE(159); END_STATE(); case 157: - if (lookahead == 's') ADVANCE(170); + if (lookahead == 's') ADVANCE(576); END_STATE(); case 158: - if (lookahead == 's') ADVANCE(645); + if (lookahead == 's') ADVANCE(171); END_STATE(); case 159: - if (lookahead == 's') ADVANCE(687); + if (lookahead == 's') ADVANCE(647); END_STATE(); case 160: - if (lookahead == 's') ADVANCE(550); + if (lookahead == 's') ADVANCE(687); END_STATE(); case 161: - if (lookahead == 's') ADVANCE(610); + if (lookahead == 's') ADVANCE(552); END_STATE(); case 162: - if (lookahead == 's') ADVANCE(164); + if (lookahead == 's') ADVANCE(612); END_STATE(); case 163: - if (lookahead == 's') ADVANCE(43); + if (lookahead == 's') ADVANCE(165); END_STATE(); case 164: - if (lookahead == 's') ADVANCE(83); + if (lookahead == 's') ADVANCE(43); END_STATE(); case 165: - if (lookahead == 's') ADVANCE(140); + if (lookahead == 's') ADVANCE(84); END_STATE(); case 166: - if (lookahead == 's') ADVANCE(53); + if (lookahead == 's') ADVANCE(141); END_STATE(); case 167: - if (lookahead == 's') ADVANCE(58); + if (lookahead == 's') ADVANCE(53); END_STATE(); case 168: - if (lookahead == 't') ADVANCE(524); + if (lookahead == 's') ADVANCE(58); END_STATE(); case 169: - if (lookahead == 't') ADVANCE(622); + if (lookahead == 't') ADVANCE(526); END_STATE(); case 170: - if (lookahead == 't') ADVANCE(568); + if (lookahead == 't') ADVANCE(624); END_STATE(); case 171: - if (lookahead == 't') ADVANCE(620); + if (lookahead == 't') ADVANCE(570); END_STATE(); case 172: - if (lookahead == 't') ADVANCE(674); + if (lookahead == 't') ADVANCE(622); END_STATE(); case 173: - if (lookahead == 't') ADVANCE(664); + if (lookahead == 't') ADVANCE(673); END_STATE(); case 174: - if (lookahead == 't') ADVANCE(598); + if (lookahead == 't') ADVANCE(666); END_STATE(); case 175: - if (lookahead == 't') ADVANCE(695); + if (lookahead == 't') ADVANCE(600); END_STATE(); case 176: - if (lookahead == 't') ADVANCE(560); + if (lookahead == 't') ADVANCE(695); END_STATE(); case 177: - if (lookahead == 't') ADVANCE(79); + if (lookahead == 't') ADVANCE(562); END_STATE(); case 178: - if (lookahead == 't') ADVANCE(207); + if (lookahead == 't') ADVANCE(208); END_STATE(); case 179: if (lookahead == 't') ADVANCE(80); END_STATE(); case 180: - if (lookahead == 't') ADVANCE(208); + if (lookahead == 't') ADVANCE(209); END_STATE(); case 181: - if (lookahead == 't') ADVANCE(88); + if (lookahead == 't') ADVANCE(81); END_STATE(); case 182: - if (lookahead == 't') ADVANCE(50); + if (lookahead == 't') ADVANCE(89); END_STATE(); case 183: - if (lookahead == 't') ADVANCE(55); + if (lookahead == 't') ADVANCE(50); END_STATE(); case 184: - if (lookahead == 't') ADVANCE(56); + if (lookahead == 't') ADVANCE(55); END_STATE(); case 185: - if (lookahead == 't') ADVANCE(57); + if (lookahead == 't') ADVANCE(56); END_STATE(); case 186: - if (lookahead == 't') ADVANCE(59); + if (lookahead == 't') ADVANCE(57); END_STATE(); case 187: - if (lookahead == 't') ADVANCE(60); + if (lookahead == 't') ADVANCE(59); END_STATE(); case 188: - if (lookahead == 't') ADVANCE(90); + if (lookahead == 't') ADVANCE(60); END_STATE(); case 189: - if (lookahead == 'u') ADVANCE(216); - if (lookahead == 'x') ADVANCE(214); + if (lookahead == 't') ADVANCE(91); + END_STATE(); + case 190: + if (lookahead == 'u') ADVANCE(217); + if (lookahead == 'x') ADVANCE(215); if (lookahead == '"' || lookahead == '\'' || lookahead == '0' || @@ -3634,87 +3623,82 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || lookahead == 'b' || lookahead == 'n' || - ('r' <= lookahead && lookahead <= 't')) ADVANCE(231); - END_STATE(); - case 190: - if (lookahead == 'u') ADVANCE(139); + ('r' <= lookahead && lookahead <= 't')) ADVANCE(232); END_STATE(); case 191: - if (lookahead == 'u') ADVANCE(108); + if (lookahead == 'u') ADVANCE(140); END_STATE(); case 192: if (lookahead == 'u') ADVANCE(109); END_STATE(); case 193: - if (lookahead == 'u') ADVANCE(160); + if (lookahead == 'u') ADVANCE(110); END_STATE(); case 194: - if (lookahead == 'u') ADVANCE(61); + if (lookahead == 'u') ADVANCE(161); END_STATE(); case 195: - if (lookahead == 'u') ADVANCE(102); + if (lookahead == 'u') ADVANCE(61); END_STATE(); case 196: - if (lookahead == 'u') ADVANCE(183); + if (lookahead == 'u') ADVANCE(103); END_STATE(); case 197: if (lookahead == 'u') ADVANCE(184); END_STATE(); case 198: - if (lookahead == 'u') ADVANCE(186); + if (lookahead == 'u') ADVANCE(185); END_STATE(); case 199: - if (lookahead == 'v') ADVANCE(654); + if (lookahead == 'u') ADVANCE(187); END_STATE(); case 200: - if (lookahead == 'v') ADVANCE(655); + if (lookahead == 'v') ADVANCE(656); END_STATE(); case 201: - if (lookahead == 'v') ADVANCE(19); + if (lookahead == 'v') ADVANCE(657); END_STATE(); case 202: - if (lookahead == 'w') ADVANCE(161); + if (lookahead == 'v') ADVANCE(19); END_STATE(); case 203: - if (lookahead == 'x') ADVANCE(635); + if (lookahead == 'w') ADVANCE(162); END_STATE(); case 204: - if (lookahead == 'x') ADVANCE(590); + if (lookahead == 'x') ADVANCE(637); END_STATE(); case 205: - if (lookahead == 'x') ADVANCE(128); + if (lookahead == 'x') ADVANCE(592); END_STATE(); case 206: - if (lookahead == 'y') ADVANCE(584); + if (lookahead == 'x') ADVANCE(129); END_STATE(); case 207: - if (lookahead == 'y') ADVANCE(512); + if (lookahead == 'y') ADVANCE(586); END_STATE(); case 208: - if (lookahead == 'y') ADVANCE(503); + if (lookahead == 'y') ADVANCE(514); END_STATE(); case 209: - if (lookahead == 175) ADVANCE(210); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(224); + if (lookahead == 'y') ADVANCE(505); END_STATE(); case 210: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(224); + if (lookahead == 175) ADVANCE(211); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(225); END_STATE(); case 211: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(223); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(225); END_STATE(); case 212: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(237); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(224); END_STATE(); case 213: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(231); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(238); END_STATE(); case 214: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(213); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(232); END_STATE(); case 215: if (('0' <= lookahead && lookahead <= '9') || @@ -3727,2421 +3711,2419 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'f')) ADVANCE(215); END_STATE(); case 217: - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(485); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(216); END_STATE(); case 218: - if (lookahead != 0 && - lookahead != '\n') ADVANCE(234); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(487); END_STATE(); case 219: - if (eof) ADVANCE(221); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(235); + END_STATE(); + case 220: + if (eof) ADVANCE(222); if (lookahead == '\n') ADVANCE(720); if (lookahead == '\r') ADVANCE(1); if (lookahead == '!') ADVANCE(10); if (lookahead == '"') ADVANCE(7); - if (lookahead == '#') ADVANCE(402); + if (lookahead == '#') ADVANCE(404); if (lookahead == '$') ADVANCE(6); - if (lookahead == '%') ADVANCE(548); - if (lookahead == '&') ADVANCE(217); + if (lookahead == '%') ADVANCE(550); + if (lookahead == '&') ADVANCE(218); if (lookahead == '\'') ADVANCE(706); - if (lookahead == '(') ADVANCE(488); - if (lookahead == ')') ADVANCE(489); - if (lookahead == '*') ADVANCE(546); - if (lookahead == '+') ADVANCE(543); - if (lookahead == ',') ADVANCE(509); - if (lookahead == '-') ADVANCE(544); - if (lookahead == '.') ADVANCE(508); - if (lookahead == '/') ADVANCE(657); - if (lookahead == ';') ADVANCE(511); - if (lookahead == '<') ADVANCE(537); - if (lookahead == '=') ADVANCE(534); - if (lookahead == '>') ADVANCE(540); + if (lookahead == '(') ADVANCE(490); + if (lookahead == ')') ADVANCE(491); + if (lookahead == '*') ADVANCE(548); + if (lookahead == '+') ADVANCE(545); + if (lookahead == ',') ADVANCE(511); + if (lookahead == '-') ADVANCE(546); + if (lookahead == '.') ADVANCE(510); + if (lookahead == '/') ADVANCE(659); + if (lookahead == ';') ADVANCE(513); + if (lookahead == '<') ADVANCE(539); + if (lookahead == '=') ADVANCE(536); + if (lookahead == '>') ADVANCE(542); if (lookahead == '?') ADVANCE(707); if (lookahead == '@') ADVANCE(11); - if (lookahead == 'A') ADVANCE(368); - if (lookahead == 'E') ADVANCE(396); - if (lookahead == 'F') ADVANCE(244); - if (lookahead == 'N') ADVANCE(245); - if (lookahead == 'P') ADVANCE(327); - if (lookahead == 'S') ADVANCE(292); - if (lookahead == '[') ADVANCE(492); - if (lookahead == '\\') ADVANCE(659); - if (lookahead == ']') ADVANCE(493); - if (lookahead == '^') ADVANCE(496); - if (lookahead == '_') ADVANCE(494); - if (lookahead == '`') ADVANCE(520); - if (lookahead == 'a') ADVANCE(271); - if (lookahead == 'b') ADVANCE(319); - if (lookahead == 'c') ADVANCE(293); - if (lookahead == 'd') ADVANCE(294); - if (lookahead == 'e') ADVANCE(505); - if (lookahead == 'f') ADVANCE(258); - if (lookahead == 'g') ADVANCE(246); - if (lookahead == 'i') ADVANCE(286); - if (lookahead == 'j') ADVANCE(356); - if (lookahead == 'k') ADVANCE(304); - if (lookahead == 'l') ADVANCE(295); - if (lookahead == 'm') ADVANCE(257); - if (lookahead == 'n') ADVANCE(354); - if (lookahead == 'o') ADVANCE(375); + if (lookahead == 'A') ADVANCE(371); + if (lookahead == 'E') ADVANCE(398); + if (lookahead == 'F') ADVANCE(245); + if (lookahead == 'N') ADVANCE(246); + if (lookahead == 'P') ADVANCE(328); + if (lookahead == 'S') ADVANCE(293); + if (lookahead == '[') ADVANCE(494); + if (lookahead == '\\') ADVANCE(661); + if (lookahead == ']') ADVANCE(495); + if (lookahead == '^') ADVANCE(498); + if (lookahead == '_') ADVANCE(496); + if (lookahead == '`') ADVANCE(522); + if (lookahead == 'a') ADVANCE(273); + if (lookahead == 'b') ADVANCE(320); + if (lookahead == 'c') ADVANCE(294); + if (lookahead == 'd') ADVANCE(295); + if (lookahead == 'e') ADVANCE(507); + if (lookahead == 'f') ADVANCE(259); + if (lookahead == 'g') ADVANCE(257); + if (lookahead == 'i') ADVANCE(287); + if (lookahead == 'j') ADVANCE(357); + if (lookahead == 'k') ADVANCE(305); + if (lookahead == 'l') ADVANCE(296); + if (lookahead == 'm') ADVANCE(258); + if (lookahead == 'n') ADVANCE(355); + if (lookahead == 'o') ADVANCE(378); if (lookahead == 'p') ADVANCE(247); - if (lookahead == 'r') ADVANCE(260); - if (lookahead == 's') ADVANCE(285); + if (lookahead == 'r') ADVANCE(261); + if (lookahead == 's') ADVANCE(286); if (lookahead == 't') ADVANCE(248); - if (lookahead == 'u') ADVANCE(340); - if (lookahead == 'w') ADVANCE(259); - if (lookahead == '{') ADVANCE(490); - if (lookahead == '|') ADVANCE(235); - if (lookahead == '}') ADVANCE(491); - if (lookahead == '~') ADVANCE(640); - if (lookahead == 172) ADVANCE(517); - if (lookahead == 175) ADVANCE(521); - if (lookahead == 177) ADVANCE(519); + if (lookahead == 'u') ADVANCE(341); + if (lookahead == 'w') ADVANCE(260); + if (lookahead == '{') ADVANCE(492); + if (lookahead == '|') ADVANCE(236); + if (lookahead == '}') ADVANCE(493); + if (lookahead == '~') ADVANCE(642); + if (lookahead == 172) ADVANCE(519); + if (lookahead == 175) ADVANCE(523); + if (lookahead == 177) ADVANCE(521); if (lookahead == 183) ADVANCE(715); - if (lookahead == 215) ADVANCE(547); - if (lookahead == 247) ADVANCE(549); - if (lookahead == 951) ADVANCE(498); - if (lookahead == 960) ADVANCE(500); - if (lookahead == 964) ADVANCE(502); - if (lookahead == 8261) ADVANCE(533); - if (lookahead == 8319) ADVANCE(553); - if (lookahead == 8345) ADVANCE(555); - if (lookahead == 8592) ADVANCE(495); + if (lookahead == 215) ADVANCE(549); + if (lookahead == 247) ADVANCE(551); + if (lookahead == 951) ADVANCE(500); + if (lookahead == 960) ADVANCE(502); + if (lookahead == 964) ADVANCE(504); + if (lookahead == 8261) ADVANCE(535); + if (lookahead == 8319) ADVANCE(555); + if (lookahead == 8345) ADVANCE(557); + if (lookahead == 8592) ADVANCE(497); if (lookahead == 8594) ADVANCE(713); - if (lookahead == 8600) ADVANCE(607); - if (lookahead == 8601) ADVANCE(605); - if (lookahead == 8613) ADVANCE(559); - if (lookahead == 8615) ADVANCE(557); - if (lookahead == 8623) ADVANCE(603); + if (lookahead == 8600) ADVANCE(609); + if (lookahead == 8601) ADVANCE(607); + if (lookahead == 8613) ADVANCE(561); + if (lookahead == 8615) ADVANCE(559); + if (lookahead == 8623) ADVANCE(605); if (lookahead == 8624) ADVANCE(718); - if (lookahead == 8635) ADVANCE(609); - if (lookahead == 8652) ADVANCE(571); - if (lookahead == 8673) ADVANCE(567); - if (lookahead == 8714) ADVANCE(617); - if (lookahead == 8728) ADVANCE(515); - if (lookahead == 8730) ADVANCE(525); - if (lookahead == 8734) ADVANCE(504); - if (lookahead == 8736) ADVANCE(561); + if (lookahead == 8635) ADVANCE(611); + if (lookahead == 8652) ADVANCE(573); + if (lookahead == 8673) ADVANCE(569); + if (lookahead == 8714) ADVANCE(619); + if (lookahead == 8728) ADVANCE(517); + if (lookahead == 8730) ADVANCE(527); + if (lookahead == 8734) ADVANCE(506); + if (lookahead == 8736) ADVANCE(563); if (lookahead == 8743) ADVANCE(682); if (lookahead == 8745) ADVANCE(694); - if (lookahead == 8757) ADVANCE(661); - if (lookahead == 8758) ADVANCE(510); + if (lookahead == 8757) ADVANCE(663); + if (lookahead == 8758) ADVANCE(512); if (lookahead == 8759) ADVANCE(714); - if (lookahead == 8760) ADVANCE(652); + if (lookahead == 8760) ADVANCE(654); if (lookahead == 8762) ADVANCE(684); - if (lookahead == 8771) ADVANCE(648); - if (lookahead == 8778) ADVANCE(644); - if (lookahead == 8781) ADVANCE(593); - if (lookahead == 8784) ADVANCE(680); + if (lookahead == 8771) ADVANCE(650); + if (lookahead == 8778) ADVANCE(646); + if (lookahead == 8781) ADVANCE(595); + if (lookahead == 8784) ADVANCE(679); if (lookahead == 8785) ADVANCE(702); - if (lookahead == 8800) ADVANCE(536); - if (lookahead == 8801) ADVANCE(663); - if (lookahead == 8804) ADVANCE(539); - if (lookahead == 8805) ADVANCE(542); - if (lookahead == 8834) ADVANCE(597); + if (lookahead == 8800) ADVANCE(538); + if (lookahead == 8801) ADVANCE(665); + if (lookahead == 8804) ADVANCE(541); + if (lookahead == 8805) ADVANCE(544); + if (lookahead == 8834) ADVANCE(599); if (lookahead == 8835) ADVANCE(698); - if (lookahead == 8847) ADVANCE(599); - if (lookahead == 8848) ADVANCE(678); + if (lookahead == 8847) ADVANCE(601); + if (lookahead == 8848) ADVANCE(677); if (lookahead == 8851) ADVANCE(696); - if (lookahead == 8852) ADVANCE(591); + if (lookahead == 8852) ADVANCE(593); if (lookahead == 8853) ADVANCE(690); - if (lookahead == 8855) ADVANCE(619); - if (lookahead == 8857) ADVANCE(668); - if (lookahead == 8858) ADVANCE(583); - if (lookahead == 8859) ADVANCE(585); + if (lookahead == 8855) ADVANCE(621); + if (lookahead == 8857) ADVANCE(669); + if (lookahead == 8858) ADVANCE(585); + if (lookahead == 8859) ADVANCE(587); if (lookahead == 8860) ADVANCE(692); - if (lookahead == 8861) ADVANCE(587); + if (lookahead == 8861) ADVANCE(589); if (lookahead == 8862) ADVANCE(686); - if (lookahead == 8863) ADVANCE(595); + if (lookahead == 8863) ADVANCE(597); if (lookahead == 8864) ADVANCE(688); - if (lookahead == 8865) ADVANCE(601); - if (lookahead == 8866) ADVANCE(569); - if (lookahead == 8900) ADVANCE(638); + if (lookahead == 8865) ADVANCE(603); + if (lookahead == 8866) ADVANCE(571); + if (lookahead == 8900) ADVANCE(640); if (lookahead == 8901) ADVANCE(671); - if (lookahead == 8943) ADVANCE(575); + if (lookahead == 8943) ADVANCE(577); if (lookahead == 8962) ADVANCE(717); - if (lookahead == 8968) ADVANCE(531); - if (lookahead == 8970) ADVANCE(529); - if (lookahead == 8981) ADVANCE(615); - if (lookahead == 9013) ADVANCE(523); - if (lookahead == 9033) ADVANCE(577); - if (lookahead == 9039) ADVANCE(579); - if (lookahead == 9046) ADVANCE(581); - if (lookahead == 9048) ADVANCE(675); + if (lookahead == 8968) ADVANCE(533); + if (lookahead == 8970) ADVANCE(531); + if (lookahead == 8981) ADVANCE(617); + if (lookahead == 9013) ADVANCE(525); + if (lookahead == 9033) ADVANCE(579); + if (lookahead == 9039) ADVANCE(581); + if (lookahead == 9046) ADVANCE(583); + if (lookahead == 9048) ADVANCE(674); if (lookahead == 9051) ADVANCE(716); if (lookahead == 9052) ADVANCE(700); if (lookahead == 9059) ADVANCE(709); - if (lookahead == 9060) ADVANCE(621); - if (lookahead == 9061) ADVANCE(665); - if (lookahead == 9099) ADVANCE(624); - if (lookahead == 9633) ADVANCE(589); - if (lookahead == 9651) ADVANCE(565); - if (lookahead == 9661) ADVANCE(613); - if (lookahead == 9675) ADVANCE(527); - if (lookahead == 9707) ADVANCE(611); + if (lookahead == 9060) ADVANCE(623); + if (lookahead == 9061) ADVANCE(667); + if (lookahead == 9099) ADVANCE(626); + if (lookahead == 9633) ADVANCE(591); + if (lookahead == 9651) ADVANCE(567); + if (lookahead == 9661) ADVANCE(615); + if (lookahead == 9675) ADVANCE(529); + if (lookahead == 9707) ADVANCE(613); if (lookahead == 9715) ADVANCE(711); - if (lookahead == 9727) ADVANCE(551); - if (lookahead == 9837) ADVANCE(573); - if (lookahead == 9858) ADVANCE(627); + if (lookahead == 9727) ADVANCE(553); + if (lookahead == 9837) ADVANCE(575); + if (lookahead == 9858) ADVANCE(629); if (lookahead == 10085) ADVANCE(712); - if (lookahead == 10204) ADVANCE(673); - if (lookahead == 10747) ADVANCE(563); + if (lookahead == 10204) ADVANCE(672); + if (lookahead == 10747) ADVANCE(565); if (lookahead == 11034) ADVANCE(704); - if (lookahead == 11822) ADVANCE(633); + if (lookahead == 11822) ADVANCE(635); if (lookahead == '\t' || lookahead == ' ') ADVANCE(719); - if (('h' <= lookahead && lookahead <= 'z')) ADVANCE(400); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(222); - if (('B' <= lookahead && lookahead <= 'Z')) ADVANCE(401); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(238); + if (('h' <= lookahead && lookahead <= 'z')) ADVANCE(402); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(223); + if (('B' <= lookahead && lookahead <= 'Z')) ADVANCE(403); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(239); END_STATE(); - case 220: - if (eof) ADVANCE(221); + case 221: + if (eof) ADVANCE(222); if (lookahead == '\n') ADVANCE(720); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(486); - if (lookahead == ')') ADVANCE(489); - if (lookahead == '_') ADVANCE(494); - if (lookahead == '|') ADVANCE(235); + if (lookahead == '#') ADVANCE(488); + if (lookahead == ')') ADVANCE(491); + if (lookahead == '_') ADVANCE(496); + if (lookahead == '|') ADVANCE(236); if (lookahead == '\t' || lookahead == ' ') ADVANCE(719); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(236); - END_STATE(); - case 221: - ACCEPT_TOKEN(ts_builtin_sym_end); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(237); END_STATE(); case 222: - ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '.') ADVANCE(211); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(209); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(222); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 223: ACCEPT_TOKEN(aux_sym_number_token1); + if (lookahead == '.') ADVANCE(212); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(209); + lookahead == 'e') ADVANCE(210); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(223); END_STATE(); case 224: ACCEPT_TOKEN(aux_sym_number_token1); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(210); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(224); END_STATE(); case 225: + ACCEPT_TOKEN(aux_sym_number_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(225); + END_STATE(); + case 226: ACCEPT_TOKEN(anon_sym_os); - if (lookahead == '!') ADVANCE(239); + if (lookahead == '!') ADVANCE(240); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(405); END_STATE(); - case 226: + case 227: ACCEPT_TOKEN(anon_sym_Family); - if (lookahead == '!') ADVANCE(239); + if (lookahead == '!') ADVANCE(240); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); END_STATE(); - case 227: + case 228: ACCEPT_TOKEN(anon_sym_Arch); - if (lookahead == '!') ADVANCE(239); + if (lookahead == '!') ADVANCE(240); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); END_STATE(); - case 228: + case 229: ACCEPT_TOKEN(anon_sym_ExeExt); - if (lookahead == '!') ADVANCE(239); + if (lookahead == '!') ADVANCE(240); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); END_STATE(); - case 229: + case 230: ACCEPT_TOKEN(anon_sym_PllExt); - if (lookahead == '!') ADVANCE(239); + if (lookahead == '!') ADVANCE(240); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); END_STATE(); - case 230: + case 231: ACCEPT_TOKEN(anon_sym_Sep); - if (lookahead == '!') ADVANCE(239); + if (lookahead == '!') ADVANCE(240); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); END_STATE(); - case 231: + case 232: ACCEPT_TOKEN(aux_sym_character_token1); END_STATE(); - case 232: + case 233: ACCEPT_TOKEN(sym_string); END_STATE(); - case 233: + case 234: ACCEPT_TOKEN(sym_string); - if (lookahead == '"') ADVANCE(232); + if (lookahead == '"') ADVANCE(233); if (lookahead == '\\') ADVANCE(8); if (lookahead != 0) ADVANCE(7); END_STATE(); - case 234: + case 235: ACCEPT_TOKEN(sym_multiLineString); if (lookahead != 0 && - lookahead != '\n') ADVANCE(234); - END_STATE(); - case 235: - ACCEPT_TOKEN(anon_sym_PIPE); + lookahead != '\n') ADVANCE(235); END_STATE(); case 236: - ACCEPT_TOKEN(aux_sym_signature_token1); - if (lookahead == '.') ADVANCE(212); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(236); + ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); case 237: ACCEPT_TOKEN(aux_sym_signature_token1); + if (lookahead == '.') ADVANCE(213); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(237); END_STATE(); case 238: - ACCEPT_TOKEN(sym_identifier); + ACCEPT_TOKEN(aux_sym_signature_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(238); END_STATE(); case 239: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); END_STATE(); case 240: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'E') ADVANCE(394); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + if (lookahead == '!') ADVANCE(240); END_STATE(); case 241: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'E') ADVANCE(395); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'E') ADVANCE(396); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); END_STATE(); case 242: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'N') ADVANCE(506); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'E') ADVANCE(397); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); END_STATE(); case 243: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'P') ADVANCE(372); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'N') ADVANCE(508); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); END_STATE(); case 244: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'a') ADVANCE(337); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'P') ADVANCE(375); if (('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); END_STATE(); case 245: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'a') ADVANCE(242); - if (lookahead == 'u') ADVANCE(333); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'a') ADVANCE(338); if (('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(403); END_STATE(); case 246: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'a') ADVANCE(670); - if (lookahead == 'e') ADVANCE(343); - if (lookahead == 'r') ADVANCE(363); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'a') ADVANCE(243); + if (lookahead == 'u') ADVANCE(334); if (('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(399); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(403); END_STATE(); case 247: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'a') ADVANCE(278); - if (lookahead == 'i') ADVANCE(499); - if (lookahead == 'o') ADVANCE(391); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'a') ADVANCE(279); + if (lookahead == 'i') ADVANCE(501); + if (lookahead == 'o') ADVANCE(393); if (('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(399); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(401); END_STATE(); case 248: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'a') ADVANCE(274); - if (lookahead == 'r') ADVANCE(265); - if (lookahead == 'y') ADVANCE(366); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'a') ADVANCE(276); + if (lookahead == 'r') ADVANCE(267); + if (lookahead == 'y') ADVANCE(369); if (('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(399); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(401); END_STATE(); case 249: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'a') ADVANCE(451); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'a') ADVANCE(454); if (('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(403); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(405); END_STATE(); case 250: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'a') ADVANCE(411); - if (lookahead == 'e') ADVANCE(404); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'a') ADVANCE(413); + if (lookahead == 'e') ADVANCE(406); if (('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(403); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(405); END_STATE(); case 251: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'a') ADVANCE(497); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'a') ADVANCE(499); if (('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(403); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(405); END_STATE(); case 252: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'a') ADVANCE(484); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'a') ADVANCE(486); if (('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(403); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(405); END_STATE(); case 253: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'a') ADVANCE(331); - if (lookahead == 'i') ADVANCE(349); - if (lookahead == 'l') ADVANCE(362); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'a') ADVANCE(332); + if (lookahead == 'i') ADVANCE(350); + if (lookahead == 'l') ADVANCE(363); if (('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(239); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(240); END_STATE(); case 254: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'a') ADVANCE(388); - if (lookahead == 'e') ADVANCE(336); - if (lookahead == 'i') ADVANCE(353); - if (lookahead == 'o') ADVANCE(290); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'a') ADVANCE(390); + if (lookahead == 'e') ADVANCE(337); + if (lookahead == 'i') ADVANCE(354); + if (lookahead == 'o') ADVANCE(291); if (('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(239); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(240); END_STATE(); case 255: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'a') ADVANCE(373); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'a') ADVANCE(376); if (lookahead == 'i') ADVANCE(281); - if (lookahead == 'o') ADVANCE(392); + if (lookahead == 'o') ADVANCE(394); if (('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(239); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(240); END_STATE(); case 256: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'a') ADVANCE(311); - if (lookahead == 'r') ADVANCE(268); - if (lookahead == 'y') ADVANCE(367); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'a') ADVANCE(312); + if (lookahead == 'r') ADVANCE(270); + if (lookahead == 'y') ADVANCE(370); if (('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(239); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(240); END_STATE(); case 257: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'a') ADVANCE(387); - if (lookahead == 'e') ADVANCE(335); - if (lookahead == 'i') ADVANCE(352); - if (lookahead == 'o') ADVANCE(289); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'a') ADVANCE(368); + if (lookahead == 'e') ADVANCE(344); + if (lookahead == 'r') ADVANCE(364); if (('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(399); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(401); END_STATE(); case 258: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'a') ADVANCE(329); - if (lookahead == 'i') ADVANCE(330); - if (lookahead == 'l') ADVANCE(357); - if (lookahead == 'o') ADVANCE(328); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'a') ADVANCE(389); + if (lookahead == 'e') ADVANCE(336); + if (lookahead == 'i') ADVANCE(353); + if (lookahead == 'o') ADVANCE(290); if (('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(399); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(401); END_STATE(); case 259: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'a') ADVANCE(322); - if (lookahead == 'h') ADVANCE(297); - if (lookahead == 'i') ADVANCE(350); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'a') ADVANCE(330); + if (lookahead == 'i') ADVANCE(331); + if (lookahead == 'l') ADVANCE(358); + if (lookahead == 'o') ADVANCE(329); if (('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(399); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(401); END_STATE(); case 260: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'a') ADVANCE(345); - if (lookahead == 'e') ADVANCE(277); - if (lookahead == 'i') ADVANCE(379); - if (lookahead == 'o') ADVANCE(283); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'a') ADVANCE(322); + if (lookahead == 'h') ADVANCE(298); + if (lookahead == 'i') ADVANCE(351); if (('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(399); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(401); END_STATE(); case 261: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'a') ADVANCE(325); - if (lookahead == 'h') ADVANCE(308); - if (lookahead == 'i') ADVANCE(351); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'a') ADVANCE(346); + if (lookahead == 'e') ADVANCE(262); + if (lookahead == 'i') ADVANCE(381); + if (lookahead == 'o') ADVANCE(284); if (('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(239); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(401); END_STATE(); case 262: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'a') ADVANCE(347); - if (lookahead == 'e') ADVANCE(282); - if (lookahead == 'i') ADVANCE(381); - if (lookahead == 'o') ADVANCE(284); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'a') ADVANCE(415); + if (lookahead == 'c') ADVANCE(485); + if (lookahead == 'd') ADVANCE(482); + if (lookahead == 'g') ADVANCE(429); + if (lookahead == 'p') ADVANCE(428); + if (lookahead == 's') ADVANCE(441); + if (lookahead == 'v') ADVANCE(433); if (('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(239); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(405); END_STATE(); case 263: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'a') ADVANCE(454); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'a') ADVANCE(326); + if (lookahead == 'h') ADVANCE(309); + if (lookahead == 'i') ADVANCE(352); if (('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(403); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(240); END_STATE(); case 264: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'a') ADVANCE(466); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'a') ADVANCE(348); + if (lookahead == 'e') ADVANCE(282); + if (lookahead == 'i') ADVANCE(383); + if (lookahead == 'o') ADVANCE(285); if (('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(403); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(240); END_STATE(); case 265: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); + if (lookahead == '!') ADVANCE(240); if (lookahead == 'a') ADVANCE(457); - if (lookahead == 'i') ADVANCE(408); - if (lookahead == 'y') ADVANCE(708); if (('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(403); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(405); END_STATE(); case 266: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'a') ADVANCE(113); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'a') ADVANCE(469); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(405); END_STATE(); case 267: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'a') ADVANCE(162); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'a') ADVANCE(460); + if (lookahead == 'i') ADVANCE(410); + if (lookahead == 'y') ADVANCE(708); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(405); END_STATE(); case 268: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'a') ADVANCE(121); - if (lookahead == 'y') ADVANCE(152); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'a') ADVANCE(114); END_STATE(); case 269: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'a') ADVANCE(472); - if (('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(403); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'a') ADVANCE(163); END_STATE(); case 270: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'a') ADVANCE(141); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'a') ADVANCE(122); + if (lookahead == 'y') ADVANCE(153); END_STATE(); case 271: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'b') ADVANCE(646); - if (lookahead == 's') ADVANCE(376); - if (lookahead == 't') ADVANCE(249); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'a') ADVANCE(475); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(399); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(405); END_STATE(); case 272: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'b') ADVANCE(647); - if (lookahead == 's') ADVANCE(380); - if (lookahead == 't') ADVANCE(266); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(239); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'a') ADVANCE(142); END_STATE(); case 273: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'b') ADVANCE(460); - if (lookahead == 'd') ADVANCE(431); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'b') ADVANCE(648); + if (lookahead == 's') ADVANCE(379); + if (lookahead == 't') ADVANCE(249); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); END_STATE(); case 274: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'b') ADVANCE(450); - if (lookahead == 'g') ADVANCE(630); - if (lookahead == 'k') ADVANCE(423); - if (lookahead == 'u') ADVANCE(501); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'b') ADVANCE(649); + if (lookahead == 's') ADVANCE(382); + if (lookahead == 't') ADVANCE(268); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(240); END_STATE(); case 275: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'b') ADVANCE(130); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'b') ADVANCE(463); + if (lookahead == 'd') ADVANCE(434); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(405); END_STATE(); case 276: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'c') ADVANCE(316); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'b') ADVANCE(453); + if (lookahead == 'g') ADVANCE(632); + if (lookahead == 'k') ADVANCE(426); + if (lookahead == 'u') ADVANCE(503); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(405); END_STATE(); case 277: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'c') ADVANCE(483); - if (lookahead == 'd') ADVANCE(480); - if (lookahead == 'g') ADVANCE(426); - if (lookahead == 'p') ADVANCE(425); - if (lookahead == 's') ADVANCE(438); - if (lookahead == 'v') ADVANCE(430); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'b') ADVANCE(131); END_STATE(); case 278: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'c') ADVANCE(443); - if (lookahead == 'r') ADVANCE(473); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'c') ADVANCE(317); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); END_STATE(); case 279: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'c') ADVANCE(377); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'c') ADVANCE(446); + if (lookahead == 'r') ADVANCE(476); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(405); END_STATE(); case 280: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'c') ADVANCE(437); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'c') ADVANCE(440); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(405); END_STATE(); case 281: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'c') ADVANCE(94); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'c') ADVANCE(95); END_STATE(); case 282: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'c') ADVANCE(199); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'c') ADVANCE(200); if (lookahead == 'g') ADVANCE(62); - if (lookahead == 's') ADVANCE(81); + if (lookahead == 's') ADVANCE(82); if (lookahead == 'v') ADVANCE(67); END_STATE(); case 283: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'c') ADVANCE(445); - if (lookahead == 't') ADVANCE(405); - if (lookahead == 'u') ADVANCE(453); - if (lookahead == 'w') ADVANCE(471); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'c') ADVANCE(380); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); END_STATE(); case 284: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'c') ADVANCE(95); - if (lookahead == 't') ADVANCE(14); - if (lookahead == 'u') ADVANCE(115); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'c') ADVANCE(448); + if (lookahead == 't') ADVANCE(407); + if (lookahead == 'u') ADVANCE(456); + if (lookahead == 'w') ADVANCE(474); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(405); END_STATE(); case 285: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'c') ADVANCE(263); - if (lookahead == 'e') ADVANCE(650); - if (lookahead == 'h') ADVANCE(264); - if (lookahead == 'i') ADVANCE(313); - if (lookahead == 'p') ADVANCE(252); - if (lookahead == 'q') ADVANCE(370); - if (lookahead == 'u') ADVANCE(369); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(399); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'c') ADVANCE(96); + if (lookahead == 't') ADVANCE(14); + if (lookahead == 'u') ADVANCE(116); END_STATE(); case 286: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'd') ADVANCE(513); - if (lookahead == 'n') ADVANCE(288); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'c') ADVANCE(265); + if (lookahead == 'e') ADVANCE(652); + if (lookahead == 'h') ADVANCE(266); + if (lookahead == 'i') ADVANCE(314); + if (lookahead == 'p') ADVANCE(252); + if (lookahead == 'q') ADVANCE(373); + if (lookahead == 'u') ADVANCE(372); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(399); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); END_STATE(); case 287: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'd') ADVANCE(514); - if (lookahead == 'n') ADVANCE(291); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'd') ADVANCE(515); + if (lookahead == 'n') ADVANCE(289); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(239); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); END_STATE(); case 288: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'd') ADVANCE(420); - if (lookahead == 'f') ADVANCE(439); - if (lookahead == 'v') ADVANCE(432); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'd') ADVANCE(516); + if (lookahead == 'n') ADVANCE(292); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(240); END_STATE(); case 289: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'd') ADVANCE(482); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'd') ADVANCE(423); + if (lookahead == 'f') ADVANCE(442); + if (lookahead == 'v') ADVANCE(435); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(405); END_STATE(); case 290: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'd') ADVANCE(195); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'd') ADVANCE(484); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(405); END_STATE(); case 291: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'd') ADVANCE(38); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'd') ADVANCE(196); END_STATE(); case 292: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'e') ADVANCE(365); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'd') ADVANCE(38); END_STATE(); case 293: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'e') ADVANCE(317); - if (lookahead == 'l') ADVANCE(269); - if (lookahead == 'o') ADVANCE(334); - if (lookahead == 'r') ADVANCE(364); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'e') ADVANCE(366); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(399); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); END_STATE(); case 294: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'e') ADVANCE(642); - if (lookahead == 'i') ADVANCE(667); - if (lookahead == 'r') ADVANCE(360); - if (lookahead == 'u') ADVANCE(338); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'e') ADVANCE(318); + if (lookahead == 'l') ADVANCE(271); + if (lookahead == 'o') ADVANCE(335); + if (lookahead == 'r') ADVANCE(365); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(399); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); END_STATE(); case 295: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'e') ADVANCE(344); - if (lookahead == 'o') ADVANCE(312); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'e') ADVANCE(644); + if (lookahead == 'i') ADVANCE(367); + if (lookahead == 'r') ADVANCE(361); + if (lookahead == 'u') ADVANCE(339); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(399); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); END_STATE(); case 296: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'e') ADVANCE(240); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'e') ADVANCE(345); + if (lookahead == 'o') ADVANCE(313); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); END_STATE(); case 297: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'e') ADVANCE(467); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'e') ADVANCE(241); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); END_STATE(); case 298: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'e') ADVANCE(323); - if (lookahead == 'l') ADVANCE(267); - if (lookahead == 'o') ADVANCE(390); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'e') ADVANCE(470); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(239); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(405); END_STATE(); case 299: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'e') ADVANCE(643); - if (lookahead == 'r') ADVANCE(361); - if (lookahead == 'u') ADVANCE(339); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'e') ADVANCE(324); + if (lookahead == 'l') ADVANCE(269); + if (lookahead == 'o') ADVANCE(392); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(239); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(240); END_STATE(); case 300: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'e') ADVANCE(342); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'e') ADVANCE(645); + if (lookahead == 'r') ADVANCE(362); + if (lookahead == 'u') ADVANCE(340); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(239); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(240); END_STATE(); case 301: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'e') ADVANCE(651); - if (lookahead == 'h') ADVANCE(270); - if (lookahead == 'i') ADVANCE(315); - if (lookahead == 'q') ADVANCE(374); - if (lookahead == 'u') ADVANCE(371); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'e') ADVANCE(343); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(239); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(240); END_STATE(); case 302: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'e') ADVANCE(307); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'e') ADVANCE(653); + if (lookahead == 'h') ADVANCE(272); + if (lookahead == 'i') ADVANCE(316); + if (lookahead == 'q') ADVANCE(377); + if (lookahead == 'u') ADVANCE(374); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(239); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(240); END_STATE(); case 303: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'e') ADVANCE(348); - if (lookahead == 'o') ADVANCE(314); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'e') ADVANCE(308); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(239); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(240); END_STATE(); case 304: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'e') ADVANCE(305); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'e') ADVANCE(349); + if (lookahead == 'o') ADVANCE(315); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(399); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(240); END_STATE(); case 305: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'e') ADVANCE(464); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'e') ADVANCE(306); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); END_STATE(); case 306: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'e') ADVANCE(12); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'e') ADVANCE(467); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(405); END_STATE(); case 307: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'e') ADVANCE(136); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'e') ADVANCE(12); END_STATE(); case 308: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'e') ADVANCE(153); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'e') ADVANCE(137); END_STATE(); case 309: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'f') ADVANCE(636); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'e') ADVANCE(154); END_STATE(); case 310: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'f') ADVANCE(636); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'f') ADVANCE(638); END_STATE(); case 311: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'g') ADVANCE(630); - if (lookahead == 'k') ADVANCE(41); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'f') ADVANCE(638); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(405); END_STATE(); case 312: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'g') ADVANCE(406); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'g') ADVANCE(632); + if (lookahead == 'k') ADVANCE(41); END_STATE(); case 313: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'g') ADVANCE(455); - if (lookahead == 'n') ADVANCE(422); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'g') ADVANCE(408); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(405); END_STATE(); case 314: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'g') ADVANCE(17); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'g') ADVANCE(458); + if (lookahead == 'n') ADVANCE(425); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(405); END_STATE(); case 315: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'g') ADVANCE(116); - if (lookahead == 'n') ADVANCE(40); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'g') ADVANCE(17); END_STATE(); case 316: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'h') ADVANCE(227); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'g') ADVANCE(117); + if (lookahead == 'n') ADVANCE(40); END_STATE(); case 317: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'i') ADVANCE(446); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'h') ADVANCE(228); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); END_STATE(); case 318: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'i') ADVANCE(389); - if (lookahead == 'o') ADVANCE(393); - if (lookahead == 'r') ADVANCE(306); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'i') ADVANCE(449); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(239); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(405); END_STATE(); case 319: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'i') ADVANCE(341); - if (lookahead == 'o') ADVANCE(382); - if (lookahead == 'r') ADVANCE(250); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'i') ADVANCE(391); + if (lookahead == 'o') ADVANCE(395); + if (lookahead == 'r') ADVANCE(307); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(399); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(240); END_STATE(); case 320: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'i') ADVANCE(452); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'i') ADVANCE(342); + if (lookahead == 'o') ADVANCE(384); + if (lookahead == 'r') ADVANCE(250); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); END_STATE(); case 321: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'i') ADVANCE(326); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'i') ADVANCE(455); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(405); END_STATE(); case 322: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'i') ADVANCE(477); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'i') ADVANCE(479); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(405); END_STATE(); case 323: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'i') ADVANCE(98); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'i') ADVANCE(327); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); END_STATE(); case 324: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'i') ADVANCE(114); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'i') ADVANCE(99); END_STATE(); case 325: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'i') ADVANCE(169); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'i') ADVANCE(115); END_STATE(); case 326: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'l') ADVANCE(397); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'i') ADVANCE(170); END_STATE(); case 327: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'l') ADVANCE(332); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'l') ADVANCE(399); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); END_STATE(); case 328: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'l') ADVANCE(415); - if (lookahead == 'r') ADVANCE(442); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'l') ADVANCE(333); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); END_STATE(); case 329: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'l') ADVANCE(448); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'l') ADVANCE(418); + if (lookahead == 'r') ADVANCE(445); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(405); END_STATE(); case 330: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'l') ADVANCE(449); - if (lookahead == 'n') ADVANCE(414); - if (lookahead == 'r') ADVANCE(470); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'l') ADVANCE(451); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(405); END_STATE(); case 331: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'l') ADVANCE(100); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'l') ADVANCE(452); + if (lookahead == 'n') ADVANCE(417); + if (lookahead == 'r') ADVANCE(473); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(405); END_STATE(); case 332: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'l') ADVANCE(241); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'l') ADVANCE(101); END_STATE(); case 333: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'm') ADVANCE(243); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'l') ADVANCE(242); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); END_STATE(); case 334: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'm') ADVANCE(410); - if (lookahead == 'u') ADVANCE(465); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'm') ADVANCE(244); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); END_STATE(); case 335: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'm') ADVANCE(407); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'm') ADVANCE(412); + if (lookahead == 'u') ADVANCE(468); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(405); END_STATE(); case 336: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'm') ADVANCE(22); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'm') ADVANCE(409); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(405); END_STATE(); case 337: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'm') ADVANCE(321); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'm') ADVANCE(22); END_STATE(); case 338: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'm') ADVANCE(463); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'm') ADVANCE(323); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); END_STATE(); case 339: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'm') ADVANCE(135); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'm') ADVANCE(466); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(405); END_STATE(); case 340: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'n') ADVANCE(273); - if (lookahead == 't') ADVANCE(310); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(399); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'm') ADVANCE(136); END_STATE(); case 341: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'n') ADVANCE(413); - if (lookahead == 't') ADVANCE(469); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'n') ADVANCE(275); + if (lookahead == 't') ADVANCE(311); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); END_STATE(); case 342: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'n') ADVANCE(628); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'n') ADVANCE(416); + if (lookahead == 't') ADVANCE(472); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(405); END_STATE(); case 343: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'n') ADVANCE(628); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'n') ADVANCE(630); END_STATE(); case 344: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'n') ADVANCE(434); - if (lookahead == 'v') ADVANCE(428); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'n') ADVANCE(630); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(405); END_STATE(); case 345: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'n') ADVANCE(416); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'n') ADVANCE(437); + if (lookahead == 'v') ADVANCE(431); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(405); END_STATE(); case 346: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'n') ADVANCE(275); - if (lookahead == 't') ADVANCE(309); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'n') ADVANCE(419); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(239); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(405); END_STATE(); case 347: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'n') ADVANCE(32); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'n') ADVANCE(277); + if (lookahead == 't') ADVANCE(310); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(240); END_STATE(); case 348: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'n') ADVANCE(75); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'n') ADVANCE(32); END_STATE(); case 349: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'n') ADVANCE(31); - if (lookahead == 'r') ADVANCE(157); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'n') ADVANCE(75); END_STATE(); case 350: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'n') ADVANCE(418); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'n') ADVANCE(31); + if (lookahead == 'r') ADVANCE(158); END_STATE(); case 351: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'n') ADVANCE(36); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'n') ADVANCE(421); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(405); END_STATE(); case 352: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'n') ADVANCE(441); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'n') ADVANCE(36); END_STATE(); case 353: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'n') ADVANCE(93); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'n') ADVANCE(444); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(405); END_STATE(); case 354: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'o') ADVANCE(384); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(399); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'n') ADVANCE(94); END_STATE(); case 355: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'o') ADVANCE(383); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'o') ADVANCE(386); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(239); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); END_STATE(); case 356: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'o') ADVANCE(320); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'o') ADVANCE(385); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(399); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(240); END_STATE(); case 357: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'o') ADVANCE(459); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'o') ADVANCE(321); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); END_STATE(); case 358: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'o') ADVANCE(324); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'o') ADVANCE(462); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(239); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(405); END_STATE(); case 359: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'o') ADVANCE(279); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'o') ADVANCE(325); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(240); END_STATE(); case 360: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'o') ADVANCE(462); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'o') ADVANCE(283); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); END_STATE(); case 361: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'o') ADVANCE(134); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'o') ADVANCE(465); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(405); END_STATE(); case 362: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'o') ADVANCE(129); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'o') ADVANCE(135); END_STATE(); case 363: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'o') ADVANCE(481); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'o') ADVANCE(130); END_STATE(); case 364: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'o') ADVANCE(474); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'o') ADVANCE(483); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(405); END_STATE(); case 365: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'p') ADVANCE(230); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'o') ADVANCE(477); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(405); END_STATE(); case 366: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'p') ADVANCE(424); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'p') ADVANCE(231); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); END_STATE(); case 367: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'p') ADVANCE(42); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'p') ADVANCE(668); + if (lookahead == 's') ADVANCE(480); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(405); END_STATE(); case 368: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'r') ADVANCE(276); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'p') ADVANCE(670); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(405); END_STATE(); case 369: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'r') ADVANCE(433); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'p') ADVANCE(427); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(405); END_STATE(); case 370: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'r') ADVANCE(476); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'p') ADVANCE(42); END_STATE(); case 371: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'r') ADVANCE(73); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'r') ADVANCE(278); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); END_STATE(); case 372: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'r') ADVANCE(359); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'r') ADVANCE(436); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(405); END_STATE(); case 373: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'r') ADVANCE(163); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'r') ADVANCE(478); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(405); END_STATE(); case 374: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'r') ADVANCE(168); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'r') ADVANCE(73); END_STATE(); case 375: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 's') ADVANCE(225); - if (lookahead == 'u') ADVANCE(378); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'r') ADVANCE(360); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(399); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); END_STATE(); case 376: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 's') ADVANCE(419); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'r') ADVANCE(164); END_STATE(); case 377: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 's') ADVANCE(507); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'r') ADVANCE(169); END_STATE(); case 378: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 's') ADVANCE(475); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 's') ADVANCE(226); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); END_STATE(); case 379: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 's') ADVANCE(421); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 's') ADVANCE(422); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(405); END_STATE(); case 380: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 's') ADVANCE(37); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 's') ADVANCE(509); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); END_STATE(); case 381: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 's') ADVANCE(39); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 's') ADVANCE(424); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(405); END_STATE(); case 382: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 't') ADVANCE(435); - if (lookahead == 'x') ADVANCE(588); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 's') ADVANCE(37); END_STATE(); case 383: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 't') ADVANCE(516); - if (lookahead == 'w') ADVANCE(631); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 's') ADVANCE(39); END_STATE(); case 384: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 't') ADVANCE(516); - if (lookahead == 'w') ADVANCE(631); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 't') ADVANCE(438); + if (lookahead == 'x') ADVANCE(590); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(405); END_STATE(); case 385: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 't') ADVANCE(228); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 't') ADVANCE(518); + if (lookahead == 'w') ADVANCE(633); END_STATE(); case 386: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 't') ADVANCE(229); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 't') ADVANCE(518); + if (lookahead == 'w') ADVANCE(633); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(405); END_STATE(); case 387: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 't') ADVANCE(412); - if (lookahead == 'x') ADVANCE(440); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 't') ADVANCE(229); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); END_STATE(); case 388: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 't') ADVANCE(25); - if (lookahead == 'x') ADVANCE(82); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 't') ADVANCE(230); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); END_STATE(); case 389: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 't') ADVANCE(156); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 't') ADVANCE(414); + if (lookahead == 'x') ADVANCE(443); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(405); END_STATE(); case 390: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'u') ADVANCE(138); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 't') ADVANCE(25); + if (lookahead == 'x') ADVANCE(83); END_STATE(); case 391: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'w') ADVANCE(429); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 't') ADVANCE(157); END_STATE(); case 392: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'w') ADVANCE(66); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'u') ADVANCE(139); END_STATE(); case 393: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'x') ADVANCE(588); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'w') ADVANCE(432); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(405); END_STATE(); case 394: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'x') ADVANCE(385); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'w') ADVANCE(66); END_STATE(); case 395: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'x') ADVANCE(386); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'x') ADVANCE(590); END_STATE(); case 396: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'x') ADVANCE(296); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'x') ADVANCE(387); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); END_STATE(); case 397: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'y') ADVANCE(226); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'x') ADVANCE(388); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); END_STATE(); case 398: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'x') ADVANCE(297); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(239); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); END_STATE(); case 399: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'y') ADVANCE(227); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); END_STATE(); case 400: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); + if (lookahead == '!') ADVANCE(240); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(399); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(240); END_STATE(); case 401: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(239); + if (lookahead == '!') ADVANCE(240); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(405); END_STATE(); case 402: ACCEPT_TOKEN(sym_identifier); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(486); + if (lookahead == '!') ADVANCE(240); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); END_STATE(); case 403: - ACCEPT_TOKEN(sym_identifier_deprecated); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '!') ADVANCE(240); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); END_STATE(); case 404: - ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'a') ADVANCE(96); + ACCEPT_TOKEN(sym_identifier); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(488); END_STATE(); case 405: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'a') ADVANCE(182); END_STATE(); case 406: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'a') ADVANCE(154); + if (lookahead == 'a') ADVANCE(97); END_STATE(); case 407: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'b') ADVANCE(69); + if (lookahead == 'a') ADVANCE(183); END_STATE(); case 408: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'b') ADVANCE(196); + if (lookahead == 'a') ADVANCE(155); END_STATE(); case 409: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'b') ADVANCE(64); + if (lookahead == 'b') ADVANCE(69); END_STATE(); case 410: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'b') ADVANCE(86); + if (lookahead == 'b') ADVANCE(197); END_STATE(); case 411: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'c') ADVANCE(97); + if (lookahead == 'b') ADVANCE(64); END_STATE(); case 412: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'c') ADVANCE(78); + if (lookahead == 'b') ADVANCE(87); END_STATE(); case 413: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'd') ADVANCE(705); + if (lookahead == 'c') ADVANCE(98); END_STATE(); case 414: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'd') ADVANCE(614); + if (lookahead == 'c') ADVANCE(78); END_STATE(); case 415: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'd') ADVANCE(681); + if (lookahead == 'c') ADVANCE(79); END_STATE(); case 416: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'd') ADVANCE(127); - if (lookahead == 'g') ADVANCE(44); + if (lookahead == 'd') ADVANCE(705); END_STATE(); case 417: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'd') ADVANCE(653); + if (lookahead == 'd') ADVANCE(616); END_STATE(); case 418: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'd') ADVANCE(126); + if (lookahead == 'd') ADVANCE(681); END_STATE(); case 419: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'e') ADVANCE(150); + if (lookahead == 'd') ADVANCE(128); + if (lookahead == 'g') ADVANCE(44); END_STATE(); case 420: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'e') ADVANCE(205); + if (lookahead == 'd') ADVANCE(655); END_STATE(); case 421: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'e') ADVANCE(578); + if (lookahead == 'd') ADVANCE(127); END_STATE(); case 422: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'e') ADVANCE(526); + if (lookahead == 'e') ADVANCE(151); END_STATE(); case 423: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'e') ADVANCE(604); + if (lookahead == 'e') ADVANCE(206); END_STATE(); case 424: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'e') ADVANCE(632); + if (lookahead == 'e') ADVANCE(580); END_STATE(); case 425: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'e') ADVANCE(15); + if (lookahead == 'e') ADVANCE(528); END_STATE(); case 426: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'e') ADVANCE(203); + if (lookahead == 'e') ADVANCE(606); END_STATE(); case 427: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'e') ADVANCE(27); + if (lookahead == 'e') ADVANCE(634); END_STATE(); case 428: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'e') ADVANCE(101); + if (lookahead == 'e') ADVANCE(15); END_STATE(); case 429: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'e') ADVANCE(145); + if (lookahead == 'e') ADVANCE(204); END_STATE(); case 430: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'e') ADVANCE(149); + if (lookahead == 'e') ADVANCE(27); END_STATE(); case 431: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'e') ADVANCE(146); + if (lookahead == 'e') ADVANCE(102); END_STATE(); case 432: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'e') ADVANCE(151); + if (lookahead == 'e') ADVANCE(146); END_STATE(); case 433: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'f') ADVANCE(16); + if (lookahead == 'e') ADVANCE(150); END_STATE(); case 434: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'g') ADVANCE(177); + if (lookahead == 'e') ADVANCE(147); END_STATE(); case 435: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'h') ADVANCE(693); + if (lookahead == 'e') ADVANCE(152); END_STATE(); case 436: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'h') ADVANCE(13); + if (lookahead == 'f') ADVANCE(16); END_STATE(); case 437: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'h') ADVANCE(660); + if (lookahead == 'g') ADVANCE(179); END_STATE(); case 438: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'h') ADVANCE(18); + if (lookahead == 'h') ADVANCE(693); END_STATE(); case 439: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'i') ADVANCE(124); + if (lookahead == 'h') ADVANCE(13); END_STATE(); case 440: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'i') ADVANCE(111); + if (lookahead == 'h') ADVANCE(662); END_STATE(); case 441: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'i') ADVANCE(112); + if (lookahead == 'h') ADVANCE(18); END_STATE(); case 442: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'k') ADVANCE(697); + if (lookahead == 'i') ADVANCE(125); END_STATE(); case 443: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'k') ADVANCE(677); + if (lookahead == 'i') ADVANCE(112); END_STATE(); case 444: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'k') ADVANCE(600); + if (lookahead == 'i') ADVANCE(113); END_STATE(); case 445: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'k') ADVANCE(637); + if (lookahead == 'k') ADVANCE(697); END_STATE(); case 446: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'l') ADVANCE(85); + if (lookahead == 'k') ADVANCE(676); END_STATE(); case 447: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'l') ADVANCE(629); + if (lookahead == 'k') ADVANCE(602); END_STATE(); case 448: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'l') ADVANCE(580); + if (lookahead == 'k') ADVANCE(639); END_STATE(); case 449: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'l') ADVANCE(703); + if (lookahead == 'l') ADVANCE(86); END_STATE(); case 450: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'l') ADVANCE(46); + if (lookahead == 'l') ADVANCE(631); END_STATE(); case 451: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'n') ADVANCE(76); + if (lookahead == 'l') ADVANCE(582); END_STATE(); case 452: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'n') ADVANCE(596); + if (lookahead == 'l') ADVANCE(703); END_STATE(); case 453: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'n') ADVANCE(34); + if (lookahead == 'l') ADVANCE(46); END_STATE(); case 454: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'n') ADVANCE(658); + if (lookahead == 'n') ADVANCE(76); END_STATE(); case 455: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'n') ADVANCE(518); + if (lookahead == 'n') ADVANCE(598); END_STATE(); case 456: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'n') ADVANCE(188); + if (lookahead == 'n') ADVANCE(34); END_STATE(); case 457: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'n') ADVANCE(165); + if (lookahead == 'n') ADVANCE(660); END_STATE(); case 458: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'o') ADVANCE(106); + if (lookahead == 'n') ADVANCE(520); END_STATE(); case 459: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'o') ADVANCE(144); + if (lookahead == 'n') ADVANCE(189); END_STATE(); case 460: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'o') ADVANCE(204); + if (lookahead == 'n') ADVANCE(166); END_STATE(); case 461: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'p') ADVANCE(641); + if (lookahead == 'o') ADVANCE(107); END_STATE(); case 462: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'p') ADVANCE(606); + if (lookahead == 'o') ADVANCE(145); END_STATE(); case 463: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'p') ADVANCE(634); + if (lookahead == 'o') ADVANCE(205); END_STATE(); case 464: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'p') ADVANCE(612); + if (lookahead == 'p') ADVANCE(643); END_STATE(); case 465: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'p') ADVANCE(105); + if (lookahead == 'p') ADVANCE(608); END_STATE(); case 466: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'p') ADVANCE(45); + if (lookahead == 'p') ADVANCE(636); END_STATE(); case 467: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'r') ADVANCE(47); + if (lookahead == 'p') ADVANCE(614); END_STATE(); case 468: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 's') ADVANCE(158); + if (lookahead == 'p') ADVANCE(106); END_STATE(); case 469: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 's') ADVANCE(574); + if (lookahead == 'p') ADVANCE(45); END_STATE(); case 470: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 's') ADVANCE(170); + if (lookahead == 'r') ADVANCE(47); END_STATE(); case 471: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 's') ADVANCE(662); + if (lookahead == 's') ADVANCE(159); END_STATE(); case 472: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 's') ADVANCE(164); + if (lookahead == 's') ADVANCE(576); END_STATE(); case 473: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 's') ADVANCE(43); - if (lookahead == 't') ADVANCE(89); + if (lookahead == 's') ADVANCE(171); END_STATE(); case 474: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 's') ADVANCE(159); + if (lookahead == 's') ADVANCE(664); END_STATE(); case 475: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 't') ADVANCE(672); + if (lookahead == 's') ADVANCE(165); END_STATE(); case 476: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 't') ADVANCE(524); + if (lookahead == 's') ADVANCE(43); + if (lookahead == 't') ADVANCE(90); END_STATE(); case 477: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 't') ADVANCE(622); + if (lookahead == 's') ADVANCE(160); END_STATE(); case 478: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 't') ADVANCE(148); + if (lookahead == 't') ADVANCE(526); END_STATE(); case 479: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'u') ADVANCE(139); + if (lookahead == 't') ADVANCE(624); END_STATE(); case 480: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'u') ADVANCE(28); + if (lookahead == 't') ADVANCE(149); END_STATE(); case 481: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'u') ADVANCE(137); + if (lookahead == 'u') ADVANCE(140); END_STATE(); case 482: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'u') ADVANCE(102); + if (lookahead == 'u') ADVANCE(28); END_STATE(); case 483: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'v') ADVANCE(654); + if (lookahead == 'u') ADVANCE(138); END_STATE(); case 484: ACCEPT_TOKEN(sym_identifier_deprecated); - if (lookahead == 'w') ADVANCE(117); + if (lookahead == 'u') ADVANCE(103); END_STATE(); case 485: - ACCEPT_TOKEN(sym_system); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(485); + ACCEPT_TOKEN(sym_identifier_deprecated); + if (lookahead == 'v') ADVANCE(656); END_STATE(); case 486: + ACCEPT_TOKEN(sym_identifier_deprecated); + if (lookahead == 'w') ADVANCE(118); + END_STATE(); + case 487: + ACCEPT_TOKEN(sym_system); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(487); + END_STATE(); + case 488: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(486); + lookahead != '\n') ADVANCE(488); END_STATE(); - case 487: + case 489: ACCEPT_TOKEN(sym_tripleMinus); END_STATE(); - case 488: + case 490: ACCEPT_TOKEN(sym_openParen); END_STATE(); - case 489: + case 491: ACCEPT_TOKEN(sym_closeParen); END_STATE(); - case 490: + case 492: ACCEPT_TOKEN(sym_openCurly); END_STATE(); - case 491: + case 493: ACCEPT_TOKEN(sym_closeCurly); END_STATE(); - case 492: + case 494: ACCEPT_TOKEN(sym_openBracket); END_STATE(); - case 493: + case 495: ACCEPT_TOKEN(sym_closeBracket); END_STATE(); - case 494: + case 496: ACCEPT_TOKEN(sym_underscore); END_STATE(); - case 495: + case 497: ACCEPT_TOKEN(sym_leftArrow); END_STATE(); - case 496: + case 498: ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); - case 497: + case 499: ACCEPT_TOKEN(anon_sym_eta); END_STATE(); - case 498: + case 500: ACCEPT_TOKEN(anon_sym_); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(209); + lookahead == 'e') ADVANCE(210); END_STATE(); - case 499: + case 501: ACCEPT_TOKEN(anon_sym_pi); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'c') ADVANCE(444); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'c') ADVANCE(447); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(405); END_STATE(); - case 500: + case 502: ACCEPT_TOKEN(anon_sym_2); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(209); + lookahead == 'e') ADVANCE(210); END_STATE(); - case 501: + case 503: ACCEPT_TOKEN(anon_sym_tau); END_STATE(); - case 502: + case 504: ACCEPT_TOKEN(anon_sym_3); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(209); + lookahead == 'e') ADVANCE(210); END_STATE(); - case 503: + case 505: ACCEPT_TOKEN(anon_sym_infinity); END_STATE(); - case 504: + case 506: ACCEPT_TOKEN(anon_sym_4); END_STATE(); - case 505: + case 507: ACCEPT_TOKEN(anon_sym_e); - if (lookahead == '!') ADVANCE(239); + if (lookahead == '!') ADVANCE(240); if (lookahead == 'a') ADVANCE(280); if (lookahead == 't') ADVANCE(251); if (('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(399); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(401); END_STATE(); - case 506: + case 508: ACCEPT_TOKEN(anon_sym_NaN); - if (lookahead == '!') ADVANCE(239); + if (lookahead == '!') ADVANCE(240); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); END_STATE(); - case 507: + case 509: ACCEPT_TOKEN(anon_sym_NumProcs); - if (lookahead == '!') ADVANCE(239); + if (lookahead == '!') ADVANCE(240); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); END_STATE(); - case 508: + case 510: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 509: + case 511: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 510: + case 512: ACCEPT_TOKEN(anon_sym_5); END_STATE(); - case 511: + case 513: ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); - case 512: + case 514: ACCEPT_TOKEN(anon_sym_identity); END_STATE(); - case 513: + case 515: ACCEPT_TOKEN(anon_sym_id); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'e') ADVANCE(456); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'e') ADVANCE(459); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(405); END_STATE(); - case 514: + case 516: ACCEPT_TOKEN(anon_sym_id); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'e') ADVANCE(120); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'e') ADVANCE(121); END_STATE(); - case 515: + case 517: ACCEPT_TOKEN(anon_sym_6); END_STATE(); - case 516: + case 518: ACCEPT_TOKEN(anon_sym_not); END_STATE(); - case 517: + case 519: ACCEPT_TOKEN(anon_sym_7); END_STATE(); - case 518: + case 520: ACCEPT_TOKEN(anon_sym_sign); END_STATE(); - case 519: + case 521: ACCEPT_TOKEN(anon_sym_8); END_STATE(); - case 520: + case 522: ACCEPT_TOKEN(anon_sym_BQUOTE); END_STATE(); - case 521: + case 523: ACCEPT_TOKEN(anon_sym_9); END_STATE(); - case 522: + case 524: ACCEPT_TOKEN(anon_sym_absolutevalue); END_STATE(); - case 523: + case 525: ACCEPT_TOKEN(anon_sym_10); END_STATE(); - case 524: + case 526: ACCEPT_TOKEN(anon_sym_sqrt); END_STATE(); - case 525: + case 527: ACCEPT_TOKEN(anon_sym_11); END_STATE(); - case 526: + case 528: ACCEPT_TOKEN(anon_sym_sine); END_STATE(); - case 527: + case 529: ACCEPT_TOKEN(anon_sym_12); END_STATE(); - case 528: + case 530: ACCEPT_TOKEN(anon_sym_floor); END_STATE(); - case 529: + case 531: ACCEPT_TOKEN(anon_sym_13); END_STATE(); - case 530: + case 532: ACCEPT_TOKEN(anon_sym_ceiling); END_STATE(); - case 531: + case 533: ACCEPT_TOKEN(anon_sym_14); END_STATE(); - case 532: + case 534: ACCEPT_TOKEN(anon_sym_round); END_STATE(); - case 533: + case 535: ACCEPT_TOKEN(anon_sym_15); END_STATE(); - case 534: + case 536: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 535: + case 537: ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); - case 536: + case 538: ACCEPT_TOKEN(anon_sym_16); END_STATE(); - case 537: + case 539: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(538); + if (lookahead == '=') ADVANCE(540); END_STATE(); - case 538: + case 540: ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 539: + case 541: ACCEPT_TOKEN(anon_sym_17); END_STATE(); - case 540: + case 542: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(541); + if (lookahead == '=') ADVANCE(543); END_STATE(); - case 541: + case 543: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 542: + case 544: ACCEPT_TOKEN(anon_sym_18); END_STATE(); - case 543: + case 545: ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); - case 544: + case 546: ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); - case 545: + case 547: ACCEPT_TOKEN(anon_sym_DASH); if (lookahead == '-') ADVANCE(9); END_STATE(); - case 546: + case 548: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 547: + case 549: ACCEPT_TOKEN(anon_sym_19); END_STATE(); - case 548: + case 550: ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 549: + case 551: ACCEPT_TOKEN(anon_sym_20); END_STATE(); - case 550: + case 552: ACCEPT_TOKEN(anon_sym_modulus); END_STATE(); - case 551: + case 553: ACCEPT_TOKEN(anon_sym_21); END_STATE(); - case 552: + case 554: ACCEPT_TOKEN(anon_sym_power); END_STATE(); - case 553: + case 555: ACCEPT_TOKEN(anon_sym_22); END_STATE(); - case 554: + case 556: ACCEPT_TOKEN(anon_sym_logarithm); END_STATE(); - case 555: + case 557: ACCEPT_TOKEN(anon_sym_23); END_STATE(); - case 556: + case 558: ACCEPT_TOKEN(anon_sym_minimum); END_STATE(); - case 557: + case 559: ACCEPT_TOKEN(anon_sym_24); END_STATE(); - case 558: + case 560: ACCEPT_TOKEN(anon_sym_maximum); END_STATE(); - case 559: + case 561: ACCEPT_TOKEN(anon_sym_25); END_STATE(); - case 560: + case 562: ACCEPT_TOKEN(anon_sym_atangent); END_STATE(); - case 561: + case 563: ACCEPT_TOKEN(anon_sym_26); END_STATE(); - case 562: + case 564: ACCEPT_TOKEN(anon_sym_length); END_STATE(); - case 563: + case 565: ACCEPT_TOKEN(anon_sym_27); END_STATE(); - case 564: + case 566: ACCEPT_TOKEN(anon_sym_shape); END_STATE(); - case 565: + case 567: ACCEPT_TOKEN(anon_sym_28); END_STATE(); - case 566: + case 568: ACCEPT_TOKEN(anon_sym_range); END_STATE(); - case 567: + case 569: ACCEPT_TOKEN(anon_sym_29); END_STATE(); - case 568: + case 570: ACCEPT_TOKEN(anon_sym_first); END_STATE(); - case 569: + case 571: ACCEPT_TOKEN(anon_sym_30); END_STATE(); - case 570: + case 572: ACCEPT_TOKEN(anon_sym_reverse); END_STATE(); - case 571: + case 573: ACCEPT_TOKEN(anon_sym_31); END_STATE(); - case 572: + case 574: ACCEPT_TOKEN(anon_sym_deshape); END_STATE(); - case 573: + case 575: ACCEPT_TOKEN(anon_sym_32); END_STATE(); - case 574: + case 576: ACCEPT_TOKEN(anon_sym_bits); END_STATE(); - case 575: + case 577: ACCEPT_TOKEN(anon_sym_33); END_STATE(); - case 576: + case 578: ACCEPT_TOKEN(anon_sym_transpose); END_STATE(); - case 577: + case 579: ACCEPT_TOKEN(anon_sym_34); END_STATE(); - case 578: + case 580: ACCEPT_TOKEN(anon_sym_rise); END_STATE(); - case 579: + case 581: ACCEPT_TOKEN(anon_sym_35); END_STATE(); - case 580: + case 582: ACCEPT_TOKEN(anon_sym_fall); END_STATE(); - case 581: + case 583: ACCEPT_TOKEN(anon_sym_36); END_STATE(); - case 582: + case 584: ACCEPT_TOKEN(anon_sym_where); END_STATE(); - case 583: + case 585: ACCEPT_TOKEN(anon_sym_37); END_STATE(); - case 584: + case 586: ACCEPT_TOKEN(anon_sym_classify); END_STATE(); - case 585: + case 587: ACCEPT_TOKEN(anon_sym_38); END_STATE(); - case 586: + case 588: ACCEPT_TOKEN(anon_sym_deduplicate); END_STATE(); - case 587: + case 589: ACCEPT_TOKEN(anon_sym_39); END_STATE(); - case 588: + case 590: ACCEPT_TOKEN(anon_sym_box); END_STATE(); - case 589: + case 591: ACCEPT_TOKEN(anon_sym_40); END_STATE(); - case 590: + case 592: ACCEPT_TOKEN(anon_sym_unbox); END_STATE(); - case 591: + case 593: ACCEPT_TOKEN(anon_sym_41); END_STATE(); - case 592: + case 594: ACCEPT_TOKEN(anon_sym_match); END_STATE(); - case 593: + case 595: ACCEPT_TOKEN(anon_sym_42); END_STATE(); - case 594: + case 596: ACCEPT_TOKEN(anon_sym_couple); END_STATE(); - case 595: + case 597: ACCEPT_TOKEN(anon_sym_43); END_STATE(); - case 596: + case 598: ACCEPT_TOKEN(anon_sym_join); END_STATE(); - case 597: + case 599: ACCEPT_TOKEN(anon_sym_44); END_STATE(); - case 598: + case 600: ACCEPT_TOKEN(anon_sym_select); END_STATE(); - case 599: + case 601: ACCEPT_TOKEN(anon_sym_45); END_STATE(); - case 600: + case 602: ACCEPT_TOKEN(anon_sym_pick); END_STATE(); - case 601: + case 603: ACCEPT_TOKEN(anon_sym_46); END_STATE(); - case 602: + case 604: ACCEPT_TOKEN(anon_sym_reshape); END_STATE(); - case 603: + case 605: ACCEPT_TOKEN(anon_sym_47); END_STATE(); - case 604: + case 606: ACCEPT_TOKEN(anon_sym_take); END_STATE(); - case 605: + case 607: ACCEPT_TOKEN(anon_sym_48); END_STATE(); - case 606: + case 608: ACCEPT_TOKEN(anon_sym_drop); END_STATE(); - case 607: + case 609: ACCEPT_TOKEN(anon_sym_49); END_STATE(); - case 608: + case 610: ACCEPT_TOKEN(anon_sym_rotate); END_STATE(); - case 609: + case 611: ACCEPT_TOKEN(anon_sym_50); END_STATE(); - case 610: + case 612: ACCEPT_TOKEN(anon_sym_windows); END_STATE(); - case 611: + case 613: ACCEPT_TOKEN(anon_sym_51); END_STATE(); - case 612: + case 614: ACCEPT_TOKEN(anon_sym_keep); END_STATE(); - case 613: + case 615: ACCEPT_TOKEN(anon_sym_52); END_STATE(); - case 614: + case 616: ACCEPT_TOKEN(anon_sym_find); END_STATE(); - case 615: + case 617: ACCEPT_TOKEN(anon_sym_53); END_STATE(); - case 616: + case 618: ACCEPT_TOKEN(anon_sym_member); END_STATE(); - case 617: + case 619: ACCEPT_TOKEN(anon_sym_54); END_STATE(); - case 618: + case 620: ACCEPT_TOKEN(anon_sym_indexof); END_STATE(); - case 619: + case 621: ACCEPT_TOKEN(anon_sym_55); END_STATE(); - case 620: + case 622: ACCEPT_TOKEN(anon_sym_assert); END_STATE(); - case 621: + case 623: ACCEPT_TOKEN(anon_sym_56); END_STATE(); - case 622: + case 624: ACCEPT_TOKEN(anon_sym_wait); END_STATE(); - case 623: + case 625: ACCEPT_TOKEN(anon_sym_break); END_STATE(); - case 624: + case 626: ACCEPT_TOKEN(anon_sym_57); END_STATE(); - case 625: + case 627: ACCEPT_TOKEN(anon_sym_parse); END_STATE(); - case 626: + case 628: ACCEPT_TOKEN(anon_sym_random); END_STATE(); - case 627: + case 629: ACCEPT_TOKEN(anon_sym_58); END_STATE(); - case 628: + case 630: ACCEPT_TOKEN(anon_sym_gen); END_STATE(); - case 629: + case 631: ACCEPT_TOKEN(anon_sym_deal); END_STATE(); - case 630: + case 632: ACCEPT_TOKEN(anon_sym_tag); END_STATE(); - case 631: + case 633: ACCEPT_TOKEN(anon_sym_now); END_STATE(); - case 632: + case 634: ACCEPT_TOKEN(anon_sym_type); END_STATE(); - case 633: + case 635: ACCEPT_TOKEN(anon_sym_59); END_STATE(); - case 634: + case 636: ACCEPT_TOKEN(anon_sym_dump); END_STATE(); - case 635: + case 637: ACCEPT_TOKEN(anon_sym_regex); END_STATE(); - case 636: + case 638: ACCEPT_TOKEN(anon_sym_utf); END_STATE(); - case 637: + case 639: ACCEPT_TOKEN(anon_sym_rock); END_STATE(); - case 638: + case 640: ACCEPT_TOKEN(anon_sym_60); END_STATE(); - case 639: + case 641: ACCEPT_TOKEN(anon_sym_surface); END_STATE(); - case 640: + case 642: ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); - case 641: + case 643: ACCEPT_TOKEN(anon_sym_deep); END_STATE(); - case 642: + case 644: ACCEPT_TOKEN(anon_sym_de); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'a') ADVANCE(447); - if (lookahead == 'd') ADVANCE(479); - if (lookahead == 'e') ADVANCE(461); - if (lookahead == 's') ADVANCE(436); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'a') ADVANCE(450); + if (lookahead == 'd') ADVANCE(481); + if (lookahead == 'e') ADVANCE(464); + if (lookahead == 's') ADVANCE(439); if (('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(403); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(405); END_STATE(); - case 643: + case 645: ACCEPT_TOKEN(anon_sym_de); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'a') ADVANCE(99); - if (lookahead == 'd') ADVANCE(190); - if (lookahead == 'e') ADVANCE(133); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'a') ADVANCE(100); + if (lookahead == 'd') ADVANCE(191); + if (lookahead == 'e') ADVANCE(134); if (lookahead == 's') ADVANCE(77); END_STATE(); - case 644: + case 646: ACCEPT_TOKEN(anon_sym_61); END_STATE(); - case 645: + case 647: ACCEPT_TOKEN(anon_sym_abyss); END_STATE(); - case 646: + case 648: ACCEPT_TOKEN(anon_sym_ab); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 's') ADVANCE(458); - if (lookahead == 'y') ADVANCE(468); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 's') ADVANCE(461); + if (lookahead == 'y') ADVANCE(471); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(405); END_STATE(); - case 647: + case 649: ACCEPT_TOKEN(anon_sym_ab); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 's') ADVANCE(125); - if (lookahead == 'y') ADVANCE(155); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 's') ADVANCE(126); + if (lookahead == 'y') ADVANCE(156); END_STATE(); - case 648: + case 650: ACCEPT_TOKEN(anon_sym_62); END_STATE(); - case 649: + case 651: ACCEPT_TOKEN(anon_sym_seabed); END_STATE(); - case 650: + case 652: ACCEPT_TOKEN(anon_sym_se); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'a') ADVANCE(409); - if (lookahead == 'l') ADVANCE(427); - if (lookahead == 'n') ADVANCE(417); + if (lookahead == '!') ADVANCE(240); + if (lookahead == 'a') ADVANCE(411); + if (lookahead == 'l') ADVANCE(430); + if (lookahead == 'n') ADVANCE(420); if (('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(403); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(405); END_STATE(); - case 651: + case 653: ACCEPT_TOKEN(anon_sym_se); - if (lookahead == '!') ADVANCE(239); + if (lookahead == '!') ADVANCE(240); if (lookahead == 'a') ADVANCE(23); if (lookahead == 'l') ADVANCE(63); if (lookahead == 'n') ADVANCE(33); END_STATE(); - case 652: - ACCEPT_TOKEN(anon_sym_63); - END_STATE(); - case 653: - ACCEPT_TOKEN(anon_sym_send); - END_STATE(); case 654: - ACCEPT_TOKEN(anon_sym_recv); + ACCEPT_TOKEN(anon_sym_63); END_STATE(); case 655: - ACCEPT_TOKEN(anon_sym_tryrecv); + ACCEPT_TOKEN(anon_sym_send); END_STATE(); case 656: - ACCEPT_TOKEN(anon_sym_reduce); + ACCEPT_TOKEN(anon_sym_recv); END_STATE(); case 657: - ACCEPT_TOKEN(anon_sym_SLASH); + ACCEPT_TOKEN(anon_sym_tryrecv); END_STATE(); case 658: - ACCEPT_TOKEN(anon_sym_scan); + ACCEPT_TOKEN(anon_sym_reduce); END_STATE(); case 659: - ACCEPT_TOKEN(anon_sym_BSLASH); + ACCEPT_TOKEN(anon_sym_SLASH); END_STATE(); case 660: - ACCEPT_TOKEN(anon_sym_each); + ACCEPT_TOKEN(anon_sym_scan); END_STATE(); case 661: - ACCEPT_TOKEN(anon_sym_64); + ACCEPT_TOKEN(anon_sym_BSLASH); END_STATE(); case 662: - ACCEPT_TOKEN(anon_sym_rows); + ACCEPT_TOKEN(anon_sym_each); END_STATE(); case 663: - ACCEPT_TOKEN(anon_sym_65); + ACCEPT_TOKEN(anon_sym_64); END_STATE(); case 664: - ACCEPT_TOKEN(anon_sym_repeat); + ACCEPT_TOKEN(anon_sym_rows); END_STATE(); case 665: - ACCEPT_TOKEN(anon_sym_66); + ACCEPT_TOKEN(anon_sym_65); END_STATE(); case 666: - ACCEPT_TOKEN(anon_sym_dip); + ACCEPT_TOKEN(anon_sym_repeat); END_STATE(); case 667: - ACCEPT_TOKEN(anon_sym_di); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'p') ADVANCE(666); - if (lookahead == 's') ADVANCE(478); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); + ACCEPT_TOKEN(anon_sym_66); END_STATE(); case 668: - ACCEPT_TOKEN(anon_sym_67); + ACCEPT_TOKEN(anon_sym_dip); END_STATE(); case 669: - ACCEPT_TOKEN(anon_sym_gap); + ACCEPT_TOKEN(anon_sym_67); END_STATE(); case 670: - ACCEPT_TOKEN(anon_sym_ga); - if (lookahead == '!') ADVANCE(239); - if (lookahead == 'p') ADVANCE(669); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(403); + ACCEPT_TOKEN(anon_sym_gap); END_STATE(); case 671: ACCEPT_TOKEN(anon_sym_68); END_STATE(); case 672: - ACCEPT_TOKEN(anon_sym_oust); + ACCEPT_TOKEN(anon_sym_69); END_STATE(); case 673: - ACCEPT_TOKEN(anon_sym_69); + ACCEPT_TOKEN(anon_sym_invert); END_STATE(); case 674: - ACCEPT_TOKEN(anon_sym_invert); + ACCEPT_TOKEN(anon_sym_70); END_STATE(); case 675: - ACCEPT_TOKEN(anon_sym_70); + ACCEPT_TOKEN(anon_sym_spawn); END_STATE(); case 676: - ACCEPT_TOKEN(anon_sym_spawn); + ACCEPT_TOKEN(anon_sym_pack); END_STATE(); case 677: - ACCEPT_TOKEN(anon_sym_pack); + ACCEPT_TOKEN(anon_sym_71); END_STATE(); case 678: - ACCEPT_TOKEN(anon_sym_71); + ACCEPT_TOKEN(anon_sym_tribute); END_STATE(); case 679: - ACCEPT_TOKEN(anon_sym_tribute); + ACCEPT_TOKEN(anon_sym_72); END_STATE(); case 680: - ACCEPT_TOKEN(anon_sym_72); + ACCEPT_TOKEN(anon_sym_reach); END_STATE(); case 681: ACCEPT_TOKEN(anon_sym_fold); @@ -6274,181 +6256,181 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, [1] = {.lex_state = 2}, - [2] = {.lex_state = 219}, - [3] = {.lex_state = 219}, + [2] = {.lex_state = 220}, + [3] = {.lex_state = 220}, [4] = {.lex_state = 2}, [5] = {.lex_state = 2}, - [6] = {.lex_state = 219}, - [7] = {.lex_state = 219}, - [8] = {.lex_state = 219}, - [9] = {.lex_state = 219}, - [10] = {.lex_state = 219}, - [11] = {.lex_state = 219}, - [12] = {.lex_state = 219}, - [13] = {.lex_state = 219}, - [14] = {.lex_state = 219}, - [15] = {.lex_state = 219}, - [16] = {.lex_state = 219}, - [17] = {.lex_state = 219}, - [18] = {.lex_state = 219}, - [19] = {.lex_state = 219}, - [20] = {.lex_state = 219}, - [21] = {.lex_state = 219}, - [22] = {.lex_state = 219}, - [23] = {.lex_state = 219}, - [24] = {.lex_state = 219}, - [25] = {.lex_state = 219}, - [26] = {.lex_state = 219}, - [27] = {.lex_state = 219}, - [28] = {.lex_state = 219}, - [29] = {.lex_state = 219}, - [30] = {.lex_state = 219}, - [31] = {.lex_state = 219}, - [32] = {.lex_state = 219}, - [33] = {.lex_state = 219}, - [34] = {.lex_state = 219}, - [35] = {.lex_state = 219}, - [36] = {.lex_state = 219}, - [37] = {.lex_state = 219}, - [38] = {.lex_state = 219}, - [39] = {.lex_state = 219}, - [40] = {.lex_state = 219}, - [41] = {.lex_state = 219}, - [42] = {.lex_state = 219}, - [43] = {.lex_state = 219}, - [44] = {.lex_state = 219}, - [45] = {.lex_state = 219}, - [46] = {.lex_state = 219}, - [47] = {.lex_state = 219}, - [48] = {.lex_state = 219}, - [49] = {.lex_state = 219}, - [50] = {.lex_state = 219}, - [51] = {.lex_state = 219}, - [52] = {.lex_state = 219}, - [53] = {.lex_state = 219}, - [54] = {.lex_state = 219}, - [55] = {.lex_state = 219}, - [56] = {.lex_state = 219}, - [57] = {.lex_state = 219}, - [58] = {.lex_state = 219}, - [59] = {.lex_state = 219}, - [60] = {.lex_state = 219}, - [61] = {.lex_state = 219}, - [62] = {.lex_state = 219}, - [63] = {.lex_state = 219}, - [64] = {.lex_state = 219}, - [65] = {.lex_state = 219}, - [66] = {.lex_state = 219}, - [67] = {.lex_state = 219}, - [68] = {.lex_state = 219}, - [69] = {.lex_state = 219}, - [70] = {.lex_state = 219}, - [71] = {.lex_state = 219}, - [72] = {.lex_state = 219}, - [73] = {.lex_state = 219}, - [74] = {.lex_state = 219}, - [75] = {.lex_state = 219}, - [76] = {.lex_state = 219}, - [77] = {.lex_state = 219}, - [78] = {.lex_state = 219}, - [79] = {.lex_state = 219}, - [80] = {.lex_state = 219}, - [81] = {.lex_state = 219}, - [82] = {.lex_state = 219}, - [83] = {.lex_state = 219}, - [84] = {.lex_state = 219}, - [85] = {.lex_state = 219}, - [86] = {.lex_state = 219}, - [87] = {.lex_state = 219}, - [88] = {.lex_state = 219}, - [89] = {.lex_state = 219}, - [90] = {.lex_state = 219}, - [91] = {.lex_state = 219}, - [92] = {.lex_state = 219}, - [93] = {.lex_state = 219}, - [94] = {.lex_state = 219}, - [95] = {.lex_state = 219}, - [96] = {.lex_state = 219}, - [97] = {.lex_state = 219}, - [98] = {.lex_state = 219}, - [99] = {.lex_state = 219}, - [100] = {.lex_state = 219}, - [101] = {.lex_state = 219}, - [102] = {.lex_state = 219}, - [103] = {.lex_state = 219}, - [104] = {.lex_state = 219}, - [105] = {.lex_state = 219}, - [106] = {.lex_state = 219}, - [107] = {.lex_state = 219}, - [108] = {.lex_state = 219}, - [109] = {.lex_state = 219}, - [110] = {.lex_state = 219}, + [6] = {.lex_state = 220}, + [7] = {.lex_state = 220}, + [8] = {.lex_state = 220}, + [9] = {.lex_state = 220}, + [10] = {.lex_state = 220}, + [11] = {.lex_state = 220}, + [12] = {.lex_state = 220}, + [13] = {.lex_state = 220}, + [14] = {.lex_state = 220}, + [15] = {.lex_state = 220}, + [16] = {.lex_state = 220}, + [17] = {.lex_state = 220}, + [18] = {.lex_state = 220}, + [19] = {.lex_state = 220}, + [20] = {.lex_state = 220}, + [21] = {.lex_state = 220}, + [22] = {.lex_state = 220}, + [23] = {.lex_state = 220}, + [24] = {.lex_state = 220}, + [25] = {.lex_state = 220}, + [26] = {.lex_state = 220}, + [27] = {.lex_state = 220}, + [28] = {.lex_state = 220}, + [29] = {.lex_state = 220}, + [30] = {.lex_state = 220}, + [31] = {.lex_state = 220}, + [32] = {.lex_state = 220}, + [33] = {.lex_state = 220}, + [34] = {.lex_state = 220}, + [35] = {.lex_state = 220}, + [36] = {.lex_state = 220}, + [37] = {.lex_state = 220}, + [38] = {.lex_state = 220}, + [39] = {.lex_state = 220}, + [40] = {.lex_state = 220}, + [41] = {.lex_state = 220}, + [42] = {.lex_state = 220}, + [43] = {.lex_state = 220}, + [44] = {.lex_state = 220}, + [45] = {.lex_state = 220}, + [46] = {.lex_state = 220}, + [47] = {.lex_state = 220}, + [48] = {.lex_state = 220}, + [49] = {.lex_state = 220}, + [50] = {.lex_state = 220}, + [51] = {.lex_state = 220}, + [52] = {.lex_state = 220}, + [53] = {.lex_state = 220}, + [54] = {.lex_state = 220}, + [55] = {.lex_state = 220}, + [56] = {.lex_state = 220}, + [57] = {.lex_state = 220}, + [58] = {.lex_state = 220}, + [59] = {.lex_state = 220}, + [60] = {.lex_state = 220}, + [61] = {.lex_state = 220}, + [62] = {.lex_state = 220}, + [63] = {.lex_state = 220}, + [64] = {.lex_state = 220}, + [65] = {.lex_state = 220}, + [66] = {.lex_state = 220}, + [67] = {.lex_state = 220}, + [68] = {.lex_state = 220}, + [69] = {.lex_state = 220}, + [70] = {.lex_state = 220}, + [71] = {.lex_state = 220}, + [72] = {.lex_state = 220}, + [73] = {.lex_state = 220}, + [74] = {.lex_state = 220}, + [75] = {.lex_state = 220}, + [76] = {.lex_state = 220}, + [77] = {.lex_state = 220}, + [78] = {.lex_state = 220}, + [79] = {.lex_state = 220}, + [80] = {.lex_state = 220}, + [81] = {.lex_state = 220}, + [82] = {.lex_state = 220}, + [83] = {.lex_state = 220}, + [84] = {.lex_state = 220}, + [85] = {.lex_state = 220}, + [86] = {.lex_state = 220}, + [87] = {.lex_state = 220}, + [88] = {.lex_state = 220}, + [89] = {.lex_state = 220}, + [90] = {.lex_state = 220}, + [91] = {.lex_state = 220}, + [92] = {.lex_state = 220}, + [93] = {.lex_state = 220}, + [94] = {.lex_state = 220}, + [95] = {.lex_state = 220}, + [96] = {.lex_state = 220}, + [97] = {.lex_state = 220}, + [98] = {.lex_state = 220}, + [99] = {.lex_state = 220}, + [100] = {.lex_state = 220}, + [101] = {.lex_state = 220}, + [102] = {.lex_state = 220}, + [103] = {.lex_state = 220}, + [104] = {.lex_state = 220}, + [105] = {.lex_state = 220}, + [106] = {.lex_state = 220}, + [107] = {.lex_state = 220}, + [108] = {.lex_state = 220}, + [109] = {.lex_state = 220}, + [110] = {.lex_state = 220}, [111] = {.lex_state = 2}, [112] = {.lex_state = 2}, - [113] = {.lex_state = 219}, - [114] = {.lex_state = 219}, - [115] = {.lex_state = 219}, + [113] = {.lex_state = 220}, + [114] = {.lex_state = 220}, + [115] = {.lex_state = 220}, [116] = {.lex_state = 2}, - [117] = {.lex_state = 219}, - [118] = {.lex_state = 219}, - [119] = {.lex_state = 219}, + [117] = {.lex_state = 220}, + [118] = {.lex_state = 220}, + [119] = {.lex_state = 220}, [120] = {.lex_state = 3}, - [121] = {.lex_state = 219}, - [122] = {.lex_state = 219}, - [123] = {.lex_state = 219}, - [124] = {.lex_state = 219}, - [125] = {.lex_state = 219}, + [121] = {.lex_state = 220}, + [122] = {.lex_state = 220}, + [123] = {.lex_state = 220}, + [124] = {.lex_state = 220}, + [125] = {.lex_state = 220}, [126] = {.lex_state = 4}, [127] = {.lex_state = 4}, [128] = {.lex_state = 4}, [129] = {.lex_state = 4}, [130] = {.lex_state = 4}, [131] = {.lex_state = 4}, - [132] = {.lex_state = 220}, - [133] = {.lex_state = 220}, - [134] = {.lex_state = 220}, - [135] = {.lex_state = 220}, - [136] = {.lex_state = 220}, - [137] = {.lex_state = 220}, - [138] = {.lex_state = 220}, - [139] = {.lex_state = 220}, - [140] = {.lex_state = 220}, - [141] = {.lex_state = 220}, - [142] = {.lex_state = 220}, - [143] = {.lex_state = 220}, - [144] = {.lex_state = 220}, - [145] = {.lex_state = 220}, - [146] = {.lex_state = 220}, - [147] = {.lex_state = 220}, - [148] = {.lex_state = 220}, - [149] = {.lex_state = 220}, - [150] = {.lex_state = 220}, - [151] = {.lex_state = 220}, - [152] = {.lex_state = 220}, - [153] = {.lex_state = 220}, - [154] = {.lex_state = 220}, - [155] = {.lex_state = 220}, - [156] = {.lex_state = 220}, - [157] = {.lex_state = 220}, - [158] = {.lex_state = 220}, - [159] = {.lex_state = 220}, - [160] = {.lex_state = 220}, - [161] = {.lex_state = 220}, - [162] = {.lex_state = 220}, - [163] = {.lex_state = 220}, - [164] = {.lex_state = 220}, - [165] = {.lex_state = 220}, - [166] = {.lex_state = 220}, - [167] = {.lex_state = 220}, - [168] = {.lex_state = 220}, - [169] = {.lex_state = 220}, - [170] = {.lex_state = 220}, - [171] = {.lex_state = 220}, - [172] = {.lex_state = 220}, - [173] = {.lex_state = 220}, - [174] = {.lex_state = 220}, - [175] = {.lex_state = 220}, - [176] = {.lex_state = 220}, + [132] = {.lex_state = 221}, + [133] = {.lex_state = 221}, + [134] = {.lex_state = 221}, + [135] = {.lex_state = 221}, + [136] = {.lex_state = 221}, + [137] = {.lex_state = 221}, + [138] = {.lex_state = 221}, + [139] = {.lex_state = 221}, + [140] = {.lex_state = 221}, + [141] = {.lex_state = 221}, + [142] = {.lex_state = 221}, + [143] = {.lex_state = 221}, + [144] = {.lex_state = 221}, + [145] = {.lex_state = 221}, + [146] = {.lex_state = 221}, + [147] = {.lex_state = 221}, + [148] = {.lex_state = 221}, + [149] = {.lex_state = 221}, + [150] = {.lex_state = 221}, + [151] = {.lex_state = 221}, + [152] = {.lex_state = 221}, + [153] = {.lex_state = 221}, + [154] = {.lex_state = 221}, + [155] = {.lex_state = 221}, + [156] = {.lex_state = 221}, + [157] = {.lex_state = 221}, + [158] = {.lex_state = 221}, + [159] = {.lex_state = 221}, + [160] = {.lex_state = 221}, + [161] = {.lex_state = 221}, + [162] = {.lex_state = 221}, + [163] = {.lex_state = 221}, + [164] = {.lex_state = 221}, + [165] = {.lex_state = 221}, + [166] = {.lex_state = 221}, + [167] = {.lex_state = 221}, + [168] = {.lex_state = 221}, + [169] = {.lex_state = 221}, + [170] = {.lex_state = 221}, + [171] = {.lex_state = 221}, + [172] = {.lex_state = 221}, + [173] = {.lex_state = 221}, + [174] = {.lex_state = 221}, + [175] = {.lex_state = 221}, + [176] = {.lex_state = 221}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -6645,12 +6627,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_repeat] = ACTIONS(1), [anon_sym_66] = ACTIONS(1), [anon_sym_dip] = ACTIONS(1), - [anon_sym_di] = ACTIONS(1), [anon_sym_67] = ACTIONS(1), [anon_sym_gap] = ACTIONS(1), - [anon_sym_ga] = ACTIONS(1), [anon_sym_68] = ACTIONS(1), - [anon_sym_oust] = ACTIONS(1), [anon_sym_69] = ACTIONS(1), [anon_sym_invert] = ACTIONS(1), [anon_sym_70] = ACTIONS(1), @@ -6659,6 +6638,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_71] = ACTIONS(1), [anon_sym_tribute] = ACTIONS(1), [anon_sym_72] = ACTIONS(1), + [anon_sym_reach] = ACTIONS(1), [anon_sym_fold] = ACTIONS(1), [anon_sym_73] = ACTIONS(1), [anon_sym_distribute] = ACTIONS(1), @@ -6909,12 +6889,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_repeat] = ACTIONS(41), [anon_sym_66] = ACTIONS(41), [anon_sym_dip] = ACTIONS(41), - [anon_sym_di] = ACTIONS(43), [anon_sym_67] = ACTIONS(41), [anon_sym_gap] = ACTIONS(41), - [anon_sym_ga] = ACTIONS(43), [anon_sym_68] = ACTIONS(41), - [anon_sym_oust] = ACTIONS(41), [anon_sym_69] = ACTIONS(41), [anon_sym_invert] = ACTIONS(41), [anon_sym_70] = ACTIONS(41), @@ -6923,44 +6900,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_71] = ACTIONS(41), [anon_sym_tribute] = ACTIONS(41), [anon_sym_72] = ACTIONS(41), - [anon_sym_fold] = ACTIONS(45), - [anon_sym_73] = ACTIONS(45), - [anon_sym_distribute] = ACTIONS(45), - [anon_sym_74] = ACTIONS(45), - [anon_sym_table] = ACTIONS(45), - [anon_sym_75] = ACTIONS(45), - [anon_sym_cross] = ACTIONS(45), - [anon_sym_76] = ACTIONS(45), - [anon_sym_group] = ACTIONS(45), - [anon_sym_77] = ACTIONS(45), - [anon_sym_partition] = ACTIONS(45), - [anon_sym_78] = ACTIONS(45), - [anon_sym_both] = ACTIONS(45), - [anon_sym_79] = ACTIONS(45), - [anon_sym_bracket] = ACTIONS(45), - [anon_sym_80] = ACTIONS(45), - [anon_sym_fork] = ACTIONS(45), - [anon_sym_81] = ACTIONS(45), - [anon_sym_under] = ACTIONS(45), - [anon_sym_82] = ACTIONS(45), - [anon_sym_level] = ACTIONS(45), - [anon_sym_83] = ACTIONS(45), - [anon_sym_fill] = ACTIONS(45), - [anon_sym_84] = ACTIONS(45), - [anon_sym_bind] = ACTIONS(45), - [anon_sym_SQUOTE] = ACTIONS(45), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_try] = ACTIONS(47), - [anon_sym_85] = ACTIONS(45), - [anon_sym_combinate] = ACTIONS(45), - [anon_sym_86] = ACTIONS(45), - [anon_sym_87] = ACTIONS(49), - [anon_sym_88] = ACTIONS(49), - [anon_sym_89] = ACTIONS(49), - [anon_sym_90] = ACTIONS(49), - [anon_sym_91] = ACTIONS(49), - [anon_sym_92] = ACTIONS(49), - [anon_sym_93] = ACTIONS(49), + [anon_sym_reach] = ACTIONS(41), + [anon_sym_fold] = ACTIONS(43), + [anon_sym_73] = ACTIONS(43), + [anon_sym_distribute] = ACTIONS(43), + [anon_sym_74] = ACTIONS(43), + [anon_sym_table] = ACTIONS(43), + [anon_sym_75] = ACTIONS(43), + [anon_sym_cross] = ACTIONS(43), + [anon_sym_76] = ACTIONS(43), + [anon_sym_group] = ACTIONS(43), + [anon_sym_77] = ACTIONS(43), + [anon_sym_partition] = ACTIONS(43), + [anon_sym_78] = ACTIONS(43), + [anon_sym_both] = ACTIONS(43), + [anon_sym_79] = ACTIONS(43), + [anon_sym_bracket] = ACTIONS(43), + [anon_sym_80] = ACTIONS(43), + [anon_sym_fork] = ACTIONS(43), + [anon_sym_81] = ACTIONS(43), + [anon_sym_under] = ACTIONS(43), + [anon_sym_82] = ACTIONS(43), + [anon_sym_level] = ACTIONS(43), + [anon_sym_83] = ACTIONS(43), + [anon_sym_fill] = ACTIONS(43), + [anon_sym_84] = ACTIONS(43), + [anon_sym_bind] = ACTIONS(43), + [anon_sym_SQUOTE] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_85] = ACTIONS(43), + [anon_sym_combinate] = ACTIONS(43), + [anon_sym_86] = ACTIONS(43), + [anon_sym_87] = ACTIONS(47), + [anon_sym_88] = ACTIONS(47), + [anon_sym_89] = ACTIONS(47), + [anon_sym_90] = ACTIONS(47), + [anon_sym_91] = ACTIONS(47), + [anon_sym_92] = ACTIONS(47), + [anon_sym_93] = ACTIONS(47), [sym__whitespace] = ACTIONS(5), [sym__end_of_line] = ACTIONS(5), }, @@ -6984,245 +6962,243 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_deprecated] = STATE(61), [aux_sym_array_repeat1] = STATE(57), [aux_sym_array_repeat2] = STATE(2), - [aux_sym_number_token1] = ACTIONS(51), - [anon_sym_os] = ACTIONS(54), - [anon_sym_Family] = ACTIONS(54), - [anon_sym_Arch] = ACTIONS(54), - [anon_sym_ExeExt] = ACTIONS(54), - [anon_sym_PllExt] = ACTIONS(54), - [anon_sym_Sep] = ACTIONS(54), - [aux_sym_character_token1] = ACTIONS(57), - [sym_string] = ACTIONS(60), - [sym_multiLineString] = ACTIONS(60), - [anon_sym_PIPE] = ACTIONS(63), - [sym_identifier] = ACTIONS(66), - [sym_identifier_deprecated] = ACTIONS(66), - [sym_system] = ACTIONS(60), - [sym_comment] = ACTIONS(69), - [sym_openParen] = ACTIONS(72), - [sym_openCurly] = ACTIONS(75), - [sym_closeCurly] = ACTIONS(78), - [sym_openBracket] = ACTIONS(80), - [sym_closeBracket] = ACTIONS(78), - [sym_leftArrow] = ACTIONS(83), - [anon_sym_CARET] = ACTIONS(86), - [anon_sym_eta] = ACTIONS(89), - [anon_sym_] = ACTIONS(92), - [anon_sym_pi] = ACTIONS(92), - [anon_sym_2] = ACTIONS(92), - [anon_sym_tau] = ACTIONS(89), - [anon_sym_3] = ACTIONS(92), - [anon_sym_infinity] = ACTIONS(89), - [anon_sym_4] = ACTIONS(89), - [anon_sym_e] = ACTIONS(92), - [anon_sym_NaN] = ACTIONS(92), - [anon_sym_NumProcs] = ACTIONS(92), - [anon_sym_DOT] = ACTIONS(95), - [anon_sym_COMMA] = ACTIONS(95), - [anon_sym_5] = ACTIONS(95), - [anon_sym_SEMI] = ACTIONS(95), - [anon_sym_identity] = ACTIONS(95), - [anon_sym_id] = ACTIONS(98), - [anon_sym_6] = ACTIONS(95), - [anon_sym_not] = ACTIONS(95), - [anon_sym_7] = ACTIONS(95), - [anon_sym_sign] = ACTIONS(95), - [anon_sym_8] = ACTIONS(95), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_9] = ACTIONS(95), - [anon_sym_absolutevalue] = ACTIONS(95), - [anon_sym_10] = ACTIONS(95), - [anon_sym_sqrt] = ACTIONS(95), - [anon_sym_11] = ACTIONS(95), - [anon_sym_sine] = ACTIONS(95), - [anon_sym_12] = ACTIONS(95), - [anon_sym_floor] = ACTIONS(95), - [anon_sym_13] = ACTIONS(95), - [anon_sym_ceiling] = ACTIONS(95), - [anon_sym_14] = ACTIONS(95), - [anon_sym_round] = ACTIONS(95), - [anon_sym_15] = ACTIONS(95), - [anon_sym_EQ] = ACTIONS(95), - [anon_sym_BANG_EQ] = ACTIONS(95), - [anon_sym_16] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(98), - [anon_sym_LT_EQ] = ACTIONS(95), - [anon_sym_17] = ACTIONS(95), - [anon_sym_GT] = ACTIONS(98), - [anon_sym_GT_EQ] = ACTIONS(95), - [anon_sym_18] = ACTIONS(95), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_STAR] = ACTIONS(95), - [anon_sym_19] = ACTIONS(95), - [anon_sym_PERCENT] = ACTIONS(95), - [anon_sym_20] = ACTIONS(95), - [anon_sym_modulus] = ACTIONS(95), - [anon_sym_21] = ACTIONS(95), - [anon_sym_power] = ACTIONS(95), - [anon_sym_22] = ACTIONS(95), - [anon_sym_logarithm] = ACTIONS(95), - [anon_sym_23] = ACTIONS(95), - [anon_sym_minimum] = ACTIONS(95), - [anon_sym_24] = ACTIONS(95), - [anon_sym_maximum] = ACTIONS(95), - [anon_sym_25] = ACTIONS(95), - [anon_sym_atangent] = ACTIONS(95), - [anon_sym_26] = ACTIONS(95), - [anon_sym_length] = ACTIONS(95), - [anon_sym_27] = ACTIONS(95), - [anon_sym_shape] = ACTIONS(95), - [anon_sym_28] = ACTIONS(95), - [anon_sym_range] = ACTIONS(95), - [anon_sym_29] = ACTIONS(95), - [anon_sym_first] = ACTIONS(95), - [anon_sym_30] = ACTIONS(95), - [anon_sym_reverse] = ACTIONS(95), - [anon_sym_31] = ACTIONS(95), - [anon_sym_deshape] = ACTIONS(95), - [anon_sym_32] = ACTIONS(95), - [anon_sym_bits] = ACTIONS(95), - [anon_sym_33] = ACTIONS(95), - [anon_sym_transpose] = ACTIONS(95), - [anon_sym_34] = ACTIONS(95), - [anon_sym_rise] = ACTIONS(95), - [anon_sym_35] = ACTIONS(95), - [anon_sym_fall] = ACTIONS(95), - [anon_sym_36] = ACTIONS(95), - [anon_sym_where] = ACTIONS(95), - [anon_sym_37] = ACTIONS(95), - [anon_sym_classify] = ACTIONS(95), - [anon_sym_38] = ACTIONS(95), - [anon_sym_deduplicate] = ACTIONS(95), - [anon_sym_39] = ACTIONS(95), - [anon_sym_box] = ACTIONS(95), - [anon_sym_40] = ACTIONS(95), - [anon_sym_unbox] = ACTIONS(95), - [anon_sym_41] = ACTIONS(95), - [anon_sym_match] = ACTIONS(95), - [anon_sym_42] = ACTIONS(95), - [anon_sym_couple] = ACTIONS(95), - [anon_sym_43] = ACTIONS(95), - [anon_sym_join] = ACTIONS(95), - [anon_sym_44] = ACTIONS(95), - [anon_sym_select] = ACTIONS(95), - [anon_sym_45] = ACTIONS(95), - [anon_sym_pick] = ACTIONS(95), - [anon_sym_46] = ACTIONS(95), - [anon_sym_reshape] = ACTIONS(95), - [anon_sym_47] = ACTIONS(95), - [anon_sym_take] = ACTIONS(95), - [anon_sym_48] = ACTIONS(95), - [anon_sym_drop] = ACTIONS(95), - [anon_sym_49] = ACTIONS(95), - [anon_sym_rotate] = ACTIONS(95), - [anon_sym_50] = ACTIONS(95), - [anon_sym_windows] = ACTIONS(95), - [anon_sym_51] = ACTIONS(95), - [anon_sym_keep] = ACTIONS(95), - [anon_sym_52] = ACTIONS(95), - [anon_sym_find] = ACTIONS(95), - [anon_sym_53] = ACTIONS(95), - [anon_sym_member] = ACTIONS(95), - [anon_sym_54] = ACTIONS(95), - [anon_sym_indexof] = ACTIONS(95), - [anon_sym_55] = ACTIONS(95), - [anon_sym_assert] = ACTIONS(95), - [anon_sym_56] = ACTIONS(95), - [anon_sym_wait] = ACTIONS(95), - [anon_sym_break] = ACTIONS(95), - [anon_sym_57] = ACTIONS(95), - [anon_sym_parse] = ACTIONS(95), - [anon_sym_random] = ACTIONS(95), - [anon_sym_58] = ACTIONS(95), - [anon_sym_gen] = ACTIONS(95), - [anon_sym_deal] = ACTIONS(95), - [anon_sym_tag] = ACTIONS(95), - [anon_sym_now] = ACTIONS(95), - [anon_sym_type] = ACTIONS(95), - [anon_sym_59] = ACTIONS(95), - [anon_sym_dump] = ACTIONS(95), - [anon_sym_regex] = ACTIONS(95), - [anon_sym_utf] = ACTIONS(95), - [anon_sym_rock] = ACTIONS(95), - [anon_sym_60] = ACTIONS(95), - [anon_sym_surface] = ACTIONS(95), - [anon_sym_TILDE] = ACTIONS(95), - [anon_sym_deep] = ACTIONS(95), - [anon_sym_de] = ACTIONS(98), - [anon_sym_61] = ACTIONS(95), - [anon_sym_abyss] = ACTIONS(95), - [anon_sym_ab] = ACTIONS(98), - [anon_sym_62] = ACTIONS(95), - [anon_sym_seabed] = ACTIONS(95), - [anon_sym_se] = ACTIONS(98), - [anon_sym_63] = ACTIONS(95), - [anon_sym_send] = ACTIONS(95), - [anon_sym_recv] = ACTIONS(95), - [anon_sym_tryrecv] = ACTIONS(95), - [anon_sym_reduce] = ACTIONS(101), - [anon_sym_SLASH] = ACTIONS(101), - [anon_sym_scan] = ACTIONS(101), - [anon_sym_BSLASH] = ACTIONS(101), - [anon_sym_each] = ACTIONS(101), - [anon_sym_64] = ACTIONS(101), - [anon_sym_rows] = ACTIONS(101), - [anon_sym_65] = ACTIONS(101), - [anon_sym_repeat] = ACTIONS(101), - [anon_sym_66] = ACTIONS(101), - [anon_sym_dip] = ACTIONS(101), - [anon_sym_di] = ACTIONS(104), - [anon_sym_67] = ACTIONS(101), - [anon_sym_gap] = ACTIONS(101), - [anon_sym_ga] = ACTIONS(104), - [anon_sym_68] = ACTIONS(101), - [anon_sym_oust] = ACTIONS(101), - [anon_sym_69] = ACTIONS(101), - [anon_sym_invert] = ACTIONS(101), - [anon_sym_70] = ACTIONS(101), - [anon_sym_spawn] = ACTIONS(101), - [anon_sym_pack] = ACTIONS(101), - [anon_sym_71] = ACTIONS(101), - [anon_sym_tribute] = ACTIONS(101), - [anon_sym_72] = ACTIONS(101), - [anon_sym_fold] = ACTIONS(107), - [anon_sym_73] = ACTIONS(107), - [anon_sym_distribute] = ACTIONS(107), - [anon_sym_74] = ACTIONS(107), - [anon_sym_table] = ACTIONS(107), - [anon_sym_75] = ACTIONS(107), - [anon_sym_cross] = ACTIONS(107), - [anon_sym_76] = ACTIONS(107), - [anon_sym_group] = ACTIONS(107), - [anon_sym_77] = ACTIONS(107), - [anon_sym_partition] = ACTIONS(107), - [anon_sym_78] = ACTIONS(107), - [anon_sym_both] = ACTIONS(107), - [anon_sym_79] = ACTIONS(107), - [anon_sym_bracket] = ACTIONS(107), - [anon_sym_80] = ACTIONS(107), - [anon_sym_fork] = ACTIONS(107), - [anon_sym_81] = ACTIONS(107), - [anon_sym_under] = ACTIONS(107), - [anon_sym_82] = ACTIONS(107), - [anon_sym_level] = ACTIONS(107), - [anon_sym_83] = ACTIONS(107), - [anon_sym_fill] = ACTIONS(107), - [anon_sym_84] = ACTIONS(107), - [anon_sym_bind] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(107), - [anon_sym_QMARK] = ACTIONS(107), - [anon_sym_try] = ACTIONS(110), - [anon_sym_85] = ACTIONS(107), - [anon_sym_combinate] = ACTIONS(107), - [anon_sym_86] = ACTIONS(107), - [anon_sym_87] = ACTIONS(113), - [anon_sym_88] = ACTIONS(113), - [anon_sym_89] = ACTIONS(113), - [anon_sym_90] = ACTIONS(113), - [anon_sym_91] = ACTIONS(113), - [anon_sym_92] = ACTIONS(113), - [anon_sym_93] = ACTIONS(113), + [aux_sym_number_token1] = ACTIONS(49), + [anon_sym_os] = ACTIONS(52), + [anon_sym_Family] = ACTIONS(52), + [anon_sym_Arch] = ACTIONS(52), + [anon_sym_ExeExt] = ACTIONS(52), + [anon_sym_PllExt] = ACTIONS(52), + [anon_sym_Sep] = ACTIONS(52), + [aux_sym_character_token1] = ACTIONS(55), + [sym_string] = ACTIONS(58), + [sym_multiLineString] = ACTIONS(58), + [anon_sym_PIPE] = ACTIONS(61), + [sym_identifier] = ACTIONS(64), + [sym_identifier_deprecated] = ACTIONS(64), + [sym_system] = ACTIONS(58), + [sym_comment] = ACTIONS(67), + [sym_openParen] = ACTIONS(70), + [sym_openCurly] = ACTIONS(73), + [sym_closeCurly] = ACTIONS(76), + [sym_openBracket] = ACTIONS(78), + [sym_closeBracket] = ACTIONS(76), + [sym_leftArrow] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(84), + [anon_sym_eta] = ACTIONS(87), + [anon_sym_] = ACTIONS(90), + [anon_sym_pi] = ACTIONS(90), + [anon_sym_2] = ACTIONS(90), + [anon_sym_tau] = ACTIONS(87), + [anon_sym_3] = ACTIONS(90), + [anon_sym_infinity] = ACTIONS(87), + [anon_sym_4] = ACTIONS(87), + [anon_sym_e] = ACTIONS(90), + [anon_sym_NaN] = ACTIONS(90), + [anon_sym_NumProcs] = ACTIONS(90), + [anon_sym_DOT] = ACTIONS(93), + [anon_sym_COMMA] = ACTIONS(93), + [anon_sym_5] = ACTIONS(93), + [anon_sym_SEMI] = ACTIONS(93), + [anon_sym_identity] = ACTIONS(93), + [anon_sym_id] = ACTIONS(96), + [anon_sym_6] = ACTIONS(93), + [anon_sym_not] = ACTIONS(93), + [anon_sym_7] = ACTIONS(93), + [anon_sym_sign] = ACTIONS(93), + [anon_sym_8] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(93), + [anon_sym_9] = ACTIONS(93), + [anon_sym_absolutevalue] = ACTIONS(93), + [anon_sym_10] = ACTIONS(93), + [anon_sym_sqrt] = ACTIONS(93), + [anon_sym_11] = ACTIONS(93), + [anon_sym_sine] = ACTIONS(93), + [anon_sym_12] = ACTIONS(93), + [anon_sym_floor] = ACTIONS(93), + [anon_sym_13] = ACTIONS(93), + [anon_sym_ceiling] = ACTIONS(93), + [anon_sym_14] = ACTIONS(93), + [anon_sym_round] = ACTIONS(93), + [anon_sym_15] = ACTIONS(93), + [anon_sym_EQ] = ACTIONS(93), + [anon_sym_BANG_EQ] = ACTIONS(93), + [anon_sym_16] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(96), + [anon_sym_LT_EQ] = ACTIONS(93), + [anon_sym_17] = ACTIONS(93), + [anon_sym_GT] = ACTIONS(96), + [anon_sym_GT_EQ] = ACTIONS(93), + [anon_sym_18] = ACTIONS(93), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(93), + [anon_sym_19] = ACTIONS(93), + [anon_sym_PERCENT] = ACTIONS(93), + [anon_sym_20] = ACTIONS(93), + [anon_sym_modulus] = ACTIONS(93), + [anon_sym_21] = ACTIONS(93), + [anon_sym_power] = ACTIONS(93), + [anon_sym_22] = ACTIONS(93), + [anon_sym_logarithm] = ACTIONS(93), + [anon_sym_23] = ACTIONS(93), + [anon_sym_minimum] = ACTIONS(93), + [anon_sym_24] = ACTIONS(93), + [anon_sym_maximum] = ACTIONS(93), + [anon_sym_25] = ACTIONS(93), + [anon_sym_atangent] = ACTIONS(93), + [anon_sym_26] = ACTIONS(93), + [anon_sym_length] = ACTIONS(93), + [anon_sym_27] = ACTIONS(93), + [anon_sym_shape] = ACTIONS(93), + [anon_sym_28] = ACTIONS(93), + [anon_sym_range] = ACTIONS(93), + [anon_sym_29] = ACTIONS(93), + [anon_sym_first] = ACTIONS(93), + [anon_sym_30] = ACTIONS(93), + [anon_sym_reverse] = ACTIONS(93), + [anon_sym_31] = ACTIONS(93), + [anon_sym_deshape] = ACTIONS(93), + [anon_sym_32] = ACTIONS(93), + [anon_sym_bits] = ACTIONS(93), + [anon_sym_33] = ACTIONS(93), + [anon_sym_transpose] = ACTIONS(93), + [anon_sym_34] = ACTIONS(93), + [anon_sym_rise] = ACTIONS(93), + [anon_sym_35] = ACTIONS(93), + [anon_sym_fall] = ACTIONS(93), + [anon_sym_36] = ACTIONS(93), + [anon_sym_where] = ACTIONS(93), + [anon_sym_37] = ACTIONS(93), + [anon_sym_classify] = ACTIONS(93), + [anon_sym_38] = ACTIONS(93), + [anon_sym_deduplicate] = ACTIONS(93), + [anon_sym_39] = ACTIONS(93), + [anon_sym_box] = ACTIONS(93), + [anon_sym_40] = ACTIONS(93), + [anon_sym_unbox] = ACTIONS(93), + [anon_sym_41] = ACTIONS(93), + [anon_sym_match] = ACTIONS(93), + [anon_sym_42] = ACTIONS(93), + [anon_sym_couple] = ACTIONS(93), + [anon_sym_43] = ACTIONS(93), + [anon_sym_join] = ACTIONS(93), + [anon_sym_44] = ACTIONS(93), + [anon_sym_select] = ACTIONS(93), + [anon_sym_45] = ACTIONS(93), + [anon_sym_pick] = ACTIONS(93), + [anon_sym_46] = ACTIONS(93), + [anon_sym_reshape] = ACTIONS(93), + [anon_sym_47] = ACTIONS(93), + [anon_sym_take] = ACTIONS(93), + [anon_sym_48] = ACTIONS(93), + [anon_sym_drop] = ACTIONS(93), + [anon_sym_49] = ACTIONS(93), + [anon_sym_rotate] = ACTIONS(93), + [anon_sym_50] = ACTIONS(93), + [anon_sym_windows] = ACTIONS(93), + [anon_sym_51] = ACTIONS(93), + [anon_sym_keep] = ACTIONS(93), + [anon_sym_52] = ACTIONS(93), + [anon_sym_find] = ACTIONS(93), + [anon_sym_53] = ACTIONS(93), + [anon_sym_member] = ACTIONS(93), + [anon_sym_54] = ACTIONS(93), + [anon_sym_indexof] = ACTIONS(93), + [anon_sym_55] = ACTIONS(93), + [anon_sym_assert] = ACTIONS(93), + [anon_sym_56] = ACTIONS(93), + [anon_sym_wait] = ACTIONS(93), + [anon_sym_break] = ACTIONS(93), + [anon_sym_57] = ACTIONS(93), + [anon_sym_parse] = ACTIONS(93), + [anon_sym_random] = ACTIONS(93), + [anon_sym_58] = ACTIONS(93), + [anon_sym_gen] = ACTIONS(93), + [anon_sym_deal] = ACTIONS(93), + [anon_sym_tag] = ACTIONS(93), + [anon_sym_now] = ACTIONS(93), + [anon_sym_type] = ACTIONS(93), + [anon_sym_59] = ACTIONS(93), + [anon_sym_dump] = ACTIONS(93), + [anon_sym_regex] = ACTIONS(93), + [anon_sym_utf] = ACTIONS(93), + [anon_sym_rock] = ACTIONS(93), + [anon_sym_60] = ACTIONS(93), + [anon_sym_surface] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_deep] = ACTIONS(93), + [anon_sym_de] = ACTIONS(96), + [anon_sym_61] = ACTIONS(93), + [anon_sym_abyss] = ACTIONS(93), + [anon_sym_ab] = ACTIONS(96), + [anon_sym_62] = ACTIONS(93), + [anon_sym_seabed] = ACTIONS(93), + [anon_sym_se] = ACTIONS(96), + [anon_sym_63] = ACTIONS(93), + [anon_sym_send] = ACTIONS(93), + [anon_sym_recv] = ACTIONS(93), + [anon_sym_tryrecv] = ACTIONS(93), + [anon_sym_reduce] = ACTIONS(99), + [anon_sym_SLASH] = ACTIONS(99), + [anon_sym_scan] = ACTIONS(99), + [anon_sym_BSLASH] = ACTIONS(99), + [anon_sym_each] = ACTIONS(99), + [anon_sym_64] = ACTIONS(99), + [anon_sym_rows] = ACTIONS(99), + [anon_sym_65] = ACTIONS(99), + [anon_sym_repeat] = ACTIONS(99), + [anon_sym_66] = ACTIONS(99), + [anon_sym_dip] = ACTIONS(99), + [anon_sym_67] = ACTIONS(99), + [anon_sym_gap] = ACTIONS(99), + [anon_sym_68] = ACTIONS(99), + [anon_sym_69] = ACTIONS(99), + [anon_sym_invert] = ACTIONS(99), + [anon_sym_70] = ACTIONS(99), + [anon_sym_spawn] = ACTIONS(99), + [anon_sym_pack] = ACTIONS(99), + [anon_sym_71] = ACTIONS(99), + [anon_sym_tribute] = ACTIONS(99), + [anon_sym_72] = ACTIONS(99), + [anon_sym_reach] = ACTIONS(99), + [anon_sym_fold] = ACTIONS(102), + [anon_sym_73] = ACTIONS(102), + [anon_sym_distribute] = ACTIONS(102), + [anon_sym_74] = ACTIONS(102), + [anon_sym_table] = ACTIONS(102), + [anon_sym_75] = ACTIONS(102), + [anon_sym_cross] = ACTIONS(102), + [anon_sym_76] = ACTIONS(102), + [anon_sym_group] = ACTIONS(102), + [anon_sym_77] = ACTIONS(102), + [anon_sym_partition] = ACTIONS(102), + [anon_sym_78] = ACTIONS(102), + [anon_sym_both] = ACTIONS(102), + [anon_sym_79] = ACTIONS(102), + [anon_sym_bracket] = ACTIONS(102), + [anon_sym_80] = ACTIONS(102), + [anon_sym_fork] = ACTIONS(102), + [anon_sym_81] = ACTIONS(102), + [anon_sym_under] = ACTIONS(102), + [anon_sym_82] = ACTIONS(102), + [anon_sym_level] = ACTIONS(102), + [anon_sym_83] = ACTIONS(102), + [anon_sym_fill] = ACTIONS(102), + [anon_sym_84] = ACTIONS(102), + [anon_sym_bind] = ACTIONS(102), + [anon_sym_SQUOTE] = ACTIONS(102), + [anon_sym_QMARK] = ACTIONS(102), + [anon_sym_try] = ACTIONS(105), + [anon_sym_85] = ACTIONS(102), + [anon_sym_combinate] = ACTIONS(102), + [anon_sym_86] = ACTIONS(102), + [anon_sym_87] = ACTIONS(108), + [anon_sym_88] = ACTIONS(108), + [anon_sym_89] = ACTIONS(108), + [anon_sym_90] = ACTIONS(108), + [anon_sym_91] = ACTIONS(108), + [anon_sym_92] = ACTIONS(108), + [anon_sym_93] = ACTIONS(108), [sym__whitespace] = ACTIONS(5), [sym__end_of_line] = ACTIONS(5), }, @@ -7246,247 +7222,245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_modifier2] = STATE(59), [sym_deprecated] = STATE(61), [aux_sym_array_repeat1] = STATE(57), - [aux_sym_number_token1] = ACTIONS(116), - [anon_sym_os] = ACTIONS(118), - [anon_sym_Family] = ACTIONS(118), - [anon_sym_Arch] = ACTIONS(118), - [anon_sym_ExeExt] = ACTIONS(118), - [anon_sym_PllExt] = ACTIONS(118), - [anon_sym_Sep] = ACTIONS(118), - [aux_sym_character_token1] = ACTIONS(120), - [sym_string] = ACTIONS(122), - [sym_multiLineString] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(124), - [sym_identifier] = ACTIONS(126), - [sym_identifier_deprecated] = ACTIONS(126), - [sym_system] = ACTIONS(122), - [sym_comment] = ACTIONS(128), - [sym_openParen] = ACTIONS(130), - [sym_closeParen] = ACTIONS(132), - [sym_openCurly] = ACTIONS(134), - [sym_openBracket] = ACTIONS(136), - [sym_underscore] = ACTIONS(138), - [sym_leftArrow] = ACTIONS(140), - [anon_sym_CARET] = ACTIONS(142), - [anon_sym_eta] = ACTIONS(144), - [anon_sym_] = ACTIONS(146), - [anon_sym_pi] = ACTIONS(146), - [anon_sym_2] = ACTIONS(146), - [anon_sym_tau] = ACTIONS(144), - [anon_sym_3] = ACTIONS(146), - [anon_sym_infinity] = ACTIONS(144), - [anon_sym_4] = ACTIONS(144), - [anon_sym_e] = ACTIONS(146), - [anon_sym_NaN] = ACTIONS(146), - [anon_sym_NumProcs] = ACTIONS(146), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_COMMA] = ACTIONS(148), - [anon_sym_5] = ACTIONS(148), - [anon_sym_SEMI] = ACTIONS(148), - [anon_sym_identity] = ACTIONS(148), - [anon_sym_id] = ACTIONS(150), - [anon_sym_6] = ACTIONS(148), - [anon_sym_not] = ACTIONS(148), - [anon_sym_7] = ACTIONS(148), - [anon_sym_sign] = ACTIONS(148), - [anon_sym_8] = ACTIONS(148), - [anon_sym_BQUOTE] = ACTIONS(148), - [anon_sym_9] = ACTIONS(148), - [anon_sym_absolutevalue] = ACTIONS(148), - [anon_sym_10] = ACTIONS(148), - [anon_sym_sqrt] = ACTIONS(148), - [anon_sym_11] = ACTIONS(148), - [anon_sym_sine] = ACTIONS(148), - [anon_sym_12] = ACTIONS(148), - [anon_sym_floor] = ACTIONS(148), - [anon_sym_13] = ACTIONS(148), - [anon_sym_ceiling] = ACTIONS(148), - [anon_sym_14] = ACTIONS(148), - [anon_sym_round] = ACTIONS(148), - [anon_sym_15] = ACTIONS(148), - [anon_sym_EQ] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_16] = ACTIONS(148), - [anon_sym_LT] = ACTIONS(150), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_17] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_18] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_19] = ACTIONS(148), - [anon_sym_PERCENT] = ACTIONS(148), - [anon_sym_20] = ACTIONS(148), - [anon_sym_modulus] = ACTIONS(148), - [anon_sym_21] = ACTIONS(148), - [anon_sym_power] = ACTIONS(148), - [anon_sym_22] = ACTIONS(148), - [anon_sym_logarithm] = ACTIONS(148), - [anon_sym_23] = ACTIONS(148), - [anon_sym_minimum] = ACTIONS(148), - [anon_sym_24] = ACTIONS(148), - [anon_sym_maximum] = ACTIONS(148), - [anon_sym_25] = ACTIONS(148), - [anon_sym_atangent] = ACTIONS(148), - [anon_sym_26] = ACTIONS(148), - [anon_sym_length] = ACTIONS(148), - [anon_sym_27] = ACTIONS(148), - [anon_sym_shape] = ACTIONS(148), - [anon_sym_28] = ACTIONS(148), - [anon_sym_range] = ACTIONS(148), - [anon_sym_29] = ACTIONS(148), - [anon_sym_first] = ACTIONS(148), - [anon_sym_30] = ACTIONS(148), - [anon_sym_reverse] = ACTIONS(148), - [anon_sym_31] = ACTIONS(148), - [anon_sym_deshape] = ACTIONS(148), - [anon_sym_32] = ACTIONS(148), - [anon_sym_bits] = ACTIONS(148), - [anon_sym_33] = ACTIONS(148), - [anon_sym_transpose] = ACTIONS(148), - [anon_sym_34] = ACTIONS(148), - [anon_sym_rise] = ACTIONS(148), - [anon_sym_35] = ACTIONS(148), - [anon_sym_fall] = ACTIONS(148), - [anon_sym_36] = ACTIONS(148), - [anon_sym_where] = ACTIONS(148), - [anon_sym_37] = ACTIONS(148), - [anon_sym_classify] = ACTIONS(148), - [anon_sym_38] = ACTIONS(148), - [anon_sym_deduplicate] = ACTIONS(148), - [anon_sym_39] = ACTIONS(148), - [anon_sym_box] = ACTIONS(148), - [anon_sym_40] = ACTIONS(148), - [anon_sym_unbox] = ACTIONS(148), - [anon_sym_41] = ACTIONS(148), - [anon_sym_match] = ACTIONS(148), - [anon_sym_42] = ACTIONS(148), - [anon_sym_couple] = ACTIONS(148), - [anon_sym_43] = ACTIONS(148), - [anon_sym_join] = ACTIONS(148), - [anon_sym_44] = ACTIONS(148), - [anon_sym_select] = ACTIONS(148), - [anon_sym_45] = ACTIONS(148), - [anon_sym_pick] = ACTIONS(148), - [anon_sym_46] = ACTIONS(148), - [anon_sym_reshape] = ACTIONS(148), - [anon_sym_47] = ACTIONS(148), - [anon_sym_take] = ACTIONS(148), - [anon_sym_48] = ACTIONS(148), - [anon_sym_drop] = ACTIONS(148), - [anon_sym_49] = ACTIONS(148), - [anon_sym_rotate] = ACTIONS(148), - [anon_sym_50] = ACTIONS(148), - [anon_sym_windows] = ACTIONS(148), - [anon_sym_51] = ACTIONS(148), - [anon_sym_keep] = ACTIONS(148), - [anon_sym_52] = ACTIONS(148), - [anon_sym_find] = ACTIONS(148), - [anon_sym_53] = ACTIONS(148), - [anon_sym_member] = ACTIONS(148), - [anon_sym_54] = ACTIONS(148), - [anon_sym_indexof] = ACTIONS(148), - [anon_sym_55] = ACTIONS(148), - [anon_sym_assert] = ACTIONS(148), - [anon_sym_56] = ACTIONS(148), - [anon_sym_wait] = ACTIONS(148), - [anon_sym_break] = ACTIONS(148), - [anon_sym_57] = ACTIONS(148), - [anon_sym_parse] = ACTIONS(148), - [anon_sym_random] = ACTIONS(148), - [anon_sym_58] = ACTIONS(148), - [anon_sym_gen] = ACTIONS(148), - [anon_sym_deal] = ACTIONS(148), - [anon_sym_tag] = ACTIONS(148), - [anon_sym_now] = ACTIONS(148), - [anon_sym_type] = ACTIONS(148), - [anon_sym_59] = ACTIONS(148), - [anon_sym_dump] = ACTIONS(148), - [anon_sym_regex] = ACTIONS(148), - [anon_sym_utf] = ACTIONS(148), - [anon_sym_rock] = ACTIONS(148), - [anon_sym_60] = ACTIONS(148), - [anon_sym_surface] = ACTIONS(148), - [anon_sym_TILDE] = ACTIONS(148), - [anon_sym_deep] = ACTIONS(148), - [anon_sym_de] = ACTIONS(150), - [anon_sym_61] = ACTIONS(148), - [anon_sym_abyss] = ACTIONS(148), - [anon_sym_ab] = ACTIONS(150), - [anon_sym_62] = ACTIONS(148), - [anon_sym_seabed] = ACTIONS(148), - [anon_sym_se] = ACTIONS(150), - [anon_sym_63] = ACTIONS(148), - [anon_sym_send] = ACTIONS(148), - [anon_sym_recv] = ACTIONS(148), - [anon_sym_tryrecv] = ACTIONS(148), - [anon_sym_reduce] = ACTIONS(152), - [anon_sym_SLASH] = ACTIONS(152), - [anon_sym_scan] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_each] = ACTIONS(152), - [anon_sym_64] = ACTIONS(152), - [anon_sym_rows] = ACTIONS(152), - [anon_sym_65] = ACTIONS(152), - [anon_sym_repeat] = ACTIONS(152), - [anon_sym_66] = ACTIONS(152), - [anon_sym_dip] = ACTIONS(152), - [anon_sym_di] = ACTIONS(154), - [anon_sym_67] = ACTIONS(152), - [anon_sym_gap] = ACTIONS(152), - [anon_sym_ga] = ACTIONS(154), - [anon_sym_68] = ACTIONS(152), - [anon_sym_oust] = ACTIONS(152), - [anon_sym_69] = ACTIONS(152), - [anon_sym_invert] = ACTIONS(152), - [anon_sym_70] = ACTIONS(152), - [anon_sym_spawn] = ACTIONS(152), - [anon_sym_pack] = ACTIONS(152), - [anon_sym_71] = ACTIONS(152), - [anon_sym_tribute] = ACTIONS(152), - [anon_sym_72] = ACTIONS(152), - [anon_sym_fold] = ACTIONS(156), - [anon_sym_73] = ACTIONS(156), - [anon_sym_distribute] = ACTIONS(156), - [anon_sym_74] = ACTIONS(156), - [anon_sym_table] = ACTIONS(156), - [anon_sym_75] = ACTIONS(156), - [anon_sym_cross] = ACTIONS(156), - [anon_sym_76] = ACTIONS(156), - [anon_sym_group] = ACTIONS(156), - [anon_sym_77] = ACTIONS(156), - [anon_sym_partition] = ACTIONS(156), - [anon_sym_78] = ACTIONS(156), - [anon_sym_both] = ACTIONS(156), - [anon_sym_79] = ACTIONS(156), - [anon_sym_bracket] = ACTIONS(156), - [anon_sym_80] = ACTIONS(156), - [anon_sym_fork] = ACTIONS(156), - [anon_sym_81] = ACTIONS(156), - [anon_sym_under] = ACTIONS(156), - [anon_sym_82] = ACTIONS(156), - [anon_sym_level] = ACTIONS(156), - [anon_sym_83] = ACTIONS(156), - [anon_sym_fill] = ACTIONS(156), - [anon_sym_84] = ACTIONS(156), - [anon_sym_bind] = ACTIONS(156), - [anon_sym_SQUOTE] = ACTIONS(156), - [anon_sym_QMARK] = ACTIONS(156), - [anon_sym_try] = ACTIONS(158), - [anon_sym_85] = ACTIONS(156), - [anon_sym_combinate] = ACTIONS(156), - [anon_sym_86] = ACTIONS(156), - [anon_sym_87] = ACTIONS(160), - [anon_sym_88] = ACTIONS(160), - [anon_sym_89] = ACTIONS(160), - [anon_sym_90] = ACTIONS(160), - [anon_sym_91] = ACTIONS(160), - [anon_sym_92] = ACTIONS(160), - [anon_sym_93] = ACTIONS(160), + [aux_sym_number_token1] = ACTIONS(111), + [anon_sym_os] = ACTIONS(113), + [anon_sym_Family] = ACTIONS(113), + [anon_sym_Arch] = ACTIONS(113), + [anon_sym_ExeExt] = ACTIONS(113), + [anon_sym_PllExt] = ACTIONS(113), + [anon_sym_Sep] = ACTIONS(113), + [aux_sym_character_token1] = ACTIONS(115), + [sym_string] = ACTIONS(117), + [sym_multiLineString] = ACTIONS(117), + [anon_sym_PIPE] = ACTIONS(119), + [sym_identifier] = ACTIONS(121), + [sym_identifier_deprecated] = ACTIONS(121), + [sym_system] = ACTIONS(117), + [sym_comment] = ACTIONS(123), + [sym_openParen] = ACTIONS(125), + [sym_closeParen] = ACTIONS(127), + [sym_openCurly] = ACTIONS(129), + [sym_openBracket] = ACTIONS(131), + [sym_underscore] = ACTIONS(133), + [sym_leftArrow] = ACTIONS(135), + [anon_sym_CARET] = ACTIONS(137), + [anon_sym_eta] = ACTIONS(139), + [anon_sym_] = ACTIONS(141), + [anon_sym_pi] = ACTIONS(141), + [anon_sym_2] = ACTIONS(141), + [anon_sym_tau] = ACTIONS(139), + [anon_sym_3] = ACTIONS(141), + [anon_sym_infinity] = ACTIONS(139), + [anon_sym_4] = ACTIONS(139), + [anon_sym_e] = ACTIONS(141), + [anon_sym_NaN] = ACTIONS(141), + [anon_sym_NumProcs] = ACTIONS(141), + [anon_sym_DOT] = ACTIONS(143), + [anon_sym_COMMA] = ACTIONS(143), + [anon_sym_5] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_identity] = ACTIONS(143), + [anon_sym_id] = ACTIONS(145), + [anon_sym_6] = ACTIONS(143), + [anon_sym_not] = ACTIONS(143), + [anon_sym_7] = ACTIONS(143), + [anon_sym_sign] = ACTIONS(143), + [anon_sym_8] = ACTIONS(143), + [anon_sym_BQUOTE] = ACTIONS(143), + [anon_sym_9] = ACTIONS(143), + [anon_sym_absolutevalue] = ACTIONS(143), + [anon_sym_10] = ACTIONS(143), + [anon_sym_sqrt] = ACTIONS(143), + [anon_sym_11] = ACTIONS(143), + [anon_sym_sine] = ACTIONS(143), + [anon_sym_12] = ACTIONS(143), + [anon_sym_floor] = ACTIONS(143), + [anon_sym_13] = ACTIONS(143), + [anon_sym_ceiling] = ACTIONS(143), + [anon_sym_14] = ACTIONS(143), + [anon_sym_round] = ACTIONS(143), + [anon_sym_15] = ACTIONS(143), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_16] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_17] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_18] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_19] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_20] = ACTIONS(143), + [anon_sym_modulus] = ACTIONS(143), + [anon_sym_21] = ACTIONS(143), + [anon_sym_power] = ACTIONS(143), + [anon_sym_22] = ACTIONS(143), + [anon_sym_logarithm] = ACTIONS(143), + [anon_sym_23] = ACTIONS(143), + [anon_sym_minimum] = ACTIONS(143), + [anon_sym_24] = ACTIONS(143), + [anon_sym_maximum] = ACTIONS(143), + [anon_sym_25] = ACTIONS(143), + [anon_sym_atangent] = ACTIONS(143), + [anon_sym_26] = ACTIONS(143), + [anon_sym_length] = ACTIONS(143), + [anon_sym_27] = ACTIONS(143), + [anon_sym_shape] = ACTIONS(143), + [anon_sym_28] = ACTIONS(143), + [anon_sym_range] = ACTIONS(143), + [anon_sym_29] = ACTIONS(143), + [anon_sym_first] = ACTIONS(143), + [anon_sym_30] = ACTIONS(143), + [anon_sym_reverse] = ACTIONS(143), + [anon_sym_31] = ACTIONS(143), + [anon_sym_deshape] = ACTIONS(143), + [anon_sym_32] = ACTIONS(143), + [anon_sym_bits] = ACTIONS(143), + [anon_sym_33] = ACTIONS(143), + [anon_sym_transpose] = ACTIONS(143), + [anon_sym_34] = ACTIONS(143), + [anon_sym_rise] = ACTIONS(143), + [anon_sym_35] = ACTIONS(143), + [anon_sym_fall] = ACTIONS(143), + [anon_sym_36] = ACTIONS(143), + [anon_sym_where] = ACTIONS(143), + [anon_sym_37] = ACTIONS(143), + [anon_sym_classify] = ACTIONS(143), + [anon_sym_38] = ACTIONS(143), + [anon_sym_deduplicate] = ACTIONS(143), + [anon_sym_39] = ACTIONS(143), + [anon_sym_box] = ACTIONS(143), + [anon_sym_40] = ACTIONS(143), + [anon_sym_unbox] = ACTIONS(143), + [anon_sym_41] = ACTIONS(143), + [anon_sym_match] = ACTIONS(143), + [anon_sym_42] = ACTIONS(143), + [anon_sym_couple] = ACTIONS(143), + [anon_sym_43] = ACTIONS(143), + [anon_sym_join] = ACTIONS(143), + [anon_sym_44] = ACTIONS(143), + [anon_sym_select] = ACTIONS(143), + [anon_sym_45] = ACTIONS(143), + [anon_sym_pick] = ACTIONS(143), + [anon_sym_46] = ACTIONS(143), + [anon_sym_reshape] = ACTIONS(143), + [anon_sym_47] = ACTIONS(143), + [anon_sym_take] = ACTIONS(143), + [anon_sym_48] = ACTIONS(143), + [anon_sym_drop] = ACTIONS(143), + [anon_sym_49] = ACTIONS(143), + [anon_sym_rotate] = ACTIONS(143), + [anon_sym_50] = ACTIONS(143), + [anon_sym_windows] = ACTIONS(143), + [anon_sym_51] = ACTIONS(143), + [anon_sym_keep] = ACTIONS(143), + [anon_sym_52] = ACTIONS(143), + [anon_sym_find] = ACTIONS(143), + [anon_sym_53] = ACTIONS(143), + [anon_sym_member] = ACTIONS(143), + [anon_sym_54] = ACTIONS(143), + [anon_sym_indexof] = ACTIONS(143), + [anon_sym_55] = ACTIONS(143), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_56] = ACTIONS(143), + [anon_sym_wait] = ACTIONS(143), + [anon_sym_break] = ACTIONS(143), + [anon_sym_57] = ACTIONS(143), + [anon_sym_parse] = ACTIONS(143), + [anon_sym_random] = ACTIONS(143), + [anon_sym_58] = ACTIONS(143), + [anon_sym_gen] = ACTIONS(143), + [anon_sym_deal] = ACTIONS(143), + [anon_sym_tag] = ACTIONS(143), + [anon_sym_now] = ACTIONS(143), + [anon_sym_type] = ACTIONS(143), + [anon_sym_59] = ACTIONS(143), + [anon_sym_dump] = ACTIONS(143), + [anon_sym_regex] = ACTIONS(143), + [anon_sym_utf] = ACTIONS(143), + [anon_sym_rock] = ACTIONS(143), + [anon_sym_60] = ACTIONS(143), + [anon_sym_surface] = ACTIONS(143), + [anon_sym_TILDE] = ACTIONS(143), + [anon_sym_deep] = ACTIONS(143), + [anon_sym_de] = ACTIONS(145), + [anon_sym_61] = ACTIONS(143), + [anon_sym_abyss] = ACTIONS(143), + [anon_sym_ab] = ACTIONS(145), + [anon_sym_62] = ACTIONS(143), + [anon_sym_seabed] = ACTIONS(143), + [anon_sym_se] = ACTIONS(145), + [anon_sym_63] = ACTIONS(143), + [anon_sym_send] = ACTIONS(143), + [anon_sym_recv] = ACTIONS(143), + [anon_sym_tryrecv] = ACTIONS(143), + [anon_sym_reduce] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_scan] = ACTIONS(147), + [anon_sym_BSLASH] = ACTIONS(147), + [anon_sym_each] = ACTIONS(147), + [anon_sym_64] = ACTIONS(147), + [anon_sym_rows] = ACTIONS(147), + [anon_sym_65] = ACTIONS(147), + [anon_sym_repeat] = ACTIONS(147), + [anon_sym_66] = ACTIONS(147), + [anon_sym_dip] = ACTIONS(147), + [anon_sym_67] = ACTIONS(147), + [anon_sym_gap] = ACTIONS(147), + [anon_sym_68] = ACTIONS(147), + [anon_sym_69] = ACTIONS(147), + [anon_sym_invert] = ACTIONS(147), + [anon_sym_70] = ACTIONS(147), + [anon_sym_spawn] = ACTIONS(147), + [anon_sym_pack] = ACTIONS(147), + [anon_sym_71] = ACTIONS(147), + [anon_sym_tribute] = ACTIONS(147), + [anon_sym_72] = ACTIONS(147), + [anon_sym_reach] = ACTIONS(147), + [anon_sym_fold] = ACTIONS(149), + [anon_sym_73] = ACTIONS(149), + [anon_sym_distribute] = ACTIONS(149), + [anon_sym_74] = ACTIONS(149), + [anon_sym_table] = ACTIONS(149), + [anon_sym_75] = ACTIONS(149), + [anon_sym_cross] = ACTIONS(149), + [anon_sym_76] = ACTIONS(149), + [anon_sym_group] = ACTIONS(149), + [anon_sym_77] = ACTIONS(149), + [anon_sym_partition] = ACTIONS(149), + [anon_sym_78] = ACTIONS(149), + [anon_sym_both] = ACTIONS(149), + [anon_sym_79] = ACTIONS(149), + [anon_sym_bracket] = ACTIONS(149), + [anon_sym_80] = ACTIONS(149), + [anon_sym_fork] = ACTIONS(149), + [anon_sym_81] = ACTIONS(149), + [anon_sym_under] = ACTIONS(149), + [anon_sym_82] = ACTIONS(149), + [anon_sym_level] = ACTIONS(149), + [anon_sym_83] = ACTIONS(149), + [anon_sym_fill] = ACTIONS(149), + [anon_sym_84] = ACTIONS(149), + [anon_sym_bind] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_try] = ACTIONS(151), + [anon_sym_85] = ACTIONS(149), + [anon_sym_combinate] = ACTIONS(149), + [anon_sym_86] = ACTIONS(149), + [anon_sym_87] = ACTIONS(153), + [anon_sym_88] = ACTIONS(153), + [anon_sym_89] = ACTIONS(153), + [anon_sym_90] = ACTIONS(153), + [anon_sym_91] = ACTIONS(153), + [anon_sym_92] = ACTIONS(153), + [anon_sym_93] = ACTIONS(153), [sym__whitespace] = ACTIONS(5), - [sym__end_of_line] = ACTIONS(132), + [sym__end_of_line] = ACTIONS(127), }, [4] = { [sym_module] = STATE(162), @@ -7695,12 +7669,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_repeat] = ACTIONS(41), [anon_sym_66] = ACTIONS(41), [anon_sym_dip] = ACTIONS(41), - [anon_sym_di] = ACTIONS(43), [anon_sym_67] = ACTIONS(41), [anon_sym_gap] = ACTIONS(41), - [anon_sym_ga] = ACTIONS(43), [anon_sym_68] = ACTIONS(41), - [anon_sym_oust] = ACTIONS(41), [anon_sym_69] = ACTIONS(41), [anon_sym_invert] = ACTIONS(41), [anon_sym_70] = ACTIONS(41), @@ -7709,44 +7680,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_71] = ACTIONS(41), [anon_sym_tribute] = ACTIONS(41), [anon_sym_72] = ACTIONS(41), - [anon_sym_fold] = ACTIONS(45), - [anon_sym_73] = ACTIONS(45), - [anon_sym_distribute] = ACTIONS(45), - [anon_sym_74] = ACTIONS(45), - [anon_sym_table] = ACTIONS(45), - [anon_sym_75] = ACTIONS(45), - [anon_sym_cross] = ACTIONS(45), - [anon_sym_76] = ACTIONS(45), - [anon_sym_group] = ACTIONS(45), - [anon_sym_77] = ACTIONS(45), - [anon_sym_partition] = ACTIONS(45), - [anon_sym_78] = ACTIONS(45), - [anon_sym_both] = ACTIONS(45), - [anon_sym_79] = ACTIONS(45), - [anon_sym_bracket] = ACTIONS(45), - [anon_sym_80] = ACTIONS(45), - [anon_sym_fork] = ACTIONS(45), - [anon_sym_81] = ACTIONS(45), - [anon_sym_under] = ACTIONS(45), - [anon_sym_82] = ACTIONS(45), - [anon_sym_level] = ACTIONS(45), - [anon_sym_83] = ACTIONS(45), - [anon_sym_fill] = ACTIONS(45), - [anon_sym_84] = ACTIONS(45), - [anon_sym_bind] = ACTIONS(45), - [anon_sym_SQUOTE] = ACTIONS(45), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_try] = ACTIONS(47), - [anon_sym_85] = ACTIONS(45), - [anon_sym_combinate] = ACTIONS(45), - [anon_sym_86] = ACTIONS(45), - [anon_sym_87] = ACTIONS(49), - [anon_sym_88] = ACTIONS(49), - [anon_sym_89] = ACTIONS(49), - [anon_sym_90] = ACTIONS(49), - [anon_sym_91] = ACTIONS(49), - [anon_sym_92] = ACTIONS(49), - [anon_sym_93] = ACTIONS(49), + [anon_sym_reach] = ACTIONS(41), + [anon_sym_fold] = ACTIONS(43), + [anon_sym_73] = ACTIONS(43), + [anon_sym_distribute] = ACTIONS(43), + [anon_sym_74] = ACTIONS(43), + [anon_sym_table] = ACTIONS(43), + [anon_sym_75] = ACTIONS(43), + [anon_sym_cross] = ACTIONS(43), + [anon_sym_76] = ACTIONS(43), + [anon_sym_group] = ACTIONS(43), + [anon_sym_77] = ACTIONS(43), + [anon_sym_partition] = ACTIONS(43), + [anon_sym_78] = ACTIONS(43), + [anon_sym_both] = ACTIONS(43), + [anon_sym_79] = ACTIONS(43), + [anon_sym_bracket] = ACTIONS(43), + [anon_sym_80] = ACTIONS(43), + [anon_sym_fork] = ACTIONS(43), + [anon_sym_81] = ACTIONS(43), + [anon_sym_under] = ACTIONS(43), + [anon_sym_82] = ACTIONS(43), + [anon_sym_level] = ACTIONS(43), + [anon_sym_83] = ACTIONS(43), + [anon_sym_fill] = ACTIONS(43), + [anon_sym_84] = ACTIONS(43), + [anon_sym_bind] = ACTIONS(43), + [anon_sym_SQUOTE] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_85] = ACTIONS(43), + [anon_sym_combinate] = ACTIONS(43), + [anon_sym_86] = ACTIONS(43), + [anon_sym_87] = ACTIONS(47), + [anon_sym_88] = ACTIONS(47), + [anon_sym_89] = ACTIONS(47), + [anon_sym_90] = ACTIONS(47), + [anon_sym_91] = ACTIONS(47), + [anon_sym_92] = ACTIONS(47), + [anon_sym_93] = ACTIONS(47), [sym__whitespace] = ACTIONS(5), [sym__end_of_line] = ACTIONS(5), }, @@ -7771,244 +7743,242 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_deprecated] = STATE(61), [aux_sym_PROGRAM_repeat1] = STATE(5), [aux_sym_array_repeat1] = STATE(57), - [aux_sym_number_token1] = ACTIONS(162), - [anon_sym_os] = ACTIONS(165), - [anon_sym_Family] = ACTIONS(165), - [anon_sym_Arch] = ACTIONS(165), - [anon_sym_ExeExt] = ACTIONS(165), - [anon_sym_PllExt] = ACTIONS(165), - [anon_sym_Sep] = ACTIONS(165), - [aux_sym_character_token1] = ACTIONS(168), - [sym_string] = ACTIONS(171), - [sym_multiLineString] = ACTIONS(171), - [anon_sym_PIPE] = ACTIONS(174), - [sym_identifier] = ACTIONS(177), - [sym_identifier_deprecated] = ACTIONS(177), - [sym_system] = ACTIONS(171), - [sym_comment] = ACTIONS(180), - [sym_tripleMinus] = ACTIONS(183), - [sym_openParen] = ACTIONS(186), - [sym_openCurly] = ACTIONS(189), - [sym_openBracket] = ACTIONS(192), - [sym_leftArrow] = ACTIONS(195), - [anon_sym_CARET] = ACTIONS(198), - [anon_sym_eta] = ACTIONS(201), - [anon_sym_] = ACTIONS(204), - [anon_sym_pi] = ACTIONS(204), - [anon_sym_2] = ACTIONS(204), - [anon_sym_tau] = ACTIONS(201), - [anon_sym_3] = ACTIONS(204), - [anon_sym_infinity] = ACTIONS(201), - [anon_sym_4] = ACTIONS(201), - [anon_sym_e] = ACTIONS(204), - [anon_sym_NaN] = ACTIONS(204), - [anon_sym_NumProcs] = ACTIONS(204), - [anon_sym_DOT] = ACTIONS(207), - [anon_sym_COMMA] = ACTIONS(207), - [anon_sym_5] = ACTIONS(207), - [anon_sym_SEMI] = ACTIONS(207), - [anon_sym_identity] = ACTIONS(207), - [anon_sym_id] = ACTIONS(210), - [anon_sym_6] = ACTIONS(207), - [anon_sym_not] = ACTIONS(207), - [anon_sym_7] = ACTIONS(207), - [anon_sym_sign] = ACTIONS(207), - [anon_sym_8] = ACTIONS(207), - [anon_sym_BQUOTE] = ACTIONS(207), - [anon_sym_9] = ACTIONS(207), - [anon_sym_absolutevalue] = ACTIONS(207), - [anon_sym_10] = ACTIONS(207), - [anon_sym_sqrt] = ACTIONS(207), - [anon_sym_11] = ACTIONS(207), - [anon_sym_sine] = ACTIONS(207), - [anon_sym_12] = ACTIONS(207), - [anon_sym_floor] = ACTIONS(207), - [anon_sym_13] = ACTIONS(207), - [anon_sym_ceiling] = ACTIONS(207), - [anon_sym_14] = ACTIONS(207), - [anon_sym_round] = ACTIONS(207), - [anon_sym_15] = ACTIONS(207), - [anon_sym_EQ] = ACTIONS(207), - [anon_sym_BANG_EQ] = ACTIONS(207), - [anon_sym_16] = ACTIONS(207), - [anon_sym_LT] = ACTIONS(210), - [anon_sym_LT_EQ] = ACTIONS(207), - [anon_sym_17] = ACTIONS(207), - [anon_sym_GT] = ACTIONS(210), - [anon_sym_GT_EQ] = ACTIONS(207), - [anon_sym_18] = ACTIONS(207), - [anon_sym_PLUS] = ACTIONS(207), - [anon_sym_DASH] = ACTIONS(210), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_19] = ACTIONS(207), - [anon_sym_PERCENT] = ACTIONS(207), - [anon_sym_20] = ACTIONS(207), - [anon_sym_modulus] = ACTIONS(207), - [anon_sym_21] = ACTIONS(207), - [anon_sym_power] = ACTIONS(207), - [anon_sym_22] = ACTIONS(207), - [anon_sym_logarithm] = ACTIONS(207), - [anon_sym_23] = ACTIONS(207), - [anon_sym_minimum] = ACTIONS(207), - [anon_sym_24] = ACTIONS(207), - [anon_sym_maximum] = ACTIONS(207), - [anon_sym_25] = ACTIONS(207), - [anon_sym_atangent] = ACTIONS(207), - [anon_sym_26] = ACTIONS(207), - [anon_sym_length] = ACTIONS(207), - [anon_sym_27] = ACTIONS(207), - [anon_sym_shape] = ACTIONS(207), - [anon_sym_28] = ACTIONS(207), - [anon_sym_range] = ACTIONS(207), - [anon_sym_29] = ACTIONS(207), - [anon_sym_first] = ACTIONS(207), - [anon_sym_30] = ACTIONS(207), - [anon_sym_reverse] = ACTIONS(207), - [anon_sym_31] = ACTIONS(207), - [anon_sym_deshape] = ACTIONS(207), - [anon_sym_32] = ACTIONS(207), - [anon_sym_bits] = ACTIONS(207), - [anon_sym_33] = ACTIONS(207), - [anon_sym_transpose] = ACTIONS(207), - [anon_sym_34] = ACTIONS(207), - [anon_sym_rise] = ACTIONS(207), - [anon_sym_35] = ACTIONS(207), - [anon_sym_fall] = ACTIONS(207), - [anon_sym_36] = ACTIONS(207), - [anon_sym_where] = ACTIONS(207), - [anon_sym_37] = ACTIONS(207), - [anon_sym_classify] = ACTIONS(207), - [anon_sym_38] = ACTIONS(207), - [anon_sym_deduplicate] = ACTIONS(207), - [anon_sym_39] = ACTIONS(207), - [anon_sym_box] = ACTIONS(207), - [anon_sym_40] = ACTIONS(207), - [anon_sym_unbox] = ACTIONS(207), - [anon_sym_41] = ACTIONS(207), - [anon_sym_match] = ACTIONS(207), - [anon_sym_42] = ACTIONS(207), - [anon_sym_couple] = ACTIONS(207), - [anon_sym_43] = ACTIONS(207), - [anon_sym_join] = ACTIONS(207), - [anon_sym_44] = ACTIONS(207), - [anon_sym_select] = ACTIONS(207), - [anon_sym_45] = ACTIONS(207), - [anon_sym_pick] = ACTIONS(207), - [anon_sym_46] = ACTIONS(207), - [anon_sym_reshape] = ACTIONS(207), - [anon_sym_47] = ACTIONS(207), - [anon_sym_take] = ACTIONS(207), - [anon_sym_48] = ACTIONS(207), - [anon_sym_drop] = ACTIONS(207), - [anon_sym_49] = ACTIONS(207), - [anon_sym_rotate] = ACTIONS(207), - [anon_sym_50] = ACTIONS(207), - [anon_sym_windows] = ACTIONS(207), - [anon_sym_51] = ACTIONS(207), - [anon_sym_keep] = ACTIONS(207), - [anon_sym_52] = ACTIONS(207), - [anon_sym_find] = ACTIONS(207), - [anon_sym_53] = ACTIONS(207), - [anon_sym_member] = ACTIONS(207), - [anon_sym_54] = ACTIONS(207), - [anon_sym_indexof] = ACTIONS(207), - [anon_sym_55] = ACTIONS(207), - [anon_sym_assert] = ACTIONS(207), - [anon_sym_56] = ACTIONS(207), - [anon_sym_wait] = ACTIONS(207), - [anon_sym_break] = ACTIONS(207), - [anon_sym_57] = ACTIONS(207), - [anon_sym_parse] = ACTIONS(207), - [anon_sym_random] = ACTIONS(207), - [anon_sym_58] = ACTIONS(207), - [anon_sym_gen] = ACTIONS(207), - [anon_sym_deal] = ACTIONS(207), - [anon_sym_tag] = ACTIONS(207), - [anon_sym_now] = ACTIONS(207), - [anon_sym_type] = ACTIONS(207), - [anon_sym_59] = ACTIONS(207), - [anon_sym_dump] = ACTIONS(207), - [anon_sym_regex] = ACTIONS(207), - [anon_sym_utf] = ACTIONS(207), - [anon_sym_rock] = ACTIONS(207), - [anon_sym_60] = ACTIONS(207), - [anon_sym_surface] = ACTIONS(207), - [anon_sym_TILDE] = ACTIONS(207), - [anon_sym_deep] = ACTIONS(207), - [anon_sym_de] = ACTIONS(210), - [anon_sym_61] = ACTIONS(207), - [anon_sym_abyss] = ACTIONS(207), - [anon_sym_ab] = ACTIONS(210), - [anon_sym_62] = ACTIONS(207), - [anon_sym_seabed] = ACTIONS(207), - [anon_sym_se] = ACTIONS(210), - [anon_sym_63] = ACTIONS(207), - [anon_sym_send] = ACTIONS(207), - [anon_sym_recv] = ACTIONS(207), - [anon_sym_tryrecv] = ACTIONS(207), - [anon_sym_reduce] = ACTIONS(213), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_scan] = ACTIONS(213), - [anon_sym_BSLASH] = ACTIONS(213), - [anon_sym_each] = ACTIONS(213), - [anon_sym_64] = ACTIONS(213), - [anon_sym_rows] = ACTIONS(213), - [anon_sym_65] = ACTIONS(213), - [anon_sym_repeat] = ACTIONS(213), - [anon_sym_66] = ACTIONS(213), - [anon_sym_dip] = ACTIONS(213), - [anon_sym_di] = ACTIONS(216), - [anon_sym_67] = ACTIONS(213), - [anon_sym_gap] = ACTIONS(213), - [anon_sym_ga] = ACTIONS(216), - [anon_sym_68] = ACTIONS(213), - [anon_sym_oust] = ACTIONS(213), - [anon_sym_69] = ACTIONS(213), - [anon_sym_invert] = ACTIONS(213), - [anon_sym_70] = ACTIONS(213), - [anon_sym_spawn] = ACTIONS(213), - [anon_sym_pack] = ACTIONS(213), - [anon_sym_71] = ACTIONS(213), - [anon_sym_tribute] = ACTIONS(213), - [anon_sym_72] = ACTIONS(213), - [anon_sym_fold] = ACTIONS(219), - [anon_sym_73] = ACTIONS(219), - [anon_sym_distribute] = ACTIONS(219), - [anon_sym_74] = ACTIONS(219), - [anon_sym_table] = ACTIONS(219), - [anon_sym_75] = ACTIONS(219), - [anon_sym_cross] = ACTIONS(219), - [anon_sym_76] = ACTIONS(219), - [anon_sym_group] = ACTIONS(219), - [anon_sym_77] = ACTIONS(219), - [anon_sym_partition] = ACTIONS(219), - [anon_sym_78] = ACTIONS(219), - [anon_sym_both] = ACTIONS(219), - [anon_sym_79] = ACTIONS(219), - [anon_sym_bracket] = ACTIONS(219), - [anon_sym_80] = ACTIONS(219), - [anon_sym_fork] = ACTIONS(219), - [anon_sym_81] = ACTIONS(219), - [anon_sym_under] = ACTIONS(219), - [anon_sym_82] = ACTIONS(219), - [anon_sym_level] = ACTIONS(219), - [anon_sym_83] = ACTIONS(219), - [anon_sym_fill] = ACTIONS(219), - [anon_sym_84] = ACTIONS(219), - [anon_sym_bind] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(219), - [anon_sym_QMARK] = ACTIONS(219), - [anon_sym_try] = ACTIONS(222), - [anon_sym_85] = ACTIONS(219), - [anon_sym_combinate] = ACTIONS(219), - [anon_sym_86] = ACTIONS(219), - [anon_sym_87] = ACTIONS(225), - [anon_sym_88] = ACTIONS(225), - [anon_sym_89] = ACTIONS(225), - [anon_sym_90] = ACTIONS(225), - [anon_sym_91] = ACTIONS(225), - [anon_sym_92] = ACTIONS(225), - [anon_sym_93] = ACTIONS(225), + [aux_sym_number_token1] = ACTIONS(155), + [anon_sym_os] = ACTIONS(158), + [anon_sym_Family] = ACTIONS(158), + [anon_sym_Arch] = ACTIONS(158), + [anon_sym_ExeExt] = ACTIONS(158), + [anon_sym_PllExt] = ACTIONS(158), + [anon_sym_Sep] = ACTIONS(158), + [aux_sym_character_token1] = ACTIONS(161), + [sym_string] = ACTIONS(164), + [sym_multiLineString] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(167), + [sym_identifier] = ACTIONS(170), + [sym_identifier_deprecated] = ACTIONS(170), + [sym_system] = ACTIONS(164), + [sym_comment] = ACTIONS(173), + [sym_tripleMinus] = ACTIONS(176), + [sym_openParen] = ACTIONS(179), + [sym_openCurly] = ACTIONS(182), + [sym_openBracket] = ACTIONS(185), + [sym_leftArrow] = ACTIONS(188), + [anon_sym_CARET] = ACTIONS(191), + [anon_sym_eta] = ACTIONS(194), + [anon_sym_] = ACTIONS(197), + [anon_sym_pi] = ACTIONS(197), + [anon_sym_2] = ACTIONS(197), + [anon_sym_tau] = ACTIONS(194), + [anon_sym_3] = ACTIONS(197), + [anon_sym_infinity] = ACTIONS(194), + [anon_sym_4] = ACTIONS(194), + [anon_sym_e] = ACTIONS(197), + [anon_sym_NaN] = ACTIONS(197), + [anon_sym_NumProcs] = ACTIONS(197), + [anon_sym_DOT] = ACTIONS(200), + [anon_sym_COMMA] = ACTIONS(200), + [anon_sym_5] = ACTIONS(200), + [anon_sym_SEMI] = ACTIONS(200), + [anon_sym_identity] = ACTIONS(200), + [anon_sym_id] = ACTIONS(203), + [anon_sym_6] = ACTIONS(200), + [anon_sym_not] = ACTIONS(200), + [anon_sym_7] = ACTIONS(200), + [anon_sym_sign] = ACTIONS(200), + [anon_sym_8] = ACTIONS(200), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_9] = ACTIONS(200), + [anon_sym_absolutevalue] = ACTIONS(200), + [anon_sym_10] = ACTIONS(200), + [anon_sym_sqrt] = ACTIONS(200), + [anon_sym_11] = ACTIONS(200), + [anon_sym_sine] = ACTIONS(200), + [anon_sym_12] = ACTIONS(200), + [anon_sym_floor] = ACTIONS(200), + [anon_sym_13] = ACTIONS(200), + [anon_sym_ceiling] = ACTIONS(200), + [anon_sym_14] = ACTIONS(200), + [anon_sym_round] = ACTIONS(200), + [anon_sym_15] = ACTIONS(200), + [anon_sym_EQ] = ACTIONS(200), + [anon_sym_BANG_EQ] = ACTIONS(200), + [anon_sym_16] = ACTIONS(200), + [anon_sym_LT] = ACTIONS(203), + [anon_sym_LT_EQ] = ACTIONS(200), + [anon_sym_17] = ACTIONS(200), + [anon_sym_GT] = ACTIONS(203), + [anon_sym_GT_EQ] = ACTIONS(200), + [anon_sym_18] = ACTIONS(200), + [anon_sym_PLUS] = ACTIONS(200), + [anon_sym_DASH] = ACTIONS(203), + [anon_sym_STAR] = ACTIONS(200), + [anon_sym_19] = ACTIONS(200), + [anon_sym_PERCENT] = ACTIONS(200), + [anon_sym_20] = ACTIONS(200), + [anon_sym_modulus] = ACTIONS(200), + [anon_sym_21] = ACTIONS(200), + [anon_sym_power] = ACTIONS(200), + [anon_sym_22] = ACTIONS(200), + [anon_sym_logarithm] = ACTIONS(200), + [anon_sym_23] = ACTIONS(200), + [anon_sym_minimum] = ACTIONS(200), + [anon_sym_24] = ACTIONS(200), + [anon_sym_maximum] = ACTIONS(200), + [anon_sym_25] = ACTIONS(200), + [anon_sym_atangent] = ACTIONS(200), + [anon_sym_26] = ACTIONS(200), + [anon_sym_length] = ACTIONS(200), + [anon_sym_27] = ACTIONS(200), + [anon_sym_shape] = ACTIONS(200), + [anon_sym_28] = ACTIONS(200), + [anon_sym_range] = ACTIONS(200), + [anon_sym_29] = ACTIONS(200), + [anon_sym_first] = ACTIONS(200), + [anon_sym_30] = ACTIONS(200), + [anon_sym_reverse] = ACTIONS(200), + [anon_sym_31] = ACTIONS(200), + [anon_sym_deshape] = ACTIONS(200), + [anon_sym_32] = ACTIONS(200), + [anon_sym_bits] = ACTIONS(200), + [anon_sym_33] = ACTIONS(200), + [anon_sym_transpose] = ACTIONS(200), + [anon_sym_34] = ACTIONS(200), + [anon_sym_rise] = ACTIONS(200), + [anon_sym_35] = ACTIONS(200), + [anon_sym_fall] = ACTIONS(200), + [anon_sym_36] = ACTIONS(200), + [anon_sym_where] = ACTIONS(200), + [anon_sym_37] = ACTIONS(200), + [anon_sym_classify] = ACTIONS(200), + [anon_sym_38] = ACTIONS(200), + [anon_sym_deduplicate] = ACTIONS(200), + [anon_sym_39] = ACTIONS(200), + [anon_sym_box] = ACTIONS(200), + [anon_sym_40] = ACTIONS(200), + [anon_sym_unbox] = ACTIONS(200), + [anon_sym_41] = ACTIONS(200), + [anon_sym_match] = ACTIONS(200), + [anon_sym_42] = ACTIONS(200), + [anon_sym_couple] = ACTIONS(200), + [anon_sym_43] = ACTIONS(200), + [anon_sym_join] = ACTIONS(200), + [anon_sym_44] = ACTIONS(200), + [anon_sym_select] = ACTIONS(200), + [anon_sym_45] = ACTIONS(200), + [anon_sym_pick] = ACTIONS(200), + [anon_sym_46] = ACTIONS(200), + [anon_sym_reshape] = ACTIONS(200), + [anon_sym_47] = ACTIONS(200), + [anon_sym_take] = ACTIONS(200), + [anon_sym_48] = ACTIONS(200), + [anon_sym_drop] = ACTIONS(200), + [anon_sym_49] = ACTIONS(200), + [anon_sym_rotate] = ACTIONS(200), + [anon_sym_50] = ACTIONS(200), + [anon_sym_windows] = ACTIONS(200), + [anon_sym_51] = ACTIONS(200), + [anon_sym_keep] = ACTIONS(200), + [anon_sym_52] = ACTIONS(200), + [anon_sym_find] = ACTIONS(200), + [anon_sym_53] = ACTIONS(200), + [anon_sym_member] = ACTIONS(200), + [anon_sym_54] = ACTIONS(200), + [anon_sym_indexof] = ACTIONS(200), + [anon_sym_55] = ACTIONS(200), + [anon_sym_assert] = ACTIONS(200), + [anon_sym_56] = ACTIONS(200), + [anon_sym_wait] = ACTIONS(200), + [anon_sym_break] = ACTIONS(200), + [anon_sym_57] = ACTIONS(200), + [anon_sym_parse] = ACTIONS(200), + [anon_sym_random] = ACTIONS(200), + [anon_sym_58] = ACTIONS(200), + [anon_sym_gen] = ACTIONS(200), + [anon_sym_deal] = ACTIONS(200), + [anon_sym_tag] = ACTIONS(200), + [anon_sym_now] = ACTIONS(200), + [anon_sym_type] = ACTIONS(200), + [anon_sym_59] = ACTIONS(200), + [anon_sym_dump] = ACTIONS(200), + [anon_sym_regex] = ACTIONS(200), + [anon_sym_utf] = ACTIONS(200), + [anon_sym_rock] = ACTIONS(200), + [anon_sym_60] = ACTIONS(200), + [anon_sym_surface] = ACTIONS(200), + [anon_sym_TILDE] = ACTIONS(200), + [anon_sym_deep] = ACTIONS(200), + [anon_sym_de] = ACTIONS(203), + [anon_sym_61] = ACTIONS(200), + [anon_sym_abyss] = ACTIONS(200), + [anon_sym_ab] = ACTIONS(203), + [anon_sym_62] = ACTIONS(200), + [anon_sym_seabed] = ACTIONS(200), + [anon_sym_se] = ACTIONS(203), + [anon_sym_63] = ACTIONS(200), + [anon_sym_send] = ACTIONS(200), + [anon_sym_recv] = ACTIONS(200), + [anon_sym_tryrecv] = ACTIONS(200), + [anon_sym_reduce] = ACTIONS(206), + [anon_sym_SLASH] = ACTIONS(206), + [anon_sym_scan] = ACTIONS(206), + [anon_sym_BSLASH] = ACTIONS(206), + [anon_sym_each] = ACTIONS(206), + [anon_sym_64] = ACTIONS(206), + [anon_sym_rows] = ACTIONS(206), + [anon_sym_65] = ACTIONS(206), + [anon_sym_repeat] = ACTIONS(206), + [anon_sym_66] = ACTIONS(206), + [anon_sym_dip] = ACTIONS(206), + [anon_sym_67] = ACTIONS(206), + [anon_sym_gap] = ACTIONS(206), + [anon_sym_68] = ACTIONS(206), + [anon_sym_69] = ACTIONS(206), + [anon_sym_invert] = ACTIONS(206), + [anon_sym_70] = ACTIONS(206), + [anon_sym_spawn] = ACTIONS(206), + [anon_sym_pack] = ACTIONS(206), + [anon_sym_71] = ACTIONS(206), + [anon_sym_tribute] = ACTIONS(206), + [anon_sym_72] = ACTIONS(206), + [anon_sym_reach] = ACTIONS(206), + [anon_sym_fold] = ACTIONS(209), + [anon_sym_73] = ACTIONS(209), + [anon_sym_distribute] = ACTIONS(209), + [anon_sym_74] = ACTIONS(209), + [anon_sym_table] = ACTIONS(209), + [anon_sym_75] = ACTIONS(209), + [anon_sym_cross] = ACTIONS(209), + [anon_sym_76] = ACTIONS(209), + [anon_sym_group] = ACTIONS(209), + [anon_sym_77] = ACTIONS(209), + [anon_sym_partition] = ACTIONS(209), + [anon_sym_78] = ACTIONS(209), + [anon_sym_both] = ACTIONS(209), + [anon_sym_79] = ACTIONS(209), + [anon_sym_bracket] = ACTIONS(209), + [anon_sym_80] = ACTIONS(209), + [anon_sym_fork] = ACTIONS(209), + [anon_sym_81] = ACTIONS(209), + [anon_sym_under] = ACTIONS(209), + [anon_sym_82] = ACTIONS(209), + [anon_sym_level] = ACTIONS(209), + [anon_sym_83] = ACTIONS(209), + [anon_sym_fill] = ACTIONS(209), + [anon_sym_84] = ACTIONS(209), + [anon_sym_bind] = ACTIONS(209), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_QMARK] = ACTIONS(209), + [anon_sym_try] = ACTIONS(212), + [anon_sym_85] = ACTIONS(209), + [anon_sym_combinate] = ACTIONS(209), + [anon_sym_86] = ACTIONS(209), + [anon_sym_87] = ACTIONS(215), + [anon_sym_88] = ACTIONS(215), + [anon_sym_89] = ACTIONS(215), + [anon_sym_90] = ACTIONS(215), + [anon_sym_91] = ACTIONS(215), + [anon_sym_92] = ACTIONS(215), + [anon_sym_93] = ACTIONS(215), [sym__whitespace] = ACTIONS(5), [sym__end_of_line] = ACTIONS(5), }, @@ -8031,248 +8001,246 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_modifier2] = STATE(59), [sym_deprecated] = STATE(61), [aux_sym_array_repeat1] = STATE(57), - [aux_sym_number_token1] = ACTIONS(116), - [anon_sym_os] = ACTIONS(118), - [anon_sym_Family] = ACTIONS(118), - [anon_sym_Arch] = ACTIONS(118), - [anon_sym_ExeExt] = ACTIONS(118), - [anon_sym_PllExt] = ACTIONS(118), - [anon_sym_Sep] = ACTIONS(118), - [aux_sym_character_token1] = ACTIONS(120), - [sym_string] = ACTIONS(122), - [sym_multiLineString] = ACTIONS(122), + [aux_sym_number_token1] = ACTIONS(111), + [anon_sym_os] = ACTIONS(113), + [anon_sym_Family] = ACTIONS(113), + [anon_sym_Arch] = ACTIONS(113), + [anon_sym_ExeExt] = ACTIONS(113), + [anon_sym_PllExt] = ACTIONS(113), + [anon_sym_Sep] = ACTIONS(113), + [aux_sym_character_token1] = ACTIONS(115), + [sym_string] = ACTIONS(117), + [sym_multiLineString] = ACTIONS(117), [anon_sym_PIPE] = ACTIONS(15), - [sym_identifier] = ACTIONS(126), - [sym_identifier_deprecated] = ACTIONS(126), - [sym_system] = ACTIONS(122), - [sym_comment] = ACTIONS(228), - [sym_openParen] = ACTIONS(130), - [sym_openCurly] = ACTIONS(134), - [sym_closeCurly] = ACTIONS(132), - [sym_openBracket] = ACTIONS(136), - [sym_closeBracket] = ACTIONS(132), - [sym_underscore] = ACTIONS(138), - [sym_leftArrow] = ACTIONS(230), - [anon_sym_CARET] = ACTIONS(142), - [anon_sym_eta] = ACTIONS(144), - [anon_sym_] = ACTIONS(146), - [anon_sym_pi] = ACTIONS(146), - [anon_sym_2] = ACTIONS(146), - [anon_sym_tau] = ACTIONS(144), - [anon_sym_3] = ACTIONS(146), - [anon_sym_infinity] = ACTIONS(144), - [anon_sym_4] = ACTIONS(144), - [anon_sym_e] = ACTIONS(146), - [anon_sym_NaN] = ACTIONS(146), - [anon_sym_NumProcs] = ACTIONS(146), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_COMMA] = ACTIONS(148), - [anon_sym_5] = ACTIONS(148), - [anon_sym_SEMI] = ACTIONS(148), - [anon_sym_identity] = ACTIONS(148), - [anon_sym_id] = ACTIONS(150), - [anon_sym_6] = ACTIONS(148), - [anon_sym_not] = ACTIONS(148), - [anon_sym_7] = ACTIONS(148), - [anon_sym_sign] = ACTIONS(148), - [anon_sym_8] = ACTIONS(148), - [anon_sym_BQUOTE] = ACTIONS(148), - [anon_sym_9] = ACTIONS(148), - [anon_sym_absolutevalue] = ACTIONS(148), - [anon_sym_10] = ACTIONS(148), - [anon_sym_sqrt] = ACTIONS(148), - [anon_sym_11] = ACTIONS(148), - [anon_sym_sine] = ACTIONS(148), - [anon_sym_12] = ACTIONS(148), - [anon_sym_floor] = ACTIONS(148), - [anon_sym_13] = ACTIONS(148), - [anon_sym_ceiling] = ACTIONS(148), - [anon_sym_14] = ACTIONS(148), - [anon_sym_round] = ACTIONS(148), - [anon_sym_15] = ACTIONS(148), - [anon_sym_EQ] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_16] = ACTIONS(148), - [anon_sym_LT] = ACTIONS(150), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_17] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_18] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_19] = ACTIONS(148), - [anon_sym_PERCENT] = ACTIONS(148), - [anon_sym_20] = ACTIONS(148), - [anon_sym_modulus] = ACTIONS(148), - [anon_sym_21] = ACTIONS(148), - [anon_sym_power] = ACTIONS(148), - [anon_sym_22] = ACTIONS(148), - [anon_sym_logarithm] = ACTIONS(148), - [anon_sym_23] = ACTIONS(148), - [anon_sym_minimum] = ACTIONS(148), - [anon_sym_24] = ACTIONS(148), - [anon_sym_maximum] = ACTIONS(148), - [anon_sym_25] = ACTIONS(148), - [anon_sym_atangent] = ACTIONS(148), - [anon_sym_26] = ACTIONS(148), - [anon_sym_length] = ACTIONS(148), - [anon_sym_27] = ACTIONS(148), - [anon_sym_shape] = ACTIONS(148), - [anon_sym_28] = ACTIONS(148), - [anon_sym_range] = ACTIONS(148), - [anon_sym_29] = ACTIONS(148), - [anon_sym_first] = ACTIONS(148), - [anon_sym_30] = ACTIONS(148), - [anon_sym_reverse] = ACTIONS(148), - [anon_sym_31] = ACTIONS(148), - [anon_sym_deshape] = ACTIONS(148), - [anon_sym_32] = ACTIONS(148), - [anon_sym_bits] = ACTIONS(148), - [anon_sym_33] = ACTIONS(148), - [anon_sym_transpose] = ACTIONS(148), - [anon_sym_34] = ACTIONS(148), - [anon_sym_rise] = ACTIONS(148), - [anon_sym_35] = ACTIONS(148), - [anon_sym_fall] = ACTIONS(148), - [anon_sym_36] = ACTIONS(148), - [anon_sym_where] = ACTIONS(148), - [anon_sym_37] = ACTIONS(148), - [anon_sym_classify] = ACTIONS(148), - [anon_sym_38] = ACTIONS(148), - [anon_sym_deduplicate] = ACTIONS(148), - [anon_sym_39] = ACTIONS(148), - [anon_sym_box] = ACTIONS(148), - [anon_sym_40] = ACTIONS(148), - [anon_sym_unbox] = ACTIONS(148), - [anon_sym_41] = ACTIONS(148), - [anon_sym_match] = ACTIONS(148), - [anon_sym_42] = ACTIONS(148), - [anon_sym_couple] = ACTIONS(148), - [anon_sym_43] = ACTIONS(148), - [anon_sym_join] = ACTIONS(148), - [anon_sym_44] = ACTIONS(148), - [anon_sym_select] = ACTIONS(148), - [anon_sym_45] = ACTIONS(148), - [anon_sym_pick] = ACTIONS(148), - [anon_sym_46] = ACTIONS(148), - [anon_sym_reshape] = ACTIONS(148), - [anon_sym_47] = ACTIONS(148), - [anon_sym_take] = ACTIONS(148), - [anon_sym_48] = ACTIONS(148), - [anon_sym_drop] = ACTIONS(148), - [anon_sym_49] = ACTIONS(148), - [anon_sym_rotate] = ACTIONS(148), - [anon_sym_50] = ACTIONS(148), - [anon_sym_windows] = ACTIONS(148), - [anon_sym_51] = ACTIONS(148), - [anon_sym_keep] = ACTIONS(148), - [anon_sym_52] = ACTIONS(148), - [anon_sym_find] = ACTIONS(148), - [anon_sym_53] = ACTIONS(148), - [anon_sym_member] = ACTIONS(148), - [anon_sym_54] = ACTIONS(148), - [anon_sym_indexof] = ACTIONS(148), - [anon_sym_55] = ACTIONS(148), - [anon_sym_assert] = ACTIONS(148), - [anon_sym_56] = ACTIONS(148), - [anon_sym_wait] = ACTIONS(148), - [anon_sym_break] = ACTIONS(148), - [anon_sym_57] = ACTIONS(148), - [anon_sym_parse] = ACTIONS(148), - [anon_sym_random] = ACTIONS(148), - [anon_sym_58] = ACTIONS(148), - [anon_sym_gen] = ACTIONS(148), - [anon_sym_deal] = ACTIONS(148), - [anon_sym_tag] = ACTIONS(148), - [anon_sym_now] = ACTIONS(148), - [anon_sym_type] = ACTIONS(148), - [anon_sym_59] = ACTIONS(148), - [anon_sym_dump] = ACTIONS(148), - [anon_sym_regex] = ACTIONS(148), - [anon_sym_utf] = ACTIONS(148), - [anon_sym_rock] = ACTIONS(148), - [anon_sym_60] = ACTIONS(148), - [anon_sym_surface] = ACTIONS(148), - [anon_sym_TILDE] = ACTIONS(148), - [anon_sym_deep] = ACTIONS(148), - [anon_sym_de] = ACTIONS(150), - [anon_sym_61] = ACTIONS(148), - [anon_sym_abyss] = ACTIONS(148), - [anon_sym_ab] = ACTIONS(150), - [anon_sym_62] = ACTIONS(148), - [anon_sym_seabed] = ACTIONS(148), - [anon_sym_se] = ACTIONS(150), - [anon_sym_63] = ACTIONS(148), - [anon_sym_send] = ACTIONS(148), - [anon_sym_recv] = ACTIONS(148), - [anon_sym_tryrecv] = ACTIONS(148), - [anon_sym_reduce] = ACTIONS(152), - [anon_sym_SLASH] = ACTIONS(152), - [anon_sym_scan] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_each] = ACTIONS(152), - [anon_sym_64] = ACTIONS(152), - [anon_sym_rows] = ACTIONS(152), - [anon_sym_65] = ACTIONS(152), - [anon_sym_repeat] = ACTIONS(152), - [anon_sym_66] = ACTIONS(152), - [anon_sym_dip] = ACTIONS(152), - [anon_sym_di] = ACTIONS(154), - [anon_sym_67] = ACTIONS(152), - [anon_sym_gap] = ACTIONS(152), - [anon_sym_ga] = ACTIONS(154), - [anon_sym_68] = ACTIONS(152), - [anon_sym_oust] = ACTIONS(152), - [anon_sym_69] = ACTIONS(152), - [anon_sym_invert] = ACTIONS(152), - [anon_sym_70] = ACTIONS(152), - [anon_sym_spawn] = ACTIONS(152), - [anon_sym_pack] = ACTIONS(152), - [anon_sym_71] = ACTIONS(152), - [anon_sym_tribute] = ACTIONS(152), - [anon_sym_72] = ACTIONS(152), - [anon_sym_fold] = ACTIONS(156), - [anon_sym_73] = ACTIONS(156), - [anon_sym_distribute] = ACTIONS(156), - [anon_sym_74] = ACTIONS(156), - [anon_sym_table] = ACTIONS(156), - [anon_sym_75] = ACTIONS(156), - [anon_sym_cross] = ACTIONS(156), - [anon_sym_76] = ACTIONS(156), - [anon_sym_group] = ACTIONS(156), - [anon_sym_77] = ACTIONS(156), - [anon_sym_partition] = ACTIONS(156), - [anon_sym_78] = ACTIONS(156), - [anon_sym_both] = ACTIONS(156), - [anon_sym_79] = ACTIONS(156), - [anon_sym_bracket] = ACTIONS(156), - [anon_sym_80] = ACTIONS(156), - [anon_sym_fork] = ACTIONS(156), - [anon_sym_81] = ACTIONS(156), - [anon_sym_under] = ACTIONS(156), - [anon_sym_82] = ACTIONS(156), - [anon_sym_level] = ACTIONS(156), - [anon_sym_83] = ACTIONS(156), - [anon_sym_fill] = ACTIONS(156), - [anon_sym_84] = ACTIONS(156), - [anon_sym_bind] = ACTIONS(156), - [anon_sym_SQUOTE] = ACTIONS(156), - [anon_sym_QMARK] = ACTIONS(156), - [anon_sym_try] = ACTIONS(158), - [anon_sym_85] = ACTIONS(156), - [anon_sym_combinate] = ACTIONS(156), - [anon_sym_86] = ACTIONS(156), - [anon_sym_87] = ACTIONS(160), - [anon_sym_88] = ACTIONS(160), - [anon_sym_89] = ACTIONS(160), - [anon_sym_90] = ACTIONS(160), - [anon_sym_91] = ACTIONS(160), - [anon_sym_92] = ACTIONS(160), - [anon_sym_93] = ACTIONS(160), + [sym_identifier] = ACTIONS(121), + [sym_identifier_deprecated] = ACTIONS(121), + [sym_system] = ACTIONS(117), + [sym_comment] = ACTIONS(218), + [sym_openParen] = ACTIONS(125), + [sym_openCurly] = ACTIONS(129), + [sym_closeCurly] = ACTIONS(127), + [sym_openBracket] = ACTIONS(131), + [sym_closeBracket] = ACTIONS(127), + [sym_underscore] = ACTIONS(133), + [sym_leftArrow] = ACTIONS(220), + [anon_sym_CARET] = ACTIONS(137), + [anon_sym_eta] = ACTIONS(139), + [anon_sym_] = ACTIONS(141), + [anon_sym_pi] = ACTIONS(141), + [anon_sym_2] = ACTIONS(141), + [anon_sym_tau] = ACTIONS(139), + [anon_sym_3] = ACTIONS(141), + [anon_sym_infinity] = ACTIONS(139), + [anon_sym_4] = ACTIONS(139), + [anon_sym_e] = ACTIONS(141), + [anon_sym_NaN] = ACTIONS(141), + [anon_sym_NumProcs] = ACTIONS(141), + [anon_sym_DOT] = ACTIONS(143), + [anon_sym_COMMA] = ACTIONS(143), + [anon_sym_5] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_identity] = ACTIONS(143), + [anon_sym_id] = ACTIONS(145), + [anon_sym_6] = ACTIONS(143), + [anon_sym_not] = ACTIONS(143), + [anon_sym_7] = ACTIONS(143), + [anon_sym_sign] = ACTIONS(143), + [anon_sym_8] = ACTIONS(143), + [anon_sym_BQUOTE] = ACTIONS(143), + [anon_sym_9] = ACTIONS(143), + [anon_sym_absolutevalue] = ACTIONS(143), + [anon_sym_10] = ACTIONS(143), + [anon_sym_sqrt] = ACTIONS(143), + [anon_sym_11] = ACTIONS(143), + [anon_sym_sine] = ACTIONS(143), + [anon_sym_12] = ACTIONS(143), + [anon_sym_floor] = ACTIONS(143), + [anon_sym_13] = ACTIONS(143), + [anon_sym_ceiling] = ACTIONS(143), + [anon_sym_14] = ACTIONS(143), + [anon_sym_round] = ACTIONS(143), + [anon_sym_15] = ACTIONS(143), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_16] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_17] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_18] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_19] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_20] = ACTIONS(143), + [anon_sym_modulus] = ACTIONS(143), + [anon_sym_21] = ACTIONS(143), + [anon_sym_power] = ACTIONS(143), + [anon_sym_22] = ACTIONS(143), + [anon_sym_logarithm] = ACTIONS(143), + [anon_sym_23] = ACTIONS(143), + [anon_sym_minimum] = ACTIONS(143), + [anon_sym_24] = ACTIONS(143), + [anon_sym_maximum] = ACTIONS(143), + [anon_sym_25] = ACTIONS(143), + [anon_sym_atangent] = ACTIONS(143), + [anon_sym_26] = ACTIONS(143), + [anon_sym_length] = ACTIONS(143), + [anon_sym_27] = ACTIONS(143), + [anon_sym_shape] = ACTIONS(143), + [anon_sym_28] = ACTIONS(143), + [anon_sym_range] = ACTIONS(143), + [anon_sym_29] = ACTIONS(143), + [anon_sym_first] = ACTIONS(143), + [anon_sym_30] = ACTIONS(143), + [anon_sym_reverse] = ACTIONS(143), + [anon_sym_31] = ACTIONS(143), + [anon_sym_deshape] = ACTIONS(143), + [anon_sym_32] = ACTIONS(143), + [anon_sym_bits] = ACTIONS(143), + [anon_sym_33] = ACTIONS(143), + [anon_sym_transpose] = ACTIONS(143), + [anon_sym_34] = ACTIONS(143), + [anon_sym_rise] = ACTIONS(143), + [anon_sym_35] = ACTIONS(143), + [anon_sym_fall] = ACTIONS(143), + [anon_sym_36] = ACTIONS(143), + [anon_sym_where] = ACTIONS(143), + [anon_sym_37] = ACTIONS(143), + [anon_sym_classify] = ACTIONS(143), + [anon_sym_38] = ACTIONS(143), + [anon_sym_deduplicate] = ACTIONS(143), + [anon_sym_39] = ACTIONS(143), + [anon_sym_box] = ACTIONS(143), + [anon_sym_40] = ACTIONS(143), + [anon_sym_unbox] = ACTIONS(143), + [anon_sym_41] = ACTIONS(143), + [anon_sym_match] = ACTIONS(143), + [anon_sym_42] = ACTIONS(143), + [anon_sym_couple] = ACTIONS(143), + [anon_sym_43] = ACTIONS(143), + [anon_sym_join] = ACTIONS(143), + [anon_sym_44] = ACTIONS(143), + [anon_sym_select] = ACTIONS(143), + [anon_sym_45] = ACTIONS(143), + [anon_sym_pick] = ACTIONS(143), + [anon_sym_46] = ACTIONS(143), + [anon_sym_reshape] = ACTIONS(143), + [anon_sym_47] = ACTIONS(143), + [anon_sym_take] = ACTIONS(143), + [anon_sym_48] = ACTIONS(143), + [anon_sym_drop] = ACTIONS(143), + [anon_sym_49] = ACTIONS(143), + [anon_sym_rotate] = ACTIONS(143), + [anon_sym_50] = ACTIONS(143), + [anon_sym_windows] = ACTIONS(143), + [anon_sym_51] = ACTIONS(143), + [anon_sym_keep] = ACTIONS(143), + [anon_sym_52] = ACTIONS(143), + [anon_sym_find] = ACTIONS(143), + [anon_sym_53] = ACTIONS(143), + [anon_sym_member] = ACTIONS(143), + [anon_sym_54] = ACTIONS(143), + [anon_sym_indexof] = ACTIONS(143), + [anon_sym_55] = ACTIONS(143), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_56] = ACTIONS(143), + [anon_sym_wait] = ACTIONS(143), + [anon_sym_break] = ACTIONS(143), + [anon_sym_57] = ACTIONS(143), + [anon_sym_parse] = ACTIONS(143), + [anon_sym_random] = ACTIONS(143), + [anon_sym_58] = ACTIONS(143), + [anon_sym_gen] = ACTIONS(143), + [anon_sym_deal] = ACTIONS(143), + [anon_sym_tag] = ACTIONS(143), + [anon_sym_now] = ACTIONS(143), + [anon_sym_type] = ACTIONS(143), + [anon_sym_59] = ACTIONS(143), + [anon_sym_dump] = ACTIONS(143), + [anon_sym_regex] = ACTIONS(143), + [anon_sym_utf] = ACTIONS(143), + [anon_sym_rock] = ACTIONS(143), + [anon_sym_60] = ACTIONS(143), + [anon_sym_surface] = ACTIONS(143), + [anon_sym_TILDE] = ACTIONS(143), + [anon_sym_deep] = ACTIONS(143), + [anon_sym_de] = ACTIONS(145), + [anon_sym_61] = ACTIONS(143), + [anon_sym_abyss] = ACTIONS(143), + [anon_sym_ab] = ACTIONS(145), + [anon_sym_62] = ACTIONS(143), + [anon_sym_seabed] = ACTIONS(143), + [anon_sym_se] = ACTIONS(145), + [anon_sym_63] = ACTIONS(143), + [anon_sym_send] = ACTIONS(143), + [anon_sym_recv] = ACTIONS(143), + [anon_sym_tryrecv] = ACTIONS(143), + [anon_sym_reduce] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_scan] = ACTIONS(147), + [anon_sym_BSLASH] = ACTIONS(147), + [anon_sym_each] = ACTIONS(147), + [anon_sym_64] = ACTIONS(147), + [anon_sym_rows] = ACTIONS(147), + [anon_sym_65] = ACTIONS(147), + [anon_sym_repeat] = ACTIONS(147), + [anon_sym_66] = ACTIONS(147), + [anon_sym_dip] = ACTIONS(147), + [anon_sym_67] = ACTIONS(147), + [anon_sym_gap] = ACTIONS(147), + [anon_sym_68] = ACTIONS(147), + [anon_sym_69] = ACTIONS(147), + [anon_sym_invert] = ACTIONS(147), + [anon_sym_70] = ACTIONS(147), + [anon_sym_spawn] = ACTIONS(147), + [anon_sym_pack] = ACTIONS(147), + [anon_sym_71] = ACTIONS(147), + [anon_sym_tribute] = ACTIONS(147), + [anon_sym_72] = ACTIONS(147), + [anon_sym_reach] = ACTIONS(147), + [anon_sym_fold] = ACTIONS(149), + [anon_sym_73] = ACTIONS(149), + [anon_sym_distribute] = ACTIONS(149), + [anon_sym_74] = ACTIONS(149), + [anon_sym_table] = ACTIONS(149), + [anon_sym_75] = ACTIONS(149), + [anon_sym_cross] = ACTIONS(149), + [anon_sym_76] = ACTIONS(149), + [anon_sym_group] = ACTIONS(149), + [anon_sym_77] = ACTIONS(149), + [anon_sym_partition] = ACTIONS(149), + [anon_sym_78] = ACTIONS(149), + [anon_sym_both] = ACTIONS(149), + [anon_sym_79] = ACTIONS(149), + [anon_sym_bracket] = ACTIONS(149), + [anon_sym_80] = ACTIONS(149), + [anon_sym_fork] = ACTIONS(149), + [anon_sym_81] = ACTIONS(149), + [anon_sym_under] = ACTIONS(149), + [anon_sym_82] = ACTIONS(149), + [anon_sym_level] = ACTIONS(149), + [anon_sym_83] = ACTIONS(149), + [anon_sym_fill] = ACTIONS(149), + [anon_sym_84] = ACTIONS(149), + [anon_sym_bind] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_try] = ACTIONS(151), + [anon_sym_85] = ACTIONS(149), + [anon_sym_combinate] = ACTIONS(149), + [anon_sym_86] = ACTIONS(149), + [anon_sym_87] = ACTIONS(153), + [anon_sym_88] = ACTIONS(153), + [anon_sym_89] = ACTIONS(153), + [anon_sym_90] = ACTIONS(153), + [anon_sym_91] = ACTIONS(153), + [anon_sym_92] = ACTIONS(153), + [anon_sym_93] = ACTIONS(153), [sym__whitespace] = ACTIONS(5), - [sym__end_of_line] = ACTIONS(132), + [sym__end_of_line] = ACTIONS(127), }, [7] = { [sym_segment] = STATE(166), @@ -8295,243 +8263,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_module_repeat1] = STATE(40), [aux_sym_switchFunctions_repeat1] = STATE(45), [aux_sym_array_repeat1] = STATE(57), - [aux_sym_number_token1] = ACTIONS(116), - [anon_sym_os] = ACTIONS(118), - [anon_sym_Family] = ACTIONS(118), - [anon_sym_Arch] = ACTIONS(118), - [anon_sym_ExeExt] = ACTIONS(118), - [anon_sym_PllExt] = ACTIONS(118), - [anon_sym_Sep] = ACTIONS(118), - [aux_sym_character_token1] = ACTIONS(120), - [sym_string] = ACTIONS(122), - [sym_multiLineString] = ACTIONS(122), + [aux_sym_number_token1] = ACTIONS(111), + [anon_sym_os] = ACTIONS(113), + [anon_sym_Family] = ACTIONS(113), + [anon_sym_Arch] = ACTIONS(113), + [anon_sym_ExeExt] = ACTIONS(113), + [anon_sym_PllExt] = ACTIONS(113), + [anon_sym_Sep] = ACTIONS(113), + [aux_sym_character_token1] = ACTIONS(115), + [sym_string] = ACTIONS(117), + [sym_multiLineString] = ACTIONS(117), [anon_sym_PIPE] = ACTIONS(15), - [sym_identifier] = ACTIONS(126), - [sym_identifier_deprecated] = ACTIONS(126), - [sym_system] = ACTIONS(122), - [sym_comment] = ACTIONS(128), - [sym_openParen] = ACTIONS(130), - [sym_openCurly] = ACTIONS(134), - [sym_openBracket] = ACTIONS(136), - [sym_leftArrow] = ACTIONS(140), - [anon_sym_CARET] = ACTIONS(142), - [anon_sym_eta] = ACTIONS(144), - [anon_sym_] = ACTIONS(146), - [anon_sym_pi] = ACTIONS(146), - [anon_sym_2] = ACTIONS(146), - [anon_sym_tau] = ACTIONS(144), - [anon_sym_3] = ACTIONS(146), - [anon_sym_infinity] = ACTIONS(144), - [anon_sym_4] = ACTIONS(144), - [anon_sym_e] = ACTIONS(146), - [anon_sym_NaN] = ACTIONS(146), - [anon_sym_NumProcs] = ACTIONS(146), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_COMMA] = ACTIONS(148), - [anon_sym_5] = ACTIONS(148), - [anon_sym_SEMI] = ACTIONS(148), - [anon_sym_identity] = ACTIONS(148), - [anon_sym_id] = ACTIONS(150), - [anon_sym_6] = ACTIONS(148), - [anon_sym_not] = ACTIONS(148), - [anon_sym_7] = ACTIONS(148), - [anon_sym_sign] = ACTIONS(148), - [anon_sym_8] = ACTIONS(148), - [anon_sym_BQUOTE] = ACTIONS(148), - [anon_sym_9] = ACTIONS(148), - [anon_sym_absolutevalue] = ACTIONS(148), - [anon_sym_10] = ACTIONS(148), - [anon_sym_sqrt] = ACTIONS(148), - [anon_sym_11] = ACTIONS(148), - [anon_sym_sine] = ACTIONS(148), - [anon_sym_12] = ACTIONS(148), - [anon_sym_floor] = ACTIONS(148), - [anon_sym_13] = ACTIONS(148), - [anon_sym_ceiling] = ACTIONS(148), - [anon_sym_14] = ACTIONS(148), - [anon_sym_round] = ACTIONS(148), - [anon_sym_15] = ACTIONS(148), - [anon_sym_EQ] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_16] = ACTIONS(148), - [anon_sym_LT] = ACTIONS(150), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_17] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_18] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_19] = ACTIONS(148), - [anon_sym_PERCENT] = ACTIONS(148), - [anon_sym_20] = ACTIONS(148), - [anon_sym_modulus] = ACTIONS(148), - [anon_sym_21] = ACTIONS(148), - [anon_sym_power] = ACTIONS(148), - [anon_sym_22] = ACTIONS(148), - [anon_sym_logarithm] = ACTIONS(148), - [anon_sym_23] = ACTIONS(148), - [anon_sym_minimum] = ACTIONS(148), - [anon_sym_24] = ACTIONS(148), - [anon_sym_maximum] = ACTIONS(148), - [anon_sym_25] = ACTIONS(148), - [anon_sym_atangent] = ACTIONS(148), - [anon_sym_26] = ACTIONS(148), - [anon_sym_length] = ACTIONS(148), - [anon_sym_27] = ACTIONS(148), - [anon_sym_shape] = ACTIONS(148), - [anon_sym_28] = ACTIONS(148), - [anon_sym_range] = ACTIONS(148), - [anon_sym_29] = ACTIONS(148), - [anon_sym_first] = ACTIONS(148), - [anon_sym_30] = ACTIONS(148), - [anon_sym_reverse] = ACTIONS(148), - [anon_sym_31] = ACTIONS(148), - [anon_sym_deshape] = ACTIONS(148), - [anon_sym_32] = ACTIONS(148), - [anon_sym_bits] = ACTIONS(148), - [anon_sym_33] = ACTIONS(148), - [anon_sym_transpose] = ACTIONS(148), - [anon_sym_34] = ACTIONS(148), - [anon_sym_rise] = ACTIONS(148), - [anon_sym_35] = ACTIONS(148), - [anon_sym_fall] = ACTIONS(148), - [anon_sym_36] = ACTIONS(148), - [anon_sym_where] = ACTIONS(148), - [anon_sym_37] = ACTIONS(148), - [anon_sym_classify] = ACTIONS(148), - [anon_sym_38] = ACTIONS(148), - [anon_sym_deduplicate] = ACTIONS(148), - [anon_sym_39] = ACTIONS(148), - [anon_sym_box] = ACTIONS(148), - [anon_sym_40] = ACTIONS(148), - [anon_sym_unbox] = ACTIONS(148), - [anon_sym_41] = ACTIONS(148), - [anon_sym_match] = ACTIONS(148), - [anon_sym_42] = ACTIONS(148), - [anon_sym_couple] = ACTIONS(148), - [anon_sym_43] = ACTIONS(148), - [anon_sym_join] = ACTIONS(148), - [anon_sym_44] = ACTIONS(148), - [anon_sym_select] = ACTIONS(148), - [anon_sym_45] = ACTIONS(148), - [anon_sym_pick] = ACTIONS(148), - [anon_sym_46] = ACTIONS(148), - [anon_sym_reshape] = ACTIONS(148), - [anon_sym_47] = ACTIONS(148), - [anon_sym_take] = ACTIONS(148), - [anon_sym_48] = ACTIONS(148), - [anon_sym_drop] = ACTIONS(148), - [anon_sym_49] = ACTIONS(148), - [anon_sym_rotate] = ACTIONS(148), - [anon_sym_50] = ACTIONS(148), - [anon_sym_windows] = ACTIONS(148), - [anon_sym_51] = ACTIONS(148), - [anon_sym_keep] = ACTIONS(148), - [anon_sym_52] = ACTIONS(148), - [anon_sym_find] = ACTIONS(148), - [anon_sym_53] = ACTIONS(148), - [anon_sym_member] = ACTIONS(148), - [anon_sym_54] = ACTIONS(148), - [anon_sym_indexof] = ACTIONS(148), - [anon_sym_55] = ACTIONS(148), - [anon_sym_assert] = ACTIONS(148), - [anon_sym_56] = ACTIONS(148), - [anon_sym_wait] = ACTIONS(148), - [anon_sym_break] = ACTIONS(148), - [anon_sym_57] = ACTIONS(148), - [anon_sym_parse] = ACTIONS(148), - [anon_sym_random] = ACTIONS(148), - [anon_sym_58] = ACTIONS(148), - [anon_sym_gen] = ACTIONS(148), - [anon_sym_deal] = ACTIONS(148), - [anon_sym_tag] = ACTIONS(148), - [anon_sym_now] = ACTIONS(148), - [anon_sym_type] = ACTIONS(148), - [anon_sym_59] = ACTIONS(148), - [anon_sym_dump] = ACTIONS(148), - [anon_sym_regex] = ACTIONS(148), - [anon_sym_utf] = ACTIONS(148), - [anon_sym_rock] = ACTIONS(148), - [anon_sym_60] = ACTIONS(148), - [anon_sym_surface] = ACTIONS(148), - [anon_sym_TILDE] = ACTIONS(148), - [anon_sym_deep] = ACTIONS(148), - [anon_sym_de] = ACTIONS(150), - [anon_sym_61] = ACTIONS(148), - [anon_sym_abyss] = ACTIONS(148), - [anon_sym_ab] = ACTIONS(150), - [anon_sym_62] = ACTIONS(148), - [anon_sym_seabed] = ACTIONS(148), - [anon_sym_se] = ACTIONS(150), - [anon_sym_63] = ACTIONS(148), - [anon_sym_send] = ACTIONS(148), - [anon_sym_recv] = ACTIONS(148), - [anon_sym_tryrecv] = ACTIONS(148), - [anon_sym_reduce] = ACTIONS(152), - [anon_sym_SLASH] = ACTIONS(152), - [anon_sym_scan] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_each] = ACTIONS(152), - [anon_sym_64] = ACTIONS(152), - [anon_sym_rows] = ACTIONS(152), - [anon_sym_65] = ACTIONS(152), - [anon_sym_repeat] = ACTIONS(152), - [anon_sym_66] = ACTIONS(152), - [anon_sym_dip] = ACTIONS(152), - [anon_sym_di] = ACTIONS(154), - [anon_sym_67] = ACTIONS(152), - [anon_sym_gap] = ACTIONS(152), - [anon_sym_ga] = ACTIONS(154), - [anon_sym_68] = ACTIONS(152), - [anon_sym_oust] = ACTIONS(152), - [anon_sym_69] = ACTIONS(152), - [anon_sym_invert] = ACTIONS(152), - [anon_sym_70] = ACTIONS(152), - [anon_sym_spawn] = ACTIONS(152), - [anon_sym_pack] = ACTIONS(152), - [anon_sym_71] = ACTIONS(152), - [anon_sym_tribute] = ACTIONS(152), - [anon_sym_72] = ACTIONS(152), - [anon_sym_fold] = ACTIONS(156), - [anon_sym_73] = ACTIONS(156), - [anon_sym_distribute] = ACTIONS(156), - [anon_sym_74] = ACTIONS(156), - [anon_sym_table] = ACTIONS(156), - [anon_sym_75] = ACTIONS(156), - [anon_sym_cross] = ACTIONS(156), - [anon_sym_76] = ACTIONS(156), - [anon_sym_group] = ACTIONS(156), - [anon_sym_77] = ACTIONS(156), - [anon_sym_partition] = ACTIONS(156), - [anon_sym_78] = ACTIONS(156), - [anon_sym_both] = ACTIONS(156), - [anon_sym_79] = ACTIONS(156), - [anon_sym_bracket] = ACTIONS(156), - [anon_sym_80] = ACTIONS(156), - [anon_sym_fork] = ACTIONS(156), - [anon_sym_81] = ACTIONS(156), - [anon_sym_under] = ACTIONS(156), - [anon_sym_82] = ACTIONS(156), - [anon_sym_level] = ACTIONS(156), - [anon_sym_83] = ACTIONS(156), - [anon_sym_fill] = ACTIONS(156), - [anon_sym_84] = ACTIONS(156), - [anon_sym_bind] = ACTIONS(156), - [anon_sym_SQUOTE] = ACTIONS(156), - [anon_sym_QMARK] = ACTIONS(156), - [anon_sym_try] = ACTIONS(158), - [anon_sym_85] = ACTIONS(156), - [anon_sym_combinate] = ACTIONS(156), - [anon_sym_86] = ACTIONS(156), - [anon_sym_87] = ACTIONS(160), - [anon_sym_88] = ACTIONS(160), - [anon_sym_89] = ACTIONS(160), - [anon_sym_90] = ACTIONS(160), - [anon_sym_91] = ACTIONS(160), - [anon_sym_92] = ACTIONS(160), - [anon_sym_93] = ACTIONS(160), + [sym_identifier] = ACTIONS(121), + [sym_identifier_deprecated] = ACTIONS(121), + [sym_system] = ACTIONS(117), + [sym_comment] = ACTIONS(123), + [sym_openParen] = ACTIONS(125), + [sym_openCurly] = ACTIONS(129), + [sym_openBracket] = ACTIONS(131), + [sym_leftArrow] = ACTIONS(135), + [anon_sym_CARET] = ACTIONS(137), + [anon_sym_eta] = ACTIONS(139), + [anon_sym_] = ACTIONS(141), + [anon_sym_pi] = ACTIONS(141), + [anon_sym_2] = ACTIONS(141), + [anon_sym_tau] = ACTIONS(139), + [anon_sym_3] = ACTIONS(141), + [anon_sym_infinity] = ACTIONS(139), + [anon_sym_4] = ACTIONS(139), + [anon_sym_e] = ACTIONS(141), + [anon_sym_NaN] = ACTIONS(141), + [anon_sym_NumProcs] = ACTIONS(141), + [anon_sym_DOT] = ACTIONS(143), + [anon_sym_COMMA] = ACTIONS(143), + [anon_sym_5] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_identity] = ACTIONS(143), + [anon_sym_id] = ACTIONS(145), + [anon_sym_6] = ACTIONS(143), + [anon_sym_not] = ACTIONS(143), + [anon_sym_7] = ACTIONS(143), + [anon_sym_sign] = ACTIONS(143), + [anon_sym_8] = ACTIONS(143), + [anon_sym_BQUOTE] = ACTIONS(143), + [anon_sym_9] = ACTIONS(143), + [anon_sym_absolutevalue] = ACTIONS(143), + [anon_sym_10] = ACTIONS(143), + [anon_sym_sqrt] = ACTIONS(143), + [anon_sym_11] = ACTIONS(143), + [anon_sym_sine] = ACTIONS(143), + [anon_sym_12] = ACTIONS(143), + [anon_sym_floor] = ACTIONS(143), + [anon_sym_13] = ACTIONS(143), + [anon_sym_ceiling] = ACTIONS(143), + [anon_sym_14] = ACTIONS(143), + [anon_sym_round] = ACTIONS(143), + [anon_sym_15] = ACTIONS(143), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_16] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_17] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_18] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_19] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_20] = ACTIONS(143), + [anon_sym_modulus] = ACTIONS(143), + [anon_sym_21] = ACTIONS(143), + [anon_sym_power] = ACTIONS(143), + [anon_sym_22] = ACTIONS(143), + [anon_sym_logarithm] = ACTIONS(143), + [anon_sym_23] = ACTIONS(143), + [anon_sym_minimum] = ACTIONS(143), + [anon_sym_24] = ACTIONS(143), + [anon_sym_maximum] = ACTIONS(143), + [anon_sym_25] = ACTIONS(143), + [anon_sym_atangent] = ACTIONS(143), + [anon_sym_26] = ACTIONS(143), + [anon_sym_length] = ACTIONS(143), + [anon_sym_27] = ACTIONS(143), + [anon_sym_shape] = ACTIONS(143), + [anon_sym_28] = ACTIONS(143), + [anon_sym_range] = ACTIONS(143), + [anon_sym_29] = ACTIONS(143), + [anon_sym_first] = ACTIONS(143), + [anon_sym_30] = ACTIONS(143), + [anon_sym_reverse] = ACTIONS(143), + [anon_sym_31] = ACTIONS(143), + [anon_sym_deshape] = ACTIONS(143), + [anon_sym_32] = ACTIONS(143), + [anon_sym_bits] = ACTIONS(143), + [anon_sym_33] = ACTIONS(143), + [anon_sym_transpose] = ACTIONS(143), + [anon_sym_34] = ACTIONS(143), + [anon_sym_rise] = ACTIONS(143), + [anon_sym_35] = ACTIONS(143), + [anon_sym_fall] = ACTIONS(143), + [anon_sym_36] = ACTIONS(143), + [anon_sym_where] = ACTIONS(143), + [anon_sym_37] = ACTIONS(143), + [anon_sym_classify] = ACTIONS(143), + [anon_sym_38] = ACTIONS(143), + [anon_sym_deduplicate] = ACTIONS(143), + [anon_sym_39] = ACTIONS(143), + [anon_sym_box] = ACTIONS(143), + [anon_sym_40] = ACTIONS(143), + [anon_sym_unbox] = ACTIONS(143), + [anon_sym_41] = ACTIONS(143), + [anon_sym_match] = ACTIONS(143), + [anon_sym_42] = ACTIONS(143), + [anon_sym_couple] = ACTIONS(143), + [anon_sym_43] = ACTIONS(143), + [anon_sym_join] = ACTIONS(143), + [anon_sym_44] = ACTIONS(143), + [anon_sym_select] = ACTIONS(143), + [anon_sym_45] = ACTIONS(143), + [anon_sym_pick] = ACTIONS(143), + [anon_sym_46] = ACTIONS(143), + [anon_sym_reshape] = ACTIONS(143), + [anon_sym_47] = ACTIONS(143), + [anon_sym_take] = ACTIONS(143), + [anon_sym_48] = ACTIONS(143), + [anon_sym_drop] = ACTIONS(143), + [anon_sym_49] = ACTIONS(143), + [anon_sym_rotate] = ACTIONS(143), + [anon_sym_50] = ACTIONS(143), + [anon_sym_windows] = ACTIONS(143), + [anon_sym_51] = ACTIONS(143), + [anon_sym_keep] = ACTIONS(143), + [anon_sym_52] = ACTIONS(143), + [anon_sym_find] = ACTIONS(143), + [anon_sym_53] = ACTIONS(143), + [anon_sym_member] = ACTIONS(143), + [anon_sym_54] = ACTIONS(143), + [anon_sym_indexof] = ACTIONS(143), + [anon_sym_55] = ACTIONS(143), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_56] = ACTIONS(143), + [anon_sym_wait] = ACTIONS(143), + [anon_sym_break] = ACTIONS(143), + [anon_sym_57] = ACTIONS(143), + [anon_sym_parse] = ACTIONS(143), + [anon_sym_random] = ACTIONS(143), + [anon_sym_58] = ACTIONS(143), + [anon_sym_gen] = ACTIONS(143), + [anon_sym_deal] = ACTIONS(143), + [anon_sym_tag] = ACTIONS(143), + [anon_sym_now] = ACTIONS(143), + [anon_sym_type] = ACTIONS(143), + [anon_sym_59] = ACTIONS(143), + [anon_sym_dump] = ACTIONS(143), + [anon_sym_regex] = ACTIONS(143), + [anon_sym_utf] = ACTIONS(143), + [anon_sym_rock] = ACTIONS(143), + [anon_sym_60] = ACTIONS(143), + [anon_sym_surface] = ACTIONS(143), + [anon_sym_TILDE] = ACTIONS(143), + [anon_sym_deep] = ACTIONS(143), + [anon_sym_de] = ACTIONS(145), + [anon_sym_61] = ACTIONS(143), + [anon_sym_abyss] = ACTIONS(143), + [anon_sym_ab] = ACTIONS(145), + [anon_sym_62] = ACTIONS(143), + [anon_sym_seabed] = ACTIONS(143), + [anon_sym_se] = ACTIONS(145), + [anon_sym_63] = ACTIONS(143), + [anon_sym_send] = ACTIONS(143), + [anon_sym_recv] = ACTIONS(143), + [anon_sym_tryrecv] = ACTIONS(143), + [anon_sym_reduce] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_scan] = ACTIONS(147), + [anon_sym_BSLASH] = ACTIONS(147), + [anon_sym_each] = ACTIONS(147), + [anon_sym_64] = ACTIONS(147), + [anon_sym_rows] = ACTIONS(147), + [anon_sym_65] = ACTIONS(147), + [anon_sym_repeat] = ACTIONS(147), + [anon_sym_66] = ACTIONS(147), + [anon_sym_dip] = ACTIONS(147), + [anon_sym_67] = ACTIONS(147), + [anon_sym_gap] = ACTIONS(147), + [anon_sym_68] = ACTIONS(147), + [anon_sym_69] = ACTIONS(147), + [anon_sym_invert] = ACTIONS(147), + [anon_sym_70] = ACTIONS(147), + [anon_sym_spawn] = ACTIONS(147), + [anon_sym_pack] = ACTIONS(147), + [anon_sym_71] = ACTIONS(147), + [anon_sym_tribute] = ACTIONS(147), + [anon_sym_72] = ACTIONS(147), + [anon_sym_reach] = ACTIONS(147), + [anon_sym_fold] = ACTIONS(149), + [anon_sym_73] = ACTIONS(149), + [anon_sym_distribute] = ACTIONS(149), + [anon_sym_74] = ACTIONS(149), + [anon_sym_table] = ACTIONS(149), + [anon_sym_75] = ACTIONS(149), + [anon_sym_cross] = ACTIONS(149), + [anon_sym_76] = ACTIONS(149), + [anon_sym_group] = ACTIONS(149), + [anon_sym_77] = ACTIONS(149), + [anon_sym_partition] = ACTIONS(149), + [anon_sym_78] = ACTIONS(149), + [anon_sym_both] = ACTIONS(149), + [anon_sym_79] = ACTIONS(149), + [anon_sym_bracket] = ACTIONS(149), + [anon_sym_80] = ACTIONS(149), + [anon_sym_fork] = ACTIONS(149), + [anon_sym_81] = ACTIONS(149), + [anon_sym_under] = ACTIONS(149), + [anon_sym_82] = ACTIONS(149), + [anon_sym_level] = ACTIONS(149), + [anon_sym_83] = ACTIONS(149), + [anon_sym_fill] = ACTIONS(149), + [anon_sym_84] = ACTIONS(149), + [anon_sym_bind] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_try] = ACTIONS(151), + [anon_sym_85] = ACTIONS(149), + [anon_sym_combinate] = ACTIONS(149), + [anon_sym_86] = ACTIONS(149), + [anon_sym_87] = ACTIONS(153), + [anon_sym_88] = ACTIONS(153), + [anon_sym_89] = ACTIONS(153), + [anon_sym_90] = ACTIONS(153), + [anon_sym_91] = ACTIONS(153), + [anon_sym_92] = ACTIONS(153), + [anon_sym_93] = ACTIONS(153), [sym__whitespace] = ACTIONS(5), [sym__end_of_line] = ACTIONS(5), }, @@ -8555,246 +8521,244 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_deprecated] = STATE(61), [aux_sym_array_repeat1] = STATE(57), [aux_sym_array_repeat2] = STATE(32), - [aux_sym_number_token1] = ACTIONS(116), - [anon_sym_os] = ACTIONS(118), - [anon_sym_Family] = ACTIONS(118), - [anon_sym_Arch] = ACTIONS(118), - [anon_sym_ExeExt] = ACTIONS(118), - [anon_sym_PllExt] = ACTIONS(118), - [anon_sym_Sep] = ACTIONS(118), - [aux_sym_character_token1] = ACTIONS(120), - [sym_string] = ACTIONS(122), - [sym_multiLineString] = ACTIONS(122), + [aux_sym_number_token1] = ACTIONS(111), + [anon_sym_os] = ACTIONS(113), + [anon_sym_Family] = ACTIONS(113), + [anon_sym_Arch] = ACTIONS(113), + [anon_sym_ExeExt] = ACTIONS(113), + [anon_sym_PllExt] = ACTIONS(113), + [anon_sym_Sep] = ACTIONS(113), + [aux_sym_character_token1] = ACTIONS(115), + [sym_string] = ACTIONS(117), + [sym_multiLineString] = ACTIONS(117), [anon_sym_PIPE] = ACTIONS(15), - [sym_identifier] = ACTIONS(126), - [sym_identifier_deprecated] = ACTIONS(126), - [sym_system] = ACTIONS(122), - [sym_comment] = ACTIONS(228), - [sym_openParen] = ACTIONS(130), - [sym_openCurly] = ACTIONS(134), - [sym_openBracket] = ACTIONS(136), - [sym_closeBracket] = ACTIONS(232), - [sym_leftArrow] = ACTIONS(230), - [anon_sym_CARET] = ACTIONS(142), - [anon_sym_eta] = ACTIONS(144), - [anon_sym_] = ACTIONS(146), - [anon_sym_pi] = ACTIONS(146), - [anon_sym_2] = ACTIONS(146), - [anon_sym_tau] = ACTIONS(144), - [anon_sym_3] = ACTIONS(146), - [anon_sym_infinity] = ACTIONS(144), - [anon_sym_4] = ACTIONS(144), - [anon_sym_e] = ACTIONS(146), - [anon_sym_NaN] = ACTIONS(146), - [anon_sym_NumProcs] = ACTIONS(146), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_COMMA] = ACTIONS(148), - [anon_sym_5] = ACTIONS(148), - [anon_sym_SEMI] = ACTIONS(148), - [anon_sym_identity] = ACTIONS(148), - [anon_sym_id] = ACTIONS(150), - [anon_sym_6] = ACTIONS(148), - [anon_sym_not] = ACTIONS(148), - [anon_sym_7] = ACTIONS(148), - [anon_sym_sign] = ACTIONS(148), - [anon_sym_8] = ACTIONS(148), - [anon_sym_BQUOTE] = ACTIONS(148), - [anon_sym_9] = ACTIONS(148), - [anon_sym_absolutevalue] = ACTIONS(148), - [anon_sym_10] = ACTIONS(148), - [anon_sym_sqrt] = ACTIONS(148), - [anon_sym_11] = ACTIONS(148), - [anon_sym_sine] = ACTIONS(148), - [anon_sym_12] = ACTIONS(148), - [anon_sym_floor] = ACTIONS(148), - [anon_sym_13] = ACTIONS(148), - [anon_sym_ceiling] = ACTIONS(148), - [anon_sym_14] = ACTIONS(148), - [anon_sym_round] = ACTIONS(148), - [anon_sym_15] = ACTIONS(148), - [anon_sym_EQ] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_16] = ACTIONS(148), - [anon_sym_LT] = ACTIONS(150), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_17] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_18] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_19] = ACTIONS(148), - [anon_sym_PERCENT] = ACTIONS(148), - [anon_sym_20] = ACTIONS(148), - [anon_sym_modulus] = ACTIONS(148), - [anon_sym_21] = ACTIONS(148), - [anon_sym_power] = ACTIONS(148), - [anon_sym_22] = ACTIONS(148), - [anon_sym_logarithm] = ACTIONS(148), - [anon_sym_23] = ACTIONS(148), - [anon_sym_minimum] = ACTIONS(148), - [anon_sym_24] = ACTIONS(148), - [anon_sym_maximum] = ACTIONS(148), - [anon_sym_25] = ACTIONS(148), - [anon_sym_atangent] = ACTIONS(148), - [anon_sym_26] = ACTIONS(148), - [anon_sym_length] = ACTIONS(148), - [anon_sym_27] = ACTIONS(148), - [anon_sym_shape] = ACTIONS(148), - [anon_sym_28] = ACTIONS(148), - [anon_sym_range] = ACTIONS(148), - [anon_sym_29] = ACTIONS(148), - [anon_sym_first] = ACTIONS(148), - [anon_sym_30] = ACTIONS(148), - [anon_sym_reverse] = ACTIONS(148), - [anon_sym_31] = ACTIONS(148), - [anon_sym_deshape] = ACTIONS(148), - [anon_sym_32] = ACTIONS(148), - [anon_sym_bits] = ACTIONS(148), - [anon_sym_33] = ACTIONS(148), - [anon_sym_transpose] = ACTIONS(148), - [anon_sym_34] = ACTIONS(148), - [anon_sym_rise] = ACTIONS(148), - [anon_sym_35] = ACTIONS(148), - [anon_sym_fall] = ACTIONS(148), - [anon_sym_36] = ACTIONS(148), - [anon_sym_where] = ACTIONS(148), - [anon_sym_37] = ACTIONS(148), - [anon_sym_classify] = ACTIONS(148), - [anon_sym_38] = ACTIONS(148), - [anon_sym_deduplicate] = ACTIONS(148), - [anon_sym_39] = ACTIONS(148), - [anon_sym_box] = ACTIONS(148), - [anon_sym_40] = ACTIONS(148), - [anon_sym_unbox] = ACTIONS(148), - [anon_sym_41] = ACTIONS(148), - [anon_sym_match] = ACTIONS(148), - [anon_sym_42] = ACTIONS(148), - [anon_sym_couple] = ACTIONS(148), - [anon_sym_43] = ACTIONS(148), - [anon_sym_join] = ACTIONS(148), - [anon_sym_44] = ACTIONS(148), - [anon_sym_select] = ACTIONS(148), - [anon_sym_45] = ACTIONS(148), - [anon_sym_pick] = ACTIONS(148), - [anon_sym_46] = ACTIONS(148), - [anon_sym_reshape] = ACTIONS(148), - [anon_sym_47] = ACTIONS(148), - [anon_sym_take] = ACTIONS(148), - [anon_sym_48] = ACTIONS(148), - [anon_sym_drop] = ACTIONS(148), - [anon_sym_49] = ACTIONS(148), - [anon_sym_rotate] = ACTIONS(148), - [anon_sym_50] = ACTIONS(148), - [anon_sym_windows] = ACTIONS(148), - [anon_sym_51] = ACTIONS(148), - [anon_sym_keep] = ACTIONS(148), - [anon_sym_52] = ACTIONS(148), - [anon_sym_find] = ACTIONS(148), - [anon_sym_53] = ACTIONS(148), - [anon_sym_member] = ACTIONS(148), - [anon_sym_54] = ACTIONS(148), - [anon_sym_indexof] = ACTIONS(148), - [anon_sym_55] = ACTIONS(148), - [anon_sym_assert] = ACTIONS(148), - [anon_sym_56] = ACTIONS(148), - [anon_sym_wait] = ACTIONS(148), - [anon_sym_break] = ACTIONS(148), - [anon_sym_57] = ACTIONS(148), - [anon_sym_parse] = ACTIONS(148), - [anon_sym_random] = ACTIONS(148), - [anon_sym_58] = ACTIONS(148), - [anon_sym_gen] = ACTIONS(148), - [anon_sym_deal] = ACTIONS(148), - [anon_sym_tag] = ACTIONS(148), - [anon_sym_now] = ACTIONS(148), - [anon_sym_type] = ACTIONS(148), - [anon_sym_59] = ACTIONS(148), - [anon_sym_dump] = ACTIONS(148), - [anon_sym_regex] = ACTIONS(148), - [anon_sym_utf] = ACTIONS(148), - [anon_sym_rock] = ACTIONS(148), - [anon_sym_60] = ACTIONS(148), - [anon_sym_surface] = ACTIONS(148), - [anon_sym_TILDE] = ACTIONS(148), - [anon_sym_deep] = ACTIONS(148), - [anon_sym_de] = ACTIONS(150), - [anon_sym_61] = ACTIONS(148), - [anon_sym_abyss] = ACTIONS(148), - [anon_sym_ab] = ACTIONS(150), - [anon_sym_62] = ACTIONS(148), - [anon_sym_seabed] = ACTIONS(148), - [anon_sym_se] = ACTIONS(150), - [anon_sym_63] = ACTIONS(148), - [anon_sym_send] = ACTIONS(148), - [anon_sym_recv] = ACTIONS(148), - [anon_sym_tryrecv] = ACTIONS(148), - [anon_sym_reduce] = ACTIONS(152), - [anon_sym_SLASH] = ACTIONS(152), - [anon_sym_scan] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_each] = ACTIONS(152), - [anon_sym_64] = ACTIONS(152), - [anon_sym_rows] = ACTIONS(152), - [anon_sym_65] = ACTIONS(152), - [anon_sym_repeat] = ACTIONS(152), - [anon_sym_66] = ACTIONS(152), - [anon_sym_dip] = ACTIONS(152), - [anon_sym_di] = ACTIONS(154), - [anon_sym_67] = ACTIONS(152), - [anon_sym_gap] = ACTIONS(152), - [anon_sym_ga] = ACTIONS(154), - [anon_sym_68] = ACTIONS(152), - [anon_sym_oust] = ACTIONS(152), - [anon_sym_69] = ACTIONS(152), - [anon_sym_invert] = ACTIONS(152), - [anon_sym_70] = ACTIONS(152), - [anon_sym_spawn] = ACTIONS(152), - [anon_sym_pack] = ACTIONS(152), - [anon_sym_71] = ACTIONS(152), - [anon_sym_tribute] = ACTIONS(152), - [anon_sym_72] = ACTIONS(152), - [anon_sym_fold] = ACTIONS(156), - [anon_sym_73] = ACTIONS(156), - [anon_sym_distribute] = ACTIONS(156), - [anon_sym_74] = ACTIONS(156), - [anon_sym_table] = ACTIONS(156), - [anon_sym_75] = ACTIONS(156), - [anon_sym_cross] = ACTIONS(156), - [anon_sym_76] = ACTIONS(156), - [anon_sym_group] = ACTIONS(156), - [anon_sym_77] = ACTIONS(156), - [anon_sym_partition] = ACTIONS(156), - [anon_sym_78] = ACTIONS(156), - [anon_sym_both] = ACTIONS(156), - [anon_sym_79] = ACTIONS(156), - [anon_sym_bracket] = ACTIONS(156), - [anon_sym_80] = ACTIONS(156), - [anon_sym_fork] = ACTIONS(156), - [anon_sym_81] = ACTIONS(156), - [anon_sym_under] = ACTIONS(156), - [anon_sym_82] = ACTIONS(156), - [anon_sym_level] = ACTIONS(156), - [anon_sym_83] = ACTIONS(156), - [anon_sym_fill] = ACTIONS(156), - [anon_sym_84] = ACTIONS(156), - [anon_sym_bind] = ACTIONS(156), - [anon_sym_SQUOTE] = ACTIONS(156), - [anon_sym_QMARK] = ACTIONS(156), - [anon_sym_try] = ACTIONS(158), - [anon_sym_85] = ACTIONS(156), - [anon_sym_combinate] = ACTIONS(156), - [anon_sym_86] = ACTIONS(156), - [anon_sym_87] = ACTIONS(160), - [anon_sym_88] = ACTIONS(160), - [anon_sym_89] = ACTIONS(160), - [anon_sym_90] = ACTIONS(160), - [anon_sym_91] = ACTIONS(160), - [anon_sym_92] = ACTIONS(160), - [anon_sym_93] = ACTIONS(160), + [sym_identifier] = ACTIONS(121), + [sym_identifier_deprecated] = ACTIONS(121), + [sym_system] = ACTIONS(117), + [sym_comment] = ACTIONS(218), + [sym_openParen] = ACTIONS(125), + [sym_openCurly] = ACTIONS(129), + [sym_openBracket] = ACTIONS(131), + [sym_closeBracket] = ACTIONS(222), + [sym_leftArrow] = ACTIONS(220), + [anon_sym_CARET] = ACTIONS(137), + [anon_sym_eta] = ACTIONS(139), + [anon_sym_] = ACTIONS(141), + [anon_sym_pi] = ACTIONS(141), + [anon_sym_2] = ACTIONS(141), + [anon_sym_tau] = ACTIONS(139), + [anon_sym_3] = ACTIONS(141), + [anon_sym_infinity] = ACTIONS(139), + [anon_sym_4] = ACTIONS(139), + [anon_sym_e] = ACTIONS(141), + [anon_sym_NaN] = ACTIONS(141), + [anon_sym_NumProcs] = ACTIONS(141), + [anon_sym_DOT] = ACTIONS(143), + [anon_sym_COMMA] = ACTIONS(143), + [anon_sym_5] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_identity] = ACTIONS(143), + [anon_sym_id] = ACTIONS(145), + [anon_sym_6] = ACTIONS(143), + [anon_sym_not] = ACTIONS(143), + [anon_sym_7] = ACTIONS(143), + [anon_sym_sign] = ACTIONS(143), + [anon_sym_8] = ACTIONS(143), + [anon_sym_BQUOTE] = ACTIONS(143), + [anon_sym_9] = ACTIONS(143), + [anon_sym_absolutevalue] = ACTIONS(143), + [anon_sym_10] = ACTIONS(143), + [anon_sym_sqrt] = ACTIONS(143), + [anon_sym_11] = ACTIONS(143), + [anon_sym_sine] = ACTIONS(143), + [anon_sym_12] = ACTIONS(143), + [anon_sym_floor] = ACTIONS(143), + [anon_sym_13] = ACTIONS(143), + [anon_sym_ceiling] = ACTIONS(143), + [anon_sym_14] = ACTIONS(143), + [anon_sym_round] = ACTIONS(143), + [anon_sym_15] = ACTIONS(143), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_16] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_17] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_18] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_19] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_20] = ACTIONS(143), + [anon_sym_modulus] = ACTIONS(143), + [anon_sym_21] = ACTIONS(143), + [anon_sym_power] = ACTIONS(143), + [anon_sym_22] = ACTIONS(143), + [anon_sym_logarithm] = ACTIONS(143), + [anon_sym_23] = ACTIONS(143), + [anon_sym_minimum] = ACTIONS(143), + [anon_sym_24] = ACTIONS(143), + [anon_sym_maximum] = ACTIONS(143), + [anon_sym_25] = ACTIONS(143), + [anon_sym_atangent] = ACTIONS(143), + [anon_sym_26] = ACTIONS(143), + [anon_sym_length] = ACTIONS(143), + [anon_sym_27] = ACTIONS(143), + [anon_sym_shape] = ACTIONS(143), + [anon_sym_28] = ACTIONS(143), + [anon_sym_range] = ACTIONS(143), + [anon_sym_29] = ACTIONS(143), + [anon_sym_first] = ACTIONS(143), + [anon_sym_30] = ACTIONS(143), + [anon_sym_reverse] = ACTIONS(143), + [anon_sym_31] = ACTIONS(143), + [anon_sym_deshape] = ACTIONS(143), + [anon_sym_32] = ACTIONS(143), + [anon_sym_bits] = ACTIONS(143), + [anon_sym_33] = ACTIONS(143), + [anon_sym_transpose] = ACTIONS(143), + [anon_sym_34] = ACTIONS(143), + [anon_sym_rise] = ACTIONS(143), + [anon_sym_35] = ACTIONS(143), + [anon_sym_fall] = ACTIONS(143), + [anon_sym_36] = ACTIONS(143), + [anon_sym_where] = ACTIONS(143), + [anon_sym_37] = ACTIONS(143), + [anon_sym_classify] = ACTIONS(143), + [anon_sym_38] = ACTIONS(143), + [anon_sym_deduplicate] = ACTIONS(143), + [anon_sym_39] = ACTIONS(143), + [anon_sym_box] = ACTIONS(143), + [anon_sym_40] = ACTIONS(143), + [anon_sym_unbox] = ACTIONS(143), + [anon_sym_41] = ACTIONS(143), + [anon_sym_match] = ACTIONS(143), + [anon_sym_42] = ACTIONS(143), + [anon_sym_couple] = ACTIONS(143), + [anon_sym_43] = ACTIONS(143), + [anon_sym_join] = ACTIONS(143), + [anon_sym_44] = ACTIONS(143), + [anon_sym_select] = ACTIONS(143), + [anon_sym_45] = ACTIONS(143), + [anon_sym_pick] = ACTIONS(143), + [anon_sym_46] = ACTIONS(143), + [anon_sym_reshape] = ACTIONS(143), + [anon_sym_47] = ACTIONS(143), + [anon_sym_take] = ACTIONS(143), + [anon_sym_48] = ACTIONS(143), + [anon_sym_drop] = ACTIONS(143), + [anon_sym_49] = ACTIONS(143), + [anon_sym_rotate] = ACTIONS(143), + [anon_sym_50] = ACTIONS(143), + [anon_sym_windows] = ACTIONS(143), + [anon_sym_51] = ACTIONS(143), + [anon_sym_keep] = ACTIONS(143), + [anon_sym_52] = ACTIONS(143), + [anon_sym_find] = ACTIONS(143), + [anon_sym_53] = ACTIONS(143), + [anon_sym_member] = ACTIONS(143), + [anon_sym_54] = ACTIONS(143), + [anon_sym_indexof] = ACTIONS(143), + [anon_sym_55] = ACTIONS(143), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_56] = ACTIONS(143), + [anon_sym_wait] = ACTIONS(143), + [anon_sym_break] = ACTIONS(143), + [anon_sym_57] = ACTIONS(143), + [anon_sym_parse] = ACTIONS(143), + [anon_sym_random] = ACTIONS(143), + [anon_sym_58] = ACTIONS(143), + [anon_sym_gen] = ACTIONS(143), + [anon_sym_deal] = ACTIONS(143), + [anon_sym_tag] = ACTIONS(143), + [anon_sym_now] = ACTIONS(143), + [anon_sym_type] = ACTIONS(143), + [anon_sym_59] = ACTIONS(143), + [anon_sym_dump] = ACTIONS(143), + [anon_sym_regex] = ACTIONS(143), + [anon_sym_utf] = ACTIONS(143), + [anon_sym_rock] = ACTIONS(143), + [anon_sym_60] = ACTIONS(143), + [anon_sym_surface] = ACTIONS(143), + [anon_sym_TILDE] = ACTIONS(143), + [anon_sym_deep] = ACTIONS(143), + [anon_sym_de] = ACTIONS(145), + [anon_sym_61] = ACTIONS(143), + [anon_sym_abyss] = ACTIONS(143), + [anon_sym_ab] = ACTIONS(145), + [anon_sym_62] = ACTIONS(143), + [anon_sym_seabed] = ACTIONS(143), + [anon_sym_se] = ACTIONS(145), + [anon_sym_63] = ACTIONS(143), + [anon_sym_send] = ACTIONS(143), + [anon_sym_recv] = ACTIONS(143), + [anon_sym_tryrecv] = ACTIONS(143), + [anon_sym_reduce] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_scan] = ACTIONS(147), + [anon_sym_BSLASH] = ACTIONS(147), + [anon_sym_each] = ACTIONS(147), + [anon_sym_64] = ACTIONS(147), + [anon_sym_rows] = ACTIONS(147), + [anon_sym_65] = ACTIONS(147), + [anon_sym_repeat] = ACTIONS(147), + [anon_sym_66] = ACTIONS(147), + [anon_sym_dip] = ACTIONS(147), + [anon_sym_67] = ACTIONS(147), + [anon_sym_gap] = ACTIONS(147), + [anon_sym_68] = ACTIONS(147), + [anon_sym_69] = ACTIONS(147), + [anon_sym_invert] = ACTIONS(147), + [anon_sym_70] = ACTIONS(147), + [anon_sym_spawn] = ACTIONS(147), + [anon_sym_pack] = ACTIONS(147), + [anon_sym_71] = ACTIONS(147), + [anon_sym_tribute] = ACTIONS(147), + [anon_sym_72] = ACTIONS(147), + [anon_sym_reach] = ACTIONS(147), + [anon_sym_fold] = ACTIONS(149), + [anon_sym_73] = ACTIONS(149), + [anon_sym_distribute] = ACTIONS(149), + [anon_sym_74] = ACTIONS(149), + [anon_sym_table] = ACTIONS(149), + [anon_sym_75] = ACTIONS(149), + [anon_sym_cross] = ACTIONS(149), + [anon_sym_76] = ACTIONS(149), + [anon_sym_group] = ACTIONS(149), + [anon_sym_77] = ACTIONS(149), + [anon_sym_partition] = ACTIONS(149), + [anon_sym_78] = ACTIONS(149), + [anon_sym_both] = ACTIONS(149), + [anon_sym_79] = ACTIONS(149), + [anon_sym_bracket] = ACTIONS(149), + [anon_sym_80] = ACTIONS(149), + [anon_sym_fork] = ACTIONS(149), + [anon_sym_81] = ACTIONS(149), + [anon_sym_under] = ACTIONS(149), + [anon_sym_82] = ACTIONS(149), + [anon_sym_level] = ACTIONS(149), + [anon_sym_83] = ACTIONS(149), + [anon_sym_fill] = ACTIONS(149), + [anon_sym_84] = ACTIONS(149), + [anon_sym_bind] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_try] = ACTIONS(151), + [anon_sym_85] = ACTIONS(149), + [anon_sym_combinate] = ACTIONS(149), + [anon_sym_86] = ACTIONS(149), + [anon_sym_87] = ACTIONS(153), + [anon_sym_88] = ACTIONS(153), + [anon_sym_89] = ACTIONS(153), + [anon_sym_90] = ACTIONS(153), + [anon_sym_91] = ACTIONS(153), + [anon_sym_92] = ACTIONS(153), + [anon_sym_93] = ACTIONS(153), [sym__whitespace] = ACTIONS(5), - [sym__end_of_line] = ACTIONS(234), + [sym__end_of_line] = ACTIONS(224), }, [9] = { [sym_segment] = STATE(104), @@ -8816,244 +8780,242 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_deprecated] = STATE(61), [aux_sym_array_repeat1] = STATE(57), [aux_sym_array_repeat2] = STATE(2), - [aux_sym_number_token1] = ACTIONS(116), - [anon_sym_os] = ACTIONS(118), - [anon_sym_Family] = ACTIONS(118), - [anon_sym_Arch] = ACTIONS(118), - [anon_sym_ExeExt] = ACTIONS(118), - [anon_sym_PllExt] = ACTIONS(118), - [anon_sym_Sep] = ACTIONS(118), - [aux_sym_character_token1] = ACTIONS(120), - [sym_string] = ACTIONS(122), - [sym_multiLineString] = ACTIONS(122), + [aux_sym_number_token1] = ACTIONS(111), + [anon_sym_os] = ACTIONS(113), + [anon_sym_Family] = ACTIONS(113), + [anon_sym_Arch] = ACTIONS(113), + [anon_sym_ExeExt] = ACTIONS(113), + [anon_sym_PllExt] = ACTIONS(113), + [anon_sym_Sep] = ACTIONS(113), + [aux_sym_character_token1] = ACTIONS(115), + [sym_string] = ACTIONS(117), + [sym_multiLineString] = ACTIONS(117), [anon_sym_PIPE] = ACTIONS(15), - [sym_identifier] = ACTIONS(126), - [sym_identifier_deprecated] = ACTIONS(126), - [sym_system] = ACTIONS(122), - [sym_comment] = ACTIONS(228), - [sym_openParen] = ACTIONS(130), - [sym_openCurly] = ACTIONS(134), - [sym_openBracket] = ACTIONS(136), - [sym_closeBracket] = ACTIONS(236), - [sym_leftArrow] = ACTIONS(230), - [anon_sym_CARET] = ACTIONS(142), - [anon_sym_eta] = ACTIONS(144), - [anon_sym_] = ACTIONS(146), - [anon_sym_pi] = ACTIONS(146), - [anon_sym_2] = ACTIONS(146), - [anon_sym_tau] = ACTIONS(144), - [anon_sym_3] = ACTIONS(146), - [anon_sym_infinity] = ACTIONS(144), - [anon_sym_4] = ACTIONS(144), - [anon_sym_e] = ACTIONS(146), - [anon_sym_NaN] = ACTIONS(146), - [anon_sym_NumProcs] = ACTIONS(146), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_COMMA] = ACTIONS(148), - [anon_sym_5] = ACTIONS(148), - [anon_sym_SEMI] = ACTIONS(148), - [anon_sym_identity] = ACTIONS(148), - [anon_sym_id] = ACTIONS(150), - [anon_sym_6] = ACTIONS(148), - [anon_sym_not] = ACTIONS(148), - [anon_sym_7] = ACTIONS(148), - [anon_sym_sign] = ACTIONS(148), - [anon_sym_8] = ACTIONS(148), - [anon_sym_BQUOTE] = ACTIONS(148), - [anon_sym_9] = ACTIONS(148), - [anon_sym_absolutevalue] = ACTIONS(148), - [anon_sym_10] = ACTIONS(148), - [anon_sym_sqrt] = ACTIONS(148), - [anon_sym_11] = ACTIONS(148), - [anon_sym_sine] = ACTIONS(148), - [anon_sym_12] = ACTIONS(148), - [anon_sym_floor] = ACTIONS(148), - [anon_sym_13] = ACTIONS(148), - [anon_sym_ceiling] = ACTIONS(148), - [anon_sym_14] = ACTIONS(148), - [anon_sym_round] = ACTIONS(148), - [anon_sym_15] = ACTIONS(148), - [anon_sym_EQ] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_16] = ACTIONS(148), - [anon_sym_LT] = ACTIONS(150), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_17] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_18] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_19] = ACTIONS(148), - [anon_sym_PERCENT] = ACTIONS(148), - [anon_sym_20] = ACTIONS(148), - [anon_sym_modulus] = ACTIONS(148), - [anon_sym_21] = ACTIONS(148), - [anon_sym_power] = ACTIONS(148), - [anon_sym_22] = ACTIONS(148), - [anon_sym_logarithm] = ACTIONS(148), - [anon_sym_23] = ACTIONS(148), - [anon_sym_minimum] = ACTIONS(148), - [anon_sym_24] = ACTIONS(148), - [anon_sym_maximum] = ACTIONS(148), - [anon_sym_25] = ACTIONS(148), - [anon_sym_atangent] = ACTIONS(148), - [anon_sym_26] = ACTIONS(148), - [anon_sym_length] = ACTIONS(148), - [anon_sym_27] = ACTIONS(148), - [anon_sym_shape] = ACTIONS(148), - [anon_sym_28] = ACTIONS(148), - [anon_sym_range] = ACTIONS(148), - [anon_sym_29] = ACTIONS(148), - [anon_sym_first] = ACTIONS(148), - [anon_sym_30] = ACTIONS(148), - [anon_sym_reverse] = ACTIONS(148), - [anon_sym_31] = ACTIONS(148), - [anon_sym_deshape] = ACTIONS(148), - [anon_sym_32] = ACTIONS(148), - [anon_sym_bits] = ACTIONS(148), - [anon_sym_33] = ACTIONS(148), - [anon_sym_transpose] = ACTIONS(148), - [anon_sym_34] = ACTIONS(148), - [anon_sym_rise] = ACTIONS(148), - [anon_sym_35] = ACTIONS(148), - [anon_sym_fall] = ACTIONS(148), - [anon_sym_36] = ACTIONS(148), - [anon_sym_where] = ACTIONS(148), - [anon_sym_37] = ACTIONS(148), - [anon_sym_classify] = ACTIONS(148), - [anon_sym_38] = ACTIONS(148), - [anon_sym_deduplicate] = ACTIONS(148), - [anon_sym_39] = ACTIONS(148), - [anon_sym_box] = ACTIONS(148), - [anon_sym_40] = ACTIONS(148), - [anon_sym_unbox] = ACTIONS(148), - [anon_sym_41] = ACTIONS(148), - [anon_sym_match] = ACTIONS(148), - [anon_sym_42] = ACTIONS(148), - [anon_sym_couple] = ACTIONS(148), - [anon_sym_43] = ACTIONS(148), - [anon_sym_join] = ACTIONS(148), - [anon_sym_44] = ACTIONS(148), - [anon_sym_select] = ACTIONS(148), - [anon_sym_45] = ACTIONS(148), - [anon_sym_pick] = ACTIONS(148), - [anon_sym_46] = ACTIONS(148), - [anon_sym_reshape] = ACTIONS(148), - [anon_sym_47] = ACTIONS(148), - [anon_sym_take] = ACTIONS(148), - [anon_sym_48] = ACTIONS(148), - [anon_sym_drop] = ACTIONS(148), - [anon_sym_49] = ACTIONS(148), - [anon_sym_rotate] = ACTIONS(148), - [anon_sym_50] = ACTIONS(148), - [anon_sym_windows] = ACTIONS(148), - [anon_sym_51] = ACTIONS(148), - [anon_sym_keep] = ACTIONS(148), - [anon_sym_52] = ACTIONS(148), - [anon_sym_find] = ACTIONS(148), - [anon_sym_53] = ACTIONS(148), - [anon_sym_member] = ACTIONS(148), - [anon_sym_54] = ACTIONS(148), - [anon_sym_indexof] = ACTIONS(148), - [anon_sym_55] = ACTIONS(148), - [anon_sym_assert] = ACTIONS(148), - [anon_sym_56] = ACTIONS(148), - [anon_sym_wait] = ACTIONS(148), - [anon_sym_break] = ACTIONS(148), - [anon_sym_57] = ACTIONS(148), - [anon_sym_parse] = ACTIONS(148), - [anon_sym_random] = ACTIONS(148), - [anon_sym_58] = ACTIONS(148), - [anon_sym_gen] = ACTIONS(148), - [anon_sym_deal] = ACTIONS(148), - [anon_sym_tag] = ACTIONS(148), - [anon_sym_now] = ACTIONS(148), - [anon_sym_type] = ACTIONS(148), - [anon_sym_59] = ACTIONS(148), - [anon_sym_dump] = ACTIONS(148), - [anon_sym_regex] = ACTIONS(148), - [anon_sym_utf] = ACTIONS(148), - [anon_sym_rock] = ACTIONS(148), - [anon_sym_60] = ACTIONS(148), - [anon_sym_surface] = ACTIONS(148), - [anon_sym_TILDE] = ACTIONS(148), - [anon_sym_deep] = ACTIONS(148), - [anon_sym_de] = ACTIONS(150), - [anon_sym_61] = ACTIONS(148), - [anon_sym_abyss] = ACTIONS(148), - [anon_sym_ab] = ACTIONS(150), - [anon_sym_62] = ACTIONS(148), - [anon_sym_seabed] = ACTIONS(148), - [anon_sym_se] = ACTIONS(150), - [anon_sym_63] = ACTIONS(148), - [anon_sym_send] = ACTIONS(148), - [anon_sym_recv] = ACTIONS(148), - [anon_sym_tryrecv] = ACTIONS(148), - [anon_sym_reduce] = ACTIONS(152), - [anon_sym_SLASH] = ACTIONS(152), - [anon_sym_scan] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_each] = ACTIONS(152), - [anon_sym_64] = ACTIONS(152), - [anon_sym_rows] = ACTIONS(152), - [anon_sym_65] = ACTIONS(152), - [anon_sym_repeat] = ACTIONS(152), - [anon_sym_66] = ACTIONS(152), - [anon_sym_dip] = ACTIONS(152), - [anon_sym_di] = ACTIONS(154), - [anon_sym_67] = ACTIONS(152), - [anon_sym_gap] = ACTIONS(152), - [anon_sym_ga] = ACTIONS(154), - [anon_sym_68] = ACTIONS(152), - [anon_sym_oust] = ACTIONS(152), - [anon_sym_69] = ACTIONS(152), - [anon_sym_invert] = ACTIONS(152), - [anon_sym_70] = ACTIONS(152), - [anon_sym_spawn] = ACTIONS(152), - [anon_sym_pack] = ACTIONS(152), - [anon_sym_71] = ACTIONS(152), - [anon_sym_tribute] = ACTIONS(152), - [anon_sym_72] = ACTIONS(152), - [anon_sym_fold] = ACTIONS(156), - [anon_sym_73] = ACTIONS(156), - [anon_sym_distribute] = ACTIONS(156), - [anon_sym_74] = ACTIONS(156), - [anon_sym_table] = ACTIONS(156), - [anon_sym_75] = ACTIONS(156), - [anon_sym_cross] = ACTIONS(156), - [anon_sym_76] = ACTIONS(156), - [anon_sym_group] = ACTIONS(156), - [anon_sym_77] = ACTIONS(156), - [anon_sym_partition] = ACTIONS(156), - [anon_sym_78] = ACTIONS(156), - [anon_sym_both] = ACTIONS(156), - [anon_sym_79] = ACTIONS(156), - [anon_sym_bracket] = ACTIONS(156), - [anon_sym_80] = ACTIONS(156), - [anon_sym_fork] = ACTIONS(156), - [anon_sym_81] = ACTIONS(156), - [anon_sym_under] = ACTIONS(156), - [anon_sym_82] = ACTIONS(156), - [anon_sym_level] = ACTIONS(156), - [anon_sym_83] = ACTIONS(156), - [anon_sym_fill] = ACTIONS(156), - [anon_sym_84] = ACTIONS(156), - [anon_sym_bind] = ACTIONS(156), - [anon_sym_SQUOTE] = ACTIONS(156), - [anon_sym_QMARK] = ACTIONS(156), - [anon_sym_try] = ACTIONS(158), - [anon_sym_85] = ACTIONS(156), - [anon_sym_combinate] = ACTIONS(156), - [anon_sym_86] = ACTIONS(156), - [anon_sym_87] = ACTIONS(160), - [anon_sym_88] = ACTIONS(160), - [anon_sym_89] = ACTIONS(160), - [anon_sym_90] = ACTIONS(160), - [anon_sym_91] = ACTIONS(160), - [anon_sym_92] = ACTIONS(160), - [anon_sym_93] = ACTIONS(160), + [sym_identifier] = ACTIONS(121), + [sym_identifier_deprecated] = ACTIONS(121), + [sym_system] = ACTIONS(117), + [sym_comment] = ACTIONS(218), + [sym_openParen] = ACTIONS(125), + [sym_openCurly] = ACTIONS(129), + [sym_openBracket] = ACTIONS(131), + [sym_closeBracket] = ACTIONS(226), + [sym_leftArrow] = ACTIONS(220), + [anon_sym_CARET] = ACTIONS(137), + [anon_sym_eta] = ACTIONS(139), + [anon_sym_] = ACTIONS(141), + [anon_sym_pi] = ACTIONS(141), + [anon_sym_2] = ACTIONS(141), + [anon_sym_tau] = ACTIONS(139), + [anon_sym_3] = ACTIONS(141), + [anon_sym_infinity] = ACTIONS(139), + [anon_sym_4] = ACTIONS(139), + [anon_sym_e] = ACTIONS(141), + [anon_sym_NaN] = ACTIONS(141), + [anon_sym_NumProcs] = ACTIONS(141), + [anon_sym_DOT] = ACTIONS(143), + [anon_sym_COMMA] = ACTIONS(143), + [anon_sym_5] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_identity] = ACTIONS(143), + [anon_sym_id] = ACTIONS(145), + [anon_sym_6] = ACTIONS(143), + [anon_sym_not] = ACTIONS(143), + [anon_sym_7] = ACTIONS(143), + [anon_sym_sign] = ACTIONS(143), + [anon_sym_8] = ACTIONS(143), + [anon_sym_BQUOTE] = ACTIONS(143), + [anon_sym_9] = ACTIONS(143), + [anon_sym_absolutevalue] = ACTIONS(143), + [anon_sym_10] = ACTIONS(143), + [anon_sym_sqrt] = ACTIONS(143), + [anon_sym_11] = ACTIONS(143), + [anon_sym_sine] = ACTIONS(143), + [anon_sym_12] = ACTIONS(143), + [anon_sym_floor] = ACTIONS(143), + [anon_sym_13] = ACTIONS(143), + [anon_sym_ceiling] = ACTIONS(143), + [anon_sym_14] = ACTIONS(143), + [anon_sym_round] = ACTIONS(143), + [anon_sym_15] = ACTIONS(143), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_16] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_17] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_18] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_19] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_20] = ACTIONS(143), + [anon_sym_modulus] = ACTIONS(143), + [anon_sym_21] = ACTIONS(143), + [anon_sym_power] = ACTIONS(143), + [anon_sym_22] = ACTIONS(143), + [anon_sym_logarithm] = ACTIONS(143), + [anon_sym_23] = ACTIONS(143), + [anon_sym_minimum] = ACTIONS(143), + [anon_sym_24] = ACTIONS(143), + [anon_sym_maximum] = ACTIONS(143), + [anon_sym_25] = ACTIONS(143), + [anon_sym_atangent] = ACTIONS(143), + [anon_sym_26] = ACTIONS(143), + [anon_sym_length] = ACTIONS(143), + [anon_sym_27] = ACTIONS(143), + [anon_sym_shape] = ACTIONS(143), + [anon_sym_28] = ACTIONS(143), + [anon_sym_range] = ACTIONS(143), + [anon_sym_29] = ACTIONS(143), + [anon_sym_first] = ACTIONS(143), + [anon_sym_30] = ACTIONS(143), + [anon_sym_reverse] = ACTIONS(143), + [anon_sym_31] = ACTIONS(143), + [anon_sym_deshape] = ACTIONS(143), + [anon_sym_32] = ACTIONS(143), + [anon_sym_bits] = ACTIONS(143), + [anon_sym_33] = ACTIONS(143), + [anon_sym_transpose] = ACTIONS(143), + [anon_sym_34] = ACTIONS(143), + [anon_sym_rise] = ACTIONS(143), + [anon_sym_35] = ACTIONS(143), + [anon_sym_fall] = ACTIONS(143), + [anon_sym_36] = ACTIONS(143), + [anon_sym_where] = ACTIONS(143), + [anon_sym_37] = ACTIONS(143), + [anon_sym_classify] = ACTIONS(143), + [anon_sym_38] = ACTIONS(143), + [anon_sym_deduplicate] = ACTIONS(143), + [anon_sym_39] = ACTIONS(143), + [anon_sym_box] = ACTIONS(143), + [anon_sym_40] = ACTIONS(143), + [anon_sym_unbox] = ACTIONS(143), + [anon_sym_41] = ACTIONS(143), + [anon_sym_match] = ACTIONS(143), + [anon_sym_42] = ACTIONS(143), + [anon_sym_couple] = ACTIONS(143), + [anon_sym_43] = ACTIONS(143), + [anon_sym_join] = ACTIONS(143), + [anon_sym_44] = ACTIONS(143), + [anon_sym_select] = ACTIONS(143), + [anon_sym_45] = ACTIONS(143), + [anon_sym_pick] = ACTIONS(143), + [anon_sym_46] = ACTIONS(143), + [anon_sym_reshape] = ACTIONS(143), + [anon_sym_47] = ACTIONS(143), + [anon_sym_take] = ACTIONS(143), + [anon_sym_48] = ACTIONS(143), + [anon_sym_drop] = ACTIONS(143), + [anon_sym_49] = ACTIONS(143), + [anon_sym_rotate] = ACTIONS(143), + [anon_sym_50] = ACTIONS(143), + [anon_sym_windows] = ACTIONS(143), + [anon_sym_51] = ACTIONS(143), + [anon_sym_keep] = ACTIONS(143), + [anon_sym_52] = ACTIONS(143), + [anon_sym_find] = ACTIONS(143), + [anon_sym_53] = ACTIONS(143), + [anon_sym_member] = ACTIONS(143), + [anon_sym_54] = ACTIONS(143), + [anon_sym_indexof] = ACTIONS(143), + [anon_sym_55] = ACTIONS(143), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_56] = ACTIONS(143), + [anon_sym_wait] = ACTIONS(143), + [anon_sym_break] = ACTIONS(143), + [anon_sym_57] = ACTIONS(143), + [anon_sym_parse] = ACTIONS(143), + [anon_sym_random] = ACTIONS(143), + [anon_sym_58] = ACTIONS(143), + [anon_sym_gen] = ACTIONS(143), + [anon_sym_deal] = ACTIONS(143), + [anon_sym_tag] = ACTIONS(143), + [anon_sym_now] = ACTIONS(143), + [anon_sym_type] = ACTIONS(143), + [anon_sym_59] = ACTIONS(143), + [anon_sym_dump] = ACTIONS(143), + [anon_sym_regex] = ACTIONS(143), + [anon_sym_utf] = ACTIONS(143), + [anon_sym_rock] = ACTIONS(143), + [anon_sym_60] = ACTIONS(143), + [anon_sym_surface] = ACTIONS(143), + [anon_sym_TILDE] = ACTIONS(143), + [anon_sym_deep] = ACTIONS(143), + [anon_sym_de] = ACTIONS(145), + [anon_sym_61] = ACTIONS(143), + [anon_sym_abyss] = ACTIONS(143), + [anon_sym_ab] = ACTIONS(145), + [anon_sym_62] = ACTIONS(143), + [anon_sym_seabed] = ACTIONS(143), + [anon_sym_se] = ACTIONS(145), + [anon_sym_63] = ACTIONS(143), + [anon_sym_send] = ACTIONS(143), + [anon_sym_recv] = ACTIONS(143), + [anon_sym_tryrecv] = ACTIONS(143), + [anon_sym_reduce] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_scan] = ACTIONS(147), + [anon_sym_BSLASH] = ACTIONS(147), + [anon_sym_each] = ACTIONS(147), + [anon_sym_64] = ACTIONS(147), + [anon_sym_rows] = ACTIONS(147), + [anon_sym_65] = ACTIONS(147), + [anon_sym_repeat] = ACTIONS(147), + [anon_sym_66] = ACTIONS(147), + [anon_sym_dip] = ACTIONS(147), + [anon_sym_67] = ACTIONS(147), + [anon_sym_gap] = ACTIONS(147), + [anon_sym_68] = ACTIONS(147), + [anon_sym_69] = ACTIONS(147), + [anon_sym_invert] = ACTIONS(147), + [anon_sym_70] = ACTIONS(147), + [anon_sym_spawn] = ACTIONS(147), + [anon_sym_pack] = ACTIONS(147), + [anon_sym_71] = ACTIONS(147), + [anon_sym_tribute] = ACTIONS(147), + [anon_sym_72] = ACTIONS(147), + [anon_sym_reach] = ACTIONS(147), + [anon_sym_fold] = ACTIONS(149), + [anon_sym_73] = ACTIONS(149), + [anon_sym_distribute] = ACTIONS(149), + [anon_sym_74] = ACTIONS(149), + [anon_sym_table] = ACTIONS(149), + [anon_sym_75] = ACTIONS(149), + [anon_sym_cross] = ACTIONS(149), + [anon_sym_76] = ACTIONS(149), + [anon_sym_group] = ACTIONS(149), + [anon_sym_77] = ACTIONS(149), + [anon_sym_partition] = ACTIONS(149), + [anon_sym_78] = ACTIONS(149), + [anon_sym_both] = ACTIONS(149), + [anon_sym_79] = ACTIONS(149), + [anon_sym_bracket] = ACTIONS(149), + [anon_sym_80] = ACTIONS(149), + [anon_sym_fork] = ACTIONS(149), + [anon_sym_81] = ACTIONS(149), + [anon_sym_under] = ACTIONS(149), + [anon_sym_82] = ACTIONS(149), + [anon_sym_level] = ACTIONS(149), + [anon_sym_83] = ACTIONS(149), + [anon_sym_fill] = ACTIONS(149), + [anon_sym_84] = ACTIONS(149), + [anon_sym_bind] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_try] = ACTIONS(151), + [anon_sym_85] = ACTIONS(149), + [anon_sym_combinate] = ACTIONS(149), + [anon_sym_86] = ACTIONS(149), + [anon_sym_87] = ACTIONS(153), + [anon_sym_88] = ACTIONS(153), + [anon_sym_89] = ACTIONS(153), + [anon_sym_90] = ACTIONS(153), + [anon_sym_91] = ACTIONS(153), + [anon_sym_92] = ACTIONS(153), + [anon_sym_93] = ACTIONS(153), [sym__whitespace] = ACTIONS(5), [sym__end_of_line] = ACTIONS(5), }, @@ -9077,244 +9039,242 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_deprecated] = STATE(61), [aux_sym_array_repeat1] = STATE(57), [aux_sym_array_repeat2] = STATE(14), - [aux_sym_number_token1] = ACTIONS(116), - [anon_sym_os] = ACTIONS(118), - [anon_sym_Family] = ACTIONS(118), - [anon_sym_Arch] = ACTIONS(118), - [anon_sym_ExeExt] = ACTIONS(118), - [anon_sym_PllExt] = ACTIONS(118), - [anon_sym_Sep] = ACTIONS(118), - [aux_sym_character_token1] = ACTIONS(120), - [sym_string] = ACTIONS(122), - [sym_multiLineString] = ACTIONS(122), + [aux_sym_number_token1] = ACTIONS(111), + [anon_sym_os] = ACTIONS(113), + [anon_sym_Family] = ACTIONS(113), + [anon_sym_Arch] = ACTIONS(113), + [anon_sym_ExeExt] = ACTIONS(113), + [anon_sym_PllExt] = ACTIONS(113), + [anon_sym_Sep] = ACTIONS(113), + [aux_sym_character_token1] = ACTIONS(115), + [sym_string] = ACTIONS(117), + [sym_multiLineString] = ACTIONS(117), [anon_sym_PIPE] = ACTIONS(15), - [sym_identifier] = ACTIONS(126), - [sym_identifier_deprecated] = ACTIONS(126), - [sym_system] = ACTIONS(122), - [sym_comment] = ACTIONS(228), - [sym_openParen] = ACTIONS(130), - [sym_openCurly] = ACTIONS(134), - [sym_closeCurly] = ACTIONS(238), - [sym_openBracket] = ACTIONS(136), - [sym_leftArrow] = ACTIONS(230), - [anon_sym_CARET] = ACTIONS(142), - [anon_sym_eta] = ACTIONS(144), - [anon_sym_] = ACTIONS(146), - [anon_sym_pi] = ACTIONS(146), - [anon_sym_2] = ACTIONS(146), - [anon_sym_tau] = ACTIONS(144), - [anon_sym_3] = ACTIONS(146), - [anon_sym_infinity] = ACTIONS(144), - [anon_sym_4] = ACTIONS(144), - [anon_sym_e] = ACTIONS(146), - [anon_sym_NaN] = ACTIONS(146), - [anon_sym_NumProcs] = ACTIONS(146), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_COMMA] = ACTIONS(148), - [anon_sym_5] = ACTIONS(148), - [anon_sym_SEMI] = ACTIONS(148), - [anon_sym_identity] = ACTIONS(148), - [anon_sym_id] = ACTIONS(150), - [anon_sym_6] = ACTIONS(148), - [anon_sym_not] = ACTIONS(148), - [anon_sym_7] = ACTIONS(148), - [anon_sym_sign] = ACTIONS(148), - [anon_sym_8] = ACTIONS(148), - [anon_sym_BQUOTE] = ACTIONS(148), - [anon_sym_9] = ACTIONS(148), - [anon_sym_absolutevalue] = ACTIONS(148), - [anon_sym_10] = ACTIONS(148), - [anon_sym_sqrt] = ACTIONS(148), - [anon_sym_11] = ACTIONS(148), - [anon_sym_sine] = ACTIONS(148), - [anon_sym_12] = ACTIONS(148), - [anon_sym_floor] = ACTIONS(148), - [anon_sym_13] = ACTIONS(148), - [anon_sym_ceiling] = ACTIONS(148), - [anon_sym_14] = ACTIONS(148), - [anon_sym_round] = ACTIONS(148), - [anon_sym_15] = ACTIONS(148), - [anon_sym_EQ] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_16] = ACTIONS(148), - [anon_sym_LT] = ACTIONS(150), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_17] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_18] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_19] = ACTIONS(148), - [anon_sym_PERCENT] = ACTIONS(148), - [anon_sym_20] = ACTIONS(148), - [anon_sym_modulus] = ACTIONS(148), - [anon_sym_21] = ACTIONS(148), - [anon_sym_power] = ACTIONS(148), - [anon_sym_22] = ACTIONS(148), - [anon_sym_logarithm] = ACTIONS(148), - [anon_sym_23] = ACTIONS(148), - [anon_sym_minimum] = ACTIONS(148), - [anon_sym_24] = ACTIONS(148), - [anon_sym_maximum] = ACTIONS(148), - [anon_sym_25] = ACTIONS(148), - [anon_sym_atangent] = ACTIONS(148), - [anon_sym_26] = ACTIONS(148), - [anon_sym_length] = ACTIONS(148), - [anon_sym_27] = ACTIONS(148), - [anon_sym_shape] = ACTIONS(148), - [anon_sym_28] = ACTIONS(148), - [anon_sym_range] = ACTIONS(148), - [anon_sym_29] = ACTIONS(148), - [anon_sym_first] = ACTIONS(148), - [anon_sym_30] = ACTIONS(148), - [anon_sym_reverse] = ACTIONS(148), - [anon_sym_31] = ACTIONS(148), - [anon_sym_deshape] = ACTIONS(148), - [anon_sym_32] = ACTIONS(148), - [anon_sym_bits] = ACTIONS(148), - [anon_sym_33] = ACTIONS(148), - [anon_sym_transpose] = ACTIONS(148), - [anon_sym_34] = ACTIONS(148), - [anon_sym_rise] = ACTIONS(148), - [anon_sym_35] = ACTIONS(148), - [anon_sym_fall] = ACTIONS(148), - [anon_sym_36] = ACTIONS(148), - [anon_sym_where] = ACTIONS(148), - [anon_sym_37] = ACTIONS(148), - [anon_sym_classify] = ACTIONS(148), - [anon_sym_38] = ACTIONS(148), - [anon_sym_deduplicate] = ACTIONS(148), - [anon_sym_39] = ACTIONS(148), - [anon_sym_box] = ACTIONS(148), - [anon_sym_40] = ACTIONS(148), - [anon_sym_unbox] = ACTIONS(148), - [anon_sym_41] = ACTIONS(148), - [anon_sym_match] = ACTIONS(148), - [anon_sym_42] = ACTIONS(148), - [anon_sym_couple] = ACTIONS(148), - [anon_sym_43] = ACTIONS(148), - [anon_sym_join] = ACTIONS(148), - [anon_sym_44] = ACTIONS(148), - [anon_sym_select] = ACTIONS(148), - [anon_sym_45] = ACTIONS(148), - [anon_sym_pick] = ACTIONS(148), - [anon_sym_46] = ACTIONS(148), - [anon_sym_reshape] = ACTIONS(148), - [anon_sym_47] = ACTIONS(148), - [anon_sym_take] = ACTIONS(148), - [anon_sym_48] = ACTIONS(148), - [anon_sym_drop] = ACTIONS(148), - [anon_sym_49] = ACTIONS(148), - [anon_sym_rotate] = ACTIONS(148), - [anon_sym_50] = ACTIONS(148), - [anon_sym_windows] = ACTIONS(148), - [anon_sym_51] = ACTIONS(148), - [anon_sym_keep] = ACTIONS(148), - [anon_sym_52] = ACTIONS(148), - [anon_sym_find] = ACTIONS(148), - [anon_sym_53] = ACTIONS(148), - [anon_sym_member] = ACTIONS(148), - [anon_sym_54] = ACTIONS(148), - [anon_sym_indexof] = ACTIONS(148), - [anon_sym_55] = ACTIONS(148), - [anon_sym_assert] = ACTIONS(148), - [anon_sym_56] = ACTIONS(148), - [anon_sym_wait] = ACTIONS(148), - [anon_sym_break] = ACTIONS(148), - [anon_sym_57] = ACTIONS(148), - [anon_sym_parse] = ACTIONS(148), - [anon_sym_random] = ACTIONS(148), - [anon_sym_58] = ACTIONS(148), - [anon_sym_gen] = ACTIONS(148), - [anon_sym_deal] = ACTIONS(148), - [anon_sym_tag] = ACTIONS(148), - [anon_sym_now] = ACTIONS(148), - [anon_sym_type] = ACTIONS(148), - [anon_sym_59] = ACTIONS(148), - [anon_sym_dump] = ACTIONS(148), - [anon_sym_regex] = ACTIONS(148), - [anon_sym_utf] = ACTIONS(148), - [anon_sym_rock] = ACTIONS(148), - [anon_sym_60] = ACTIONS(148), - [anon_sym_surface] = ACTIONS(148), - [anon_sym_TILDE] = ACTIONS(148), - [anon_sym_deep] = ACTIONS(148), - [anon_sym_de] = ACTIONS(150), - [anon_sym_61] = ACTIONS(148), - [anon_sym_abyss] = ACTIONS(148), - [anon_sym_ab] = ACTIONS(150), - [anon_sym_62] = ACTIONS(148), - [anon_sym_seabed] = ACTIONS(148), - [anon_sym_se] = ACTIONS(150), - [anon_sym_63] = ACTIONS(148), - [anon_sym_send] = ACTIONS(148), - [anon_sym_recv] = ACTIONS(148), - [anon_sym_tryrecv] = ACTIONS(148), - [anon_sym_reduce] = ACTIONS(152), - [anon_sym_SLASH] = ACTIONS(152), - [anon_sym_scan] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_each] = ACTIONS(152), - [anon_sym_64] = ACTIONS(152), - [anon_sym_rows] = ACTIONS(152), - [anon_sym_65] = ACTIONS(152), - [anon_sym_repeat] = ACTIONS(152), - [anon_sym_66] = ACTIONS(152), - [anon_sym_dip] = ACTIONS(152), - [anon_sym_di] = ACTIONS(154), - [anon_sym_67] = ACTIONS(152), - [anon_sym_gap] = ACTIONS(152), - [anon_sym_ga] = ACTIONS(154), - [anon_sym_68] = ACTIONS(152), - [anon_sym_oust] = ACTIONS(152), - [anon_sym_69] = ACTIONS(152), - [anon_sym_invert] = ACTIONS(152), - [anon_sym_70] = ACTIONS(152), - [anon_sym_spawn] = ACTIONS(152), - [anon_sym_pack] = ACTIONS(152), - [anon_sym_71] = ACTIONS(152), - [anon_sym_tribute] = ACTIONS(152), - [anon_sym_72] = ACTIONS(152), - [anon_sym_fold] = ACTIONS(156), - [anon_sym_73] = ACTIONS(156), - [anon_sym_distribute] = ACTIONS(156), - [anon_sym_74] = ACTIONS(156), - [anon_sym_table] = ACTIONS(156), - [anon_sym_75] = ACTIONS(156), - [anon_sym_cross] = ACTIONS(156), - [anon_sym_76] = ACTIONS(156), - [anon_sym_group] = ACTIONS(156), - [anon_sym_77] = ACTIONS(156), - [anon_sym_partition] = ACTIONS(156), - [anon_sym_78] = ACTIONS(156), - [anon_sym_both] = ACTIONS(156), - [anon_sym_79] = ACTIONS(156), - [anon_sym_bracket] = ACTIONS(156), - [anon_sym_80] = ACTIONS(156), - [anon_sym_fork] = ACTIONS(156), - [anon_sym_81] = ACTIONS(156), - [anon_sym_under] = ACTIONS(156), - [anon_sym_82] = ACTIONS(156), - [anon_sym_level] = ACTIONS(156), - [anon_sym_83] = ACTIONS(156), - [anon_sym_fill] = ACTIONS(156), - [anon_sym_84] = ACTIONS(156), - [anon_sym_bind] = ACTIONS(156), - [anon_sym_SQUOTE] = ACTIONS(156), - [anon_sym_QMARK] = ACTIONS(156), - [anon_sym_try] = ACTIONS(158), - [anon_sym_85] = ACTIONS(156), - [anon_sym_combinate] = ACTIONS(156), - [anon_sym_86] = ACTIONS(156), - [anon_sym_87] = ACTIONS(160), - [anon_sym_88] = ACTIONS(160), - [anon_sym_89] = ACTIONS(160), - [anon_sym_90] = ACTIONS(160), - [anon_sym_91] = ACTIONS(160), - [anon_sym_92] = ACTIONS(160), - [anon_sym_93] = ACTIONS(160), + [sym_identifier] = ACTIONS(121), + [sym_identifier_deprecated] = ACTIONS(121), + [sym_system] = ACTIONS(117), + [sym_comment] = ACTIONS(218), + [sym_openParen] = ACTIONS(125), + [sym_openCurly] = ACTIONS(129), + [sym_closeCurly] = ACTIONS(228), + [sym_openBracket] = ACTIONS(131), + [sym_leftArrow] = ACTIONS(220), + [anon_sym_CARET] = ACTIONS(137), + [anon_sym_eta] = ACTIONS(139), + [anon_sym_] = ACTIONS(141), + [anon_sym_pi] = ACTIONS(141), + [anon_sym_2] = ACTIONS(141), + [anon_sym_tau] = ACTIONS(139), + [anon_sym_3] = ACTIONS(141), + [anon_sym_infinity] = ACTIONS(139), + [anon_sym_4] = ACTIONS(139), + [anon_sym_e] = ACTIONS(141), + [anon_sym_NaN] = ACTIONS(141), + [anon_sym_NumProcs] = ACTIONS(141), + [anon_sym_DOT] = ACTIONS(143), + [anon_sym_COMMA] = ACTIONS(143), + [anon_sym_5] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_identity] = ACTIONS(143), + [anon_sym_id] = ACTIONS(145), + [anon_sym_6] = ACTIONS(143), + [anon_sym_not] = ACTIONS(143), + [anon_sym_7] = ACTIONS(143), + [anon_sym_sign] = ACTIONS(143), + [anon_sym_8] = ACTIONS(143), + [anon_sym_BQUOTE] = ACTIONS(143), + [anon_sym_9] = ACTIONS(143), + [anon_sym_absolutevalue] = ACTIONS(143), + [anon_sym_10] = ACTIONS(143), + [anon_sym_sqrt] = ACTIONS(143), + [anon_sym_11] = ACTIONS(143), + [anon_sym_sine] = ACTIONS(143), + [anon_sym_12] = ACTIONS(143), + [anon_sym_floor] = ACTIONS(143), + [anon_sym_13] = ACTIONS(143), + [anon_sym_ceiling] = ACTIONS(143), + [anon_sym_14] = ACTIONS(143), + [anon_sym_round] = ACTIONS(143), + [anon_sym_15] = ACTIONS(143), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_16] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_17] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_18] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_19] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_20] = ACTIONS(143), + [anon_sym_modulus] = ACTIONS(143), + [anon_sym_21] = ACTIONS(143), + [anon_sym_power] = ACTIONS(143), + [anon_sym_22] = ACTIONS(143), + [anon_sym_logarithm] = ACTIONS(143), + [anon_sym_23] = ACTIONS(143), + [anon_sym_minimum] = ACTIONS(143), + [anon_sym_24] = ACTIONS(143), + [anon_sym_maximum] = ACTIONS(143), + [anon_sym_25] = ACTIONS(143), + [anon_sym_atangent] = ACTIONS(143), + [anon_sym_26] = ACTIONS(143), + [anon_sym_length] = ACTIONS(143), + [anon_sym_27] = ACTIONS(143), + [anon_sym_shape] = ACTIONS(143), + [anon_sym_28] = ACTIONS(143), + [anon_sym_range] = ACTIONS(143), + [anon_sym_29] = ACTIONS(143), + [anon_sym_first] = ACTIONS(143), + [anon_sym_30] = ACTIONS(143), + [anon_sym_reverse] = ACTIONS(143), + [anon_sym_31] = ACTIONS(143), + [anon_sym_deshape] = ACTIONS(143), + [anon_sym_32] = ACTIONS(143), + [anon_sym_bits] = ACTIONS(143), + [anon_sym_33] = ACTIONS(143), + [anon_sym_transpose] = ACTIONS(143), + [anon_sym_34] = ACTIONS(143), + [anon_sym_rise] = ACTIONS(143), + [anon_sym_35] = ACTIONS(143), + [anon_sym_fall] = ACTIONS(143), + [anon_sym_36] = ACTIONS(143), + [anon_sym_where] = ACTIONS(143), + [anon_sym_37] = ACTIONS(143), + [anon_sym_classify] = ACTIONS(143), + [anon_sym_38] = ACTIONS(143), + [anon_sym_deduplicate] = ACTIONS(143), + [anon_sym_39] = ACTIONS(143), + [anon_sym_box] = ACTIONS(143), + [anon_sym_40] = ACTIONS(143), + [anon_sym_unbox] = ACTIONS(143), + [anon_sym_41] = ACTIONS(143), + [anon_sym_match] = ACTIONS(143), + [anon_sym_42] = ACTIONS(143), + [anon_sym_couple] = ACTIONS(143), + [anon_sym_43] = ACTIONS(143), + [anon_sym_join] = ACTIONS(143), + [anon_sym_44] = ACTIONS(143), + [anon_sym_select] = ACTIONS(143), + [anon_sym_45] = ACTIONS(143), + [anon_sym_pick] = ACTIONS(143), + [anon_sym_46] = ACTIONS(143), + [anon_sym_reshape] = ACTIONS(143), + [anon_sym_47] = ACTIONS(143), + [anon_sym_take] = ACTIONS(143), + [anon_sym_48] = ACTIONS(143), + [anon_sym_drop] = ACTIONS(143), + [anon_sym_49] = ACTIONS(143), + [anon_sym_rotate] = ACTIONS(143), + [anon_sym_50] = ACTIONS(143), + [anon_sym_windows] = ACTIONS(143), + [anon_sym_51] = ACTIONS(143), + [anon_sym_keep] = ACTIONS(143), + [anon_sym_52] = ACTIONS(143), + [anon_sym_find] = ACTIONS(143), + [anon_sym_53] = ACTIONS(143), + [anon_sym_member] = ACTIONS(143), + [anon_sym_54] = ACTIONS(143), + [anon_sym_indexof] = ACTIONS(143), + [anon_sym_55] = ACTIONS(143), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_56] = ACTIONS(143), + [anon_sym_wait] = ACTIONS(143), + [anon_sym_break] = ACTIONS(143), + [anon_sym_57] = ACTIONS(143), + [anon_sym_parse] = ACTIONS(143), + [anon_sym_random] = ACTIONS(143), + [anon_sym_58] = ACTIONS(143), + [anon_sym_gen] = ACTIONS(143), + [anon_sym_deal] = ACTIONS(143), + [anon_sym_tag] = ACTIONS(143), + [anon_sym_now] = ACTIONS(143), + [anon_sym_type] = ACTIONS(143), + [anon_sym_59] = ACTIONS(143), + [anon_sym_dump] = ACTIONS(143), + [anon_sym_regex] = ACTIONS(143), + [anon_sym_utf] = ACTIONS(143), + [anon_sym_rock] = ACTIONS(143), + [anon_sym_60] = ACTIONS(143), + [anon_sym_surface] = ACTIONS(143), + [anon_sym_TILDE] = ACTIONS(143), + [anon_sym_deep] = ACTIONS(143), + [anon_sym_de] = ACTIONS(145), + [anon_sym_61] = ACTIONS(143), + [anon_sym_abyss] = ACTIONS(143), + [anon_sym_ab] = ACTIONS(145), + [anon_sym_62] = ACTIONS(143), + [anon_sym_seabed] = ACTIONS(143), + [anon_sym_se] = ACTIONS(145), + [anon_sym_63] = ACTIONS(143), + [anon_sym_send] = ACTIONS(143), + [anon_sym_recv] = ACTIONS(143), + [anon_sym_tryrecv] = ACTIONS(143), + [anon_sym_reduce] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_scan] = ACTIONS(147), + [anon_sym_BSLASH] = ACTIONS(147), + [anon_sym_each] = ACTIONS(147), + [anon_sym_64] = ACTIONS(147), + [anon_sym_rows] = ACTIONS(147), + [anon_sym_65] = ACTIONS(147), + [anon_sym_repeat] = ACTIONS(147), + [anon_sym_66] = ACTIONS(147), + [anon_sym_dip] = ACTIONS(147), + [anon_sym_67] = ACTIONS(147), + [anon_sym_gap] = ACTIONS(147), + [anon_sym_68] = ACTIONS(147), + [anon_sym_69] = ACTIONS(147), + [anon_sym_invert] = ACTIONS(147), + [anon_sym_70] = ACTIONS(147), + [anon_sym_spawn] = ACTIONS(147), + [anon_sym_pack] = ACTIONS(147), + [anon_sym_71] = ACTIONS(147), + [anon_sym_tribute] = ACTIONS(147), + [anon_sym_72] = ACTIONS(147), + [anon_sym_reach] = ACTIONS(147), + [anon_sym_fold] = ACTIONS(149), + [anon_sym_73] = ACTIONS(149), + [anon_sym_distribute] = ACTIONS(149), + [anon_sym_74] = ACTIONS(149), + [anon_sym_table] = ACTIONS(149), + [anon_sym_75] = ACTIONS(149), + [anon_sym_cross] = ACTIONS(149), + [anon_sym_76] = ACTIONS(149), + [anon_sym_group] = ACTIONS(149), + [anon_sym_77] = ACTIONS(149), + [anon_sym_partition] = ACTIONS(149), + [anon_sym_78] = ACTIONS(149), + [anon_sym_both] = ACTIONS(149), + [anon_sym_79] = ACTIONS(149), + [anon_sym_bracket] = ACTIONS(149), + [anon_sym_80] = ACTIONS(149), + [anon_sym_fork] = ACTIONS(149), + [anon_sym_81] = ACTIONS(149), + [anon_sym_under] = ACTIONS(149), + [anon_sym_82] = ACTIONS(149), + [anon_sym_level] = ACTIONS(149), + [anon_sym_83] = ACTIONS(149), + [anon_sym_fill] = ACTIONS(149), + [anon_sym_84] = ACTIONS(149), + [anon_sym_bind] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_try] = ACTIONS(151), + [anon_sym_85] = ACTIONS(149), + [anon_sym_combinate] = ACTIONS(149), + [anon_sym_86] = ACTIONS(149), + [anon_sym_87] = ACTIONS(153), + [anon_sym_88] = ACTIONS(153), + [anon_sym_89] = ACTIONS(153), + [anon_sym_90] = ACTIONS(153), + [anon_sym_91] = ACTIONS(153), + [anon_sym_92] = ACTIONS(153), + [anon_sym_93] = ACTIONS(153), [sym__whitespace] = ACTIONS(5), [sym__end_of_line] = ACTIONS(5), }, @@ -9338,246 +9298,244 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_deprecated] = STATE(61), [aux_sym_array_repeat1] = STATE(57), [aux_sym_array_repeat2] = STATE(31), - [aux_sym_number_token1] = ACTIONS(116), - [anon_sym_os] = ACTIONS(118), - [anon_sym_Family] = ACTIONS(118), - [anon_sym_Arch] = ACTIONS(118), - [anon_sym_ExeExt] = ACTIONS(118), - [anon_sym_PllExt] = ACTIONS(118), - [anon_sym_Sep] = ACTIONS(118), - [aux_sym_character_token1] = ACTIONS(120), - [sym_string] = ACTIONS(122), - [sym_multiLineString] = ACTIONS(122), + [aux_sym_number_token1] = ACTIONS(111), + [anon_sym_os] = ACTIONS(113), + [anon_sym_Family] = ACTIONS(113), + [anon_sym_Arch] = ACTIONS(113), + [anon_sym_ExeExt] = ACTIONS(113), + [anon_sym_PllExt] = ACTIONS(113), + [anon_sym_Sep] = ACTIONS(113), + [aux_sym_character_token1] = ACTIONS(115), + [sym_string] = ACTIONS(117), + [sym_multiLineString] = ACTIONS(117), [anon_sym_PIPE] = ACTIONS(15), - [sym_identifier] = ACTIONS(126), - [sym_identifier_deprecated] = ACTIONS(126), - [sym_system] = ACTIONS(122), - [sym_comment] = ACTIONS(228), - [sym_openParen] = ACTIONS(130), - [sym_openCurly] = ACTIONS(134), - [sym_closeCurly] = ACTIONS(240), - [sym_openBracket] = ACTIONS(136), - [sym_leftArrow] = ACTIONS(230), - [anon_sym_CARET] = ACTIONS(142), - [anon_sym_eta] = ACTIONS(144), - [anon_sym_] = ACTIONS(146), - [anon_sym_pi] = ACTIONS(146), - [anon_sym_2] = ACTIONS(146), - [anon_sym_tau] = ACTIONS(144), - [anon_sym_3] = ACTIONS(146), - [anon_sym_infinity] = ACTIONS(144), - [anon_sym_4] = ACTIONS(144), - [anon_sym_e] = ACTIONS(146), - [anon_sym_NaN] = ACTIONS(146), - [anon_sym_NumProcs] = ACTIONS(146), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_COMMA] = ACTIONS(148), - [anon_sym_5] = ACTIONS(148), - [anon_sym_SEMI] = ACTIONS(148), - [anon_sym_identity] = ACTIONS(148), - [anon_sym_id] = ACTIONS(150), - [anon_sym_6] = ACTIONS(148), - [anon_sym_not] = ACTIONS(148), - [anon_sym_7] = ACTIONS(148), - [anon_sym_sign] = ACTIONS(148), - [anon_sym_8] = ACTIONS(148), - [anon_sym_BQUOTE] = ACTIONS(148), - [anon_sym_9] = ACTIONS(148), - [anon_sym_absolutevalue] = ACTIONS(148), - [anon_sym_10] = ACTIONS(148), - [anon_sym_sqrt] = ACTIONS(148), - [anon_sym_11] = ACTIONS(148), - [anon_sym_sine] = ACTIONS(148), - [anon_sym_12] = ACTIONS(148), - [anon_sym_floor] = ACTIONS(148), - [anon_sym_13] = ACTIONS(148), - [anon_sym_ceiling] = ACTIONS(148), - [anon_sym_14] = ACTIONS(148), - [anon_sym_round] = ACTIONS(148), - [anon_sym_15] = ACTIONS(148), - [anon_sym_EQ] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_16] = ACTIONS(148), - [anon_sym_LT] = ACTIONS(150), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_17] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_18] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_19] = ACTIONS(148), - [anon_sym_PERCENT] = ACTIONS(148), - [anon_sym_20] = ACTIONS(148), - [anon_sym_modulus] = ACTIONS(148), - [anon_sym_21] = ACTIONS(148), - [anon_sym_power] = ACTIONS(148), - [anon_sym_22] = ACTIONS(148), - [anon_sym_logarithm] = ACTIONS(148), - [anon_sym_23] = ACTIONS(148), - [anon_sym_minimum] = ACTIONS(148), - [anon_sym_24] = ACTIONS(148), - [anon_sym_maximum] = ACTIONS(148), - [anon_sym_25] = ACTIONS(148), - [anon_sym_atangent] = ACTIONS(148), - [anon_sym_26] = ACTIONS(148), - [anon_sym_length] = ACTIONS(148), - [anon_sym_27] = ACTIONS(148), - [anon_sym_shape] = ACTIONS(148), - [anon_sym_28] = ACTIONS(148), - [anon_sym_range] = ACTIONS(148), - [anon_sym_29] = ACTIONS(148), - [anon_sym_first] = ACTIONS(148), - [anon_sym_30] = ACTIONS(148), - [anon_sym_reverse] = ACTIONS(148), - [anon_sym_31] = ACTIONS(148), - [anon_sym_deshape] = ACTIONS(148), - [anon_sym_32] = ACTIONS(148), - [anon_sym_bits] = ACTIONS(148), - [anon_sym_33] = ACTIONS(148), - [anon_sym_transpose] = ACTIONS(148), - [anon_sym_34] = ACTIONS(148), - [anon_sym_rise] = ACTIONS(148), - [anon_sym_35] = ACTIONS(148), - [anon_sym_fall] = ACTIONS(148), - [anon_sym_36] = ACTIONS(148), - [anon_sym_where] = ACTIONS(148), - [anon_sym_37] = ACTIONS(148), - [anon_sym_classify] = ACTIONS(148), - [anon_sym_38] = ACTIONS(148), - [anon_sym_deduplicate] = ACTIONS(148), - [anon_sym_39] = ACTIONS(148), - [anon_sym_box] = ACTIONS(148), - [anon_sym_40] = ACTIONS(148), - [anon_sym_unbox] = ACTIONS(148), - [anon_sym_41] = ACTIONS(148), - [anon_sym_match] = ACTIONS(148), - [anon_sym_42] = ACTIONS(148), - [anon_sym_couple] = ACTIONS(148), - [anon_sym_43] = ACTIONS(148), - [anon_sym_join] = ACTIONS(148), - [anon_sym_44] = ACTIONS(148), - [anon_sym_select] = ACTIONS(148), - [anon_sym_45] = ACTIONS(148), - [anon_sym_pick] = ACTIONS(148), - [anon_sym_46] = ACTIONS(148), - [anon_sym_reshape] = ACTIONS(148), - [anon_sym_47] = ACTIONS(148), - [anon_sym_take] = ACTIONS(148), - [anon_sym_48] = ACTIONS(148), - [anon_sym_drop] = ACTIONS(148), - [anon_sym_49] = ACTIONS(148), - [anon_sym_rotate] = ACTIONS(148), - [anon_sym_50] = ACTIONS(148), - [anon_sym_windows] = ACTIONS(148), - [anon_sym_51] = ACTIONS(148), - [anon_sym_keep] = ACTIONS(148), - [anon_sym_52] = ACTIONS(148), - [anon_sym_find] = ACTIONS(148), - [anon_sym_53] = ACTIONS(148), - [anon_sym_member] = ACTIONS(148), - [anon_sym_54] = ACTIONS(148), - [anon_sym_indexof] = ACTIONS(148), - [anon_sym_55] = ACTIONS(148), - [anon_sym_assert] = ACTIONS(148), - [anon_sym_56] = ACTIONS(148), - [anon_sym_wait] = ACTIONS(148), - [anon_sym_break] = ACTIONS(148), - [anon_sym_57] = ACTIONS(148), - [anon_sym_parse] = ACTIONS(148), - [anon_sym_random] = ACTIONS(148), - [anon_sym_58] = ACTIONS(148), - [anon_sym_gen] = ACTIONS(148), - [anon_sym_deal] = ACTIONS(148), - [anon_sym_tag] = ACTIONS(148), - [anon_sym_now] = ACTIONS(148), - [anon_sym_type] = ACTIONS(148), - [anon_sym_59] = ACTIONS(148), - [anon_sym_dump] = ACTIONS(148), - [anon_sym_regex] = ACTIONS(148), - [anon_sym_utf] = ACTIONS(148), - [anon_sym_rock] = ACTIONS(148), - [anon_sym_60] = ACTIONS(148), - [anon_sym_surface] = ACTIONS(148), - [anon_sym_TILDE] = ACTIONS(148), - [anon_sym_deep] = ACTIONS(148), - [anon_sym_de] = ACTIONS(150), - [anon_sym_61] = ACTIONS(148), - [anon_sym_abyss] = ACTIONS(148), - [anon_sym_ab] = ACTIONS(150), - [anon_sym_62] = ACTIONS(148), - [anon_sym_seabed] = ACTIONS(148), - [anon_sym_se] = ACTIONS(150), - [anon_sym_63] = ACTIONS(148), - [anon_sym_send] = ACTIONS(148), - [anon_sym_recv] = ACTIONS(148), - [anon_sym_tryrecv] = ACTIONS(148), - [anon_sym_reduce] = ACTIONS(152), - [anon_sym_SLASH] = ACTIONS(152), - [anon_sym_scan] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_each] = ACTIONS(152), - [anon_sym_64] = ACTIONS(152), - [anon_sym_rows] = ACTIONS(152), - [anon_sym_65] = ACTIONS(152), - [anon_sym_repeat] = ACTIONS(152), - [anon_sym_66] = ACTIONS(152), - [anon_sym_dip] = ACTIONS(152), - [anon_sym_di] = ACTIONS(154), - [anon_sym_67] = ACTIONS(152), - [anon_sym_gap] = ACTIONS(152), - [anon_sym_ga] = ACTIONS(154), - [anon_sym_68] = ACTIONS(152), - [anon_sym_oust] = ACTIONS(152), - [anon_sym_69] = ACTIONS(152), - [anon_sym_invert] = ACTIONS(152), - [anon_sym_70] = ACTIONS(152), - [anon_sym_spawn] = ACTIONS(152), - [anon_sym_pack] = ACTIONS(152), - [anon_sym_71] = ACTIONS(152), - [anon_sym_tribute] = ACTIONS(152), - [anon_sym_72] = ACTIONS(152), - [anon_sym_fold] = ACTIONS(156), - [anon_sym_73] = ACTIONS(156), - [anon_sym_distribute] = ACTIONS(156), - [anon_sym_74] = ACTIONS(156), - [anon_sym_table] = ACTIONS(156), - [anon_sym_75] = ACTIONS(156), - [anon_sym_cross] = ACTIONS(156), - [anon_sym_76] = ACTIONS(156), - [anon_sym_group] = ACTIONS(156), - [anon_sym_77] = ACTIONS(156), - [anon_sym_partition] = ACTIONS(156), - [anon_sym_78] = ACTIONS(156), - [anon_sym_both] = ACTIONS(156), - [anon_sym_79] = ACTIONS(156), - [anon_sym_bracket] = ACTIONS(156), - [anon_sym_80] = ACTIONS(156), - [anon_sym_fork] = ACTIONS(156), - [anon_sym_81] = ACTIONS(156), - [anon_sym_under] = ACTIONS(156), - [anon_sym_82] = ACTIONS(156), - [anon_sym_level] = ACTIONS(156), - [anon_sym_83] = ACTIONS(156), - [anon_sym_fill] = ACTIONS(156), - [anon_sym_84] = ACTIONS(156), - [anon_sym_bind] = ACTIONS(156), - [anon_sym_SQUOTE] = ACTIONS(156), - [anon_sym_QMARK] = ACTIONS(156), - [anon_sym_try] = ACTIONS(158), - [anon_sym_85] = ACTIONS(156), - [anon_sym_combinate] = ACTIONS(156), - [anon_sym_86] = ACTIONS(156), - [anon_sym_87] = ACTIONS(160), - [anon_sym_88] = ACTIONS(160), - [anon_sym_89] = ACTIONS(160), - [anon_sym_90] = ACTIONS(160), - [anon_sym_91] = ACTIONS(160), - [anon_sym_92] = ACTIONS(160), - [anon_sym_93] = ACTIONS(160), + [sym_identifier] = ACTIONS(121), + [sym_identifier_deprecated] = ACTIONS(121), + [sym_system] = ACTIONS(117), + [sym_comment] = ACTIONS(218), + [sym_openParen] = ACTIONS(125), + [sym_openCurly] = ACTIONS(129), + [sym_closeCurly] = ACTIONS(230), + [sym_openBracket] = ACTIONS(131), + [sym_leftArrow] = ACTIONS(220), + [anon_sym_CARET] = ACTIONS(137), + [anon_sym_eta] = ACTIONS(139), + [anon_sym_] = ACTIONS(141), + [anon_sym_pi] = ACTIONS(141), + [anon_sym_2] = ACTIONS(141), + [anon_sym_tau] = ACTIONS(139), + [anon_sym_3] = ACTIONS(141), + [anon_sym_infinity] = ACTIONS(139), + [anon_sym_4] = ACTIONS(139), + [anon_sym_e] = ACTIONS(141), + [anon_sym_NaN] = ACTIONS(141), + [anon_sym_NumProcs] = ACTIONS(141), + [anon_sym_DOT] = ACTIONS(143), + [anon_sym_COMMA] = ACTIONS(143), + [anon_sym_5] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_identity] = ACTIONS(143), + [anon_sym_id] = ACTIONS(145), + [anon_sym_6] = ACTIONS(143), + [anon_sym_not] = ACTIONS(143), + [anon_sym_7] = ACTIONS(143), + [anon_sym_sign] = ACTIONS(143), + [anon_sym_8] = ACTIONS(143), + [anon_sym_BQUOTE] = ACTIONS(143), + [anon_sym_9] = ACTIONS(143), + [anon_sym_absolutevalue] = ACTIONS(143), + [anon_sym_10] = ACTIONS(143), + [anon_sym_sqrt] = ACTIONS(143), + [anon_sym_11] = ACTIONS(143), + [anon_sym_sine] = ACTIONS(143), + [anon_sym_12] = ACTIONS(143), + [anon_sym_floor] = ACTIONS(143), + [anon_sym_13] = ACTIONS(143), + [anon_sym_ceiling] = ACTIONS(143), + [anon_sym_14] = ACTIONS(143), + [anon_sym_round] = ACTIONS(143), + [anon_sym_15] = ACTIONS(143), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_16] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_17] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_18] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_19] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_20] = ACTIONS(143), + [anon_sym_modulus] = ACTIONS(143), + [anon_sym_21] = ACTIONS(143), + [anon_sym_power] = ACTIONS(143), + [anon_sym_22] = ACTIONS(143), + [anon_sym_logarithm] = ACTIONS(143), + [anon_sym_23] = ACTIONS(143), + [anon_sym_minimum] = ACTIONS(143), + [anon_sym_24] = ACTIONS(143), + [anon_sym_maximum] = ACTIONS(143), + [anon_sym_25] = ACTIONS(143), + [anon_sym_atangent] = ACTIONS(143), + [anon_sym_26] = ACTIONS(143), + [anon_sym_length] = ACTIONS(143), + [anon_sym_27] = ACTIONS(143), + [anon_sym_shape] = ACTIONS(143), + [anon_sym_28] = ACTIONS(143), + [anon_sym_range] = ACTIONS(143), + [anon_sym_29] = ACTIONS(143), + [anon_sym_first] = ACTIONS(143), + [anon_sym_30] = ACTIONS(143), + [anon_sym_reverse] = ACTIONS(143), + [anon_sym_31] = ACTIONS(143), + [anon_sym_deshape] = ACTIONS(143), + [anon_sym_32] = ACTIONS(143), + [anon_sym_bits] = ACTIONS(143), + [anon_sym_33] = ACTIONS(143), + [anon_sym_transpose] = ACTIONS(143), + [anon_sym_34] = ACTIONS(143), + [anon_sym_rise] = ACTIONS(143), + [anon_sym_35] = ACTIONS(143), + [anon_sym_fall] = ACTIONS(143), + [anon_sym_36] = ACTIONS(143), + [anon_sym_where] = ACTIONS(143), + [anon_sym_37] = ACTIONS(143), + [anon_sym_classify] = ACTIONS(143), + [anon_sym_38] = ACTIONS(143), + [anon_sym_deduplicate] = ACTIONS(143), + [anon_sym_39] = ACTIONS(143), + [anon_sym_box] = ACTIONS(143), + [anon_sym_40] = ACTIONS(143), + [anon_sym_unbox] = ACTIONS(143), + [anon_sym_41] = ACTIONS(143), + [anon_sym_match] = ACTIONS(143), + [anon_sym_42] = ACTIONS(143), + [anon_sym_couple] = ACTIONS(143), + [anon_sym_43] = ACTIONS(143), + [anon_sym_join] = ACTIONS(143), + [anon_sym_44] = ACTIONS(143), + [anon_sym_select] = ACTIONS(143), + [anon_sym_45] = ACTIONS(143), + [anon_sym_pick] = ACTIONS(143), + [anon_sym_46] = ACTIONS(143), + [anon_sym_reshape] = ACTIONS(143), + [anon_sym_47] = ACTIONS(143), + [anon_sym_take] = ACTIONS(143), + [anon_sym_48] = ACTIONS(143), + [anon_sym_drop] = ACTIONS(143), + [anon_sym_49] = ACTIONS(143), + [anon_sym_rotate] = ACTIONS(143), + [anon_sym_50] = ACTIONS(143), + [anon_sym_windows] = ACTIONS(143), + [anon_sym_51] = ACTIONS(143), + [anon_sym_keep] = ACTIONS(143), + [anon_sym_52] = ACTIONS(143), + [anon_sym_find] = ACTIONS(143), + [anon_sym_53] = ACTIONS(143), + [anon_sym_member] = ACTIONS(143), + [anon_sym_54] = ACTIONS(143), + [anon_sym_indexof] = ACTIONS(143), + [anon_sym_55] = ACTIONS(143), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_56] = ACTIONS(143), + [anon_sym_wait] = ACTIONS(143), + [anon_sym_break] = ACTIONS(143), + [anon_sym_57] = ACTIONS(143), + [anon_sym_parse] = ACTIONS(143), + [anon_sym_random] = ACTIONS(143), + [anon_sym_58] = ACTIONS(143), + [anon_sym_gen] = ACTIONS(143), + [anon_sym_deal] = ACTIONS(143), + [anon_sym_tag] = ACTIONS(143), + [anon_sym_now] = ACTIONS(143), + [anon_sym_type] = ACTIONS(143), + [anon_sym_59] = ACTIONS(143), + [anon_sym_dump] = ACTIONS(143), + [anon_sym_regex] = ACTIONS(143), + [anon_sym_utf] = ACTIONS(143), + [anon_sym_rock] = ACTIONS(143), + [anon_sym_60] = ACTIONS(143), + [anon_sym_surface] = ACTIONS(143), + [anon_sym_TILDE] = ACTIONS(143), + [anon_sym_deep] = ACTIONS(143), + [anon_sym_de] = ACTIONS(145), + [anon_sym_61] = ACTIONS(143), + [anon_sym_abyss] = ACTIONS(143), + [anon_sym_ab] = ACTIONS(145), + [anon_sym_62] = ACTIONS(143), + [anon_sym_seabed] = ACTIONS(143), + [anon_sym_se] = ACTIONS(145), + [anon_sym_63] = ACTIONS(143), + [anon_sym_send] = ACTIONS(143), + [anon_sym_recv] = ACTIONS(143), + [anon_sym_tryrecv] = ACTIONS(143), + [anon_sym_reduce] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_scan] = ACTIONS(147), + [anon_sym_BSLASH] = ACTIONS(147), + [anon_sym_each] = ACTIONS(147), + [anon_sym_64] = ACTIONS(147), + [anon_sym_rows] = ACTIONS(147), + [anon_sym_65] = ACTIONS(147), + [anon_sym_repeat] = ACTIONS(147), + [anon_sym_66] = ACTIONS(147), + [anon_sym_dip] = ACTIONS(147), + [anon_sym_67] = ACTIONS(147), + [anon_sym_gap] = ACTIONS(147), + [anon_sym_68] = ACTIONS(147), + [anon_sym_69] = ACTIONS(147), + [anon_sym_invert] = ACTIONS(147), + [anon_sym_70] = ACTIONS(147), + [anon_sym_spawn] = ACTIONS(147), + [anon_sym_pack] = ACTIONS(147), + [anon_sym_71] = ACTIONS(147), + [anon_sym_tribute] = ACTIONS(147), + [anon_sym_72] = ACTIONS(147), + [anon_sym_reach] = ACTIONS(147), + [anon_sym_fold] = ACTIONS(149), + [anon_sym_73] = ACTIONS(149), + [anon_sym_distribute] = ACTIONS(149), + [anon_sym_74] = ACTIONS(149), + [anon_sym_table] = ACTIONS(149), + [anon_sym_75] = ACTIONS(149), + [anon_sym_cross] = ACTIONS(149), + [anon_sym_76] = ACTIONS(149), + [anon_sym_group] = ACTIONS(149), + [anon_sym_77] = ACTIONS(149), + [anon_sym_partition] = ACTIONS(149), + [anon_sym_78] = ACTIONS(149), + [anon_sym_both] = ACTIONS(149), + [anon_sym_79] = ACTIONS(149), + [anon_sym_bracket] = ACTIONS(149), + [anon_sym_80] = ACTIONS(149), + [anon_sym_fork] = ACTIONS(149), + [anon_sym_81] = ACTIONS(149), + [anon_sym_under] = ACTIONS(149), + [anon_sym_82] = ACTIONS(149), + [anon_sym_level] = ACTIONS(149), + [anon_sym_83] = ACTIONS(149), + [anon_sym_fill] = ACTIONS(149), + [anon_sym_84] = ACTIONS(149), + [anon_sym_bind] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_try] = ACTIONS(151), + [anon_sym_85] = ACTIONS(149), + [anon_sym_combinate] = ACTIONS(149), + [anon_sym_86] = ACTIONS(149), + [anon_sym_87] = ACTIONS(153), + [anon_sym_88] = ACTIONS(153), + [anon_sym_89] = ACTIONS(153), + [anon_sym_90] = ACTIONS(153), + [anon_sym_91] = ACTIONS(153), + [anon_sym_92] = ACTIONS(153), + [anon_sym_93] = ACTIONS(153), [sym__whitespace] = ACTIONS(5), - [sym__end_of_line] = ACTIONS(242), + [sym__end_of_line] = ACTIONS(232), }, [12] = { [sym_segment] = STATE(104), @@ -9599,246 +9557,244 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_deprecated] = STATE(61), [aux_sym_array_repeat1] = STATE(57), [aux_sym_array_repeat2] = STATE(35), - [aux_sym_number_token1] = ACTIONS(116), - [anon_sym_os] = ACTIONS(118), - [anon_sym_Family] = ACTIONS(118), - [anon_sym_Arch] = ACTIONS(118), - [anon_sym_ExeExt] = ACTIONS(118), - [anon_sym_PllExt] = ACTIONS(118), - [anon_sym_Sep] = ACTIONS(118), - [aux_sym_character_token1] = ACTIONS(120), - [sym_string] = ACTIONS(122), - [sym_multiLineString] = ACTIONS(122), + [aux_sym_number_token1] = ACTIONS(111), + [anon_sym_os] = ACTIONS(113), + [anon_sym_Family] = ACTIONS(113), + [anon_sym_Arch] = ACTIONS(113), + [anon_sym_ExeExt] = ACTIONS(113), + [anon_sym_PllExt] = ACTIONS(113), + [anon_sym_Sep] = ACTIONS(113), + [aux_sym_character_token1] = ACTIONS(115), + [sym_string] = ACTIONS(117), + [sym_multiLineString] = ACTIONS(117), [anon_sym_PIPE] = ACTIONS(15), - [sym_identifier] = ACTIONS(126), - [sym_identifier_deprecated] = ACTIONS(126), - [sym_system] = ACTIONS(122), - [sym_comment] = ACTIONS(228), - [sym_openParen] = ACTIONS(130), - [sym_openCurly] = ACTIONS(134), - [sym_openBracket] = ACTIONS(136), - [sym_closeBracket] = ACTIONS(240), - [sym_leftArrow] = ACTIONS(230), - [anon_sym_CARET] = ACTIONS(142), - [anon_sym_eta] = ACTIONS(144), - [anon_sym_] = ACTIONS(146), - [anon_sym_pi] = ACTIONS(146), - [anon_sym_2] = ACTIONS(146), - [anon_sym_tau] = ACTIONS(144), - [anon_sym_3] = ACTIONS(146), - [anon_sym_infinity] = ACTIONS(144), - [anon_sym_4] = ACTIONS(144), - [anon_sym_e] = ACTIONS(146), - [anon_sym_NaN] = ACTIONS(146), - [anon_sym_NumProcs] = ACTIONS(146), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_COMMA] = ACTIONS(148), - [anon_sym_5] = ACTIONS(148), - [anon_sym_SEMI] = ACTIONS(148), - [anon_sym_identity] = ACTIONS(148), - [anon_sym_id] = ACTIONS(150), - [anon_sym_6] = ACTIONS(148), - [anon_sym_not] = ACTIONS(148), - [anon_sym_7] = ACTIONS(148), - [anon_sym_sign] = ACTIONS(148), - [anon_sym_8] = ACTIONS(148), - [anon_sym_BQUOTE] = ACTIONS(148), - [anon_sym_9] = ACTIONS(148), - [anon_sym_absolutevalue] = ACTIONS(148), - [anon_sym_10] = ACTIONS(148), - [anon_sym_sqrt] = ACTIONS(148), - [anon_sym_11] = ACTIONS(148), - [anon_sym_sine] = ACTIONS(148), - [anon_sym_12] = ACTIONS(148), - [anon_sym_floor] = ACTIONS(148), - [anon_sym_13] = ACTIONS(148), - [anon_sym_ceiling] = ACTIONS(148), - [anon_sym_14] = ACTIONS(148), - [anon_sym_round] = ACTIONS(148), - [anon_sym_15] = ACTIONS(148), - [anon_sym_EQ] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_16] = ACTIONS(148), - [anon_sym_LT] = ACTIONS(150), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_17] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_18] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_19] = ACTIONS(148), - [anon_sym_PERCENT] = ACTIONS(148), - [anon_sym_20] = ACTIONS(148), - [anon_sym_modulus] = ACTIONS(148), - [anon_sym_21] = ACTIONS(148), - [anon_sym_power] = ACTIONS(148), - [anon_sym_22] = ACTIONS(148), - [anon_sym_logarithm] = ACTIONS(148), - [anon_sym_23] = ACTIONS(148), - [anon_sym_minimum] = ACTIONS(148), - [anon_sym_24] = ACTIONS(148), - [anon_sym_maximum] = ACTIONS(148), - [anon_sym_25] = ACTIONS(148), - [anon_sym_atangent] = ACTIONS(148), - [anon_sym_26] = ACTIONS(148), - [anon_sym_length] = ACTIONS(148), - [anon_sym_27] = ACTIONS(148), - [anon_sym_shape] = ACTIONS(148), - [anon_sym_28] = ACTIONS(148), - [anon_sym_range] = ACTIONS(148), - [anon_sym_29] = ACTIONS(148), - [anon_sym_first] = ACTIONS(148), - [anon_sym_30] = ACTIONS(148), - [anon_sym_reverse] = ACTIONS(148), - [anon_sym_31] = ACTIONS(148), - [anon_sym_deshape] = ACTIONS(148), - [anon_sym_32] = ACTIONS(148), - [anon_sym_bits] = ACTIONS(148), - [anon_sym_33] = ACTIONS(148), - [anon_sym_transpose] = ACTIONS(148), - [anon_sym_34] = ACTIONS(148), - [anon_sym_rise] = ACTIONS(148), - [anon_sym_35] = ACTIONS(148), - [anon_sym_fall] = ACTIONS(148), - [anon_sym_36] = ACTIONS(148), - [anon_sym_where] = ACTIONS(148), - [anon_sym_37] = ACTIONS(148), - [anon_sym_classify] = ACTIONS(148), - [anon_sym_38] = ACTIONS(148), - [anon_sym_deduplicate] = ACTIONS(148), - [anon_sym_39] = ACTIONS(148), - [anon_sym_box] = ACTIONS(148), - [anon_sym_40] = ACTIONS(148), - [anon_sym_unbox] = ACTIONS(148), - [anon_sym_41] = ACTIONS(148), - [anon_sym_match] = ACTIONS(148), - [anon_sym_42] = ACTIONS(148), - [anon_sym_couple] = ACTIONS(148), - [anon_sym_43] = ACTIONS(148), - [anon_sym_join] = ACTIONS(148), - [anon_sym_44] = ACTIONS(148), - [anon_sym_select] = ACTIONS(148), - [anon_sym_45] = ACTIONS(148), - [anon_sym_pick] = ACTIONS(148), - [anon_sym_46] = ACTIONS(148), - [anon_sym_reshape] = ACTIONS(148), - [anon_sym_47] = ACTIONS(148), - [anon_sym_take] = ACTIONS(148), - [anon_sym_48] = ACTIONS(148), - [anon_sym_drop] = ACTIONS(148), - [anon_sym_49] = ACTIONS(148), - [anon_sym_rotate] = ACTIONS(148), - [anon_sym_50] = ACTIONS(148), - [anon_sym_windows] = ACTIONS(148), - [anon_sym_51] = ACTIONS(148), - [anon_sym_keep] = ACTIONS(148), - [anon_sym_52] = ACTIONS(148), - [anon_sym_find] = ACTIONS(148), - [anon_sym_53] = ACTIONS(148), - [anon_sym_member] = ACTIONS(148), - [anon_sym_54] = ACTIONS(148), - [anon_sym_indexof] = ACTIONS(148), - [anon_sym_55] = ACTIONS(148), - [anon_sym_assert] = ACTIONS(148), - [anon_sym_56] = ACTIONS(148), - [anon_sym_wait] = ACTIONS(148), - [anon_sym_break] = ACTIONS(148), - [anon_sym_57] = ACTIONS(148), - [anon_sym_parse] = ACTIONS(148), - [anon_sym_random] = ACTIONS(148), - [anon_sym_58] = ACTIONS(148), - [anon_sym_gen] = ACTIONS(148), - [anon_sym_deal] = ACTIONS(148), - [anon_sym_tag] = ACTIONS(148), - [anon_sym_now] = ACTIONS(148), - [anon_sym_type] = ACTIONS(148), - [anon_sym_59] = ACTIONS(148), - [anon_sym_dump] = ACTIONS(148), - [anon_sym_regex] = ACTIONS(148), - [anon_sym_utf] = ACTIONS(148), - [anon_sym_rock] = ACTIONS(148), - [anon_sym_60] = ACTIONS(148), - [anon_sym_surface] = ACTIONS(148), - [anon_sym_TILDE] = ACTIONS(148), - [anon_sym_deep] = ACTIONS(148), - [anon_sym_de] = ACTIONS(150), - [anon_sym_61] = ACTIONS(148), - [anon_sym_abyss] = ACTIONS(148), - [anon_sym_ab] = ACTIONS(150), - [anon_sym_62] = ACTIONS(148), - [anon_sym_seabed] = ACTIONS(148), - [anon_sym_se] = ACTIONS(150), - [anon_sym_63] = ACTIONS(148), - [anon_sym_send] = ACTIONS(148), - [anon_sym_recv] = ACTIONS(148), - [anon_sym_tryrecv] = ACTIONS(148), - [anon_sym_reduce] = ACTIONS(152), - [anon_sym_SLASH] = ACTIONS(152), - [anon_sym_scan] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_each] = ACTIONS(152), - [anon_sym_64] = ACTIONS(152), - [anon_sym_rows] = ACTIONS(152), - [anon_sym_65] = ACTIONS(152), - [anon_sym_repeat] = ACTIONS(152), - [anon_sym_66] = ACTIONS(152), - [anon_sym_dip] = ACTIONS(152), - [anon_sym_di] = ACTIONS(154), - [anon_sym_67] = ACTIONS(152), - [anon_sym_gap] = ACTIONS(152), - [anon_sym_ga] = ACTIONS(154), - [anon_sym_68] = ACTIONS(152), - [anon_sym_oust] = ACTIONS(152), - [anon_sym_69] = ACTIONS(152), - [anon_sym_invert] = ACTIONS(152), - [anon_sym_70] = ACTIONS(152), - [anon_sym_spawn] = ACTIONS(152), - [anon_sym_pack] = ACTIONS(152), - [anon_sym_71] = ACTIONS(152), - [anon_sym_tribute] = ACTIONS(152), - [anon_sym_72] = ACTIONS(152), - [anon_sym_fold] = ACTIONS(156), - [anon_sym_73] = ACTIONS(156), - [anon_sym_distribute] = ACTIONS(156), - [anon_sym_74] = ACTIONS(156), - [anon_sym_table] = ACTIONS(156), - [anon_sym_75] = ACTIONS(156), - [anon_sym_cross] = ACTIONS(156), - [anon_sym_76] = ACTIONS(156), - [anon_sym_group] = ACTIONS(156), - [anon_sym_77] = ACTIONS(156), - [anon_sym_partition] = ACTIONS(156), - [anon_sym_78] = ACTIONS(156), - [anon_sym_both] = ACTIONS(156), - [anon_sym_79] = ACTIONS(156), - [anon_sym_bracket] = ACTIONS(156), - [anon_sym_80] = ACTIONS(156), - [anon_sym_fork] = ACTIONS(156), - [anon_sym_81] = ACTIONS(156), - [anon_sym_under] = ACTIONS(156), - [anon_sym_82] = ACTIONS(156), - [anon_sym_level] = ACTIONS(156), - [anon_sym_83] = ACTIONS(156), - [anon_sym_fill] = ACTIONS(156), - [anon_sym_84] = ACTIONS(156), - [anon_sym_bind] = ACTIONS(156), - [anon_sym_SQUOTE] = ACTIONS(156), - [anon_sym_QMARK] = ACTIONS(156), - [anon_sym_try] = ACTIONS(158), - [anon_sym_85] = ACTIONS(156), - [anon_sym_combinate] = ACTIONS(156), - [anon_sym_86] = ACTIONS(156), - [anon_sym_87] = ACTIONS(160), - [anon_sym_88] = ACTIONS(160), - [anon_sym_89] = ACTIONS(160), - [anon_sym_90] = ACTIONS(160), - [anon_sym_91] = ACTIONS(160), - [anon_sym_92] = ACTIONS(160), - [anon_sym_93] = ACTIONS(160), + [sym_identifier] = ACTIONS(121), + [sym_identifier_deprecated] = ACTIONS(121), + [sym_system] = ACTIONS(117), + [sym_comment] = ACTIONS(218), + [sym_openParen] = ACTIONS(125), + [sym_openCurly] = ACTIONS(129), + [sym_openBracket] = ACTIONS(131), + [sym_closeBracket] = ACTIONS(230), + [sym_leftArrow] = ACTIONS(220), + [anon_sym_CARET] = ACTIONS(137), + [anon_sym_eta] = ACTIONS(139), + [anon_sym_] = ACTIONS(141), + [anon_sym_pi] = ACTIONS(141), + [anon_sym_2] = ACTIONS(141), + [anon_sym_tau] = ACTIONS(139), + [anon_sym_3] = ACTIONS(141), + [anon_sym_infinity] = ACTIONS(139), + [anon_sym_4] = ACTIONS(139), + [anon_sym_e] = ACTIONS(141), + [anon_sym_NaN] = ACTIONS(141), + [anon_sym_NumProcs] = ACTIONS(141), + [anon_sym_DOT] = ACTIONS(143), + [anon_sym_COMMA] = ACTIONS(143), + [anon_sym_5] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_identity] = ACTIONS(143), + [anon_sym_id] = ACTIONS(145), + [anon_sym_6] = ACTIONS(143), + [anon_sym_not] = ACTIONS(143), + [anon_sym_7] = ACTIONS(143), + [anon_sym_sign] = ACTIONS(143), + [anon_sym_8] = ACTIONS(143), + [anon_sym_BQUOTE] = ACTIONS(143), + [anon_sym_9] = ACTIONS(143), + [anon_sym_absolutevalue] = ACTIONS(143), + [anon_sym_10] = ACTIONS(143), + [anon_sym_sqrt] = ACTIONS(143), + [anon_sym_11] = ACTIONS(143), + [anon_sym_sine] = ACTIONS(143), + [anon_sym_12] = ACTIONS(143), + [anon_sym_floor] = ACTIONS(143), + [anon_sym_13] = ACTIONS(143), + [anon_sym_ceiling] = ACTIONS(143), + [anon_sym_14] = ACTIONS(143), + [anon_sym_round] = ACTIONS(143), + [anon_sym_15] = ACTIONS(143), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_16] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_17] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_18] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_19] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_20] = ACTIONS(143), + [anon_sym_modulus] = ACTIONS(143), + [anon_sym_21] = ACTIONS(143), + [anon_sym_power] = ACTIONS(143), + [anon_sym_22] = ACTIONS(143), + [anon_sym_logarithm] = ACTIONS(143), + [anon_sym_23] = ACTIONS(143), + [anon_sym_minimum] = ACTIONS(143), + [anon_sym_24] = ACTIONS(143), + [anon_sym_maximum] = ACTIONS(143), + [anon_sym_25] = ACTIONS(143), + [anon_sym_atangent] = ACTIONS(143), + [anon_sym_26] = ACTIONS(143), + [anon_sym_length] = ACTIONS(143), + [anon_sym_27] = ACTIONS(143), + [anon_sym_shape] = ACTIONS(143), + [anon_sym_28] = ACTIONS(143), + [anon_sym_range] = ACTIONS(143), + [anon_sym_29] = ACTIONS(143), + [anon_sym_first] = ACTIONS(143), + [anon_sym_30] = ACTIONS(143), + [anon_sym_reverse] = ACTIONS(143), + [anon_sym_31] = ACTIONS(143), + [anon_sym_deshape] = ACTIONS(143), + [anon_sym_32] = ACTIONS(143), + [anon_sym_bits] = ACTIONS(143), + [anon_sym_33] = ACTIONS(143), + [anon_sym_transpose] = ACTIONS(143), + [anon_sym_34] = ACTIONS(143), + [anon_sym_rise] = ACTIONS(143), + [anon_sym_35] = ACTIONS(143), + [anon_sym_fall] = ACTIONS(143), + [anon_sym_36] = ACTIONS(143), + [anon_sym_where] = ACTIONS(143), + [anon_sym_37] = ACTIONS(143), + [anon_sym_classify] = ACTIONS(143), + [anon_sym_38] = ACTIONS(143), + [anon_sym_deduplicate] = ACTIONS(143), + [anon_sym_39] = ACTIONS(143), + [anon_sym_box] = ACTIONS(143), + [anon_sym_40] = ACTIONS(143), + [anon_sym_unbox] = ACTIONS(143), + [anon_sym_41] = ACTIONS(143), + [anon_sym_match] = ACTIONS(143), + [anon_sym_42] = ACTIONS(143), + [anon_sym_couple] = ACTIONS(143), + [anon_sym_43] = ACTIONS(143), + [anon_sym_join] = ACTIONS(143), + [anon_sym_44] = ACTIONS(143), + [anon_sym_select] = ACTIONS(143), + [anon_sym_45] = ACTIONS(143), + [anon_sym_pick] = ACTIONS(143), + [anon_sym_46] = ACTIONS(143), + [anon_sym_reshape] = ACTIONS(143), + [anon_sym_47] = ACTIONS(143), + [anon_sym_take] = ACTIONS(143), + [anon_sym_48] = ACTIONS(143), + [anon_sym_drop] = ACTIONS(143), + [anon_sym_49] = ACTIONS(143), + [anon_sym_rotate] = ACTIONS(143), + [anon_sym_50] = ACTIONS(143), + [anon_sym_windows] = ACTIONS(143), + [anon_sym_51] = ACTIONS(143), + [anon_sym_keep] = ACTIONS(143), + [anon_sym_52] = ACTIONS(143), + [anon_sym_find] = ACTIONS(143), + [anon_sym_53] = ACTIONS(143), + [anon_sym_member] = ACTIONS(143), + [anon_sym_54] = ACTIONS(143), + [anon_sym_indexof] = ACTIONS(143), + [anon_sym_55] = ACTIONS(143), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_56] = ACTIONS(143), + [anon_sym_wait] = ACTIONS(143), + [anon_sym_break] = ACTIONS(143), + [anon_sym_57] = ACTIONS(143), + [anon_sym_parse] = ACTIONS(143), + [anon_sym_random] = ACTIONS(143), + [anon_sym_58] = ACTIONS(143), + [anon_sym_gen] = ACTIONS(143), + [anon_sym_deal] = ACTIONS(143), + [anon_sym_tag] = ACTIONS(143), + [anon_sym_now] = ACTIONS(143), + [anon_sym_type] = ACTIONS(143), + [anon_sym_59] = ACTIONS(143), + [anon_sym_dump] = ACTIONS(143), + [anon_sym_regex] = ACTIONS(143), + [anon_sym_utf] = ACTIONS(143), + [anon_sym_rock] = ACTIONS(143), + [anon_sym_60] = ACTIONS(143), + [anon_sym_surface] = ACTIONS(143), + [anon_sym_TILDE] = ACTIONS(143), + [anon_sym_deep] = ACTIONS(143), + [anon_sym_de] = ACTIONS(145), + [anon_sym_61] = ACTIONS(143), + [anon_sym_abyss] = ACTIONS(143), + [anon_sym_ab] = ACTIONS(145), + [anon_sym_62] = ACTIONS(143), + [anon_sym_seabed] = ACTIONS(143), + [anon_sym_se] = ACTIONS(145), + [anon_sym_63] = ACTIONS(143), + [anon_sym_send] = ACTIONS(143), + [anon_sym_recv] = ACTIONS(143), + [anon_sym_tryrecv] = ACTIONS(143), + [anon_sym_reduce] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_scan] = ACTIONS(147), + [anon_sym_BSLASH] = ACTIONS(147), + [anon_sym_each] = ACTIONS(147), + [anon_sym_64] = ACTIONS(147), + [anon_sym_rows] = ACTIONS(147), + [anon_sym_65] = ACTIONS(147), + [anon_sym_repeat] = ACTIONS(147), + [anon_sym_66] = ACTIONS(147), + [anon_sym_dip] = ACTIONS(147), + [anon_sym_67] = ACTIONS(147), + [anon_sym_gap] = ACTIONS(147), + [anon_sym_68] = ACTIONS(147), + [anon_sym_69] = ACTIONS(147), + [anon_sym_invert] = ACTIONS(147), + [anon_sym_70] = ACTIONS(147), + [anon_sym_spawn] = ACTIONS(147), + [anon_sym_pack] = ACTIONS(147), + [anon_sym_71] = ACTIONS(147), + [anon_sym_tribute] = ACTIONS(147), + [anon_sym_72] = ACTIONS(147), + [anon_sym_reach] = ACTIONS(147), + [anon_sym_fold] = ACTIONS(149), + [anon_sym_73] = ACTIONS(149), + [anon_sym_distribute] = ACTIONS(149), + [anon_sym_74] = ACTIONS(149), + [anon_sym_table] = ACTIONS(149), + [anon_sym_75] = ACTIONS(149), + [anon_sym_cross] = ACTIONS(149), + [anon_sym_76] = ACTIONS(149), + [anon_sym_group] = ACTIONS(149), + [anon_sym_77] = ACTIONS(149), + [anon_sym_partition] = ACTIONS(149), + [anon_sym_78] = ACTIONS(149), + [anon_sym_both] = ACTIONS(149), + [anon_sym_79] = ACTIONS(149), + [anon_sym_bracket] = ACTIONS(149), + [anon_sym_80] = ACTIONS(149), + [anon_sym_fork] = ACTIONS(149), + [anon_sym_81] = ACTIONS(149), + [anon_sym_under] = ACTIONS(149), + [anon_sym_82] = ACTIONS(149), + [anon_sym_level] = ACTIONS(149), + [anon_sym_83] = ACTIONS(149), + [anon_sym_fill] = ACTIONS(149), + [anon_sym_84] = ACTIONS(149), + [anon_sym_bind] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_try] = ACTIONS(151), + [anon_sym_85] = ACTIONS(149), + [anon_sym_combinate] = ACTIONS(149), + [anon_sym_86] = ACTIONS(149), + [anon_sym_87] = ACTIONS(153), + [anon_sym_88] = ACTIONS(153), + [anon_sym_89] = ACTIONS(153), + [anon_sym_90] = ACTIONS(153), + [anon_sym_91] = ACTIONS(153), + [anon_sym_92] = ACTIONS(153), + [anon_sym_93] = ACTIONS(153), [sym__whitespace] = ACTIONS(5), - [sym__end_of_line] = ACTIONS(244), + [sym__end_of_line] = ACTIONS(234), }, [13] = { [sym_segment] = STATE(104), @@ -9860,244 +9816,242 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_deprecated] = STATE(61), [aux_sym_array_repeat1] = STATE(57), [aux_sym_array_repeat2] = STATE(2), - [aux_sym_number_token1] = ACTIONS(116), - [anon_sym_os] = ACTIONS(118), - [anon_sym_Family] = ACTIONS(118), - [anon_sym_Arch] = ACTIONS(118), - [anon_sym_ExeExt] = ACTIONS(118), - [anon_sym_PllExt] = ACTIONS(118), - [anon_sym_Sep] = ACTIONS(118), - [aux_sym_character_token1] = ACTIONS(120), - [sym_string] = ACTIONS(122), - [sym_multiLineString] = ACTIONS(122), + [aux_sym_number_token1] = ACTIONS(111), + [anon_sym_os] = ACTIONS(113), + [anon_sym_Family] = ACTIONS(113), + [anon_sym_Arch] = ACTIONS(113), + [anon_sym_ExeExt] = ACTIONS(113), + [anon_sym_PllExt] = ACTIONS(113), + [anon_sym_Sep] = ACTIONS(113), + [aux_sym_character_token1] = ACTIONS(115), + [sym_string] = ACTIONS(117), + [sym_multiLineString] = ACTIONS(117), [anon_sym_PIPE] = ACTIONS(15), - [sym_identifier] = ACTIONS(126), - [sym_identifier_deprecated] = ACTIONS(126), - [sym_system] = ACTIONS(122), - [sym_comment] = ACTIONS(228), - [sym_openParen] = ACTIONS(130), - [sym_openCurly] = ACTIONS(134), - [sym_openBracket] = ACTIONS(136), - [sym_closeBracket] = ACTIONS(246), - [sym_leftArrow] = ACTIONS(230), - [anon_sym_CARET] = ACTIONS(142), - [anon_sym_eta] = ACTIONS(144), - [anon_sym_] = ACTIONS(146), - [anon_sym_pi] = ACTIONS(146), - [anon_sym_2] = ACTIONS(146), - [anon_sym_tau] = ACTIONS(144), - [anon_sym_3] = ACTIONS(146), - [anon_sym_infinity] = ACTIONS(144), - [anon_sym_4] = ACTIONS(144), - [anon_sym_e] = ACTIONS(146), - [anon_sym_NaN] = ACTIONS(146), - [anon_sym_NumProcs] = ACTIONS(146), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_COMMA] = ACTIONS(148), - [anon_sym_5] = ACTIONS(148), - [anon_sym_SEMI] = ACTIONS(148), - [anon_sym_identity] = ACTIONS(148), - [anon_sym_id] = ACTIONS(150), - [anon_sym_6] = ACTIONS(148), - [anon_sym_not] = ACTIONS(148), - [anon_sym_7] = ACTIONS(148), - [anon_sym_sign] = ACTIONS(148), - [anon_sym_8] = ACTIONS(148), - [anon_sym_BQUOTE] = ACTIONS(148), - [anon_sym_9] = ACTIONS(148), - [anon_sym_absolutevalue] = ACTIONS(148), - [anon_sym_10] = ACTIONS(148), - [anon_sym_sqrt] = ACTIONS(148), - [anon_sym_11] = ACTIONS(148), - [anon_sym_sine] = ACTIONS(148), - [anon_sym_12] = ACTIONS(148), - [anon_sym_floor] = ACTIONS(148), - [anon_sym_13] = ACTIONS(148), - [anon_sym_ceiling] = ACTIONS(148), - [anon_sym_14] = ACTIONS(148), - [anon_sym_round] = ACTIONS(148), - [anon_sym_15] = ACTIONS(148), - [anon_sym_EQ] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_16] = ACTIONS(148), - [anon_sym_LT] = ACTIONS(150), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_17] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_18] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_19] = ACTIONS(148), - [anon_sym_PERCENT] = ACTIONS(148), - [anon_sym_20] = ACTIONS(148), - [anon_sym_modulus] = ACTIONS(148), - [anon_sym_21] = ACTIONS(148), - [anon_sym_power] = ACTIONS(148), - [anon_sym_22] = ACTIONS(148), - [anon_sym_logarithm] = ACTIONS(148), - [anon_sym_23] = ACTIONS(148), - [anon_sym_minimum] = ACTIONS(148), - [anon_sym_24] = ACTIONS(148), - [anon_sym_maximum] = ACTIONS(148), - [anon_sym_25] = ACTIONS(148), - [anon_sym_atangent] = ACTIONS(148), - [anon_sym_26] = ACTIONS(148), - [anon_sym_length] = ACTIONS(148), - [anon_sym_27] = ACTIONS(148), - [anon_sym_shape] = ACTIONS(148), - [anon_sym_28] = ACTIONS(148), - [anon_sym_range] = ACTIONS(148), - [anon_sym_29] = ACTIONS(148), - [anon_sym_first] = ACTIONS(148), - [anon_sym_30] = ACTIONS(148), - [anon_sym_reverse] = ACTIONS(148), - [anon_sym_31] = ACTIONS(148), - [anon_sym_deshape] = ACTIONS(148), - [anon_sym_32] = ACTIONS(148), - [anon_sym_bits] = ACTIONS(148), - [anon_sym_33] = ACTIONS(148), - [anon_sym_transpose] = ACTIONS(148), - [anon_sym_34] = ACTIONS(148), - [anon_sym_rise] = ACTIONS(148), - [anon_sym_35] = ACTIONS(148), - [anon_sym_fall] = ACTIONS(148), - [anon_sym_36] = ACTIONS(148), - [anon_sym_where] = ACTIONS(148), - [anon_sym_37] = ACTIONS(148), - [anon_sym_classify] = ACTIONS(148), - [anon_sym_38] = ACTIONS(148), - [anon_sym_deduplicate] = ACTIONS(148), - [anon_sym_39] = ACTIONS(148), - [anon_sym_box] = ACTIONS(148), - [anon_sym_40] = ACTIONS(148), - [anon_sym_unbox] = ACTIONS(148), - [anon_sym_41] = ACTIONS(148), - [anon_sym_match] = ACTIONS(148), - [anon_sym_42] = ACTIONS(148), - [anon_sym_couple] = ACTIONS(148), - [anon_sym_43] = ACTIONS(148), - [anon_sym_join] = ACTIONS(148), - [anon_sym_44] = ACTIONS(148), - [anon_sym_select] = ACTIONS(148), - [anon_sym_45] = ACTIONS(148), - [anon_sym_pick] = ACTIONS(148), - [anon_sym_46] = ACTIONS(148), - [anon_sym_reshape] = ACTIONS(148), - [anon_sym_47] = ACTIONS(148), - [anon_sym_take] = ACTIONS(148), - [anon_sym_48] = ACTIONS(148), - [anon_sym_drop] = ACTIONS(148), - [anon_sym_49] = ACTIONS(148), - [anon_sym_rotate] = ACTIONS(148), - [anon_sym_50] = ACTIONS(148), - [anon_sym_windows] = ACTIONS(148), - [anon_sym_51] = ACTIONS(148), - [anon_sym_keep] = ACTIONS(148), - [anon_sym_52] = ACTIONS(148), - [anon_sym_find] = ACTIONS(148), - [anon_sym_53] = ACTIONS(148), - [anon_sym_member] = ACTIONS(148), - [anon_sym_54] = ACTIONS(148), - [anon_sym_indexof] = ACTIONS(148), - [anon_sym_55] = ACTIONS(148), - [anon_sym_assert] = ACTIONS(148), - [anon_sym_56] = ACTIONS(148), - [anon_sym_wait] = ACTIONS(148), - [anon_sym_break] = ACTIONS(148), - [anon_sym_57] = ACTIONS(148), - [anon_sym_parse] = ACTIONS(148), - [anon_sym_random] = ACTIONS(148), - [anon_sym_58] = ACTIONS(148), - [anon_sym_gen] = ACTIONS(148), - [anon_sym_deal] = ACTIONS(148), - [anon_sym_tag] = ACTIONS(148), - [anon_sym_now] = ACTIONS(148), - [anon_sym_type] = ACTIONS(148), - [anon_sym_59] = ACTIONS(148), - [anon_sym_dump] = ACTIONS(148), - [anon_sym_regex] = ACTIONS(148), - [anon_sym_utf] = ACTIONS(148), - [anon_sym_rock] = ACTIONS(148), - [anon_sym_60] = ACTIONS(148), - [anon_sym_surface] = ACTIONS(148), - [anon_sym_TILDE] = ACTIONS(148), - [anon_sym_deep] = ACTIONS(148), - [anon_sym_de] = ACTIONS(150), - [anon_sym_61] = ACTIONS(148), - [anon_sym_abyss] = ACTIONS(148), - [anon_sym_ab] = ACTIONS(150), - [anon_sym_62] = ACTIONS(148), - [anon_sym_seabed] = ACTIONS(148), - [anon_sym_se] = ACTIONS(150), - [anon_sym_63] = ACTIONS(148), - [anon_sym_send] = ACTIONS(148), - [anon_sym_recv] = ACTIONS(148), - [anon_sym_tryrecv] = ACTIONS(148), - [anon_sym_reduce] = ACTIONS(152), - [anon_sym_SLASH] = ACTIONS(152), - [anon_sym_scan] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_each] = ACTIONS(152), - [anon_sym_64] = ACTIONS(152), - [anon_sym_rows] = ACTIONS(152), - [anon_sym_65] = ACTIONS(152), - [anon_sym_repeat] = ACTIONS(152), - [anon_sym_66] = ACTIONS(152), - [anon_sym_dip] = ACTIONS(152), - [anon_sym_di] = ACTIONS(154), - [anon_sym_67] = ACTIONS(152), - [anon_sym_gap] = ACTIONS(152), - [anon_sym_ga] = ACTIONS(154), - [anon_sym_68] = ACTIONS(152), - [anon_sym_oust] = ACTIONS(152), - [anon_sym_69] = ACTIONS(152), - [anon_sym_invert] = ACTIONS(152), - [anon_sym_70] = ACTIONS(152), - [anon_sym_spawn] = ACTIONS(152), - [anon_sym_pack] = ACTIONS(152), - [anon_sym_71] = ACTIONS(152), - [anon_sym_tribute] = ACTIONS(152), - [anon_sym_72] = ACTIONS(152), - [anon_sym_fold] = ACTIONS(156), - [anon_sym_73] = ACTIONS(156), - [anon_sym_distribute] = ACTIONS(156), - [anon_sym_74] = ACTIONS(156), - [anon_sym_table] = ACTIONS(156), - [anon_sym_75] = ACTIONS(156), - [anon_sym_cross] = ACTIONS(156), - [anon_sym_76] = ACTIONS(156), - [anon_sym_group] = ACTIONS(156), - [anon_sym_77] = ACTIONS(156), - [anon_sym_partition] = ACTIONS(156), - [anon_sym_78] = ACTIONS(156), - [anon_sym_both] = ACTIONS(156), - [anon_sym_79] = ACTIONS(156), - [anon_sym_bracket] = ACTIONS(156), - [anon_sym_80] = ACTIONS(156), - [anon_sym_fork] = ACTIONS(156), - [anon_sym_81] = ACTIONS(156), - [anon_sym_under] = ACTIONS(156), - [anon_sym_82] = ACTIONS(156), - [anon_sym_level] = ACTIONS(156), - [anon_sym_83] = ACTIONS(156), - [anon_sym_fill] = ACTIONS(156), - [anon_sym_84] = ACTIONS(156), - [anon_sym_bind] = ACTIONS(156), - [anon_sym_SQUOTE] = ACTIONS(156), - [anon_sym_QMARK] = ACTIONS(156), - [anon_sym_try] = ACTIONS(158), - [anon_sym_85] = ACTIONS(156), - [anon_sym_combinate] = ACTIONS(156), - [anon_sym_86] = ACTIONS(156), - [anon_sym_87] = ACTIONS(160), - [anon_sym_88] = ACTIONS(160), - [anon_sym_89] = ACTIONS(160), - [anon_sym_90] = ACTIONS(160), - [anon_sym_91] = ACTIONS(160), - [anon_sym_92] = ACTIONS(160), - [anon_sym_93] = ACTIONS(160), + [sym_identifier] = ACTIONS(121), + [sym_identifier_deprecated] = ACTIONS(121), + [sym_system] = ACTIONS(117), + [sym_comment] = ACTIONS(218), + [sym_openParen] = ACTIONS(125), + [sym_openCurly] = ACTIONS(129), + [sym_openBracket] = ACTIONS(131), + [sym_closeBracket] = ACTIONS(236), + [sym_leftArrow] = ACTIONS(220), + [anon_sym_CARET] = ACTIONS(137), + [anon_sym_eta] = ACTIONS(139), + [anon_sym_] = ACTIONS(141), + [anon_sym_pi] = ACTIONS(141), + [anon_sym_2] = ACTIONS(141), + [anon_sym_tau] = ACTIONS(139), + [anon_sym_3] = ACTIONS(141), + [anon_sym_infinity] = ACTIONS(139), + [anon_sym_4] = ACTIONS(139), + [anon_sym_e] = ACTIONS(141), + [anon_sym_NaN] = ACTIONS(141), + [anon_sym_NumProcs] = ACTIONS(141), + [anon_sym_DOT] = ACTIONS(143), + [anon_sym_COMMA] = ACTIONS(143), + [anon_sym_5] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_identity] = ACTIONS(143), + [anon_sym_id] = ACTIONS(145), + [anon_sym_6] = ACTIONS(143), + [anon_sym_not] = ACTIONS(143), + [anon_sym_7] = ACTIONS(143), + [anon_sym_sign] = ACTIONS(143), + [anon_sym_8] = ACTIONS(143), + [anon_sym_BQUOTE] = ACTIONS(143), + [anon_sym_9] = ACTIONS(143), + [anon_sym_absolutevalue] = ACTIONS(143), + [anon_sym_10] = ACTIONS(143), + [anon_sym_sqrt] = ACTIONS(143), + [anon_sym_11] = ACTIONS(143), + [anon_sym_sine] = ACTIONS(143), + [anon_sym_12] = ACTIONS(143), + [anon_sym_floor] = ACTIONS(143), + [anon_sym_13] = ACTIONS(143), + [anon_sym_ceiling] = ACTIONS(143), + [anon_sym_14] = ACTIONS(143), + [anon_sym_round] = ACTIONS(143), + [anon_sym_15] = ACTIONS(143), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_16] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_17] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_18] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_19] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_20] = ACTIONS(143), + [anon_sym_modulus] = ACTIONS(143), + [anon_sym_21] = ACTIONS(143), + [anon_sym_power] = ACTIONS(143), + [anon_sym_22] = ACTIONS(143), + [anon_sym_logarithm] = ACTIONS(143), + [anon_sym_23] = ACTIONS(143), + [anon_sym_minimum] = ACTIONS(143), + [anon_sym_24] = ACTIONS(143), + [anon_sym_maximum] = ACTIONS(143), + [anon_sym_25] = ACTIONS(143), + [anon_sym_atangent] = ACTIONS(143), + [anon_sym_26] = ACTIONS(143), + [anon_sym_length] = ACTIONS(143), + [anon_sym_27] = ACTIONS(143), + [anon_sym_shape] = ACTIONS(143), + [anon_sym_28] = ACTIONS(143), + [anon_sym_range] = ACTIONS(143), + [anon_sym_29] = ACTIONS(143), + [anon_sym_first] = ACTIONS(143), + [anon_sym_30] = ACTIONS(143), + [anon_sym_reverse] = ACTIONS(143), + [anon_sym_31] = ACTIONS(143), + [anon_sym_deshape] = ACTIONS(143), + [anon_sym_32] = ACTIONS(143), + [anon_sym_bits] = ACTIONS(143), + [anon_sym_33] = ACTIONS(143), + [anon_sym_transpose] = ACTIONS(143), + [anon_sym_34] = ACTIONS(143), + [anon_sym_rise] = ACTIONS(143), + [anon_sym_35] = ACTIONS(143), + [anon_sym_fall] = ACTIONS(143), + [anon_sym_36] = ACTIONS(143), + [anon_sym_where] = ACTIONS(143), + [anon_sym_37] = ACTIONS(143), + [anon_sym_classify] = ACTIONS(143), + [anon_sym_38] = ACTIONS(143), + [anon_sym_deduplicate] = ACTIONS(143), + [anon_sym_39] = ACTIONS(143), + [anon_sym_box] = ACTIONS(143), + [anon_sym_40] = ACTIONS(143), + [anon_sym_unbox] = ACTIONS(143), + [anon_sym_41] = ACTIONS(143), + [anon_sym_match] = ACTIONS(143), + [anon_sym_42] = ACTIONS(143), + [anon_sym_couple] = ACTIONS(143), + [anon_sym_43] = ACTIONS(143), + [anon_sym_join] = ACTIONS(143), + [anon_sym_44] = ACTIONS(143), + [anon_sym_select] = ACTIONS(143), + [anon_sym_45] = ACTIONS(143), + [anon_sym_pick] = ACTIONS(143), + [anon_sym_46] = ACTIONS(143), + [anon_sym_reshape] = ACTIONS(143), + [anon_sym_47] = ACTIONS(143), + [anon_sym_take] = ACTIONS(143), + [anon_sym_48] = ACTIONS(143), + [anon_sym_drop] = ACTIONS(143), + [anon_sym_49] = ACTIONS(143), + [anon_sym_rotate] = ACTIONS(143), + [anon_sym_50] = ACTIONS(143), + [anon_sym_windows] = ACTIONS(143), + [anon_sym_51] = ACTIONS(143), + [anon_sym_keep] = ACTIONS(143), + [anon_sym_52] = ACTIONS(143), + [anon_sym_find] = ACTIONS(143), + [anon_sym_53] = ACTIONS(143), + [anon_sym_member] = ACTIONS(143), + [anon_sym_54] = ACTIONS(143), + [anon_sym_indexof] = ACTIONS(143), + [anon_sym_55] = ACTIONS(143), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_56] = ACTIONS(143), + [anon_sym_wait] = ACTIONS(143), + [anon_sym_break] = ACTIONS(143), + [anon_sym_57] = ACTIONS(143), + [anon_sym_parse] = ACTIONS(143), + [anon_sym_random] = ACTIONS(143), + [anon_sym_58] = ACTIONS(143), + [anon_sym_gen] = ACTIONS(143), + [anon_sym_deal] = ACTIONS(143), + [anon_sym_tag] = ACTIONS(143), + [anon_sym_now] = ACTIONS(143), + [anon_sym_type] = ACTIONS(143), + [anon_sym_59] = ACTIONS(143), + [anon_sym_dump] = ACTIONS(143), + [anon_sym_regex] = ACTIONS(143), + [anon_sym_utf] = ACTIONS(143), + [anon_sym_rock] = ACTIONS(143), + [anon_sym_60] = ACTIONS(143), + [anon_sym_surface] = ACTIONS(143), + [anon_sym_TILDE] = ACTIONS(143), + [anon_sym_deep] = ACTIONS(143), + [anon_sym_de] = ACTIONS(145), + [anon_sym_61] = ACTIONS(143), + [anon_sym_abyss] = ACTIONS(143), + [anon_sym_ab] = ACTIONS(145), + [anon_sym_62] = ACTIONS(143), + [anon_sym_seabed] = ACTIONS(143), + [anon_sym_se] = ACTIONS(145), + [anon_sym_63] = ACTIONS(143), + [anon_sym_send] = ACTIONS(143), + [anon_sym_recv] = ACTIONS(143), + [anon_sym_tryrecv] = ACTIONS(143), + [anon_sym_reduce] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_scan] = ACTIONS(147), + [anon_sym_BSLASH] = ACTIONS(147), + [anon_sym_each] = ACTIONS(147), + [anon_sym_64] = ACTIONS(147), + [anon_sym_rows] = ACTIONS(147), + [anon_sym_65] = ACTIONS(147), + [anon_sym_repeat] = ACTIONS(147), + [anon_sym_66] = ACTIONS(147), + [anon_sym_dip] = ACTIONS(147), + [anon_sym_67] = ACTIONS(147), + [anon_sym_gap] = ACTIONS(147), + [anon_sym_68] = ACTIONS(147), + [anon_sym_69] = ACTIONS(147), + [anon_sym_invert] = ACTIONS(147), + [anon_sym_70] = ACTIONS(147), + [anon_sym_spawn] = ACTIONS(147), + [anon_sym_pack] = ACTIONS(147), + [anon_sym_71] = ACTIONS(147), + [anon_sym_tribute] = ACTIONS(147), + [anon_sym_72] = ACTIONS(147), + [anon_sym_reach] = ACTIONS(147), + [anon_sym_fold] = ACTIONS(149), + [anon_sym_73] = ACTIONS(149), + [anon_sym_distribute] = ACTIONS(149), + [anon_sym_74] = ACTIONS(149), + [anon_sym_table] = ACTIONS(149), + [anon_sym_75] = ACTIONS(149), + [anon_sym_cross] = ACTIONS(149), + [anon_sym_76] = ACTIONS(149), + [anon_sym_group] = ACTIONS(149), + [anon_sym_77] = ACTIONS(149), + [anon_sym_partition] = ACTIONS(149), + [anon_sym_78] = ACTIONS(149), + [anon_sym_both] = ACTIONS(149), + [anon_sym_79] = ACTIONS(149), + [anon_sym_bracket] = ACTIONS(149), + [anon_sym_80] = ACTIONS(149), + [anon_sym_fork] = ACTIONS(149), + [anon_sym_81] = ACTIONS(149), + [anon_sym_under] = ACTIONS(149), + [anon_sym_82] = ACTIONS(149), + [anon_sym_level] = ACTIONS(149), + [anon_sym_83] = ACTIONS(149), + [anon_sym_fill] = ACTIONS(149), + [anon_sym_84] = ACTIONS(149), + [anon_sym_bind] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_try] = ACTIONS(151), + [anon_sym_85] = ACTIONS(149), + [anon_sym_combinate] = ACTIONS(149), + [anon_sym_86] = ACTIONS(149), + [anon_sym_87] = ACTIONS(153), + [anon_sym_88] = ACTIONS(153), + [anon_sym_89] = ACTIONS(153), + [anon_sym_90] = ACTIONS(153), + [anon_sym_91] = ACTIONS(153), + [anon_sym_92] = ACTIONS(153), + [anon_sym_93] = ACTIONS(153), [sym__whitespace] = ACTIONS(5), [sym__end_of_line] = ACTIONS(5), }, @@ -10121,244 +10075,242 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_deprecated] = STATE(61), [aux_sym_array_repeat1] = STATE(57), [aux_sym_array_repeat2] = STATE(2), - [aux_sym_number_token1] = ACTIONS(116), - [anon_sym_os] = ACTIONS(118), - [anon_sym_Family] = ACTIONS(118), - [anon_sym_Arch] = ACTIONS(118), - [anon_sym_ExeExt] = ACTIONS(118), - [anon_sym_PllExt] = ACTIONS(118), - [anon_sym_Sep] = ACTIONS(118), - [aux_sym_character_token1] = ACTIONS(120), - [sym_string] = ACTIONS(122), - [sym_multiLineString] = ACTIONS(122), + [aux_sym_number_token1] = ACTIONS(111), + [anon_sym_os] = ACTIONS(113), + [anon_sym_Family] = ACTIONS(113), + [anon_sym_Arch] = ACTIONS(113), + [anon_sym_ExeExt] = ACTIONS(113), + [anon_sym_PllExt] = ACTIONS(113), + [anon_sym_Sep] = ACTIONS(113), + [aux_sym_character_token1] = ACTIONS(115), + [sym_string] = ACTIONS(117), + [sym_multiLineString] = ACTIONS(117), [anon_sym_PIPE] = ACTIONS(15), - [sym_identifier] = ACTIONS(126), - [sym_identifier_deprecated] = ACTIONS(126), - [sym_system] = ACTIONS(122), - [sym_comment] = ACTIONS(228), - [sym_openParen] = ACTIONS(130), - [sym_openCurly] = ACTIONS(134), - [sym_closeCurly] = ACTIONS(246), - [sym_openBracket] = ACTIONS(136), - [sym_leftArrow] = ACTIONS(230), - [anon_sym_CARET] = ACTIONS(142), - [anon_sym_eta] = ACTIONS(144), - [anon_sym_] = ACTIONS(146), - [anon_sym_pi] = ACTIONS(146), - [anon_sym_2] = ACTIONS(146), - [anon_sym_tau] = ACTIONS(144), - [anon_sym_3] = ACTIONS(146), - [anon_sym_infinity] = ACTIONS(144), - [anon_sym_4] = ACTIONS(144), - [anon_sym_e] = ACTIONS(146), - [anon_sym_NaN] = ACTIONS(146), - [anon_sym_NumProcs] = ACTIONS(146), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_COMMA] = ACTIONS(148), - [anon_sym_5] = ACTIONS(148), - [anon_sym_SEMI] = ACTIONS(148), - [anon_sym_identity] = ACTIONS(148), - [anon_sym_id] = ACTIONS(150), - [anon_sym_6] = ACTIONS(148), - [anon_sym_not] = ACTIONS(148), - [anon_sym_7] = ACTIONS(148), - [anon_sym_sign] = ACTIONS(148), - [anon_sym_8] = ACTIONS(148), - [anon_sym_BQUOTE] = ACTIONS(148), - [anon_sym_9] = ACTIONS(148), - [anon_sym_absolutevalue] = ACTIONS(148), - [anon_sym_10] = ACTIONS(148), - [anon_sym_sqrt] = ACTIONS(148), - [anon_sym_11] = ACTIONS(148), - [anon_sym_sine] = ACTIONS(148), - [anon_sym_12] = ACTIONS(148), - [anon_sym_floor] = ACTIONS(148), - [anon_sym_13] = ACTIONS(148), - [anon_sym_ceiling] = ACTIONS(148), - [anon_sym_14] = ACTIONS(148), - [anon_sym_round] = ACTIONS(148), - [anon_sym_15] = ACTIONS(148), - [anon_sym_EQ] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_16] = ACTIONS(148), - [anon_sym_LT] = ACTIONS(150), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_17] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_18] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_19] = ACTIONS(148), - [anon_sym_PERCENT] = ACTIONS(148), - [anon_sym_20] = ACTIONS(148), - [anon_sym_modulus] = ACTIONS(148), - [anon_sym_21] = ACTIONS(148), - [anon_sym_power] = ACTIONS(148), - [anon_sym_22] = ACTIONS(148), - [anon_sym_logarithm] = ACTIONS(148), - [anon_sym_23] = ACTIONS(148), - [anon_sym_minimum] = ACTIONS(148), - [anon_sym_24] = ACTIONS(148), - [anon_sym_maximum] = ACTIONS(148), - [anon_sym_25] = ACTIONS(148), - [anon_sym_atangent] = ACTIONS(148), - [anon_sym_26] = ACTIONS(148), - [anon_sym_length] = ACTIONS(148), - [anon_sym_27] = ACTIONS(148), - [anon_sym_shape] = ACTIONS(148), - [anon_sym_28] = ACTIONS(148), - [anon_sym_range] = ACTIONS(148), - [anon_sym_29] = ACTIONS(148), - [anon_sym_first] = ACTIONS(148), - [anon_sym_30] = ACTIONS(148), - [anon_sym_reverse] = ACTIONS(148), - [anon_sym_31] = ACTIONS(148), - [anon_sym_deshape] = ACTIONS(148), - [anon_sym_32] = ACTIONS(148), - [anon_sym_bits] = ACTIONS(148), - [anon_sym_33] = ACTIONS(148), - [anon_sym_transpose] = ACTIONS(148), - [anon_sym_34] = ACTIONS(148), - [anon_sym_rise] = ACTIONS(148), - [anon_sym_35] = ACTIONS(148), - [anon_sym_fall] = ACTIONS(148), - [anon_sym_36] = ACTIONS(148), - [anon_sym_where] = ACTIONS(148), - [anon_sym_37] = ACTIONS(148), - [anon_sym_classify] = ACTIONS(148), - [anon_sym_38] = ACTIONS(148), - [anon_sym_deduplicate] = ACTIONS(148), - [anon_sym_39] = ACTIONS(148), - [anon_sym_box] = ACTIONS(148), - [anon_sym_40] = ACTIONS(148), - [anon_sym_unbox] = ACTIONS(148), - [anon_sym_41] = ACTIONS(148), - [anon_sym_match] = ACTIONS(148), - [anon_sym_42] = ACTIONS(148), - [anon_sym_couple] = ACTIONS(148), - [anon_sym_43] = ACTIONS(148), - [anon_sym_join] = ACTIONS(148), - [anon_sym_44] = ACTIONS(148), - [anon_sym_select] = ACTIONS(148), - [anon_sym_45] = ACTIONS(148), - [anon_sym_pick] = ACTIONS(148), - [anon_sym_46] = ACTIONS(148), - [anon_sym_reshape] = ACTIONS(148), - [anon_sym_47] = ACTIONS(148), - [anon_sym_take] = ACTIONS(148), - [anon_sym_48] = ACTIONS(148), - [anon_sym_drop] = ACTIONS(148), - [anon_sym_49] = ACTIONS(148), - [anon_sym_rotate] = ACTIONS(148), - [anon_sym_50] = ACTIONS(148), - [anon_sym_windows] = ACTIONS(148), - [anon_sym_51] = ACTIONS(148), - [anon_sym_keep] = ACTIONS(148), - [anon_sym_52] = ACTIONS(148), - [anon_sym_find] = ACTIONS(148), - [anon_sym_53] = ACTIONS(148), - [anon_sym_member] = ACTIONS(148), - [anon_sym_54] = ACTIONS(148), - [anon_sym_indexof] = ACTIONS(148), - [anon_sym_55] = ACTIONS(148), - [anon_sym_assert] = ACTIONS(148), - [anon_sym_56] = ACTIONS(148), - [anon_sym_wait] = ACTIONS(148), - [anon_sym_break] = ACTIONS(148), - [anon_sym_57] = ACTIONS(148), - [anon_sym_parse] = ACTIONS(148), - [anon_sym_random] = ACTIONS(148), - [anon_sym_58] = ACTIONS(148), - [anon_sym_gen] = ACTIONS(148), - [anon_sym_deal] = ACTIONS(148), - [anon_sym_tag] = ACTIONS(148), - [anon_sym_now] = ACTIONS(148), - [anon_sym_type] = ACTIONS(148), - [anon_sym_59] = ACTIONS(148), - [anon_sym_dump] = ACTIONS(148), - [anon_sym_regex] = ACTIONS(148), - [anon_sym_utf] = ACTIONS(148), - [anon_sym_rock] = ACTIONS(148), - [anon_sym_60] = ACTIONS(148), - [anon_sym_surface] = ACTIONS(148), - [anon_sym_TILDE] = ACTIONS(148), - [anon_sym_deep] = ACTIONS(148), - [anon_sym_de] = ACTIONS(150), - [anon_sym_61] = ACTIONS(148), - [anon_sym_abyss] = ACTIONS(148), - [anon_sym_ab] = ACTIONS(150), - [anon_sym_62] = ACTIONS(148), - [anon_sym_seabed] = ACTIONS(148), - [anon_sym_se] = ACTIONS(150), - [anon_sym_63] = ACTIONS(148), - [anon_sym_send] = ACTIONS(148), - [anon_sym_recv] = ACTIONS(148), - [anon_sym_tryrecv] = ACTIONS(148), - [anon_sym_reduce] = ACTIONS(152), - [anon_sym_SLASH] = ACTIONS(152), - [anon_sym_scan] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_each] = ACTIONS(152), - [anon_sym_64] = ACTIONS(152), - [anon_sym_rows] = ACTIONS(152), - [anon_sym_65] = ACTIONS(152), - [anon_sym_repeat] = ACTIONS(152), - [anon_sym_66] = ACTIONS(152), - [anon_sym_dip] = ACTIONS(152), - [anon_sym_di] = ACTIONS(154), - [anon_sym_67] = ACTIONS(152), - [anon_sym_gap] = ACTIONS(152), - [anon_sym_ga] = ACTIONS(154), - [anon_sym_68] = ACTIONS(152), - [anon_sym_oust] = ACTIONS(152), - [anon_sym_69] = ACTIONS(152), - [anon_sym_invert] = ACTIONS(152), - [anon_sym_70] = ACTIONS(152), - [anon_sym_spawn] = ACTIONS(152), - [anon_sym_pack] = ACTIONS(152), - [anon_sym_71] = ACTIONS(152), - [anon_sym_tribute] = ACTIONS(152), - [anon_sym_72] = ACTIONS(152), - [anon_sym_fold] = ACTIONS(156), - [anon_sym_73] = ACTIONS(156), - [anon_sym_distribute] = ACTIONS(156), - [anon_sym_74] = ACTIONS(156), - [anon_sym_table] = ACTIONS(156), - [anon_sym_75] = ACTIONS(156), - [anon_sym_cross] = ACTIONS(156), - [anon_sym_76] = ACTIONS(156), - [anon_sym_group] = ACTIONS(156), - [anon_sym_77] = ACTIONS(156), - [anon_sym_partition] = ACTIONS(156), - [anon_sym_78] = ACTIONS(156), - [anon_sym_both] = ACTIONS(156), - [anon_sym_79] = ACTIONS(156), - [anon_sym_bracket] = ACTIONS(156), - [anon_sym_80] = ACTIONS(156), - [anon_sym_fork] = ACTIONS(156), - [anon_sym_81] = ACTIONS(156), - [anon_sym_under] = ACTIONS(156), - [anon_sym_82] = ACTIONS(156), - [anon_sym_level] = ACTIONS(156), - [anon_sym_83] = ACTIONS(156), - [anon_sym_fill] = ACTIONS(156), - [anon_sym_84] = ACTIONS(156), - [anon_sym_bind] = ACTIONS(156), - [anon_sym_SQUOTE] = ACTIONS(156), - [anon_sym_QMARK] = ACTIONS(156), - [anon_sym_try] = ACTIONS(158), - [anon_sym_85] = ACTIONS(156), - [anon_sym_combinate] = ACTIONS(156), - [anon_sym_86] = ACTIONS(156), - [anon_sym_87] = ACTIONS(160), - [anon_sym_88] = ACTIONS(160), - [anon_sym_89] = ACTIONS(160), - [anon_sym_90] = ACTIONS(160), - [anon_sym_91] = ACTIONS(160), - [anon_sym_92] = ACTIONS(160), - [anon_sym_93] = ACTIONS(160), + [sym_identifier] = ACTIONS(121), + [sym_identifier_deprecated] = ACTIONS(121), + [sym_system] = ACTIONS(117), + [sym_comment] = ACTIONS(218), + [sym_openParen] = ACTIONS(125), + [sym_openCurly] = ACTIONS(129), + [sym_closeCurly] = ACTIONS(236), + [sym_openBracket] = ACTIONS(131), + [sym_leftArrow] = ACTIONS(220), + [anon_sym_CARET] = ACTIONS(137), + [anon_sym_eta] = ACTIONS(139), + [anon_sym_] = ACTIONS(141), + [anon_sym_pi] = ACTIONS(141), + [anon_sym_2] = ACTIONS(141), + [anon_sym_tau] = ACTIONS(139), + [anon_sym_3] = ACTIONS(141), + [anon_sym_infinity] = ACTIONS(139), + [anon_sym_4] = ACTIONS(139), + [anon_sym_e] = ACTIONS(141), + [anon_sym_NaN] = ACTIONS(141), + [anon_sym_NumProcs] = ACTIONS(141), + [anon_sym_DOT] = ACTIONS(143), + [anon_sym_COMMA] = ACTIONS(143), + [anon_sym_5] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_identity] = ACTIONS(143), + [anon_sym_id] = ACTIONS(145), + [anon_sym_6] = ACTIONS(143), + [anon_sym_not] = ACTIONS(143), + [anon_sym_7] = ACTIONS(143), + [anon_sym_sign] = ACTIONS(143), + [anon_sym_8] = ACTIONS(143), + [anon_sym_BQUOTE] = ACTIONS(143), + [anon_sym_9] = ACTIONS(143), + [anon_sym_absolutevalue] = ACTIONS(143), + [anon_sym_10] = ACTIONS(143), + [anon_sym_sqrt] = ACTIONS(143), + [anon_sym_11] = ACTIONS(143), + [anon_sym_sine] = ACTIONS(143), + [anon_sym_12] = ACTIONS(143), + [anon_sym_floor] = ACTIONS(143), + [anon_sym_13] = ACTIONS(143), + [anon_sym_ceiling] = ACTIONS(143), + [anon_sym_14] = ACTIONS(143), + [anon_sym_round] = ACTIONS(143), + [anon_sym_15] = ACTIONS(143), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_16] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_17] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_18] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_19] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_20] = ACTIONS(143), + [anon_sym_modulus] = ACTIONS(143), + [anon_sym_21] = ACTIONS(143), + [anon_sym_power] = ACTIONS(143), + [anon_sym_22] = ACTIONS(143), + [anon_sym_logarithm] = ACTIONS(143), + [anon_sym_23] = ACTIONS(143), + [anon_sym_minimum] = ACTIONS(143), + [anon_sym_24] = ACTIONS(143), + [anon_sym_maximum] = ACTIONS(143), + [anon_sym_25] = ACTIONS(143), + [anon_sym_atangent] = ACTIONS(143), + [anon_sym_26] = ACTIONS(143), + [anon_sym_length] = ACTIONS(143), + [anon_sym_27] = ACTIONS(143), + [anon_sym_shape] = ACTIONS(143), + [anon_sym_28] = ACTIONS(143), + [anon_sym_range] = ACTIONS(143), + [anon_sym_29] = ACTIONS(143), + [anon_sym_first] = ACTIONS(143), + [anon_sym_30] = ACTIONS(143), + [anon_sym_reverse] = ACTIONS(143), + [anon_sym_31] = ACTIONS(143), + [anon_sym_deshape] = ACTIONS(143), + [anon_sym_32] = ACTIONS(143), + [anon_sym_bits] = ACTIONS(143), + [anon_sym_33] = ACTIONS(143), + [anon_sym_transpose] = ACTIONS(143), + [anon_sym_34] = ACTIONS(143), + [anon_sym_rise] = ACTIONS(143), + [anon_sym_35] = ACTIONS(143), + [anon_sym_fall] = ACTIONS(143), + [anon_sym_36] = ACTIONS(143), + [anon_sym_where] = ACTIONS(143), + [anon_sym_37] = ACTIONS(143), + [anon_sym_classify] = ACTIONS(143), + [anon_sym_38] = ACTIONS(143), + [anon_sym_deduplicate] = ACTIONS(143), + [anon_sym_39] = ACTIONS(143), + [anon_sym_box] = ACTIONS(143), + [anon_sym_40] = ACTIONS(143), + [anon_sym_unbox] = ACTIONS(143), + [anon_sym_41] = ACTIONS(143), + [anon_sym_match] = ACTIONS(143), + [anon_sym_42] = ACTIONS(143), + [anon_sym_couple] = ACTIONS(143), + [anon_sym_43] = ACTIONS(143), + [anon_sym_join] = ACTIONS(143), + [anon_sym_44] = ACTIONS(143), + [anon_sym_select] = ACTIONS(143), + [anon_sym_45] = ACTIONS(143), + [anon_sym_pick] = ACTIONS(143), + [anon_sym_46] = ACTIONS(143), + [anon_sym_reshape] = ACTIONS(143), + [anon_sym_47] = ACTIONS(143), + [anon_sym_take] = ACTIONS(143), + [anon_sym_48] = ACTIONS(143), + [anon_sym_drop] = ACTIONS(143), + [anon_sym_49] = ACTIONS(143), + [anon_sym_rotate] = ACTIONS(143), + [anon_sym_50] = ACTIONS(143), + [anon_sym_windows] = ACTIONS(143), + [anon_sym_51] = ACTIONS(143), + [anon_sym_keep] = ACTIONS(143), + [anon_sym_52] = ACTIONS(143), + [anon_sym_find] = ACTIONS(143), + [anon_sym_53] = ACTIONS(143), + [anon_sym_member] = ACTIONS(143), + [anon_sym_54] = ACTIONS(143), + [anon_sym_indexof] = ACTIONS(143), + [anon_sym_55] = ACTIONS(143), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_56] = ACTIONS(143), + [anon_sym_wait] = ACTIONS(143), + [anon_sym_break] = ACTIONS(143), + [anon_sym_57] = ACTIONS(143), + [anon_sym_parse] = ACTIONS(143), + [anon_sym_random] = ACTIONS(143), + [anon_sym_58] = ACTIONS(143), + [anon_sym_gen] = ACTIONS(143), + [anon_sym_deal] = ACTIONS(143), + [anon_sym_tag] = ACTIONS(143), + [anon_sym_now] = ACTIONS(143), + [anon_sym_type] = ACTIONS(143), + [anon_sym_59] = ACTIONS(143), + [anon_sym_dump] = ACTIONS(143), + [anon_sym_regex] = ACTIONS(143), + [anon_sym_utf] = ACTIONS(143), + [anon_sym_rock] = ACTIONS(143), + [anon_sym_60] = ACTIONS(143), + [anon_sym_surface] = ACTIONS(143), + [anon_sym_TILDE] = ACTIONS(143), + [anon_sym_deep] = ACTIONS(143), + [anon_sym_de] = ACTIONS(145), + [anon_sym_61] = ACTIONS(143), + [anon_sym_abyss] = ACTIONS(143), + [anon_sym_ab] = ACTIONS(145), + [anon_sym_62] = ACTIONS(143), + [anon_sym_seabed] = ACTIONS(143), + [anon_sym_se] = ACTIONS(145), + [anon_sym_63] = ACTIONS(143), + [anon_sym_send] = ACTIONS(143), + [anon_sym_recv] = ACTIONS(143), + [anon_sym_tryrecv] = ACTIONS(143), + [anon_sym_reduce] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_scan] = ACTIONS(147), + [anon_sym_BSLASH] = ACTIONS(147), + [anon_sym_each] = ACTIONS(147), + [anon_sym_64] = ACTIONS(147), + [anon_sym_rows] = ACTIONS(147), + [anon_sym_65] = ACTIONS(147), + [anon_sym_repeat] = ACTIONS(147), + [anon_sym_66] = ACTIONS(147), + [anon_sym_dip] = ACTIONS(147), + [anon_sym_67] = ACTIONS(147), + [anon_sym_gap] = ACTIONS(147), + [anon_sym_68] = ACTIONS(147), + [anon_sym_69] = ACTIONS(147), + [anon_sym_invert] = ACTIONS(147), + [anon_sym_70] = ACTIONS(147), + [anon_sym_spawn] = ACTIONS(147), + [anon_sym_pack] = ACTIONS(147), + [anon_sym_71] = ACTIONS(147), + [anon_sym_tribute] = ACTIONS(147), + [anon_sym_72] = ACTIONS(147), + [anon_sym_reach] = ACTIONS(147), + [anon_sym_fold] = ACTIONS(149), + [anon_sym_73] = ACTIONS(149), + [anon_sym_distribute] = ACTIONS(149), + [anon_sym_74] = ACTIONS(149), + [anon_sym_table] = ACTIONS(149), + [anon_sym_75] = ACTIONS(149), + [anon_sym_cross] = ACTIONS(149), + [anon_sym_76] = ACTIONS(149), + [anon_sym_group] = ACTIONS(149), + [anon_sym_77] = ACTIONS(149), + [anon_sym_partition] = ACTIONS(149), + [anon_sym_78] = ACTIONS(149), + [anon_sym_both] = ACTIONS(149), + [anon_sym_79] = ACTIONS(149), + [anon_sym_bracket] = ACTIONS(149), + [anon_sym_80] = ACTIONS(149), + [anon_sym_fork] = ACTIONS(149), + [anon_sym_81] = ACTIONS(149), + [anon_sym_under] = ACTIONS(149), + [anon_sym_82] = ACTIONS(149), + [anon_sym_level] = ACTIONS(149), + [anon_sym_83] = ACTIONS(149), + [anon_sym_fill] = ACTIONS(149), + [anon_sym_84] = ACTIONS(149), + [anon_sym_bind] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_try] = ACTIONS(151), + [anon_sym_85] = ACTIONS(149), + [anon_sym_combinate] = ACTIONS(149), + [anon_sym_86] = ACTIONS(149), + [anon_sym_87] = ACTIONS(153), + [anon_sym_88] = ACTIONS(153), + [anon_sym_89] = ACTIONS(153), + [anon_sym_90] = ACTIONS(153), + [anon_sym_91] = ACTIONS(153), + [anon_sym_92] = ACTIONS(153), + [anon_sym_93] = ACTIONS(153), [sym__whitespace] = ACTIONS(5), [sym__end_of_line] = ACTIONS(5), }, @@ -10382,244 +10334,242 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_deprecated] = STATE(61), [aux_sym_array_repeat1] = STATE(57), [aux_sym_array_repeat2] = STATE(2), - [aux_sym_number_token1] = ACTIONS(116), - [anon_sym_os] = ACTIONS(118), - [anon_sym_Family] = ACTIONS(118), - [anon_sym_Arch] = ACTIONS(118), - [anon_sym_ExeExt] = ACTIONS(118), - [anon_sym_PllExt] = ACTIONS(118), - [anon_sym_Sep] = ACTIONS(118), - [aux_sym_character_token1] = ACTIONS(120), - [sym_string] = ACTIONS(122), - [sym_multiLineString] = ACTIONS(122), + [aux_sym_number_token1] = ACTIONS(111), + [anon_sym_os] = ACTIONS(113), + [anon_sym_Family] = ACTIONS(113), + [anon_sym_Arch] = ACTIONS(113), + [anon_sym_ExeExt] = ACTIONS(113), + [anon_sym_PllExt] = ACTIONS(113), + [anon_sym_Sep] = ACTIONS(113), + [aux_sym_character_token1] = ACTIONS(115), + [sym_string] = ACTIONS(117), + [sym_multiLineString] = ACTIONS(117), [anon_sym_PIPE] = ACTIONS(15), - [sym_identifier] = ACTIONS(126), - [sym_identifier_deprecated] = ACTIONS(126), - [sym_system] = ACTIONS(122), - [sym_comment] = ACTIONS(228), - [sym_openParen] = ACTIONS(130), - [sym_openCurly] = ACTIONS(134), - [sym_closeCurly] = ACTIONS(248), - [sym_openBracket] = ACTIONS(136), - [sym_leftArrow] = ACTIONS(230), - [anon_sym_CARET] = ACTIONS(142), - [anon_sym_eta] = ACTIONS(144), - [anon_sym_] = ACTIONS(146), - [anon_sym_pi] = ACTIONS(146), - [anon_sym_2] = ACTIONS(146), - [anon_sym_tau] = ACTIONS(144), - [anon_sym_3] = ACTIONS(146), - [anon_sym_infinity] = ACTIONS(144), - [anon_sym_4] = ACTIONS(144), - [anon_sym_e] = ACTIONS(146), - [anon_sym_NaN] = ACTIONS(146), - [anon_sym_NumProcs] = ACTIONS(146), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_COMMA] = ACTIONS(148), - [anon_sym_5] = ACTIONS(148), - [anon_sym_SEMI] = ACTIONS(148), - [anon_sym_identity] = ACTIONS(148), - [anon_sym_id] = ACTIONS(150), - [anon_sym_6] = ACTIONS(148), - [anon_sym_not] = ACTIONS(148), - [anon_sym_7] = ACTIONS(148), - [anon_sym_sign] = ACTIONS(148), - [anon_sym_8] = ACTIONS(148), - [anon_sym_BQUOTE] = ACTIONS(148), - [anon_sym_9] = ACTIONS(148), - [anon_sym_absolutevalue] = ACTIONS(148), - [anon_sym_10] = ACTIONS(148), - [anon_sym_sqrt] = ACTIONS(148), - [anon_sym_11] = ACTIONS(148), - [anon_sym_sine] = ACTIONS(148), - [anon_sym_12] = ACTIONS(148), - [anon_sym_floor] = ACTIONS(148), - [anon_sym_13] = ACTIONS(148), - [anon_sym_ceiling] = ACTIONS(148), - [anon_sym_14] = ACTIONS(148), - [anon_sym_round] = ACTIONS(148), - [anon_sym_15] = ACTIONS(148), - [anon_sym_EQ] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_16] = ACTIONS(148), - [anon_sym_LT] = ACTIONS(150), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_17] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_18] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_19] = ACTIONS(148), - [anon_sym_PERCENT] = ACTIONS(148), - [anon_sym_20] = ACTIONS(148), - [anon_sym_modulus] = ACTIONS(148), - [anon_sym_21] = ACTIONS(148), - [anon_sym_power] = ACTIONS(148), - [anon_sym_22] = ACTIONS(148), - [anon_sym_logarithm] = ACTIONS(148), - [anon_sym_23] = ACTIONS(148), - [anon_sym_minimum] = ACTIONS(148), - [anon_sym_24] = ACTIONS(148), - [anon_sym_maximum] = ACTIONS(148), - [anon_sym_25] = ACTIONS(148), - [anon_sym_atangent] = ACTIONS(148), - [anon_sym_26] = ACTIONS(148), - [anon_sym_length] = ACTIONS(148), - [anon_sym_27] = ACTIONS(148), - [anon_sym_shape] = ACTIONS(148), - [anon_sym_28] = ACTIONS(148), - [anon_sym_range] = ACTIONS(148), - [anon_sym_29] = ACTIONS(148), - [anon_sym_first] = ACTIONS(148), - [anon_sym_30] = ACTIONS(148), - [anon_sym_reverse] = ACTIONS(148), - [anon_sym_31] = ACTIONS(148), - [anon_sym_deshape] = ACTIONS(148), - [anon_sym_32] = ACTIONS(148), - [anon_sym_bits] = ACTIONS(148), - [anon_sym_33] = ACTIONS(148), - [anon_sym_transpose] = ACTIONS(148), - [anon_sym_34] = ACTIONS(148), - [anon_sym_rise] = ACTIONS(148), - [anon_sym_35] = ACTIONS(148), - [anon_sym_fall] = ACTIONS(148), - [anon_sym_36] = ACTIONS(148), - [anon_sym_where] = ACTIONS(148), - [anon_sym_37] = ACTIONS(148), - [anon_sym_classify] = ACTIONS(148), - [anon_sym_38] = ACTIONS(148), - [anon_sym_deduplicate] = ACTIONS(148), - [anon_sym_39] = ACTIONS(148), - [anon_sym_box] = ACTIONS(148), - [anon_sym_40] = ACTIONS(148), - [anon_sym_unbox] = ACTIONS(148), - [anon_sym_41] = ACTIONS(148), - [anon_sym_match] = ACTIONS(148), - [anon_sym_42] = ACTIONS(148), - [anon_sym_couple] = ACTIONS(148), - [anon_sym_43] = ACTIONS(148), - [anon_sym_join] = ACTIONS(148), - [anon_sym_44] = ACTIONS(148), - [anon_sym_select] = ACTIONS(148), - [anon_sym_45] = ACTIONS(148), - [anon_sym_pick] = ACTIONS(148), - [anon_sym_46] = ACTIONS(148), - [anon_sym_reshape] = ACTIONS(148), - [anon_sym_47] = ACTIONS(148), - [anon_sym_take] = ACTIONS(148), - [anon_sym_48] = ACTIONS(148), - [anon_sym_drop] = ACTIONS(148), - [anon_sym_49] = ACTIONS(148), - [anon_sym_rotate] = ACTIONS(148), - [anon_sym_50] = ACTIONS(148), - [anon_sym_windows] = ACTIONS(148), - [anon_sym_51] = ACTIONS(148), - [anon_sym_keep] = ACTIONS(148), - [anon_sym_52] = ACTIONS(148), - [anon_sym_find] = ACTIONS(148), - [anon_sym_53] = ACTIONS(148), - [anon_sym_member] = ACTIONS(148), - [anon_sym_54] = ACTIONS(148), - [anon_sym_indexof] = ACTIONS(148), - [anon_sym_55] = ACTIONS(148), - [anon_sym_assert] = ACTIONS(148), - [anon_sym_56] = ACTIONS(148), - [anon_sym_wait] = ACTIONS(148), - [anon_sym_break] = ACTIONS(148), - [anon_sym_57] = ACTIONS(148), - [anon_sym_parse] = ACTIONS(148), - [anon_sym_random] = ACTIONS(148), - [anon_sym_58] = ACTIONS(148), - [anon_sym_gen] = ACTIONS(148), - [anon_sym_deal] = ACTIONS(148), - [anon_sym_tag] = ACTIONS(148), - [anon_sym_now] = ACTIONS(148), - [anon_sym_type] = ACTIONS(148), - [anon_sym_59] = ACTIONS(148), - [anon_sym_dump] = ACTIONS(148), - [anon_sym_regex] = ACTIONS(148), - [anon_sym_utf] = ACTIONS(148), - [anon_sym_rock] = ACTIONS(148), - [anon_sym_60] = ACTIONS(148), - [anon_sym_surface] = ACTIONS(148), - [anon_sym_TILDE] = ACTIONS(148), - [anon_sym_deep] = ACTIONS(148), - [anon_sym_de] = ACTIONS(150), - [anon_sym_61] = ACTIONS(148), - [anon_sym_abyss] = ACTIONS(148), - [anon_sym_ab] = ACTIONS(150), - [anon_sym_62] = ACTIONS(148), - [anon_sym_seabed] = ACTIONS(148), - [anon_sym_se] = ACTIONS(150), - [anon_sym_63] = ACTIONS(148), - [anon_sym_send] = ACTIONS(148), - [anon_sym_recv] = ACTIONS(148), - [anon_sym_tryrecv] = ACTIONS(148), - [anon_sym_reduce] = ACTIONS(152), - [anon_sym_SLASH] = ACTIONS(152), - [anon_sym_scan] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_each] = ACTIONS(152), - [anon_sym_64] = ACTIONS(152), - [anon_sym_rows] = ACTIONS(152), - [anon_sym_65] = ACTIONS(152), - [anon_sym_repeat] = ACTIONS(152), - [anon_sym_66] = ACTIONS(152), - [anon_sym_dip] = ACTIONS(152), - [anon_sym_di] = ACTIONS(154), - [anon_sym_67] = ACTIONS(152), - [anon_sym_gap] = ACTIONS(152), - [anon_sym_ga] = ACTIONS(154), - [anon_sym_68] = ACTIONS(152), - [anon_sym_oust] = ACTIONS(152), - [anon_sym_69] = ACTIONS(152), - [anon_sym_invert] = ACTIONS(152), - [anon_sym_70] = ACTIONS(152), - [anon_sym_spawn] = ACTIONS(152), - [anon_sym_pack] = ACTIONS(152), - [anon_sym_71] = ACTIONS(152), - [anon_sym_tribute] = ACTIONS(152), - [anon_sym_72] = ACTIONS(152), - [anon_sym_fold] = ACTIONS(156), - [anon_sym_73] = ACTIONS(156), - [anon_sym_distribute] = ACTIONS(156), - [anon_sym_74] = ACTIONS(156), - [anon_sym_table] = ACTIONS(156), - [anon_sym_75] = ACTIONS(156), - [anon_sym_cross] = ACTIONS(156), - [anon_sym_76] = ACTIONS(156), - [anon_sym_group] = ACTIONS(156), - [anon_sym_77] = ACTIONS(156), - [anon_sym_partition] = ACTIONS(156), - [anon_sym_78] = ACTIONS(156), - [anon_sym_both] = ACTIONS(156), - [anon_sym_79] = ACTIONS(156), - [anon_sym_bracket] = ACTIONS(156), - [anon_sym_80] = ACTIONS(156), - [anon_sym_fork] = ACTIONS(156), - [anon_sym_81] = ACTIONS(156), - [anon_sym_under] = ACTIONS(156), - [anon_sym_82] = ACTIONS(156), - [anon_sym_level] = ACTIONS(156), - [anon_sym_83] = ACTIONS(156), - [anon_sym_fill] = ACTIONS(156), - [anon_sym_84] = ACTIONS(156), - [anon_sym_bind] = ACTIONS(156), - [anon_sym_SQUOTE] = ACTIONS(156), - [anon_sym_QMARK] = ACTIONS(156), - [anon_sym_try] = ACTIONS(158), - [anon_sym_85] = ACTIONS(156), - [anon_sym_combinate] = ACTIONS(156), - [anon_sym_86] = ACTIONS(156), - [anon_sym_87] = ACTIONS(160), - [anon_sym_88] = ACTIONS(160), - [anon_sym_89] = ACTIONS(160), - [anon_sym_90] = ACTIONS(160), - [anon_sym_91] = ACTIONS(160), - [anon_sym_92] = ACTIONS(160), - [anon_sym_93] = ACTIONS(160), + [sym_identifier] = ACTIONS(121), + [sym_identifier_deprecated] = ACTIONS(121), + [sym_system] = ACTIONS(117), + [sym_comment] = ACTIONS(218), + [sym_openParen] = ACTIONS(125), + [sym_openCurly] = ACTIONS(129), + [sym_closeCurly] = ACTIONS(238), + [sym_openBracket] = ACTIONS(131), + [sym_leftArrow] = ACTIONS(220), + [anon_sym_CARET] = ACTIONS(137), + [anon_sym_eta] = ACTIONS(139), + [anon_sym_] = ACTIONS(141), + [anon_sym_pi] = ACTIONS(141), + [anon_sym_2] = ACTIONS(141), + [anon_sym_tau] = ACTIONS(139), + [anon_sym_3] = ACTIONS(141), + [anon_sym_infinity] = ACTIONS(139), + [anon_sym_4] = ACTIONS(139), + [anon_sym_e] = ACTIONS(141), + [anon_sym_NaN] = ACTIONS(141), + [anon_sym_NumProcs] = ACTIONS(141), + [anon_sym_DOT] = ACTIONS(143), + [anon_sym_COMMA] = ACTIONS(143), + [anon_sym_5] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_identity] = ACTIONS(143), + [anon_sym_id] = ACTIONS(145), + [anon_sym_6] = ACTIONS(143), + [anon_sym_not] = ACTIONS(143), + [anon_sym_7] = ACTIONS(143), + [anon_sym_sign] = ACTIONS(143), + [anon_sym_8] = ACTIONS(143), + [anon_sym_BQUOTE] = ACTIONS(143), + [anon_sym_9] = ACTIONS(143), + [anon_sym_absolutevalue] = ACTIONS(143), + [anon_sym_10] = ACTIONS(143), + [anon_sym_sqrt] = ACTIONS(143), + [anon_sym_11] = ACTIONS(143), + [anon_sym_sine] = ACTIONS(143), + [anon_sym_12] = ACTIONS(143), + [anon_sym_floor] = ACTIONS(143), + [anon_sym_13] = ACTIONS(143), + [anon_sym_ceiling] = ACTIONS(143), + [anon_sym_14] = ACTIONS(143), + [anon_sym_round] = ACTIONS(143), + [anon_sym_15] = ACTIONS(143), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_16] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_17] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_18] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_19] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_20] = ACTIONS(143), + [anon_sym_modulus] = ACTIONS(143), + [anon_sym_21] = ACTIONS(143), + [anon_sym_power] = ACTIONS(143), + [anon_sym_22] = ACTIONS(143), + [anon_sym_logarithm] = ACTIONS(143), + [anon_sym_23] = ACTIONS(143), + [anon_sym_minimum] = ACTIONS(143), + [anon_sym_24] = ACTIONS(143), + [anon_sym_maximum] = ACTIONS(143), + [anon_sym_25] = ACTIONS(143), + [anon_sym_atangent] = ACTIONS(143), + [anon_sym_26] = ACTIONS(143), + [anon_sym_length] = ACTIONS(143), + [anon_sym_27] = ACTIONS(143), + [anon_sym_shape] = ACTIONS(143), + [anon_sym_28] = ACTIONS(143), + [anon_sym_range] = ACTIONS(143), + [anon_sym_29] = ACTIONS(143), + [anon_sym_first] = ACTIONS(143), + [anon_sym_30] = ACTIONS(143), + [anon_sym_reverse] = ACTIONS(143), + [anon_sym_31] = ACTIONS(143), + [anon_sym_deshape] = ACTIONS(143), + [anon_sym_32] = ACTIONS(143), + [anon_sym_bits] = ACTIONS(143), + [anon_sym_33] = ACTIONS(143), + [anon_sym_transpose] = ACTIONS(143), + [anon_sym_34] = ACTIONS(143), + [anon_sym_rise] = ACTIONS(143), + [anon_sym_35] = ACTIONS(143), + [anon_sym_fall] = ACTIONS(143), + [anon_sym_36] = ACTIONS(143), + [anon_sym_where] = ACTIONS(143), + [anon_sym_37] = ACTIONS(143), + [anon_sym_classify] = ACTIONS(143), + [anon_sym_38] = ACTIONS(143), + [anon_sym_deduplicate] = ACTIONS(143), + [anon_sym_39] = ACTIONS(143), + [anon_sym_box] = ACTIONS(143), + [anon_sym_40] = ACTIONS(143), + [anon_sym_unbox] = ACTIONS(143), + [anon_sym_41] = ACTIONS(143), + [anon_sym_match] = ACTIONS(143), + [anon_sym_42] = ACTIONS(143), + [anon_sym_couple] = ACTIONS(143), + [anon_sym_43] = ACTIONS(143), + [anon_sym_join] = ACTIONS(143), + [anon_sym_44] = ACTIONS(143), + [anon_sym_select] = ACTIONS(143), + [anon_sym_45] = ACTIONS(143), + [anon_sym_pick] = ACTIONS(143), + [anon_sym_46] = ACTIONS(143), + [anon_sym_reshape] = ACTIONS(143), + [anon_sym_47] = ACTIONS(143), + [anon_sym_take] = ACTIONS(143), + [anon_sym_48] = ACTIONS(143), + [anon_sym_drop] = ACTIONS(143), + [anon_sym_49] = ACTIONS(143), + [anon_sym_rotate] = ACTIONS(143), + [anon_sym_50] = ACTIONS(143), + [anon_sym_windows] = ACTIONS(143), + [anon_sym_51] = ACTIONS(143), + [anon_sym_keep] = ACTIONS(143), + [anon_sym_52] = ACTIONS(143), + [anon_sym_find] = ACTIONS(143), + [anon_sym_53] = ACTIONS(143), + [anon_sym_member] = ACTIONS(143), + [anon_sym_54] = ACTIONS(143), + [anon_sym_indexof] = ACTIONS(143), + [anon_sym_55] = ACTIONS(143), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_56] = ACTIONS(143), + [anon_sym_wait] = ACTIONS(143), + [anon_sym_break] = ACTIONS(143), + [anon_sym_57] = ACTIONS(143), + [anon_sym_parse] = ACTIONS(143), + [anon_sym_random] = ACTIONS(143), + [anon_sym_58] = ACTIONS(143), + [anon_sym_gen] = ACTIONS(143), + [anon_sym_deal] = ACTIONS(143), + [anon_sym_tag] = ACTIONS(143), + [anon_sym_now] = ACTIONS(143), + [anon_sym_type] = ACTIONS(143), + [anon_sym_59] = ACTIONS(143), + [anon_sym_dump] = ACTIONS(143), + [anon_sym_regex] = ACTIONS(143), + [anon_sym_utf] = ACTIONS(143), + [anon_sym_rock] = ACTIONS(143), + [anon_sym_60] = ACTIONS(143), + [anon_sym_surface] = ACTIONS(143), + [anon_sym_TILDE] = ACTIONS(143), + [anon_sym_deep] = ACTIONS(143), + [anon_sym_de] = ACTIONS(145), + [anon_sym_61] = ACTIONS(143), + [anon_sym_abyss] = ACTIONS(143), + [anon_sym_ab] = ACTIONS(145), + [anon_sym_62] = ACTIONS(143), + [anon_sym_seabed] = ACTIONS(143), + [anon_sym_se] = ACTIONS(145), + [anon_sym_63] = ACTIONS(143), + [anon_sym_send] = ACTIONS(143), + [anon_sym_recv] = ACTIONS(143), + [anon_sym_tryrecv] = ACTIONS(143), + [anon_sym_reduce] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_scan] = ACTIONS(147), + [anon_sym_BSLASH] = ACTIONS(147), + [anon_sym_each] = ACTIONS(147), + [anon_sym_64] = ACTIONS(147), + [anon_sym_rows] = ACTIONS(147), + [anon_sym_65] = ACTIONS(147), + [anon_sym_repeat] = ACTIONS(147), + [anon_sym_66] = ACTIONS(147), + [anon_sym_dip] = ACTIONS(147), + [anon_sym_67] = ACTIONS(147), + [anon_sym_gap] = ACTIONS(147), + [anon_sym_68] = ACTIONS(147), + [anon_sym_69] = ACTIONS(147), + [anon_sym_invert] = ACTIONS(147), + [anon_sym_70] = ACTIONS(147), + [anon_sym_spawn] = ACTIONS(147), + [anon_sym_pack] = ACTIONS(147), + [anon_sym_71] = ACTIONS(147), + [anon_sym_tribute] = ACTIONS(147), + [anon_sym_72] = ACTIONS(147), + [anon_sym_reach] = ACTIONS(147), + [anon_sym_fold] = ACTIONS(149), + [anon_sym_73] = ACTIONS(149), + [anon_sym_distribute] = ACTIONS(149), + [anon_sym_74] = ACTIONS(149), + [anon_sym_table] = ACTIONS(149), + [anon_sym_75] = ACTIONS(149), + [anon_sym_cross] = ACTIONS(149), + [anon_sym_76] = ACTIONS(149), + [anon_sym_group] = ACTIONS(149), + [anon_sym_77] = ACTIONS(149), + [anon_sym_partition] = ACTIONS(149), + [anon_sym_78] = ACTIONS(149), + [anon_sym_both] = ACTIONS(149), + [anon_sym_79] = ACTIONS(149), + [anon_sym_bracket] = ACTIONS(149), + [anon_sym_80] = ACTIONS(149), + [anon_sym_fork] = ACTIONS(149), + [anon_sym_81] = ACTIONS(149), + [anon_sym_under] = ACTIONS(149), + [anon_sym_82] = ACTIONS(149), + [anon_sym_level] = ACTIONS(149), + [anon_sym_83] = ACTIONS(149), + [anon_sym_fill] = ACTIONS(149), + [anon_sym_84] = ACTIONS(149), + [anon_sym_bind] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_try] = ACTIONS(151), + [anon_sym_85] = ACTIONS(149), + [anon_sym_combinate] = ACTIONS(149), + [anon_sym_86] = ACTIONS(149), + [anon_sym_87] = ACTIONS(153), + [anon_sym_88] = ACTIONS(153), + [anon_sym_89] = ACTIONS(153), + [anon_sym_90] = ACTIONS(153), + [anon_sym_91] = ACTIONS(153), + [anon_sym_92] = ACTIONS(153), + [anon_sym_93] = ACTIONS(153), [sym__whitespace] = ACTIONS(5), [sym__end_of_line] = ACTIONS(5), }, @@ -10643,244 +10593,242 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_deprecated] = STATE(61), [aux_sym_array_repeat1] = STATE(57), [aux_sym_array_repeat2] = STATE(2), - [aux_sym_number_token1] = ACTIONS(116), - [anon_sym_os] = ACTIONS(118), - [anon_sym_Family] = ACTIONS(118), - [anon_sym_Arch] = ACTIONS(118), - [anon_sym_ExeExt] = ACTIONS(118), - [anon_sym_PllExt] = ACTIONS(118), - [anon_sym_Sep] = ACTIONS(118), - [aux_sym_character_token1] = ACTIONS(120), - [sym_string] = ACTIONS(122), - [sym_multiLineString] = ACTIONS(122), + [aux_sym_number_token1] = ACTIONS(111), + [anon_sym_os] = ACTIONS(113), + [anon_sym_Family] = ACTIONS(113), + [anon_sym_Arch] = ACTIONS(113), + [anon_sym_ExeExt] = ACTIONS(113), + [anon_sym_PllExt] = ACTIONS(113), + [anon_sym_Sep] = ACTIONS(113), + [aux_sym_character_token1] = ACTIONS(115), + [sym_string] = ACTIONS(117), + [sym_multiLineString] = ACTIONS(117), [anon_sym_PIPE] = ACTIONS(15), - [sym_identifier] = ACTIONS(126), - [sym_identifier_deprecated] = ACTIONS(126), - [sym_system] = ACTIONS(122), - [sym_comment] = ACTIONS(228), - [sym_openParen] = ACTIONS(130), - [sym_openCurly] = ACTIONS(134), - [sym_openBracket] = ACTIONS(136), - [sym_closeBracket] = ACTIONS(248), - [sym_leftArrow] = ACTIONS(230), - [anon_sym_CARET] = ACTIONS(142), - [anon_sym_eta] = ACTIONS(144), - [anon_sym_] = ACTIONS(146), - [anon_sym_pi] = ACTIONS(146), - [anon_sym_2] = ACTIONS(146), - [anon_sym_tau] = ACTIONS(144), - [anon_sym_3] = ACTIONS(146), - [anon_sym_infinity] = ACTIONS(144), - [anon_sym_4] = ACTIONS(144), - [anon_sym_e] = ACTIONS(146), - [anon_sym_NaN] = ACTIONS(146), - [anon_sym_NumProcs] = ACTIONS(146), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_COMMA] = ACTIONS(148), - [anon_sym_5] = ACTIONS(148), - [anon_sym_SEMI] = ACTIONS(148), - [anon_sym_identity] = ACTIONS(148), - [anon_sym_id] = ACTIONS(150), - [anon_sym_6] = ACTIONS(148), - [anon_sym_not] = ACTIONS(148), - [anon_sym_7] = ACTIONS(148), - [anon_sym_sign] = ACTIONS(148), - [anon_sym_8] = ACTIONS(148), - [anon_sym_BQUOTE] = ACTIONS(148), - [anon_sym_9] = ACTIONS(148), - [anon_sym_absolutevalue] = ACTIONS(148), - [anon_sym_10] = ACTIONS(148), - [anon_sym_sqrt] = ACTIONS(148), - [anon_sym_11] = ACTIONS(148), - [anon_sym_sine] = ACTIONS(148), - [anon_sym_12] = ACTIONS(148), - [anon_sym_floor] = ACTIONS(148), - [anon_sym_13] = ACTIONS(148), - [anon_sym_ceiling] = ACTIONS(148), - [anon_sym_14] = ACTIONS(148), - [anon_sym_round] = ACTIONS(148), - [anon_sym_15] = ACTIONS(148), - [anon_sym_EQ] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_16] = ACTIONS(148), - [anon_sym_LT] = ACTIONS(150), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_17] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_18] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_19] = ACTIONS(148), - [anon_sym_PERCENT] = ACTIONS(148), - [anon_sym_20] = ACTIONS(148), - [anon_sym_modulus] = ACTIONS(148), - [anon_sym_21] = ACTIONS(148), - [anon_sym_power] = ACTIONS(148), - [anon_sym_22] = ACTIONS(148), - [anon_sym_logarithm] = ACTIONS(148), - [anon_sym_23] = ACTIONS(148), - [anon_sym_minimum] = ACTIONS(148), - [anon_sym_24] = ACTIONS(148), - [anon_sym_maximum] = ACTIONS(148), - [anon_sym_25] = ACTIONS(148), - [anon_sym_atangent] = ACTIONS(148), - [anon_sym_26] = ACTIONS(148), - [anon_sym_length] = ACTIONS(148), - [anon_sym_27] = ACTIONS(148), - [anon_sym_shape] = ACTIONS(148), - [anon_sym_28] = ACTIONS(148), - [anon_sym_range] = ACTIONS(148), - [anon_sym_29] = ACTIONS(148), - [anon_sym_first] = ACTIONS(148), - [anon_sym_30] = ACTIONS(148), - [anon_sym_reverse] = ACTIONS(148), - [anon_sym_31] = ACTIONS(148), - [anon_sym_deshape] = ACTIONS(148), - [anon_sym_32] = ACTIONS(148), - [anon_sym_bits] = ACTIONS(148), - [anon_sym_33] = ACTIONS(148), - [anon_sym_transpose] = ACTIONS(148), - [anon_sym_34] = ACTIONS(148), - [anon_sym_rise] = ACTIONS(148), - [anon_sym_35] = ACTIONS(148), - [anon_sym_fall] = ACTIONS(148), - [anon_sym_36] = ACTIONS(148), - [anon_sym_where] = ACTIONS(148), - [anon_sym_37] = ACTIONS(148), - [anon_sym_classify] = ACTIONS(148), - [anon_sym_38] = ACTIONS(148), - [anon_sym_deduplicate] = ACTIONS(148), - [anon_sym_39] = ACTIONS(148), - [anon_sym_box] = ACTIONS(148), - [anon_sym_40] = ACTIONS(148), - [anon_sym_unbox] = ACTIONS(148), - [anon_sym_41] = ACTIONS(148), - [anon_sym_match] = ACTIONS(148), - [anon_sym_42] = ACTIONS(148), - [anon_sym_couple] = ACTIONS(148), - [anon_sym_43] = ACTIONS(148), - [anon_sym_join] = ACTIONS(148), - [anon_sym_44] = ACTIONS(148), - [anon_sym_select] = ACTIONS(148), - [anon_sym_45] = ACTIONS(148), - [anon_sym_pick] = ACTIONS(148), - [anon_sym_46] = ACTIONS(148), - [anon_sym_reshape] = ACTIONS(148), - [anon_sym_47] = ACTIONS(148), - [anon_sym_take] = ACTIONS(148), - [anon_sym_48] = ACTIONS(148), - [anon_sym_drop] = ACTIONS(148), - [anon_sym_49] = ACTIONS(148), - [anon_sym_rotate] = ACTIONS(148), - [anon_sym_50] = ACTIONS(148), - [anon_sym_windows] = ACTIONS(148), - [anon_sym_51] = ACTIONS(148), - [anon_sym_keep] = ACTIONS(148), - [anon_sym_52] = ACTIONS(148), - [anon_sym_find] = ACTIONS(148), - [anon_sym_53] = ACTIONS(148), - [anon_sym_member] = ACTIONS(148), - [anon_sym_54] = ACTIONS(148), - [anon_sym_indexof] = ACTIONS(148), - [anon_sym_55] = ACTIONS(148), - [anon_sym_assert] = ACTIONS(148), - [anon_sym_56] = ACTIONS(148), - [anon_sym_wait] = ACTIONS(148), - [anon_sym_break] = ACTIONS(148), - [anon_sym_57] = ACTIONS(148), - [anon_sym_parse] = ACTIONS(148), - [anon_sym_random] = ACTIONS(148), - [anon_sym_58] = ACTIONS(148), - [anon_sym_gen] = ACTIONS(148), - [anon_sym_deal] = ACTIONS(148), - [anon_sym_tag] = ACTIONS(148), - [anon_sym_now] = ACTIONS(148), - [anon_sym_type] = ACTIONS(148), - [anon_sym_59] = ACTIONS(148), - [anon_sym_dump] = ACTIONS(148), - [anon_sym_regex] = ACTIONS(148), - [anon_sym_utf] = ACTIONS(148), - [anon_sym_rock] = ACTIONS(148), - [anon_sym_60] = ACTIONS(148), - [anon_sym_surface] = ACTIONS(148), - [anon_sym_TILDE] = ACTIONS(148), - [anon_sym_deep] = ACTIONS(148), - [anon_sym_de] = ACTIONS(150), - [anon_sym_61] = ACTIONS(148), - [anon_sym_abyss] = ACTIONS(148), - [anon_sym_ab] = ACTIONS(150), - [anon_sym_62] = ACTIONS(148), - [anon_sym_seabed] = ACTIONS(148), - [anon_sym_se] = ACTIONS(150), - [anon_sym_63] = ACTIONS(148), - [anon_sym_send] = ACTIONS(148), - [anon_sym_recv] = ACTIONS(148), - [anon_sym_tryrecv] = ACTIONS(148), - [anon_sym_reduce] = ACTIONS(152), - [anon_sym_SLASH] = ACTIONS(152), - [anon_sym_scan] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_each] = ACTIONS(152), - [anon_sym_64] = ACTIONS(152), - [anon_sym_rows] = ACTIONS(152), - [anon_sym_65] = ACTIONS(152), - [anon_sym_repeat] = ACTIONS(152), - [anon_sym_66] = ACTIONS(152), - [anon_sym_dip] = ACTIONS(152), - [anon_sym_di] = ACTIONS(154), - [anon_sym_67] = ACTIONS(152), - [anon_sym_gap] = ACTIONS(152), - [anon_sym_ga] = ACTIONS(154), - [anon_sym_68] = ACTIONS(152), - [anon_sym_oust] = ACTIONS(152), - [anon_sym_69] = ACTIONS(152), - [anon_sym_invert] = ACTIONS(152), - [anon_sym_70] = ACTIONS(152), - [anon_sym_spawn] = ACTIONS(152), - [anon_sym_pack] = ACTIONS(152), - [anon_sym_71] = ACTIONS(152), - [anon_sym_tribute] = ACTIONS(152), - [anon_sym_72] = ACTIONS(152), - [anon_sym_fold] = ACTIONS(156), - [anon_sym_73] = ACTIONS(156), - [anon_sym_distribute] = ACTIONS(156), - [anon_sym_74] = ACTIONS(156), - [anon_sym_table] = ACTIONS(156), - [anon_sym_75] = ACTIONS(156), - [anon_sym_cross] = ACTIONS(156), - [anon_sym_76] = ACTIONS(156), - [anon_sym_group] = ACTIONS(156), - [anon_sym_77] = ACTIONS(156), - [anon_sym_partition] = ACTIONS(156), - [anon_sym_78] = ACTIONS(156), - [anon_sym_both] = ACTIONS(156), - [anon_sym_79] = ACTIONS(156), - [anon_sym_bracket] = ACTIONS(156), - [anon_sym_80] = ACTIONS(156), - [anon_sym_fork] = ACTIONS(156), - [anon_sym_81] = ACTIONS(156), - [anon_sym_under] = ACTIONS(156), - [anon_sym_82] = ACTIONS(156), - [anon_sym_level] = ACTIONS(156), - [anon_sym_83] = ACTIONS(156), - [anon_sym_fill] = ACTIONS(156), - [anon_sym_84] = ACTIONS(156), - [anon_sym_bind] = ACTIONS(156), - [anon_sym_SQUOTE] = ACTIONS(156), - [anon_sym_QMARK] = ACTIONS(156), - [anon_sym_try] = ACTIONS(158), - [anon_sym_85] = ACTIONS(156), - [anon_sym_combinate] = ACTIONS(156), - [anon_sym_86] = ACTIONS(156), - [anon_sym_87] = ACTIONS(160), - [anon_sym_88] = ACTIONS(160), - [anon_sym_89] = ACTIONS(160), - [anon_sym_90] = ACTIONS(160), - [anon_sym_91] = ACTIONS(160), - [anon_sym_92] = ACTIONS(160), - [anon_sym_93] = ACTIONS(160), + [sym_identifier] = ACTIONS(121), + [sym_identifier_deprecated] = ACTIONS(121), + [sym_system] = ACTIONS(117), + [sym_comment] = ACTIONS(218), + [sym_openParen] = ACTIONS(125), + [sym_openCurly] = ACTIONS(129), + [sym_openBracket] = ACTIONS(131), + [sym_closeBracket] = ACTIONS(238), + [sym_leftArrow] = ACTIONS(220), + [anon_sym_CARET] = ACTIONS(137), + [anon_sym_eta] = ACTIONS(139), + [anon_sym_] = ACTIONS(141), + [anon_sym_pi] = ACTIONS(141), + [anon_sym_2] = ACTIONS(141), + [anon_sym_tau] = ACTIONS(139), + [anon_sym_3] = ACTIONS(141), + [anon_sym_infinity] = ACTIONS(139), + [anon_sym_4] = ACTIONS(139), + [anon_sym_e] = ACTIONS(141), + [anon_sym_NaN] = ACTIONS(141), + [anon_sym_NumProcs] = ACTIONS(141), + [anon_sym_DOT] = ACTIONS(143), + [anon_sym_COMMA] = ACTIONS(143), + [anon_sym_5] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_identity] = ACTIONS(143), + [anon_sym_id] = ACTIONS(145), + [anon_sym_6] = ACTIONS(143), + [anon_sym_not] = ACTIONS(143), + [anon_sym_7] = ACTIONS(143), + [anon_sym_sign] = ACTIONS(143), + [anon_sym_8] = ACTIONS(143), + [anon_sym_BQUOTE] = ACTIONS(143), + [anon_sym_9] = ACTIONS(143), + [anon_sym_absolutevalue] = ACTIONS(143), + [anon_sym_10] = ACTIONS(143), + [anon_sym_sqrt] = ACTIONS(143), + [anon_sym_11] = ACTIONS(143), + [anon_sym_sine] = ACTIONS(143), + [anon_sym_12] = ACTIONS(143), + [anon_sym_floor] = ACTIONS(143), + [anon_sym_13] = ACTIONS(143), + [anon_sym_ceiling] = ACTIONS(143), + [anon_sym_14] = ACTIONS(143), + [anon_sym_round] = ACTIONS(143), + [anon_sym_15] = ACTIONS(143), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_16] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_17] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_18] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_19] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_20] = ACTIONS(143), + [anon_sym_modulus] = ACTIONS(143), + [anon_sym_21] = ACTIONS(143), + [anon_sym_power] = ACTIONS(143), + [anon_sym_22] = ACTIONS(143), + [anon_sym_logarithm] = ACTIONS(143), + [anon_sym_23] = ACTIONS(143), + [anon_sym_minimum] = ACTIONS(143), + [anon_sym_24] = ACTIONS(143), + [anon_sym_maximum] = ACTIONS(143), + [anon_sym_25] = ACTIONS(143), + [anon_sym_atangent] = ACTIONS(143), + [anon_sym_26] = ACTIONS(143), + [anon_sym_length] = ACTIONS(143), + [anon_sym_27] = ACTIONS(143), + [anon_sym_shape] = ACTIONS(143), + [anon_sym_28] = ACTIONS(143), + [anon_sym_range] = ACTIONS(143), + [anon_sym_29] = ACTIONS(143), + [anon_sym_first] = ACTIONS(143), + [anon_sym_30] = ACTIONS(143), + [anon_sym_reverse] = ACTIONS(143), + [anon_sym_31] = ACTIONS(143), + [anon_sym_deshape] = ACTIONS(143), + [anon_sym_32] = ACTIONS(143), + [anon_sym_bits] = ACTIONS(143), + [anon_sym_33] = ACTIONS(143), + [anon_sym_transpose] = ACTIONS(143), + [anon_sym_34] = ACTIONS(143), + [anon_sym_rise] = ACTIONS(143), + [anon_sym_35] = ACTIONS(143), + [anon_sym_fall] = ACTIONS(143), + [anon_sym_36] = ACTIONS(143), + [anon_sym_where] = ACTIONS(143), + [anon_sym_37] = ACTIONS(143), + [anon_sym_classify] = ACTIONS(143), + [anon_sym_38] = ACTIONS(143), + [anon_sym_deduplicate] = ACTIONS(143), + [anon_sym_39] = ACTIONS(143), + [anon_sym_box] = ACTIONS(143), + [anon_sym_40] = ACTIONS(143), + [anon_sym_unbox] = ACTIONS(143), + [anon_sym_41] = ACTIONS(143), + [anon_sym_match] = ACTIONS(143), + [anon_sym_42] = ACTIONS(143), + [anon_sym_couple] = ACTIONS(143), + [anon_sym_43] = ACTIONS(143), + [anon_sym_join] = ACTIONS(143), + [anon_sym_44] = ACTIONS(143), + [anon_sym_select] = ACTIONS(143), + [anon_sym_45] = ACTIONS(143), + [anon_sym_pick] = ACTIONS(143), + [anon_sym_46] = ACTIONS(143), + [anon_sym_reshape] = ACTIONS(143), + [anon_sym_47] = ACTIONS(143), + [anon_sym_take] = ACTIONS(143), + [anon_sym_48] = ACTIONS(143), + [anon_sym_drop] = ACTIONS(143), + [anon_sym_49] = ACTIONS(143), + [anon_sym_rotate] = ACTIONS(143), + [anon_sym_50] = ACTIONS(143), + [anon_sym_windows] = ACTIONS(143), + [anon_sym_51] = ACTIONS(143), + [anon_sym_keep] = ACTIONS(143), + [anon_sym_52] = ACTIONS(143), + [anon_sym_find] = ACTIONS(143), + [anon_sym_53] = ACTIONS(143), + [anon_sym_member] = ACTIONS(143), + [anon_sym_54] = ACTIONS(143), + [anon_sym_indexof] = ACTIONS(143), + [anon_sym_55] = ACTIONS(143), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_56] = ACTIONS(143), + [anon_sym_wait] = ACTIONS(143), + [anon_sym_break] = ACTIONS(143), + [anon_sym_57] = ACTIONS(143), + [anon_sym_parse] = ACTIONS(143), + [anon_sym_random] = ACTIONS(143), + [anon_sym_58] = ACTIONS(143), + [anon_sym_gen] = ACTIONS(143), + [anon_sym_deal] = ACTIONS(143), + [anon_sym_tag] = ACTIONS(143), + [anon_sym_now] = ACTIONS(143), + [anon_sym_type] = ACTIONS(143), + [anon_sym_59] = ACTIONS(143), + [anon_sym_dump] = ACTIONS(143), + [anon_sym_regex] = ACTIONS(143), + [anon_sym_utf] = ACTIONS(143), + [anon_sym_rock] = ACTIONS(143), + [anon_sym_60] = ACTIONS(143), + [anon_sym_surface] = ACTIONS(143), + [anon_sym_TILDE] = ACTIONS(143), + [anon_sym_deep] = ACTIONS(143), + [anon_sym_de] = ACTIONS(145), + [anon_sym_61] = ACTIONS(143), + [anon_sym_abyss] = ACTIONS(143), + [anon_sym_ab] = ACTIONS(145), + [anon_sym_62] = ACTIONS(143), + [anon_sym_seabed] = ACTIONS(143), + [anon_sym_se] = ACTIONS(145), + [anon_sym_63] = ACTIONS(143), + [anon_sym_send] = ACTIONS(143), + [anon_sym_recv] = ACTIONS(143), + [anon_sym_tryrecv] = ACTIONS(143), + [anon_sym_reduce] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_scan] = ACTIONS(147), + [anon_sym_BSLASH] = ACTIONS(147), + [anon_sym_each] = ACTIONS(147), + [anon_sym_64] = ACTIONS(147), + [anon_sym_rows] = ACTIONS(147), + [anon_sym_65] = ACTIONS(147), + [anon_sym_repeat] = ACTIONS(147), + [anon_sym_66] = ACTIONS(147), + [anon_sym_dip] = ACTIONS(147), + [anon_sym_67] = ACTIONS(147), + [anon_sym_gap] = ACTIONS(147), + [anon_sym_68] = ACTIONS(147), + [anon_sym_69] = ACTIONS(147), + [anon_sym_invert] = ACTIONS(147), + [anon_sym_70] = ACTIONS(147), + [anon_sym_spawn] = ACTIONS(147), + [anon_sym_pack] = ACTIONS(147), + [anon_sym_71] = ACTIONS(147), + [anon_sym_tribute] = ACTIONS(147), + [anon_sym_72] = ACTIONS(147), + [anon_sym_reach] = ACTIONS(147), + [anon_sym_fold] = ACTIONS(149), + [anon_sym_73] = ACTIONS(149), + [anon_sym_distribute] = ACTIONS(149), + [anon_sym_74] = ACTIONS(149), + [anon_sym_table] = ACTIONS(149), + [anon_sym_75] = ACTIONS(149), + [anon_sym_cross] = ACTIONS(149), + [anon_sym_76] = ACTIONS(149), + [anon_sym_group] = ACTIONS(149), + [anon_sym_77] = ACTIONS(149), + [anon_sym_partition] = ACTIONS(149), + [anon_sym_78] = ACTIONS(149), + [anon_sym_both] = ACTIONS(149), + [anon_sym_79] = ACTIONS(149), + [anon_sym_bracket] = ACTIONS(149), + [anon_sym_80] = ACTIONS(149), + [anon_sym_fork] = ACTIONS(149), + [anon_sym_81] = ACTIONS(149), + [anon_sym_under] = ACTIONS(149), + [anon_sym_82] = ACTIONS(149), + [anon_sym_level] = ACTIONS(149), + [anon_sym_83] = ACTIONS(149), + [anon_sym_fill] = ACTIONS(149), + [anon_sym_84] = ACTIONS(149), + [anon_sym_bind] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_try] = ACTIONS(151), + [anon_sym_85] = ACTIONS(149), + [anon_sym_combinate] = ACTIONS(149), + [anon_sym_86] = ACTIONS(149), + [anon_sym_87] = ACTIONS(153), + [anon_sym_88] = ACTIONS(153), + [anon_sym_89] = ACTIONS(153), + [anon_sym_90] = ACTIONS(153), + [anon_sym_91] = ACTIONS(153), + [anon_sym_92] = ACTIONS(153), + [anon_sym_93] = ACTIONS(153), [sym__whitespace] = ACTIONS(5), [sym__end_of_line] = ACTIONS(5), }, @@ -10903,247 +10851,245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_modifier2] = STATE(59), [sym_deprecated] = STATE(61), [aux_sym_array_repeat1] = STATE(57), - [aux_sym_number_token1] = ACTIONS(116), - [anon_sym_os] = ACTIONS(118), - [anon_sym_Family] = ACTIONS(118), - [anon_sym_Arch] = ACTIONS(118), - [anon_sym_ExeExt] = ACTIONS(118), - [anon_sym_PllExt] = ACTIONS(118), - [anon_sym_Sep] = ACTIONS(118), - [aux_sym_character_token1] = ACTIONS(120), - [sym_string] = ACTIONS(122), - [sym_multiLineString] = ACTIONS(122), + [aux_sym_number_token1] = ACTIONS(111), + [anon_sym_os] = ACTIONS(113), + [anon_sym_Family] = ACTIONS(113), + [anon_sym_Arch] = ACTIONS(113), + [anon_sym_ExeExt] = ACTIONS(113), + [anon_sym_PllExt] = ACTIONS(113), + [anon_sym_Sep] = ACTIONS(113), + [aux_sym_character_token1] = ACTIONS(115), + [sym_string] = ACTIONS(117), + [sym_multiLineString] = ACTIONS(117), [anon_sym_PIPE] = ACTIONS(15), - [sym_identifier] = ACTIONS(126), - [sym_identifier_deprecated] = ACTIONS(126), - [sym_system] = ACTIONS(122), - [sym_comment] = ACTIONS(228), - [sym_openParen] = ACTIONS(130), - [sym_openCurly] = ACTIONS(134), - [sym_closeCurly] = ACTIONS(132), - [sym_openBracket] = ACTIONS(136), - [sym_closeBracket] = ACTIONS(132), - [sym_leftArrow] = ACTIONS(230), - [anon_sym_CARET] = ACTIONS(142), - [anon_sym_eta] = ACTIONS(144), - [anon_sym_] = ACTIONS(146), - [anon_sym_pi] = ACTIONS(146), - [anon_sym_2] = ACTIONS(146), - [anon_sym_tau] = ACTIONS(144), - [anon_sym_3] = ACTIONS(146), - [anon_sym_infinity] = ACTIONS(144), - [anon_sym_4] = ACTIONS(144), - [anon_sym_e] = ACTIONS(146), - [anon_sym_NaN] = ACTIONS(146), - [anon_sym_NumProcs] = ACTIONS(146), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_COMMA] = ACTIONS(148), - [anon_sym_5] = ACTIONS(148), - [anon_sym_SEMI] = ACTIONS(148), - [anon_sym_identity] = ACTIONS(148), - [anon_sym_id] = ACTIONS(150), - [anon_sym_6] = ACTIONS(148), - [anon_sym_not] = ACTIONS(148), - [anon_sym_7] = ACTIONS(148), - [anon_sym_sign] = ACTIONS(148), - [anon_sym_8] = ACTIONS(148), - [anon_sym_BQUOTE] = ACTIONS(148), - [anon_sym_9] = ACTIONS(148), - [anon_sym_absolutevalue] = ACTIONS(148), - [anon_sym_10] = ACTIONS(148), - [anon_sym_sqrt] = ACTIONS(148), - [anon_sym_11] = ACTIONS(148), - [anon_sym_sine] = ACTIONS(148), - [anon_sym_12] = ACTIONS(148), - [anon_sym_floor] = ACTIONS(148), - [anon_sym_13] = ACTIONS(148), - [anon_sym_ceiling] = ACTIONS(148), - [anon_sym_14] = ACTIONS(148), - [anon_sym_round] = ACTIONS(148), - [anon_sym_15] = ACTIONS(148), - [anon_sym_EQ] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_16] = ACTIONS(148), - [anon_sym_LT] = ACTIONS(150), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_17] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_18] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_19] = ACTIONS(148), - [anon_sym_PERCENT] = ACTIONS(148), - [anon_sym_20] = ACTIONS(148), - [anon_sym_modulus] = ACTIONS(148), - [anon_sym_21] = ACTIONS(148), - [anon_sym_power] = ACTIONS(148), - [anon_sym_22] = ACTIONS(148), - [anon_sym_logarithm] = ACTIONS(148), - [anon_sym_23] = ACTIONS(148), - [anon_sym_minimum] = ACTIONS(148), - [anon_sym_24] = ACTIONS(148), - [anon_sym_maximum] = ACTIONS(148), - [anon_sym_25] = ACTIONS(148), - [anon_sym_atangent] = ACTIONS(148), - [anon_sym_26] = ACTIONS(148), - [anon_sym_length] = ACTIONS(148), - [anon_sym_27] = ACTIONS(148), - [anon_sym_shape] = ACTIONS(148), - [anon_sym_28] = ACTIONS(148), - [anon_sym_range] = ACTIONS(148), - [anon_sym_29] = ACTIONS(148), - [anon_sym_first] = ACTIONS(148), - [anon_sym_30] = ACTIONS(148), - [anon_sym_reverse] = ACTIONS(148), - [anon_sym_31] = ACTIONS(148), - [anon_sym_deshape] = ACTIONS(148), - [anon_sym_32] = ACTIONS(148), - [anon_sym_bits] = ACTIONS(148), - [anon_sym_33] = ACTIONS(148), - [anon_sym_transpose] = ACTIONS(148), - [anon_sym_34] = ACTIONS(148), - [anon_sym_rise] = ACTIONS(148), - [anon_sym_35] = ACTIONS(148), - [anon_sym_fall] = ACTIONS(148), - [anon_sym_36] = ACTIONS(148), - [anon_sym_where] = ACTIONS(148), - [anon_sym_37] = ACTIONS(148), - [anon_sym_classify] = ACTIONS(148), - [anon_sym_38] = ACTIONS(148), - [anon_sym_deduplicate] = ACTIONS(148), - [anon_sym_39] = ACTIONS(148), - [anon_sym_box] = ACTIONS(148), - [anon_sym_40] = ACTIONS(148), - [anon_sym_unbox] = ACTIONS(148), - [anon_sym_41] = ACTIONS(148), - [anon_sym_match] = ACTIONS(148), - [anon_sym_42] = ACTIONS(148), - [anon_sym_couple] = ACTIONS(148), - [anon_sym_43] = ACTIONS(148), - [anon_sym_join] = ACTIONS(148), - [anon_sym_44] = ACTIONS(148), - [anon_sym_select] = ACTIONS(148), - [anon_sym_45] = ACTIONS(148), - [anon_sym_pick] = ACTIONS(148), - [anon_sym_46] = ACTIONS(148), - [anon_sym_reshape] = ACTIONS(148), - [anon_sym_47] = ACTIONS(148), - [anon_sym_take] = ACTIONS(148), - [anon_sym_48] = ACTIONS(148), - [anon_sym_drop] = ACTIONS(148), - [anon_sym_49] = ACTIONS(148), - [anon_sym_rotate] = ACTIONS(148), - [anon_sym_50] = ACTIONS(148), - [anon_sym_windows] = ACTIONS(148), - [anon_sym_51] = ACTIONS(148), - [anon_sym_keep] = ACTIONS(148), - [anon_sym_52] = ACTIONS(148), - [anon_sym_find] = ACTIONS(148), - [anon_sym_53] = ACTIONS(148), - [anon_sym_member] = ACTIONS(148), - [anon_sym_54] = ACTIONS(148), - [anon_sym_indexof] = ACTIONS(148), - [anon_sym_55] = ACTIONS(148), - [anon_sym_assert] = ACTIONS(148), - [anon_sym_56] = ACTIONS(148), - [anon_sym_wait] = ACTIONS(148), - [anon_sym_break] = ACTIONS(148), - [anon_sym_57] = ACTIONS(148), - [anon_sym_parse] = ACTIONS(148), - [anon_sym_random] = ACTIONS(148), - [anon_sym_58] = ACTIONS(148), - [anon_sym_gen] = ACTIONS(148), - [anon_sym_deal] = ACTIONS(148), - [anon_sym_tag] = ACTIONS(148), - [anon_sym_now] = ACTIONS(148), - [anon_sym_type] = ACTIONS(148), - [anon_sym_59] = ACTIONS(148), - [anon_sym_dump] = ACTIONS(148), - [anon_sym_regex] = ACTIONS(148), - [anon_sym_utf] = ACTIONS(148), - [anon_sym_rock] = ACTIONS(148), - [anon_sym_60] = ACTIONS(148), - [anon_sym_surface] = ACTIONS(148), - [anon_sym_TILDE] = ACTIONS(148), - [anon_sym_deep] = ACTIONS(148), - [anon_sym_de] = ACTIONS(150), - [anon_sym_61] = ACTIONS(148), - [anon_sym_abyss] = ACTIONS(148), - [anon_sym_ab] = ACTIONS(150), - [anon_sym_62] = ACTIONS(148), - [anon_sym_seabed] = ACTIONS(148), - [anon_sym_se] = ACTIONS(150), - [anon_sym_63] = ACTIONS(148), - [anon_sym_send] = ACTIONS(148), - [anon_sym_recv] = ACTIONS(148), - [anon_sym_tryrecv] = ACTIONS(148), - [anon_sym_reduce] = ACTIONS(152), - [anon_sym_SLASH] = ACTIONS(152), - [anon_sym_scan] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_each] = ACTIONS(152), - [anon_sym_64] = ACTIONS(152), - [anon_sym_rows] = ACTIONS(152), - [anon_sym_65] = ACTIONS(152), - [anon_sym_repeat] = ACTIONS(152), - [anon_sym_66] = ACTIONS(152), - [anon_sym_dip] = ACTIONS(152), - [anon_sym_di] = ACTIONS(154), - [anon_sym_67] = ACTIONS(152), - [anon_sym_gap] = ACTIONS(152), - [anon_sym_ga] = ACTIONS(154), - [anon_sym_68] = ACTIONS(152), - [anon_sym_oust] = ACTIONS(152), - [anon_sym_69] = ACTIONS(152), - [anon_sym_invert] = ACTIONS(152), - [anon_sym_70] = ACTIONS(152), - [anon_sym_spawn] = ACTIONS(152), - [anon_sym_pack] = ACTIONS(152), - [anon_sym_71] = ACTIONS(152), - [anon_sym_tribute] = ACTIONS(152), - [anon_sym_72] = ACTIONS(152), - [anon_sym_fold] = ACTIONS(156), - [anon_sym_73] = ACTIONS(156), - [anon_sym_distribute] = ACTIONS(156), - [anon_sym_74] = ACTIONS(156), - [anon_sym_table] = ACTIONS(156), - [anon_sym_75] = ACTIONS(156), - [anon_sym_cross] = ACTIONS(156), - [anon_sym_76] = ACTIONS(156), - [anon_sym_group] = ACTIONS(156), - [anon_sym_77] = ACTIONS(156), - [anon_sym_partition] = ACTIONS(156), - [anon_sym_78] = ACTIONS(156), - [anon_sym_both] = ACTIONS(156), - [anon_sym_79] = ACTIONS(156), - [anon_sym_bracket] = ACTIONS(156), - [anon_sym_80] = ACTIONS(156), - [anon_sym_fork] = ACTIONS(156), - [anon_sym_81] = ACTIONS(156), - [anon_sym_under] = ACTIONS(156), - [anon_sym_82] = ACTIONS(156), - [anon_sym_level] = ACTIONS(156), - [anon_sym_83] = ACTIONS(156), - [anon_sym_fill] = ACTIONS(156), - [anon_sym_84] = ACTIONS(156), - [anon_sym_bind] = ACTIONS(156), - [anon_sym_SQUOTE] = ACTIONS(156), - [anon_sym_QMARK] = ACTIONS(156), - [anon_sym_try] = ACTIONS(158), - [anon_sym_85] = ACTIONS(156), - [anon_sym_combinate] = ACTIONS(156), - [anon_sym_86] = ACTIONS(156), - [anon_sym_87] = ACTIONS(160), - [anon_sym_88] = ACTIONS(160), - [anon_sym_89] = ACTIONS(160), - [anon_sym_90] = ACTIONS(160), - [anon_sym_91] = ACTIONS(160), - [anon_sym_92] = ACTIONS(160), - [anon_sym_93] = ACTIONS(160), + [sym_identifier] = ACTIONS(121), + [sym_identifier_deprecated] = ACTIONS(121), + [sym_system] = ACTIONS(117), + [sym_comment] = ACTIONS(218), + [sym_openParen] = ACTIONS(125), + [sym_openCurly] = ACTIONS(129), + [sym_closeCurly] = ACTIONS(127), + [sym_openBracket] = ACTIONS(131), + [sym_closeBracket] = ACTIONS(127), + [sym_leftArrow] = ACTIONS(220), + [anon_sym_CARET] = ACTIONS(137), + [anon_sym_eta] = ACTIONS(139), + [anon_sym_] = ACTIONS(141), + [anon_sym_pi] = ACTIONS(141), + [anon_sym_2] = ACTIONS(141), + [anon_sym_tau] = ACTIONS(139), + [anon_sym_3] = ACTIONS(141), + [anon_sym_infinity] = ACTIONS(139), + [anon_sym_4] = ACTIONS(139), + [anon_sym_e] = ACTIONS(141), + [anon_sym_NaN] = ACTIONS(141), + [anon_sym_NumProcs] = ACTIONS(141), + [anon_sym_DOT] = ACTIONS(143), + [anon_sym_COMMA] = ACTIONS(143), + [anon_sym_5] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_identity] = ACTIONS(143), + [anon_sym_id] = ACTIONS(145), + [anon_sym_6] = ACTIONS(143), + [anon_sym_not] = ACTIONS(143), + [anon_sym_7] = ACTIONS(143), + [anon_sym_sign] = ACTIONS(143), + [anon_sym_8] = ACTIONS(143), + [anon_sym_BQUOTE] = ACTIONS(143), + [anon_sym_9] = ACTIONS(143), + [anon_sym_absolutevalue] = ACTIONS(143), + [anon_sym_10] = ACTIONS(143), + [anon_sym_sqrt] = ACTIONS(143), + [anon_sym_11] = ACTIONS(143), + [anon_sym_sine] = ACTIONS(143), + [anon_sym_12] = ACTIONS(143), + [anon_sym_floor] = ACTIONS(143), + [anon_sym_13] = ACTIONS(143), + [anon_sym_ceiling] = ACTIONS(143), + [anon_sym_14] = ACTIONS(143), + [anon_sym_round] = ACTIONS(143), + [anon_sym_15] = ACTIONS(143), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_16] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_17] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_18] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_19] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_20] = ACTIONS(143), + [anon_sym_modulus] = ACTIONS(143), + [anon_sym_21] = ACTIONS(143), + [anon_sym_power] = ACTIONS(143), + [anon_sym_22] = ACTIONS(143), + [anon_sym_logarithm] = ACTIONS(143), + [anon_sym_23] = ACTIONS(143), + [anon_sym_minimum] = ACTIONS(143), + [anon_sym_24] = ACTIONS(143), + [anon_sym_maximum] = ACTIONS(143), + [anon_sym_25] = ACTIONS(143), + [anon_sym_atangent] = ACTIONS(143), + [anon_sym_26] = ACTIONS(143), + [anon_sym_length] = ACTIONS(143), + [anon_sym_27] = ACTIONS(143), + [anon_sym_shape] = ACTIONS(143), + [anon_sym_28] = ACTIONS(143), + [anon_sym_range] = ACTIONS(143), + [anon_sym_29] = ACTIONS(143), + [anon_sym_first] = ACTIONS(143), + [anon_sym_30] = ACTIONS(143), + [anon_sym_reverse] = ACTIONS(143), + [anon_sym_31] = ACTIONS(143), + [anon_sym_deshape] = ACTIONS(143), + [anon_sym_32] = ACTIONS(143), + [anon_sym_bits] = ACTIONS(143), + [anon_sym_33] = ACTIONS(143), + [anon_sym_transpose] = ACTIONS(143), + [anon_sym_34] = ACTIONS(143), + [anon_sym_rise] = ACTIONS(143), + [anon_sym_35] = ACTIONS(143), + [anon_sym_fall] = ACTIONS(143), + [anon_sym_36] = ACTIONS(143), + [anon_sym_where] = ACTIONS(143), + [anon_sym_37] = ACTIONS(143), + [anon_sym_classify] = ACTIONS(143), + [anon_sym_38] = ACTIONS(143), + [anon_sym_deduplicate] = ACTIONS(143), + [anon_sym_39] = ACTIONS(143), + [anon_sym_box] = ACTIONS(143), + [anon_sym_40] = ACTIONS(143), + [anon_sym_unbox] = ACTIONS(143), + [anon_sym_41] = ACTIONS(143), + [anon_sym_match] = ACTIONS(143), + [anon_sym_42] = ACTIONS(143), + [anon_sym_couple] = ACTIONS(143), + [anon_sym_43] = ACTIONS(143), + [anon_sym_join] = ACTIONS(143), + [anon_sym_44] = ACTIONS(143), + [anon_sym_select] = ACTIONS(143), + [anon_sym_45] = ACTIONS(143), + [anon_sym_pick] = ACTIONS(143), + [anon_sym_46] = ACTIONS(143), + [anon_sym_reshape] = ACTIONS(143), + [anon_sym_47] = ACTIONS(143), + [anon_sym_take] = ACTIONS(143), + [anon_sym_48] = ACTIONS(143), + [anon_sym_drop] = ACTIONS(143), + [anon_sym_49] = ACTIONS(143), + [anon_sym_rotate] = ACTIONS(143), + [anon_sym_50] = ACTIONS(143), + [anon_sym_windows] = ACTIONS(143), + [anon_sym_51] = ACTIONS(143), + [anon_sym_keep] = ACTIONS(143), + [anon_sym_52] = ACTIONS(143), + [anon_sym_find] = ACTIONS(143), + [anon_sym_53] = ACTIONS(143), + [anon_sym_member] = ACTIONS(143), + [anon_sym_54] = ACTIONS(143), + [anon_sym_indexof] = ACTIONS(143), + [anon_sym_55] = ACTIONS(143), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_56] = ACTIONS(143), + [anon_sym_wait] = ACTIONS(143), + [anon_sym_break] = ACTIONS(143), + [anon_sym_57] = ACTIONS(143), + [anon_sym_parse] = ACTIONS(143), + [anon_sym_random] = ACTIONS(143), + [anon_sym_58] = ACTIONS(143), + [anon_sym_gen] = ACTIONS(143), + [anon_sym_deal] = ACTIONS(143), + [anon_sym_tag] = ACTIONS(143), + [anon_sym_now] = ACTIONS(143), + [anon_sym_type] = ACTIONS(143), + [anon_sym_59] = ACTIONS(143), + [anon_sym_dump] = ACTIONS(143), + [anon_sym_regex] = ACTIONS(143), + [anon_sym_utf] = ACTIONS(143), + [anon_sym_rock] = ACTIONS(143), + [anon_sym_60] = ACTIONS(143), + [anon_sym_surface] = ACTIONS(143), + [anon_sym_TILDE] = ACTIONS(143), + [anon_sym_deep] = ACTIONS(143), + [anon_sym_de] = ACTIONS(145), + [anon_sym_61] = ACTIONS(143), + [anon_sym_abyss] = ACTIONS(143), + [anon_sym_ab] = ACTIONS(145), + [anon_sym_62] = ACTIONS(143), + [anon_sym_seabed] = ACTIONS(143), + [anon_sym_se] = ACTIONS(145), + [anon_sym_63] = ACTIONS(143), + [anon_sym_send] = ACTIONS(143), + [anon_sym_recv] = ACTIONS(143), + [anon_sym_tryrecv] = ACTIONS(143), + [anon_sym_reduce] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_scan] = ACTIONS(147), + [anon_sym_BSLASH] = ACTIONS(147), + [anon_sym_each] = ACTIONS(147), + [anon_sym_64] = ACTIONS(147), + [anon_sym_rows] = ACTIONS(147), + [anon_sym_65] = ACTIONS(147), + [anon_sym_repeat] = ACTIONS(147), + [anon_sym_66] = ACTIONS(147), + [anon_sym_dip] = ACTIONS(147), + [anon_sym_67] = ACTIONS(147), + [anon_sym_gap] = ACTIONS(147), + [anon_sym_68] = ACTIONS(147), + [anon_sym_69] = ACTIONS(147), + [anon_sym_invert] = ACTIONS(147), + [anon_sym_70] = ACTIONS(147), + [anon_sym_spawn] = ACTIONS(147), + [anon_sym_pack] = ACTIONS(147), + [anon_sym_71] = ACTIONS(147), + [anon_sym_tribute] = ACTIONS(147), + [anon_sym_72] = ACTIONS(147), + [anon_sym_reach] = ACTIONS(147), + [anon_sym_fold] = ACTIONS(149), + [anon_sym_73] = ACTIONS(149), + [anon_sym_distribute] = ACTIONS(149), + [anon_sym_74] = ACTIONS(149), + [anon_sym_table] = ACTIONS(149), + [anon_sym_75] = ACTIONS(149), + [anon_sym_cross] = ACTIONS(149), + [anon_sym_76] = ACTIONS(149), + [anon_sym_group] = ACTIONS(149), + [anon_sym_77] = ACTIONS(149), + [anon_sym_partition] = ACTIONS(149), + [anon_sym_78] = ACTIONS(149), + [anon_sym_both] = ACTIONS(149), + [anon_sym_79] = ACTIONS(149), + [anon_sym_bracket] = ACTIONS(149), + [anon_sym_80] = ACTIONS(149), + [anon_sym_fork] = ACTIONS(149), + [anon_sym_81] = ACTIONS(149), + [anon_sym_under] = ACTIONS(149), + [anon_sym_82] = ACTIONS(149), + [anon_sym_level] = ACTIONS(149), + [anon_sym_83] = ACTIONS(149), + [anon_sym_fill] = ACTIONS(149), + [anon_sym_84] = ACTIONS(149), + [anon_sym_bind] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_try] = ACTIONS(151), + [anon_sym_85] = ACTIONS(149), + [anon_sym_combinate] = ACTIONS(149), + [anon_sym_86] = ACTIONS(149), + [anon_sym_87] = ACTIONS(153), + [anon_sym_88] = ACTIONS(153), + [anon_sym_89] = ACTIONS(153), + [anon_sym_90] = ACTIONS(153), + [anon_sym_91] = ACTIONS(153), + [anon_sym_92] = ACTIONS(153), + [anon_sym_93] = ACTIONS(153), [sym__whitespace] = ACTIONS(5), - [sym__end_of_line] = ACTIONS(132), + [sym__end_of_line] = ACTIONS(127), }, [18] = { [sym_segment] = STATE(160), @@ -11166,243 +11112,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_module_repeat1] = STATE(42), [aux_sym_switchFunctions_repeat1] = STATE(47), [aux_sym_array_repeat1] = STATE(57), - [aux_sym_number_token1] = ACTIONS(116), - [anon_sym_os] = ACTIONS(118), - [anon_sym_Family] = ACTIONS(118), - [anon_sym_Arch] = ACTIONS(118), - [anon_sym_ExeExt] = ACTIONS(118), - [anon_sym_PllExt] = ACTIONS(118), - [anon_sym_Sep] = ACTIONS(118), - [aux_sym_character_token1] = ACTIONS(120), - [sym_string] = ACTIONS(122), - [sym_multiLineString] = ACTIONS(122), + [aux_sym_number_token1] = ACTIONS(111), + [anon_sym_os] = ACTIONS(113), + [anon_sym_Family] = ACTIONS(113), + [anon_sym_Arch] = ACTIONS(113), + [anon_sym_ExeExt] = ACTIONS(113), + [anon_sym_PllExt] = ACTIONS(113), + [anon_sym_Sep] = ACTIONS(113), + [aux_sym_character_token1] = ACTIONS(115), + [sym_string] = ACTIONS(117), + [sym_multiLineString] = ACTIONS(117), [anon_sym_PIPE] = ACTIONS(15), - [sym_identifier] = ACTIONS(126), - [sym_identifier_deprecated] = ACTIONS(126), - [sym_system] = ACTIONS(122), - [sym_comment] = ACTIONS(128), - [sym_openParen] = ACTIONS(130), - [sym_openCurly] = ACTIONS(134), - [sym_openBracket] = ACTIONS(136), - [sym_leftArrow] = ACTIONS(140), - [anon_sym_CARET] = ACTIONS(142), - [anon_sym_eta] = ACTIONS(144), - [anon_sym_] = ACTIONS(146), - [anon_sym_pi] = ACTIONS(146), - [anon_sym_2] = ACTIONS(146), - [anon_sym_tau] = ACTIONS(144), - [anon_sym_3] = ACTIONS(146), - [anon_sym_infinity] = ACTIONS(144), - [anon_sym_4] = ACTIONS(144), - [anon_sym_e] = ACTIONS(146), - [anon_sym_NaN] = ACTIONS(146), - [anon_sym_NumProcs] = ACTIONS(146), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_COMMA] = ACTIONS(148), - [anon_sym_5] = ACTIONS(148), - [anon_sym_SEMI] = ACTIONS(148), - [anon_sym_identity] = ACTIONS(148), - [anon_sym_id] = ACTIONS(150), - [anon_sym_6] = ACTIONS(148), - [anon_sym_not] = ACTIONS(148), - [anon_sym_7] = ACTIONS(148), - [anon_sym_sign] = ACTIONS(148), - [anon_sym_8] = ACTIONS(148), - [anon_sym_BQUOTE] = ACTIONS(148), - [anon_sym_9] = ACTIONS(148), - [anon_sym_absolutevalue] = ACTIONS(148), - [anon_sym_10] = ACTIONS(148), - [anon_sym_sqrt] = ACTIONS(148), - [anon_sym_11] = ACTIONS(148), - [anon_sym_sine] = ACTIONS(148), - [anon_sym_12] = ACTIONS(148), - [anon_sym_floor] = ACTIONS(148), - [anon_sym_13] = ACTIONS(148), - [anon_sym_ceiling] = ACTIONS(148), - [anon_sym_14] = ACTIONS(148), - [anon_sym_round] = ACTIONS(148), - [anon_sym_15] = ACTIONS(148), - [anon_sym_EQ] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_16] = ACTIONS(148), - [anon_sym_LT] = ACTIONS(150), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_17] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_18] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_19] = ACTIONS(148), - [anon_sym_PERCENT] = ACTIONS(148), - [anon_sym_20] = ACTIONS(148), - [anon_sym_modulus] = ACTIONS(148), - [anon_sym_21] = ACTIONS(148), - [anon_sym_power] = ACTIONS(148), - [anon_sym_22] = ACTIONS(148), - [anon_sym_logarithm] = ACTIONS(148), - [anon_sym_23] = ACTIONS(148), - [anon_sym_minimum] = ACTIONS(148), - [anon_sym_24] = ACTIONS(148), - [anon_sym_maximum] = ACTIONS(148), - [anon_sym_25] = ACTIONS(148), - [anon_sym_atangent] = ACTIONS(148), - [anon_sym_26] = ACTIONS(148), - [anon_sym_length] = ACTIONS(148), - [anon_sym_27] = ACTIONS(148), - [anon_sym_shape] = ACTIONS(148), - [anon_sym_28] = ACTIONS(148), - [anon_sym_range] = ACTIONS(148), - [anon_sym_29] = ACTIONS(148), - [anon_sym_first] = ACTIONS(148), - [anon_sym_30] = ACTIONS(148), - [anon_sym_reverse] = ACTIONS(148), - [anon_sym_31] = ACTIONS(148), - [anon_sym_deshape] = ACTIONS(148), - [anon_sym_32] = ACTIONS(148), - [anon_sym_bits] = ACTIONS(148), - [anon_sym_33] = ACTIONS(148), - [anon_sym_transpose] = ACTIONS(148), - [anon_sym_34] = ACTIONS(148), - [anon_sym_rise] = ACTIONS(148), - [anon_sym_35] = ACTIONS(148), - [anon_sym_fall] = ACTIONS(148), - [anon_sym_36] = ACTIONS(148), - [anon_sym_where] = ACTIONS(148), - [anon_sym_37] = ACTIONS(148), - [anon_sym_classify] = ACTIONS(148), - [anon_sym_38] = ACTIONS(148), - [anon_sym_deduplicate] = ACTIONS(148), - [anon_sym_39] = ACTIONS(148), - [anon_sym_box] = ACTIONS(148), - [anon_sym_40] = ACTIONS(148), - [anon_sym_unbox] = ACTIONS(148), - [anon_sym_41] = ACTIONS(148), - [anon_sym_match] = ACTIONS(148), - [anon_sym_42] = ACTIONS(148), - [anon_sym_couple] = ACTIONS(148), - [anon_sym_43] = ACTIONS(148), - [anon_sym_join] = ACTIONS(148), - [anon_sym_44] = ACTIONS(148), - [anon_sym_select] = ACTIONS(148), - [anon_sym_45] = ACTIONS(148), - [anon_sym_pick] = ACTIONS(148), - [anon_sym_46] = ACTIONS(148), - [anon_sym_reshape] = ACTIONS(148), - [anon_sym_47] = ACTIONS(148), - [anon_sym_take] = ACTIONS(148), - [anon_sym_48] = ACTIONS(148), - [anon_sym_drop] = ACTIONS(148), - [anon_sym_49] = ACTIONS(148), - [anon_sym_rotate] = ACTIONS(148), - [anon_sym_50] = ACTIONS(148), - [anon_sym_windows] = ACTIONS(148), - [anon_sym_51] = ACTIONS(148), - [anon_sym_keep] = ACTIONS(148), - [anon_sym_52] = ACTIONS(148), - [anon_sym_find] = ACTIONS(148), - [anon_sym_53] = ACTIONS(148), - [anon_sym_member] = ACTIONS(148), - [anon_sym_54] = ACTIONS(148), - [anon_sym_indexof] = ACTIONS(148), - [anon_sym_55] = ACTIONS(148), - [anon_sym_assert] = ACTIONS(148), - [anon_sym_56] = ACTIONS(148), - [anon_sym_wait] = ACTIONS(148), - [anon_sym_break] = ACTIONS(148), - [anon_sym_57] = ACTIONS(148), - [anon_sym_parse] = ACTIONS(148), - [anon_sym_random] = ACTIONS(148), - [anon_sym_58] = ACTIONS(148), - [anon_sym_gen] = ACTIONS(148), - [anon_sym_deal] = ACTIONS(148), - [anon_sym_tag] = ACTIONS(148), - [anon_sym_now] = ACTIONS(148), - [anon_sym_type] = ACTIONS(148), - [anon_sym_59] = ACTIONS(148), - [anon_sym_dump] = ACTIONS(148), - [anon_sym_regex] = ACTIONS(148), - [anon_sym_utf] = ACTIONS(148), - [anon_sym_rock] = ACTIONS(148), - [anon_sym_60] = ACTIONS(148), - [anon_sym_surface] = ACTIONS(148), - [anon_sym_TILDE] = ACTIONS(148), - [anon_sym_deep] = ACTIONS(148), - [anon_sym_de] = ACTIONS(150), - [anon_sym_61] = ACTIONS(148), - [anon_sym_abyss] = ACTIONS(148), - [anon_sym_ab] = ACTIONS(150), - [anon_sym_62] = ACTIONS(148), - [anon_sym_seabed] = ACTIONS(148), - [anon_sym_se] = ACTIONS(150), - [anon_sym_63] = ACTIONS(148), - [anon_sym_send] = ACTIONS(148), - [anon_sym_recv] = ACTIONS(148), - [anon_sym_tryrecv] = ACTIONS(148), - [anon_sym_reduce] = ACTIONS(152), - [anon_sym_SLASH] = ACTIONS(152), - [anon_sym_scan] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_each] = ACTIONS(152), - [anon_sym_64] = ACTIONS(152), - [anon_sym_rows] = ACTIONS(152), - [anon_sym_65] = ACTIONS(152), - [anon_sym_repeat] = ACTIONS(152), - [anon_sym_66] = ACTIONS(152), - [anon_sym_dip] = ACTIONS(152), - [anon_sym_di] = ACTIONS(154), - [anon_sym_67] = ACTIONS(152), - [anon_sym_gap] = ACTIONS(152), - [anon_sym_ga] = ACTIONS(154), - [anon_sym_68] = ACTIONS(152), - [anon_sym_oust] = ACTIONS(152), - [anon_sym_69] = ACTIONS(152), - [anon_sym_invert] = ACTIONS(152), - [anon_sym_70] = ACTIONS(152), - [anon_sym_spawn] = ACTIONS(152), - [anon_sym_pack] = ACTIONS(152), - [anon_sym_71] = ACTIONS(152), - [anon_sym_tribute] = ACTIONS(152), - [anon_sym_72] = ACTIONS(152), - [anon_sym_fold] = ACTIONS(156), - [anon_sym_73] = ACTIONS(156), - [anon_sym_distribute] = ACTIONS(156), - [anon_sym_74] = ACTIONS(156), - [anon_sym_table] = ACTIONS(156), - [anon_sym_75] = ACTIONS(156), - [anon_sym_cross] = ACTIONS(156), - [anon_sym_76] = ACTIONS(156), - [anon_sym_group] = ACTIONS(156), - [anon_sym_77] = ACTIONS(156), - [anon_sym_partition] = ACTIONS(156), - [anon_sym_78] = ACTIONS(156), - [anon_sym_both] = ACTIONS(156), - [anon_sym_79] = ACTIONS(156), - [anon_sym_bracket] = ACTIONS(156), - [anon_sym_80] = ACTIONS(156), - [anon_sym_fork] = ACTIONS(156), - [anon_sym_81] = ACTIONS(156), - [anon_sym_under] = ACTIONS(156), - [anon_sym_82] = ACTIONS(156), - [anon_sym_level] = ACTIONS(156), - [anon_sym_83] = ACTIONS(156), - [anon_sym_fill] = ACTIONS(156), - [anon_sym_84] = ACTIONS(156), - [anon_sym_bind] = ACTIONS(156), - [anon_sym_SQUOTE] = ACTIONS(156), - [anon_sym_QMARK] = ACTIONS(156), - [anon_sym_try] = ACTIONS(158), - [anon_sym_85] = ACTIONS(156), - [anon_sym_combinate] = ACTIONS(156), - [anon_sym_86] = ACTIONS(156), - [anon_sym_87] = ACTIONS(160), - [anon_sym_88] = ACTIONS(160), - [anon_sym_89] = ACTIONS(160), - [anon_sym_90] = ACTIONS(160), - [anon_sym_91] = ACTIONS(160), - [anon_sym_92] = ACTIONS(160), - [anon_sym_93] = ACTIONS(160), + [sym_identifier] = ACTIONS(121), + [sym_identifier_deprecated] = ACTIONS(121), + [sym_system] = ACTIONS(117), + [sym_comment] = ACTIONS(123), + [sym_openParen] = ACTIONS(125), + [sym_openCurly] = ACTIONS(129), + [sym_openBracket] = ACTIONS(131), + [sym_leftArrow] = ACTIONS(135), + [anon_sym_CARET] = ACTIONS(137), + [anon_sym_eta] = ACTIONS(139), + [anon_sym_] = ACTIONS(141), + [anon_sym_pi] = ACTIONS(141), + [anon_sym_2] = ACTIONS(141), + [anon_sym_tau] = ACTIONS(139), + [anon_sym_3] = ACTIONS(141), + [anon_sym_infinity] = ACTIONS(139), + [anon_sym_4] = ACTIONS(139), + [anon_sym_e] = ACTIONS(141), + [anon_sym_NaN] = ACTIONS(141), + [anon_sym_NumProcs] = ACTIONS(141), + [anon_sym_DOT] = ACTIONS(143), + [anon_sym_COMMA] = ACTIONS(143), + [anon_sym_5] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_identity] = ACTIONS(143), + [anon_sym_id] = ACTIONS(145), + [anon_sym_6] = ACTIONS(143), + [anon_sym_not] = ACTIONS(143), + [anon_sym_7] = ACTIONS(143), + [anon_sym_sign] = ACTIONS(143), + [anon_sym_8] = ACTIONS(143), + [anon_sym_BQUOTE] = ACTIONS(143), + [anon_sym_9] = ACTIONS(143), + [anon_sym_absolutevalue] = ACTIONS(143), + [anon_sym_10] = ACTIONS(143), + [anon_sym_sqrt] = ACTIONS(143), + [anon_sym_11] = ACTIONS(143), + [anon_sym_sine] = ACTIONS(143), + [anon_sym_12] = ACTIONS(143), + [anon_sym_floor] = ACTIONS(143), + [anon_sym_13] = ACTIONS(143), + [anon_sym_ceiling] = ACTIONS(143), + [anon_sym_14] = ACTIONS(143), + [anon_sym_round] = ACTIONS(143), + [anon_sym_15] = ACTIONS(143), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_16] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_17] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_18] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_19] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_20] = ACTIONS(143), + [anon_sym_modulus] = ACTIONS(143), + [anon_sym_21] = ACTIONS(143), + [anon_sym_power] = ACTIONS(143), + [anon_sym_22] = ACTIONS(143), + [anon_sym_logarithm] = ACTIONS(143), + [anon_sym_23] = ACTIONS(143), + [anon_sym_minimum] = ACTIONS(143), + [anon_sym_24] = ACTIONS(143), + [anon_sym_maximum] = ACTIONS(143), + [anon_sym_25] = ACTIONS(143), + [anon_sym_atangent] = ACTIONS(143), + [anon_sym_26] = ACTIONS(143), + [anon_sym_length] = ACTIONS(143), + [anon_sym_27] = ACTIONS(143), + [anon_sym_shape] = ACTIONS(143), + [anon_sym_28] = ACTIONS(143), + [anon_sym_range] = ACTIONS(143), + [anon_sym_29] = ACTIONS(143), + [anon_sym_first] = ACTIONS(143), + [anon_sym_30] = ACTIONS(143), + [anon_sym_reverse] = ACTIONS(143), + [anon_sym_31] = ACTIONS(143), + [anon_sym_deshape] = ACTIONS(143), + [anon_sym_32] = ACTIONS(143), + [anon_sym_bits] = ACTIONS(143), + [anon_sym_33] = ACTIONS(143), + [anon_sym_transpose] = ACTIONS(143), + [anon_sym_34] = ACTIONS(143), + [anon_sym_rise] = ACTIONS(143), + [anon_sym_35] = ACTIONS(143), + [anon_sym_fall] = ACTIONS(143), + [anon_sym_36] = ACTIONS(143), + [anon_sym_where] = ACTIONS(143), + [anon_sym_37] = ACTIONS(143), + [anon_sym_classify] = ACTIONS(143), + [anon_sym_38] = ACTIONS(143), + [anon_sym_deduplicate] = ACTIONS(143), + [anon_sym_39] = ACTIONS(143), + [anon_sym_box] = ACTIONS(143), + [anon_sym_40] = ACTIONS(143), + [anon_sym_unbox] = ACTIONS(143), + [anon_sym_41] = ACTIONS(143), + [anon_sym_match] = ACTIONS(143), + [anon_sym_42] = ACTIONS(143), + [anon_sym_couple] = ACTIONS(143), + [anon_sym_43] = ACTIONS(143), + [anon_sym_join] = ACTIONS(143), + [anon_sym_44] = ACTIONS(143), + [anon_sym_select] = ACTIONS(143), + [anon_sym_45] = ACTIONS(143), + [anon_sym_pick] = ACTIONS(143), + [anon_sym_46] = ACTIONS(143), + [anon_sym_reshape] = ACTIONS(143), + [anon_sym_47] = ACTIONS(143), + [anon_sym_take] = ACTIONS(143), + [anon_sym_48] = ACTIONS(143), + [anon_sym_drop] = ACTIONS(143), + [anon_sym_49] = ACTIONS(143), + [anon_sym_rotate] = ACTIONS(143), + [anon_sym_50] = ACTIONS(143), + [anon_sym_windows] = ACTIONS(143), + [anon_sym_51] = ACTIONS(143), + [anon_sym_keep] = ACTIONS(143), + [anon_sym_52] = ACTIONS(143), + [anon_sym_find] = ACTIONS(143), + [anon_sym_53] = ACTIONS(143), + [anon_sym_member] = ACTIONS(143), + [anon_sym_54] = ACTIONS(143), + [anon_sym_indexof] = ACTIONS(143), + [anon_sym_55] = ACTIONS(143), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_56] = ACTIONS(143), + [anon_sym_wait] = ACTIONS(143), + [anon_sym_break] = ACTIONS(143), + [anon_sym_57] = ACTIONS(143), + [anon_sym_parse] = ACTIONS(143), + [anon_sym_random] = ACTIONS(143), + [anon_sym_58] = ACTIONS(143), + [anon_sym_gen] = ACTIONS(143), + [anon_sym_deal] = ACTIONS(143), + [anon_sym_tag] = ACTIONS(143), + [anon_sym_now] = ACTIONS(143), + [anon_sym_type] = ACTIONS(143), + [anon_sym_59] = ACTIONS(143), + [anon_sym_dump] = ACTIONS(143), + [anon_sym_regex] = ACTIONS(143), + [anon_sym_utf] = ACTIONS(143), + [anon_sym_rock] = ACTIONS(143), + [anon_sym_60] = ACTIONS(143), + [anon_sym_surface] = ACTIONS(143), + [anon_sym_TILDE] = ACTIONS(143), + [anon_sym_deep] = ACTIONS(143), + [anon_sym_de] = ACTIONS(145), + [anon_sym_61] = ACTIONS(143), + [anon_sym_abyss] = ACTIONS(143), + [anon_sym_ab] = ACTIONS(145), + [anon_sym_62] = ACTIONS(143), + [anon_sym_seabed] = ACTIONS(143), + [anon_sym_se] = ACTIONS(145), + [anon_sym_63] = ACTIONS(143), + [anon_sym_send] = ACTIONS(143), + [anon_sym_recv] = ACTIONS(143), + [anon_sym_tryrecv] = ACTIONS(143), + [anon_sym_reduce] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_scan] = ACTIONS(147), + [anon_sym_BSLASH] = ACTIONS(147), + [anon_sym_each] = ACTIONS(147), + [anon_sym_64] = ACTIONS(147), + [anon_sym_rows] = ACTIONS(147), + [anon_sym_65] = ACTIONS(147), + [anon_sym_repeat] = ACTIONS(147), + [anon_sym_66] = ACTIONS(147), + [anon_sym_dip] = ACTIONS(147), + [anon_sym_67] = ACTIONS(147), + [anon_sym_gap] = ACTIONS(147), + [anon_sym_68] = ACTIONS(147), + [anon_sym_69] = ACTIONS(147), + [anon_sym_invert] = ACTIONS(147), + [anon_sym_70] = ACTIONS(147), + [anon_sym_spawn] = ACTIONS(147), + [anon_sym_pack] = ACTIONS(147), + [anon_sym_71] = ACTIONS(147), + [anon_sym_tribute] = ACTIONS(147), + [anon_sym_72] = ACTIONS(147), + [anon_sym_reach] = ACTIONS(147), + [anon_sym_fold] = ACTIONS(149), + [anon_sym_73] = ACTIONS(149), + [anon_sym_distribute] = ACTIONS(149), + [anon_sym_74] = ACTIONS(149), + [anon_sym_table] = ACTIONS(149), + [anon_sym_75] = ACTIONS(149), + [anon_sym_cross] = ACTIONS(149), + [anon_sym_76] = ACTIONS(149), + [anon_sym_group] = ACTIONS(149), + [anon_sym_77] = ACTIONS(149), + [anon_sym_partition] = ACTIONS(149), + [anon_sym_78] = ACTIONS(149), + [anon_sym_both] = ACTIONS(149), + [anon_sym_79] = ACTIONS(149), + [anon_sym_bracket] = ACTIONS(149), + [anon_sym_80] = ACTIONS(149), + [anon_sym_fork] = ACTIONS(149), + [anon_sym_81] = ACTIONS(149), + [anon_sym_under] = ACTIONS(149), + [anon_sym_82] = ACTIONS(149), + [anon_sym_level] = ACTIONS(149), + [anon_sym_83] = ACTIONS(149), + [anon_sym_fill] = ACTIONS(149), + [anon_sym_84] = ACTIONS(149), + [anon_sym_bind] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_try] = ACTIONS(151), + [anon_sym_85] = ACTIONS(149), + [anon_sym_combinate] = ACTIONS(149), + [anon_sym_86] = ACTIONS(149), + [anon_sym_87] = ACTIONS(153), + [anon_sym_88] = ACTIONS(153), + [anon_sym_89] = ACTIONS(153), + [anon_sym_90] = ACTIONS(153), + [anon_sym_91] = ACTIONS(153), + [anon_sym_92] = ACTIONS(153), + [anon_sym_93] = ACTIONS(153), [sym__whitespace] = ACTIONS(5), [sym__end_of_line] = ACTIONS(5), }, @@ -11425,247 +11369,245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_modifier2] = STATE(59), [sym_deprecated] = STATE(61), [aux_sym_array_repeat1] = STATE(57), - [aux_sym_number_token1] = ACTIONS(116), - [anon_sym_os] = ACTIONS(118), - [anon_sym_Family] = ACTIONS(118), - [anon_sym_Arch] = ACTIONS(118), - [anon_sym_ExeExt] = ACTIONS(118), - [anon_sym_PllExt] = ACTIONS(118), - [anon_sym_Sep] = ACTIONS(118), - [aux_sym_character_token1] = ACTIONS(120), - [sym_string] = ACTIONS(122), - [sym_multiLineString] = ACTIONS(122), + [aux_sym_number_token1] = ACTIONS(111), + [anon_sym_os] = ACTIONS(113), + [anon_sym_Family] = ACTIONS(113), + [anon_sym_Arch] = ACTIONS(113), + [anon_sym_ExeExt] = ACTIONS(113), + [anon_sym_PllExt] = ACTIONS(113), + [anon_sym_Sep] = ACTIONS(113), + [aux_sym_character_token1] = ACTIONS(115), + [sym_string] = ACTIONS(117), + [sym_multiLineString] = ACTIONS(117), [anon_sym_PIPE] = ACTIONS(15), - [sym_identifier] = ACTIONS(126), - [sym_identifier_deprecated] = ACTIONS(126), - [sym_system] = ACTIONS(122), - [sym_comment] = ACTIONS(128), - [sym_openParen] = ACTIONS(130), - [sym_closeParen] = ACTIONS(132), - [sym_openCurly] = ACTIONS(134), - [sym_openBracket] = ACTIONS(136), - [sym_underscore] = ACTIONS(138), - [sym_leftArrow] = ACTIONS(140), - [anon_sym_CARET] = ACTIONS(142), - [anon_sym_eta] = ACTIONS(144), - [anon_sym_] = ACTIONS(146), - [anon_sym_pi] = ACTIONS(146), - [anon_sym_2] = ACTIONS(146), - [anon_sym_tau] = ACTIONS(144), - [anon_sym_3] = ACTIONS(146), - [anon_sym_infinity] = ACTIONS(144), - [anon_sym_4] = ACTIONS(144), - [anon_sym_e] = ACTIONS(146), - [anon_sym_NaN] = ACTIONS(146), - [anon_sym_NumProcs] = ACTIONS(146), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_COMMA] = ACTIONS(148), - [anon_sym_5] = ACTIONS(148), - [anon_sym_SEMI] = ACTIONS(148), - [anon_sym_identity] = ACTIONS(148), - [anon_sym_id] = ACTIONS(150), - [anon_sym_6] = ACTIONS(148), - [anon_sym_not] = ACTIONS(148), - [anon_sym_7] = ACTIONS(148), - [anon_sym_sign] = ACTIONS(148), - [anon_sym_8] = ACTIONS(148), - [anon_sym_BQUOTE] = ACTIONS(148), - [anon_sym_9] = ACTIONS(148), - [anon_sym_absolutevalue] = ACTIONS(148), - [anon_sym_10] = ACTIONS(148), - [anon_sym_sqrt] = ACTIONS(148), - [anon_sym_11] = ACTIONS(148), - [anon_sym_sine] = ACTIONS(148), - [anon_sym_12] = ACTIONS(148), - [anon_sym_floor] = ACTIONS(148), - [anon_sym_13] = ACTIONS(148), - [anon_sym_ceiling] = ACTIONS(148), - [anon_sym_14] = ACTIONS(148), - [anon_sym_round] = ACTIONS(148), - [anon_sym_15] = ACTIONS(148), - [anon_sym_EQ] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_16] = ACTIONS(148), - [anon_sym_LT] = ACTIONS(150), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_17] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_18] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_19] = ACTIONS(148), - [anon_sym_PERCENT] = ACTIONS(148), - [anon_sym_20] = ACTIONS(148), - [anon_sym_modulus] = ACTIONS(148), - [anon_sym_21] = ACTIONS(148), - [anon_sym_power] = ACTIONS(148), - [anon_sym_22] = ACTIONS(148), - [anon_sym_logarithm] = ACTIONS(148), - [anon_sym_23] = ACTIONS(148), - [anon_sym_minimum] = ACTIONS(148), - [anon_sym_24] = ACTIONS(148), - [anon_sym_maximum] = ACTIONS(148), - [anon_sym_25] = ACTIONS(148), - [anon_sym_atangent] = ACTIONS(148), - [anon_sym_26] = ACTIONS(148), - [anon_sym_length] = ACTIONS(148), - [anon_sym_27] = ACTIONS(148), - [anon_sym_shape] = ACTIONS(148), - [anon_sym_28] = ACTIONS(148), - [anon_sym_range] = ACTIONS(148), - [anon_sym_29] = ACTIONS(148), - [anon_sym_first] = ACTIONS(148), - [anon_sym_30] = ACTIONS(148), - [anon_sym_reverse] = ACTIONS(148), - [anon_sym_31] = ACTIONS(148), - [anon_sym_deshape] = ACTIONS(148), - [anon_sym_32] = ACTIONS(148), - [anon_sym_bits] = ACTIONS(148), - [anon_sym_33] = ACTIONS(148), - [anon_sym_transpose] = ACTIONS(148), - [anon_sym_34] = ACTIONS(148), - [anon_sym_rise] = ACTIONS(148), - [anon_sym_35] = ACTIONS(148), - [anon_sym_fall] = ACTIONS(148), - [anon_sym_36] = ACTIONS(148), - [anon_sym_where] = ACTIONS(148), - [anon_sym_37] = ACTIONS(148), - [anon_sym_classify] = ACTIONS(148), - [anon_sym_38] = ACTIONS(148), - [anon_sym_deduplicate] = ACTIONS(148), - [anon_sym_39] = ACTIONS(148), - [anon_sym_box] = ACTIONS(148), - [anon_sym_40] = ACTIONS(148), - [anon_sym_unbox] = ACTIONS(148), - [anon_sym_41] = ACTIONS(148), - [anon_sym_match] = ACTIONS(148), - [anon_sym_42] = ACTIONS(148), - [anon_sym_couple] = ACTIONS(148), - [anon_sym_43] = ACTIONS(148), - [anon_sym_join] = ACTIONS(148), - [anon_sym_44] = ACTIONS(148), - [anon_sym_select] = ACTIONS(148), - [anon_sym_45] = ACTIONS(148), - [anon_sym_pick] = ACTIONS(148), - [anon_sym_46] = ACTIONS(148), - [anon_sym_reshape] = ACTIONS(148), - [anon_sym_47] = ACTIONS(148), - [anon_sym_take] = ACTIONS(148), - [anon_sym_48] = ACTIONS(148), - [anon_sym_drop] = ACTIONS(148), - [anon_sym_49] = ACTIONS(148), - [anon_sym_rotate] = ACTIONS(148), - [anon_sym_50] = ACTIONS(148), - [anon_sym_windows] = ACTIONS(148), - [anon_sym_51] = ACTIONS(148), - [anon_sym_keep] = ACTIONS(148), - [anon_sym_52] = ACTIONS(148), - [anon_sym_find] = ACTIONS(148), - [anon_sym_53] = ACTIONS(148), - [anon_sym_member] = ACTIONS(148), - [anon_sym_54] = ACTIONS(148), - [anon_sym_indexof] = ACTIONS(148), - [anon_sym_55] = ACTIONS(148), - [anon_sym_assert] = ACTIONS(148), - [anon_sym_56] = ACTIONS(148), - [anon_sym_wait] = ACTIONS(148), - [anon_sym_break] = ACTIONS(148), - [anon_sym_57] = ACTIONS(148), - [anon_sym_parse] = ACTIONS(148), - [anon_sym_random] = ACTIONS(148), - [anon_sym_58] = ACTIONS(148), - [anon_sym_gen] = ACTIONS(148), - [anon_sym_deal] = ACTIONS(148), - [anon_sym_tag] = ACTIONS(148), - [anon_sym_now] = ACTIONS(148), - [anon_sym_type] = ACTIONS(148), - [anon_sym_59] = ACTIONS(148), - [anon_sym_dump] = ACTIONS(148), - [anon_sym_regex] = ACTIONS(148), - [anon_sym_utf] = ACTIONS(148), - [anon_sym_rock] = ACTIONS(148), - [anon_sym_60] = ACTIONS(148), - [anon_sym_surface] = ACTIONS(148), - [anon_sym_TILDE] = ACTIONS(148), - [anon_sym_deep] = ACTIONS(148), - [anon_sym_de] = ACTIONS(150), - [anon_sym_61] = ACTIONS(148), - [anon_sym_abyss] = ACTIONS(148), - [anon_sym_ab] = ACTIONS(150), - [anon_sym_62] = ACTIONS(148), - [anon_sym_seabed] = ACTIONS(148), - [anon_sym_se] = ACTIONS(150), - [anon_sym_63] = ACTIONS(148), - [anon_sym_send] = ACTIONS(148), - [anon_sym_recv] = ACTIONS(148), - [anon_sym_tryrecv] = ACTIONS(148), - [anon_sym_reduce] = ACTIONS(152), - [anon_sym_SLASH] = ACTIONS(152), - [anon_sym_scan] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_each] = ACTIONS(152), - [anon_sym_64] = ACTIONS(152), - [anon_sym_rows] = ACTIONS(152), - [anon_sym_65] = ACTIONS(152), - [anon_sym_repeat] = ACTIONS(152), - [anon_sym_66] = ACTIONS(152), - [anon_sym_dip] = ACTIONS(152), - [anon_sym_di] = ACTIONS(154), - [anon_sym_67] = ACTIONS(152), - [anon_sym_gap] = ACTIONS(152), - [anon_sym_ga] = ACTIONS(154), - [anon_sym_68] = ACTIONS(152), - [anon_sym_oust] = ACTIONS(152), - [anon_sym_69] = ACTIONS(152), - [anon_sym_invert] = ACTIONS(152), - [anon_sym_70] = ACTIONS(152), - [anon_sym_spawn] = ACTIONS(152), - [anon_sym_pack] = ACTIONS(152), - [anon_sym_71] = ACTIONS(152), - [anon_sym_tribute] = ACTIONS(152), - [anon_sym_72] = ACTIONS(152), - [anon_sym_fold] = ACTIONS(156), - [anon_sym_73] = ACTIONS(156), - [anon_sym_distribute] = ACTIONS(156), - [anon_sym_74] = ACTIONS(156), - [anon_sym_table] = ACTIONS(156), - [anon_sym_75] = ACTIONS(156), - [anon_sym_cross] = ACTIONS(156), - [anon_sym_76] = ACTIONS(156), - [anon_sym_group] = ACTIONS(156), - [anon_sym_77] = ACTIONS(156), - [anon_sym_partition] = ACTIONS(156), - [anon_sym_78] = ACTIONS(156), - [anon_sym_both] = ACTIONS(156), - [anon_sym_79] = ACTIONS(156), - [anon_sym_bracket] = ACTIONS(156), - [anon_sym_80] = ACTIONS(156), - [anon_sym_fork] = ACTIONS(156), - [anon_sym_81] = ACTIONS(156), - [anon_sym_under] = ACTIONS(156), - [anon_sym_82] = ACTIONS(156), - [anon_sym_level] = ACTIONS(156), - [anon_sym_83] = ACTIONS(156), - [anon_sym_fill] = ACTIONS(156), - [anon_sym_84] = ACTIONS(156), - [anon_sym_bind] = ACTIONS(156), - [anon_sym_SQUOTE] = ACTIONS(156), - [anon_sym_QMARK] = ACTIONS(156), - [anon_sym_try] = ACTIONS(158), - [anon_sym_85] = ACTIONS(156), - [anon_sym_combinate] = ACTIONS(156), - [anon_sym_86] = ACTIONS(156), - [anon_sym_87] = ACTIONS(160), - [anon_sym_88] = ACTIONS(160), - [anon_sym_89] = ACTIONS(160), - [anon_sym_90] = ACTIONS(160), - [anon_sym_91] = ACTIONS(160), - [anon_sym_92] = ACTIONS(160), - [anon_sym_93] = ACTIONS(160), + [sym_identifier] = ACTIONS(121), + [sym_identifier_deprecated] = ACTIONS(121), + [sym_system] = ACTIONS(117), + [sym_comment] = ACTIONS(123), + [sym_openParen] = ACTIONS(125), + [sym_closeParen] = ACTIONS(127), + [sym_openCurly] = ACTIONS(129), + [sym_openBracket] = ACTIONS(131), + [sym_underscore] = ACTIONS(133), + [sym_leftArrow] = ACTIONS(135), + [anon_sym_CARET] = ACTIONS(137), + [anon_sym_eta] = ACTIONS(139), + [anon_sym_] = ACTIONS(141), + [anon_sym_pi] = ACTIONS(141), + [anon_sym_2] = ACTIONS(141), + [anon_sym_tau] = ACTIONS(139), + [anon_sym_3] = ACTIONS(141), + [anon_sym_infinity] = ACTIONS(139), + [anon_sym_4] = ACTIONS(139), + [anon_sym_e] = ACTIONS(141), + [anon_sym_NaN] = ACTIONS(141), + [anon_sym_NumProcs] = ACTIONS(141), + [anon_sym_DOT] = ACTIONS(143), + [anon_sym_COMMA] = ACTIONS(143), + [anon_sym_5] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_identity] = ACTIONS(143), + [anon_sym_id] = ACTIONS(145), + [anon_sym_6] = ACTIONS(143), + [anon_sym_not] = ACTIONS(143), + [anon_sym_7] = ACTIONS(143), + [anon_sym_sign] = ACTIONS(143), + [anon_sym_8] = ACTIONS(143), + [anon_sym_BQUOTE] = ACTIONS(143), + [anon_sym_9] = ACTIONS(143), + [anon_sym_absolutevalue] = ACTIONS(143), + [anon_sym_10] = ACTIONS(143), + [anon_sym_sqrt] = ACTIONS(143), + [anon_sym_11] = ACTIONS(143), + [anon_sym_sine] = ACTIONS(143), + [anon_sym_12] = ACTIONS(143), + [anon_sym_floor] = ACTIONS(143), + [anon_sym_13] = ACTIONS(143), + [anon_sym_ceiling] = ACTIONS(143), + [anon_sym_14] = ACTIONS(143), + [anon_sym_round] = ACTIONS(143), + [anon_sym_15] = ACTIONS(143), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_16] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_17] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_18] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_19] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_20] = ACTIONS(143), + [anon_sym_modulus] = ACTIONS(143), + [anon_sym_21] = ACTIONS(143), + [anon_sym_power] = ACTIONS(143), + [anon_sym_22] = ACTIONS(143), + [anon_sym_logarithm] = ACTIONS(143), + [anon_sym_23] = ACTIONS(143), + [anon_sym_minimum] = ACTIONS(143), + [anon_sym_24] = ACTIONS(143), + [anon_sym_maximum] = ACTIONS(143), + [anon_sym_25] = ACTIONS(143), + [anon_sym_atangent] = ACTIONS(143), + [anon_sym_26] = ACTIONS(143), + [anon_sym_length] = ACTIONS(143), + [anon_sym_27] = ACTIONS(143), + [anon_sym_shape] = ACTIONS(143), + [anon_sym_28] = ACTIONS(143), + [anon_sym_range] = ACTIONS(143), + [anon_sym_29] = ACTIONS(143), + [anon_sym_first] = ACTIONS(143), + [anon_sym_30] = ACTIONS(143), + [anon_sym_reverse] = ACTIONS(143), + [anon_sym_31] = ACTIONS(143), + [anon_sym_deshape] = ACTIONS(143), + [anon_sym_32] = ACTIONS(143), + [anon_sym_bits] = ACTIONS(143), + [anon_sym_33] = ACTIONS(143), + [anon_sym_transpose] = ACTIONS(143), + [anon_sym_34] = ACTIONS(143), + [anon_sym_rise] = ACTIONS(143), + [anon_sym_35] = ACTIONS(143), + [anon_sym_fall] = ACTIONS(143), + [anon_sym_36] = ACTIONS(143), + [anon_sym_where] = ACTIONS(143), + [anon_sym_37] = ACTIONS(143), + [anon_sym_classify] = ACTIONS(143), + [anon_sym_38] = ACTIONS(143), + [anon_sym_deduplicate] = ACTIONS(143), + [anon_sym_39] = ACTIONS(143), + [anon_sym_box] = ACTIONS(143), + [anon_sym_40] = ACTIONS(143), + [anon_sym_unbox] = ACTIONS(143), + [anon_sym_41] = ACTIONS(143), + [anon_sym_match] = ACTIONS(143), + [anon_sym_42] = ACTIONS(143), + [anon_sym_couple] = ACTIONS(143), + [anon_sym_43] = ACTIONS(143), + [anon_sym_join] = ACTIONS(143), + [anon_sym_44] = ACTIONS(143), + [anon_sym_select] = ACTIONS(143), + [anon_sym_45] = ACTIONS(143), + [anon_sym_pick] = ACTIONS(143), + [anon_sym_46] = ACTIONS(143), + [anon_sym_reshape] = ACTIONS(143), + [anon_sym_47] = ACTIONS(143), + [anon_sym_take] = ACTIONS(143), + [anon_sym_48] = ACTIONS(143), + [anon_sym_drop] = ACTIONS(143), + [anon_sym_49] = ACTIONS(143), + [anon_sym_rotate] = ACTIONS(143), + [anon_sym_50] = ACTIONS(143), + [anon_sym_windows] = ACTIONS(143), + [anon_sym_51] = ACTIONS(143), + [anon_sym_keep] = ACTIONS(143), + [anon_sym_52] = ACTIONS(143), + [anon_sym_find] = ACTIONS(143), + [anon_sym_53] = ACTIONS(143), + [anon_sym_member] = ACTIONS(143), + [anon_sym_54] = ACTIONS(143), + [anon_sym_indexof] = ACTIONS(143), + [anon_sym_55] = ACTIONS(143), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_56] = ACTIONS(143), + [anon_sym_wait] = ACTIONS(143), + [anon_sym_break] = ACTIONS(143), + [anon_sym_57] = ACTIONS(143), + [anon_sym_parse] = ACTIONS(143), + [anon_sym_random] = ACTIONS(143), + [anon_sym_58] = ACTIONS(143), + [anon_sym_gen] = ACTIONS(143), + [anon_sym_deal] = ACTIONS(143), + [anon_sym_tag] = ACTIONS(143), + [anon_sym_now] = ACTIONS(143), + [anon_sym_type] = ACTIONS(143), + [anon_sym_59] = ACTIONS(143), + [anon_sym_dump] = ACTIONS(143), + [anon_sym_regex] = ACTIONS(143), + [anon_sym_utf] = ACTIONS(143), + [anon_sym_rock] = ACTIONS(143), + [anon_sym_60] = ACTIONS(143), + [anon_sym_surface] = ACTIONS(143), + [anon_sym_TILDE] = ACTIONS(143), + [anon_sym_deep] = ACTIONS(143), + [anon_sym_de] = ACTIONS(145), + [anon_sym_61] = ACTIONS(143), + [anon_sym_abyss] = ACTIONS(143), + [anon_sym_ab] = ACTIONS(145), + [anon_sym_62] = ACTIONS(143), + [anon_sym_seabed] = ACTIONS(143), + [anon_sym_se] = ACTIONS(145), + [anon_sym_63] = ACTIONS(143), + [anon_sym_send] = ACTIONS(143), + [anon_sym_recv] = ACTIONS(143), + [anon_sym_tryrecv] = ACTIONS(143), + [anon_sym_reduce] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_scan] = ACTIONS(147), + [anon_sym_BSLASH] = ACTIONS(147), + [anon_sym_each] = ACTIONS(147), + [anon_sym_64] = ACTIONS(147), + [anon_sym_rows] = ACTIONS(147), + [anon_sym_65] = ACTIONS(147), + [anon_sym_repeat] = ACTIONS(147), + [anon_sym_66] = ACTIONS(147), + [anon_sym_dip] = ACTIONS(147), + [anon_sym_67] = ACTIONS(147), + [anon_sym_gap] = ACTIONS(147), + [anon_sym_68] = ACTIONS(147), + [anon_sym_69] = ACTIONS(147), + [anon_sym_invert] = ACTIONS(147), + [anon_sym_70] = ACTIONS(147), + [anon_sym_spawn] = ACTIONS(147), + [anon_sym_pack] = ACTIONS(147), + [anon_sym_71] = ACTIONS(147), + [anon_sym_tribute] = ACTIONS(147), + [anon_sym_72] = ACTIONS(147), + [anon_sym_reach] = ACTIONS(147), + [anon_sym_fold] = ACTIONS(149), + [anon_sym_73] = ACTIONS(149), + [anon_sym_distribute] = ACTIONS(149), + [anon_sym_74] = ACTIONS(149), + [anon_sym_table] = ACTIONS(149), + [anon_sym_75] = ACTIONS(149), + [anon_sym_cross] = ACTIONS(149), + [anon_sym_76] = ACTIONS(149), + [anon_sym_group] = ACTIONS(149), + [anon_sym_77] = ACTIONS(149), + [anon_sym_partition] = ACTIONS(149), + [anon_sym_78] = ACTIONS(149), + [anon_sym_both] = ACTIONS(149), + [anon_sym_79] = ACTIONS(149), + [anon_sym_bracket] = ACTIONS(149), + [anon_sym_80] = ACTIONS(149), + [anon_sym_fork] = ACTIONS(149), + [anon_sym_81] = ACTIONS(149), + [anon_sym_under] = ACTIONS(149), + [anon_sym_82] = ACTIONS(149), + [anon_sym_level] = ACTIONS(149), + [anon_sym_83] = ACTIONS(149), + [anon_sym_fill] = ACTIONS(149), + [anon_sym_84] = ACTIONS(149), + [anon_sym_bind] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_try] = ACTIONS(151), + [anon_sym_85] = ACTIONS(149), + [anon_sym_combinate] = ACTIONS(149), + [anon_sym_86] = ACTIONS(149), + [anon_sym_87] = ACTIONS(153), + [anon_sym_88] = ACTIONS(153), + [anon_sym_89] = ACTIONS(153), + [anon_sym_90] = ACTIONS(153), + [anon_sym_91] = ACTIONS(153), + [anon_sym_92] = ACTIONS(153), + [anon_sym_93] = ACTIONS(153), [sym__whitespace] = ACTIONS(5), - [sym__end_of_line] = ACTIONS(132), + [sym__end_of_line] = ACTIONS(127), }, [20] = { [sym_segment] = STATE(104), @@ -11687,246 +11629,244 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_deprecated] = STATE(61), [aux_sym_array_repeat1] = STATE(57), [aux_sym_array_repeat2] = STATE(25), - [aux_sym_number_token1] = ACTIONS(116), - [anon_sym_os] = ACTIONS(118), - [anon_sym_Family] = ACTIONS(118), - [anon_sym_Arch] = ACTIONS(118), - [anon_sym_ExeExt] = ACTIONS(118), - [anon_sym_PllExt] = ACTIONS(118), - [anon_sym_Sep] = ACTIONS(118), - [aux_sym_character_token1] = ACTIONS(120), - [sym_string] = ACTIONS(122), - [sym_multiLineString] = ACTIONS(122), + [aux_sym_number_token1] = ACTIONS(111), + [anon_sym_os] = ACTIONS(113), + [anon_sym_Family] = ACTIONS(113), + [anon_sym_Arch] = ACTIONS(113), + [anon_sym_ExeExt] = ACTIONS(113), + [anon_sym_PllExt] = ACTIONS(113), + [anon_sym_Sep] = ACTIONS(113), + [aux_sym_character_token1] = ACTIONS(115), + [sym_string] = ACTIONS(117), + [sym_multiLineString] = ACTIONS(117), [anon_sym_PIPE] = ACTIONS(15), - [sym_identifier] = ACTIONS(126), - [sym_identifier_deprecated] = ACTIONS(126), - [sym_system] = ACTIONS(122), - [sym_comment] = ACTIONS(228), - [sym_openParen] = ACTIONS(130), - [sym_openCurly] = ACTIONS(134), - [sym_closeCurly] = ACTIONS(232), - [sym_openBracket] = ACTIONS(136), - [sym_leftArrow] = ACTIONS(230), - [anon_sym_CARET] = ACTIONS(142), - [anon_sym_eta] = ACTIONS(144), - [anon_sym_] = ACTIONS(146), - [anon_sym_pi] = ACTIONS(146), - [anon_sym_2] = ACTIONS(146), - [anon_sym_tau] = ACTIONS(144), - [anon_sym_3] = ACTIONS(146), - [anon_sym_infinity] = ACTIONS(144), - [anon_sym_4] = ACTIONS(144), - [anon_sym_e] = ACTIONS(146), - [anon_sym_NaN] = ACTIONS(146), - [anon_sym_NumProcs] = ACTIONS(146), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_COMMA] = ACTIONS(148), - [anon_sym_5] = ACTIONS(148), - [anon_sym_SEMI] = ACTIONS(148), - [anon_sym_identity] = ACTIONS(148), - [anon_sym_id] = ACTIONS(150), - [anon_sym_6] = ACTIONS(148), - [anon_sym_not] = ACTIONS(148), - [anon_sym_7] = ACTIONS(148), - [anon_sym_sign] = ACTIONS(148), - [anon_sym_8] = ACTIONS(148), - [anon_sym_BQUOTE] = ACTIONS(148), - [anon_sym_9] = ACTIONS(148), - [anon_sym_absolutevalue] = ACTIONS(148), - [anon_sym_10] = ACTIONS(148), - [anon_sym_sqrt] = ACTIONS(148), - [anon_sym_11] = ACTIONS(148), - [anon_sym_sine] = ACTIONS(148), - [anon_sym_12] = ACTIONS(148), - [anon_sym_floor] = ACTIONS(148), - [anon_sym_13] = ACTIONS(148), - [anon_sym_ceiling] = ACTIONS(148), - [anon_sym_14] = ACTIONS(148), - [anon_sym_round] = ACTIONS(148), - [anon_sym_15] = ACTIONS(148), - [anon_sym_EQ] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_16] = ACTIONS(148), - [anon_sym_LT] = ACTIONS(150), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_17] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_18] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_19] = ACTIONS(148), - [anon_sym_PERCENT] = ACTIONS(148), - [anon_sym_20] = ACTIONS(148), - [anon_sym_modulus] = ACTIONS(148), - [anon_sym_21] = ACTIONS(148), - [anon_sym_power] = ACTIONS(148), - [anon_sym_22] = ACTIONS(148), - [anon_sym_logarithm] = ACTIONS(148), - [anon_sym_23] = ACTIONS(148), - [anon_sym_minimum] = ACTIONS(148), - [anon_sym_24] = ACTIONS(148), - [anon_sym_maximum] = ACTIONS(148), - [anon_sym_25] = ACTIONS(148), - [anon_sym_atangent] = ACTIONS(148), - [anon_sym_26] = ACTIONS(148), - [anon_sym_length] = ACTIONS(148), - [anon_sym_27] = ACTIONS(148), - [anon_sym_shape] = ACTIONS(148), - [anon_sym_28] = ACTIONS(148), - [anon_sym_range] = ACTIONS(148), - [anon_sym_29] = ACTIONS(148), - [anon_sym_first] = ACTIONS(148), - [anon_sym_30] = ACTIONS(148), - [anon_sym_reverse] = ACTIONS(148), - [anon_sym_31] = ACTIONS(148), - [anon_sym_deshape] = ACTIONS(148), - [anon_sym_32] = ACTIONS(148), - [anon_sym_bits] = ACTIONS(148), - [anon_sym_33] = ACTIONS(148), - [anon_sym_transpose] = ACTIONS(148), - [anon_sym_34] = ACTIONS(148), - [anon_sym_rise] = ACTIONS(148), - [anon_sym_35] = ACTIONS(148), - [anon_sym_fall] = ACTIONS(148), - [anon_sym_36] = ACTIONS(148), - [anon_sym_where] = ACTIONS(148), - [anon_sym_37] = ACTIONS(148), - [anon_sym_classify] = ACTIONS(148), - [anon_sym_38] = ACTIONS(148), - [anon_sym_deduplicate] = ACTIONS(148), - [anon_sym_39] = ACTIONS(148), - [anon_sym_box] = ACTIONS(148), - [anon_sym_40] = ACTIONS(148), - [anon_sym_unbox] = ACTIONS(148), - [anon_sym_41] = ACTIONS(148), - [anon_sym_match] = ACTIONS(148), - [anon_sym_42] = ACTIONS(148), - [anon_sym_couple] = ACTIONS(148), - [anon_sym_43] = ACTIONS(148), - [anon_sym_join] = ACTIONS(148), - [anon_sym_44] = ACTIONS(148), - [anon_sym_select] = ACTIONS(148), - [anon_sym_45] = ACTIONS(148), - [anon_sym_pick] = ACTIONS(148), - [anon_sym_46] = ACTIONS(148), - [anon_sym_reshape] = ACTIONS(148), - [anon_sym_47] = ACTIONS(148), - [anon_sym_take] = ACTIONS(148), - [anon_sym_48] = ACTIONS(148), - [anon_sym_drop] = ACTIONS(148), - [anon_sym_49] = ACTIONS(148), - [anon_sym_rotate] = ACTIONS(148), - [anon_sym_50] = ACTIONS(148), - [anon_sym_windows] = ACTIONS(148), - [anon_sym_51] = ACTIONS(148), - [anon_sym_keep] = ACTIONS(148), - [anon_sym_52] = ACTIONS(148), - [anon_sym_find] = ACTIONS(148), - [anon_sym_53] = ACTIONS(148), - [anon_sym_member] = ACTIONS(148), - [anon_sym_54] = ACTIONS(148), - [anon_sym_indexof] = ACTIONS(148), - [anon_sym_55] = ACTIONS(148), - [anon_sym_assert] = ACTIONS(148), - [anon_sym_56] = ACTIONS(148), - [anon_sym_wait] = ACTIONS(148), - [anon_sym_break] = ACTIONS(148), - [anon_sym_57] = ACTIONS(148), - [anon_sym_parse] = ACTIONS(148), - [anon_sym_random] = ACTIONS(148), - [anon_sym_58] = ACTIONS(148), - [anon_sym_gen] = ACTIONS(148), - [anon_sym_deal] = ACTIONS(148), - [anon_sym_tag] = ACTIONS(148), - [anon_sym_now] = ACTIONS(148), - [anon_sym_type] = ACTIONS(148), - [anon_sym_59] = ACTIONS(148), - [anon_sym_dump] = ACTIONS(148), - [anon_sym_regex] = ACTIONS(148), - [anon_sym_utf] = ACTIONS(148), - [anon_sym_rock] = ACTIONS(148), - [anon_sym_60] = ACTIONS(148), - [anon_sym_surface] = ACTIONS(148), - [anon_sym_TILDE] = ACTIONS(148), - [anon_sym_deep] = ACTIONS(148), - [anon_sym_de] = ACTIONS(150), - [anon_sym_61] = ACTIONS(148), - [anon_sym_abyss] = ACTIONS(148), - [anon_sym_ab] = ACTIONS(150), - [anon_sym_62] = ACTIONS(148), - [anon_sym_seabed] = ACTIONS(148), - [anon_sym_se] = ACTIONS(150), - [anon_sym_63] = ACTIONS(148), - [anon_sym_send] = ACTIONS(148), - [anon_sym_recv] = ACTIONS(148), - [anon_sym_tryrecv] = ACTIONS(148), - [anon_sym_reduce] = ACTIONS(152), - [anon_sym_SLASH] = ACTIONS(152), - [anon_sym_scan] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_each] = ACTIONS(152), - [anon_sym_64] = ACTIONS(152), - [anon_sym_rows] = ACTIONS(152), - [anon_sym_65] = ACTIONS(152), - [anon_sym_repeat] = ACTIONS(152), - [anon_sym_66] = ACTIONS(152), - [anon_sym_dip] = ACTIONS(152), - [anon_sym_di] = ACTIONS(154), - [anon_sym_67] = ACTIONS(152), - [anon_sym_gap] = ACTIONS(152), - [anon_sym_ga] = ACTIONS(154), - [anon_sym_68] = ACTIONS(152), - [anon_sym_oust] = ACTIONS(152), - [anon_sym_69] = ACTIONS(152), - [anon_sym_invert] = ACTIONS(152), - [anon_sym_70] = ACTIONS(152), - [anon_sym_spawn] = ACTIONS(152), - [anon_sym_pack] = ACTIONS(152), - [anon_sym_71] = ACTIONS(152), - [anon_sym_tribute] = ACTIONS(152), - [anon_sym_72] = ACTIONS(152), - [anon_sym_fold] = ACTIONS(156), - [anon_sym_73] = ACTIONS(156), - [anon_sym_distribute] = ACTIONS(156), - [anon_sym_74] = ACTIONS(156), - [anon_sym_table] = ACTIONS(156), - [anon_sym_75] = ACTIONS(156), - [anon_sym_cross] = ACTIONS(156), - [anon_sym_76] = ACTIONS(156), - [anon_sym_group] = ACTIONS(156), - [anon_sym_77] = ACTIONS(156), - [anon_sym_partition] = ACTIONS(156), - [anon_sym_78] = ACTIONS(156), - [anon_sym_both] = ACTIONS(156), - [anon_sym_79] = ACTIONS(156), - [anon_sym_bracket] = ACTIONS(156), - [anon_sym_80] = ACTIONS(156), - [anon_sym_fork] = ACTIONS(156), - [anon_sym_81] = ACTIONS(156), - [anon_sym_under] = ACTIONS(156), - [anon_sym_82] = ACTIONS(156), - [anon_sym_level] = ACTIONS(156), - [anon_sym_83] = ACTIONS(156), - [anon_sym_fill] = ACTIONS(156), - [anon_sym_84] = ACTIONS(156), - [anon_sym_bind] = ACTIONS(156), - [anon_sym_SQUOTE] = ACTIONS(156), - [anon_sym_QMARK] = ACTIONS(156), - [anon_sym_try] = ACTIONS(158), - [anon_sym_85] = ACTIONS(156), - [anon_sym_combinate] = ACTIONS(156), - [anon_sym_86] = ACTIONS(156), - [anon_sym_87] = ACTIONS(160), - [anon_sym_88] = ACTIONS(160), - [anon_sym_89] = ACTIONS(160), - [anon_sym_90] = ACTIONS(160), - [anon_sym_91] = ACTIONS(160), - [anon_sym_92] = ACTIONS(160), - [anon_sym_93] = ACTIONS(160), + [sym_identifier] = ACTIONS(121), + [sym_identifier_deprecated] = ACTIONS(121), + [sym_system] = ACTIONS(117), + [sym_comment] = ACTIONS(218), + [sym_openParen] = ACTIONS(125), + [sym_openCurly] = ACTIONS(129), + [sym_closeCurly] = ACTIONS(222), + [sym_openBracket] = ACTIONS(131), + [sym_leftArrow] = ACTIONS(220), + [anon_sym_CARET] = ACTIONS(137), + [anon_sym_eta] = ACTIONS(139), + [anon_sym_] = ACTIONS(141), + [anon_sym_pi] = ACTIONS(141), + [anon_sym_2] = ACTIONS(141), + [anon_sym_tau] = ACTIONS(139), + [anon_sym_3] = ACTIONS(141), + [anon_sym_infinity] = ACTIONS(139), + [anon_sym_4] = ACTIONS(139), + [anon_sym_e] = ACTIONS(141), + [anon_sym_NaN] = ACTIONS(141), + [anon_sym_NumProcs] = ACTIONS(141), + [anon_sym_DOT] = ACTIONS(143), + [anon_sym_COMMA] = ACTIONS(143), + [anon_sym_5] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_identity] = ACTIONS(143), + [anon_sym_id] = ACTIONS(145), + [anon_sym_6] = ACTIONS(143), + [anon_sym_not] = ACTIONS(143), + [anon_sym_7] = ACTIONS(143), + [anon_sym_sign] = ACTIONS(143), + [anon_sym_8] = ACTIONS(143), + [anon_sym_BQUOTE] = ACTIONS(143), + [anon_sym_9] = ACTIONS(143), + [anon_sym_absolutevalue] = ACTIONS(143), + [anon_sym_10] = ACTIONS(143), + [anon_sym_sqrt] = ACTIONS(143), + [anon_sym_11] = ACTIONS(143), + [anon_sym_sine] = ACTIONS(143), + [anon_sym_12] = ACTIONS(143), + [anon_sym_floor] = ACTIONS(143), + [anon_sym_13] = ACTIONS(143), + [anon_sym_ceiling] = ACTIONS(143), + [anon_sym_14] = ACTIONS(143), + [anon_sym_round] = ACTIONS(143), + [anon_sym_15] = ACTIONS(143), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_16] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_17] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_18] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_19] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_20] = ACTIONS(143), + [anon_sym_modulus] = ACTIONS(143), + [anon_sym_21] = ACTIONS(143), + [anon_sym_power] = ACTIONS(143), + [anon_sym_22] = ACTIONS(143), + [anon_sym_logarithm] = ACTIONS(143), + [anon_sym_23] = ACTIONS(143), + [anon_sym_minimum] = ACTIONS(143), + [anon_sym_24] = ACTIONS(143), + [anon_sym_maximum] = ACTIONS(143), + [anon_sym_25] = ACTIONS(143), + [anon_sym_atangent] = ACTIONS(143), + [anon_sym_26] = ACTIONS(143), + [anon_sym_length] = ACTIONS(143), + [anon_sym_27] = ACTIONS(143), + [anon_sym_shape] = ACTIONS(143), + [anon_sym_28] = ACTIONS(143), + [anon_sym_range] = ACTIONS(143), + [anon_sym_29] = ACTIONS(143), + [anon_sym_first] = ACTIONS(143), + [anon_sym_30] = ACTIONS(143), + [anon_sym_reverse] = ACTIONS(143), + [anon_sym_31] = ACTIONS(143), + [anon_sym_deshape] = ACTIONS(143), + [anon_sym_32] = ACTIONS(143), + [anon_sym_bits] = ACTIONS(143), + [anon_sym_33] = ACTIONS(143), + [anon_sym_transpose] = ACTIONS(143), + [anon_sym_34] = ACTIONS(143), + [anon_sym_rise] = ACTIONS(143), + [anon_sym_35] = ACTIONS(143), + [anon_sym_fall] = ACTIONS(143), + [anon_sym_36] = ACTIONS(143), + [anon_sym_where] = ACTIONS(143), + [anon_sym_37] = ACTIONS(143), + [anon_sym_classify] = ACTIONS(143), + [anon_sym_38] = ACTIONS(143), + [anon_sym_deduplicate] = ACTIONS(143), + [anon_sym_39] = ACTIONS(143), + [anon_sym_box] = ACTIONS(143), + [anon_sym_40] = ACTIONS(143), + [anon_sym_unbox] = ACTIONS(143), + [anon_sym_41] = ACTIONS(143), + [anon_sym_match] = ACTIONS(143), + [anon_sym_42] = ACTIONS(143), + [anon_sym_couple] = ACTIONS(143), + [anon_sym_43] = ACTIONS(143), + [anon_sym_join] = ACTIONS(143), + [anon_sym_44] = ACTIONS(143), + [anon_sym_select] = ACTIONS(143), + [anon_sym_45] = ACTIONS(143), + [anon_sym_pick] = ACTIONS(143), + [anon_sym_46] = ACTIONS(143), + [anon_sym_reshape] = ACTIONS(143), + [anon_sym_47] = ACTIONS(143), + [anon_sym_take] = ACTIONS(143), + [anon_sym_48] = ACTIONS(143), + [anon_sym_drop] = ACTIONS(143), + [anon_sym_49] = ACTIONS(143), + [anon_sym_rotate] = ACTIONS(143), + [anon_sym_50] = ACTIONS(143), + [anon_sym_windows] = ACTIONS(143), + [anon_sym_51] = ACTIONS(143), + [anon_sym_keep] = ACTIONS(143), + [anon_sym_52] = ACTIONS(143), + [anon_sym_find] = ACTIONS(143), + [anon_sym_53] = ACTIONS(143), + [anon_sym_member] = ACTIONS(143), + [anon_sym_54] = ACTIONS(143), + [anon_sym_indexof] = ACTIONS(143), + [anon_sym_55] = ACTIONS(143), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_56] = ACTIONS(143), + [anon_sym_wait] = ACTIONS(143), + [anon_sym_break] = ACTIONS(143), + [anon_sym_57] = ACTIONS(143), + [anon_sym_parse] = ACTIONS(143), + [anon_sym_random] = ACTIONS(143), + [anon_sym_58] = ACTIONS(143), + [anon_sym_gen] = ACTIONS(143), + [anon_sym_deal] = ACTIONS(143), + [anon_sym_tag] = ACTIONS(143), + [anon_sym_now] = ACTIONS(143), + [anon_sym_type] = ACTIONS(143), + [anon_sym_59] = ACTIONS(143), + [anon_sym_dump] = ACTIONS(143), + [anon_sym_regex] = ACTIONS(143), + [anon_sym_utf] = ACTIONS(143), + [anon_sym_rock] = ACTIONS(143), + [anon_sym_60] = ACTIONS(143), + [anon_sym_surface] = ACTIONS(143), + [anon_sym_TILDE] = ACTIONS(143), + [anon_sym_deep] = ACTIONS(143), + [anon_sym_de] = ACTIONS(145), + [anon_sym_61] = ACTIONS(143), + [anon_sym_abyss] = ACTIONS(143), + [anon_sym_ab] = ACTIONS(145), + [anon_sym_62] = ACTIONS(143), + [anon_sym_seabed] = ACTIONS(143), + [anon_sym_se] = ACTIONS(145), + [anon_sym_63] = ACTIONS(143), + [anon_sym_send] = ACTIONS(143), + [anon_sym_recv] = ACTIONS(143), + [anon_sym_tryrecv] = ACTIONS(143), + [anon_sym_reduce] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_scan] = ACTIONS(147), + [anon_sym_BSLASH] = ACTIONS(147), + [anon_sym_each] = ACTIONS(147), + [anon_sym_64] = ACTIONS(147), + [anon_sym_rows] = ACTIONS(147), + [anon_sym_65] = ACTIONS(147), + [anon_sym_repeat] = ACTIONS(147), + [anon_sym_66] = ACTIONS(147), + [anon_sym_dip] = ACTIONS(147), + [anon_sym_67] = ACTIONS(147), + [anon_sym_gap] = ACTIONS(147), + [anon_sym_68] = ACTIONS(147), + [anon_sym_69] = ACTIONS(147), + [anon_sym_invert] = ACTIONS(147), + [anon_sym_70] = ACTIONS(147), + [anon_sym_spawn] = ACTIONS(147), + [anon_sym_pack] = ACTIONS(147), + [anon_sym_71] = ACTIONS(147), + [anon_sym_tribute] = ACTIONS(147), + [anon_sym_72] = ACTIONS(147), + [anon_sym_reach] = ACTIONS(147), + [anon_sym_fold] = ACTIONS(149), + [anon_sym_73] = ACTIONS(149), + [anon_sym_distribute] = ACTIONS(149), + [anon_sym_74] = ACTIONS(149), + [anon_sym_table] = ACTIONS(149), + [anon_sym_75] = ACTIONS(149), + [anon_sym_cross] = ACTIONS(149), + [anon_sym_76] = ACTIONS(149), + [anon_sym_group] = ACTIONS(149), + [anon_sym_77] = ACTIONS(149), + [anon_sym_partition] = ACTIONS(149), + [anon_sym_78] = ACTIONS(149), + [anon_sym_both] = ACTIONS(149), + [anon_sym_79] = ACTIONS(149), + [anon_sym_bracket] = ACTIONS(149), + [anon_sym_80] = ACTIONS(149), + [anon_sym_fork] = ACTIONS(149), + [anon_sym_81] = ACTIONS(149), + [anon_sym_under] = ACTIONS(149), + [anon_sym_82] = ACTIONS(149), + [anon_sym_level] = ACTIONS(149), + [anon_sym_83] = ACTIONS(149), + [anon_sym_fill] = ACTIONS(149), + [anon_sym_84] = ACTIONS(149), + [anon_sym_bind] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_try] = ACTIONS(151), + [anon_sym_85] = ACTIONS(149), + [anon_sym_combinate] = ACTIONS(149), + [anon_sym_86] = ACTIONS(149), + [anon_sym_87] = ACTIONS(153), + [anon_sym_88] = ACTIONS(153), + [anon_sym_89] = ACTIONS(153), + [anon_sym_90] = ACTIONS(153), + [anon_sym_91] = ACTIONS(153), + [anon_sym_92] = ACTIONS(153), + [anon_sym_93] = ACTIONS(153), [sym__whitespace] = ACTIONS(5), - [sym__end_of_line] = ACTIONS(250), + [sym__end_of_line] = ACTIONS(240), }, [21] = { [sym_segment] = STATE(156), @@ -11947,7 +11887,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_modifier2] = STATE(83), [sym_deprecated] = STATE(94), [aux_sym_array_repeat1] = STATE(55), - [ts_builtin_sym_end] = ACTIONS(132), + [ts_builtin_sym_end] = ACTIONS(127), [aux_sym_number_token1] = ACTIONS(7), [anon_sym_os] = ACTIONS(9), [anon_sym_Family] = ACTIONS(9), @@ -11966,7 +11906,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_openParen] = ACTIONS(23), [sym_openCurly] = ACTIONS(25), [sym_openBracket] = ACTIONS(27), - [sym_underscore] = ACTIONS(138), + [sym_underscore] = ACTIONS(133), [sym_leftArrow] = ACTIONS(29), [anon_sym_CARET] = ACTIONS(31), [anon_sym_eta] = ACTIONS(33), @@ -12134,12 +12074,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_repeat] = ACTIONS(41), [anon_sym_66] = ACTIONS(41), [anon_sym_dip] = ACTIONS(41), - [anon_sym_di] = ACTIONS(43), [anon_sym_67] = ACTIONS(41), [anon_sym_gap] = ACTIONS(41), - [anon_sym_ga] = ACTIONS(43), [anon_sym_68] = ACTIONS(41), - [anon_sym_oust] = ACTIONS(41), [anon_sym_69] = ACTIONS(41), [anon_sym_invert] = ACTIONS(41), [anon_sym_70] = ACTIONS(41), @@ -12148,46 +12085,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_71] = ACTIONS(41), [anon_sym_tribute] = ACTIONS(41), [anon_sym_72] = ACTIONS(41), - [anon_sym_fold] = ACTIONS(45), - [anon_sym_73] = ACTIONS(45), - [anon_sym_distribute] = ACTIONS(45), - [anon_sym_74] = ACTIONS(45), - [anon_sym_table] = ACTIONS(45), - [anon_sym_75] = ACTIONS(45), - [anon_sym_cross] = ACTIONS(45), - [anon_sym_76] = ACTIONS(45), - [anon_sym_group] = ACTIONS(45), - [anon_sym_77] = ACTIONS(45), - [anon_sym_partition] = ACTIONS(45), - [anon_sym_78] = ACTIONS(45), - [anon_sym_both] = ACTIONS(45), - [anon_sym_79] = ACTIONS(45), - [anon_sym_bracket] = ACTIONS(45), - [anon_sym_80] = ACTIONS(45), - [anon_sym_fork] = ACTIONS(45), - [anon_sym_81] = ACTIONS(45), - [anon_sym_under] = ACTIONS(45), - [anon_sym_82] = ACTIONS(45), - [anon_sym_level] = ACTIONS(45), - [anon_sym_83] = ACTIONS(45), - [anon_sym_fill] = ACTIONS(45), - [anon_sym_84] = ACTIONS(45), - [anon_sym_bind] = ACTIONS(45), - [anon_sym_SQUOTE] = ACTIONS(45), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_try] = ACTIONS(47), - [anon_sym_85] = ACTIONS(45), - [anon_sym_combinate] = ACTIONS(45), - [anon_sym_86] = ACTIONS(45), - [anon_sym_87] = ACTIONS(49), - [anon_sym_88] = ACTIONS(49), - [anon_sym_89] = ACTIONS(49), - [anon_sym_90] = ACTIONS(49), - [anon_sym_91] = ACTIONS(49), - [anon_sym_92] = ACTIONS(49), - [anon_sym_93] = ACTIONS(49), + [anon_sym_reach] = ACTIONS(41), + [anon_sym_fold] = ACTIONS(43), + [anon_sym_73] = ACTIONS(43), + [anon_sym_distribute] = ACTIONS(43), + [anon_sym_74] = ACTIONS(43), + [anon_sym_table] = ACTIONS(43), + [anon_sym_75] = ACTIONS(43), + [anon_sym_cross] = ACTIONS(43), + [anon_sym_76] = ACTIONS(43), + [anon_sym_group] = ACTIONS(43), + [anon_sym_77] = ACTIONS(43), + [anon_sym_partition] = ACTIONS(43), + [anon_sym_78] = ACTIONS(43), + [anon_sym_both] = ACTIONS(43), + [anon_sym_79] = ACTIONS(43), + [anon_sym_bracket] = ACTIONS(43), + [anon_sym_80] = ACTIONS(43), + [anon_sym_fork] = ACTIONS(43), + [anon_sym_81] = ACTIONS(43), + [anon_sym_under] = ACTIONS(43), + [anon_sym_82] = ACTIONS(43), + [anon_sym_level] = ACTIONS(43), + [anon_sym_83] = ACTIONS(43), + [anon_sym_fill] = ACTIONS(43), + [anon_sym_84] = ACTIONS(43), + [anon_sym_bind] = ACTIONS(43), + [anon_sym_SQUOTE] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_85] = ACTIONS(43), + [anon_sym_combinate] = ACTIONS(43), + [anon_sym_86] = ACTIONS(43), + [anon_sym_87] = ACTIONS(47), + [anon_sym_88] = ACTIONS(47), + [anon_sym_89] = ACTIONS(47), + [anon_sym_90] = ACTIONS(47), + [anon_sym_91] = ACTIONS(47), + [anon_sym_92] = ACTIONS(47), + [anon_sym_93] = ACTIONS(47), [sym__whitespace] = ACTIONS(5), - [sym__end_of_line] = ACTIONS(132), + [sym__end_of_line] = ACTIONS(127), }, [22] = { [sym_segment] = STATE(104), @@ -12209,244 +12147,242 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_deprecated] = STATE(61), [aux_sym_array_repeat1] = STATE(57), [aux_sym_array_repeat2] = STATE(16), - [aux_sym_number_token1] = ACTIONS(116), - [anon_sym_os] = ACTIONS(118), - [anon_sym_Family] = ACTIONS(118), - [anon_sym_Arch] = ACTIONS(118), - [anon_sym_ExeExt] = ACTIONS(118), - [anon_sym_PllExt] = ACTIONS(118), - [anon_sym_Sep] = ACTIONS(118), - [aux_sym_character_token1] = ACTIONS(120), - [sym_string] = ACTIONS(122), - [sym_multiLineString] = ACTIONS(122), + [aux_sym_number_token1] = ACTIONS(111), + [anon_sym_os] = ACTIONS(113), + [anon_sym_Family] = ACTIONS(113), + [anon_sym_Arch] = ACTIONS(113), + [anon_sym_ExeExt] = ACTIONS(113), + [anon_sym_PllExt] = ACTIONS(113), + [anon_sym_Sep] = ACTIONS(113), + [aux_sym_character_token1] = ACTIONS(115), + [sym_string] = ACTIONS(117), + [sym_multiLineString] = ACTIONS(117), [anon_sym_PIPE] = ACTIONS(15), - [sym_identifier] = ACTIONS(126), - [sym_identifier_deprecated] = ACTIONS(126), - [sym_system] = ACTIONS(122), - [sym_comment] = ACTIONS(228), - [sym_openParen] = ACTIONS(130), - [sym_openCurly] = ACTIONS(134), - [sym_openBracket] = ACTIONS(136), - [sym_closeBracket] = ACTIONS(236), - [sym_leftArrow] = ACTIONS(230), - [anon_sym_CARET] = ACTIONS(142), - [anon_sym_eta] = ACTIONS(144), - [anon_sym_] = ACTIONS(146), - [anon_sym_pi] = ACTIONS(146), - [anon_sym_2] = ACTIONS(146), - [anon_sym_tau] = ACTIONS(144), - [anon_sym_3] = ACTIONS(146), - [anon_sym_infinity] = ACTIONS(144), - [anon_sym_4] = ACTIONS(144), - [anon_sym_e] = ACTIONS(146), - [anon_sym_NaN] = ACTIONS(146), - [anon_sym_NumProcs] = ACTIONS(146), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_COMMA] = ACTIONS(148), - [anon_sym_5] = ACTIONS(148), - [anon_sym_SEMI] = ACTIONS(148), - [anon_sym_identity] = ACTIONS(148), - [anon_sym_id] = ACTIONS(150), - [anon_sym_6] = ACTIONS(148), - [anon_sym_not] = ACTIONS(148), - [anon_sym_7] = ACTIONS(148), - [anon_sym_sign] = ACTIONS(148), - [anon_sym_8] = ACTIONS(148), - [anon_sym_BQUOTE] = ACTIONS(148), - [anon_sym_9] = ACTIONS(148), - [anon_sym_absolutevalue] = ACTIONS(148), - [anon_sym_10] = ACTIONS(148), - [anon_sym_sqrt] = ACTIONS(148), - [anon_sym_11] = ACTIONS(148), - [anon_sym_sine] = ACTIONS(148), - [anon_sym_12] = ACTIONS(148), - [anon_sym_floor] = ACTIONS(148), - [anon_sym_13] = ACTIONS(148), - [anon_sym_ceiling] = ACTIONS(148), - [anon_sym_14] = ACTIONS(148), - [anon_sym_round] = ACTIONS(148), - [anon_sym_15] = ACTIONS(148), - [anon_sym_EQ] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_16] = ACTIONS(148), - [anon_sym_LT] = ACTIONS(150), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_17] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_18] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_19] = ACTIONS(148), - [anon_sym_PERCENT] = ACTIONS(148), - [anon_sym_20] = ACTIONS(148), - [anon_sym_modulus] = ACTIONS(148), - [anon_sym_21] = ACTIONS(148), - [anon_sym_power] = ACTIONS(148), - [anon_sym_22] = ACTIONS(148), - [anon_sym_logarithm] = ACTIONS(148), - [anon_sym_23] = ACTIONS(148), - [anon_sym_minimum] = ACTIONS(148), - [anon_sym_24] = ACTIONS(148), - [anon_sym_maximum] = ACTIONS(148), - [anon_sym_25] = ACTIONS(148), - [anon_sym_atangent] = ACTIONS(148), - [anon_sym_26] = ACTIONS(148), - [anon_sym_length] = ACTIONS(148), - [anon_sym_27] = ACTIONS(148), - [anon_sym_shape] = ACTIONS(148), - [anon_sym_28] = ACTIONS(148), - [anon_sym_range] = ACTIONS(148), - [anon_sym_29] = ACTIONS(148), - [anon_sym_first] = ACTIONS(148), - [anon_sym_30] = ACTIONS(148), - [anon_sym_reverse] = ACTIONS(148), - [anon_sym_31] = ACTIONS(148), - [anon_sym_deshape] = ACTIONS(148), - [anon_sym_32] = ACTIONS(148), - [anon_sym_bits] = ACTIONS(148), - [anon_sym_33] = ACTIONS(148), - [anon_sym_transpose] = ACTIONS(148), - [anon_sym_34] = ACTIONS(148), - [anon_sym_rise] = ACTIONS(148), - [anon_sym_35] = ACTIONS(148), - [anon_sym_fall] = ACTIONS(148), - [anon_sym_36] = ACTIONS(148), - [anon_sym_where] = ACTIONS(148), - [anon_sym_37] = ACTIONS(148), - [anon_sym_classify] = ACTIONS(148), - [anon_sym_38] = ACTIONS(148), - [anon_sym_deduplicate] = ACTIONS(148), - [anon_sym_39] = ACTIONS(148), - [anon_sym_box] = ACTIONS(148), - [anon_sym_40] = ACTIONS(148), - [anon_sym_unbox] = ACTIONS(148), - [anon_sym_41] = ACTIONS(148), - [anon_sym_match] = ACTIONS(148), - [anon_sym_42] = ACTIONS(148), - [anon_sym_couple] = ACTIONS(148), - [anon_sym_43] = ACTIONS(148), - [anon_sym_join] = ACTIONS(148), - [anon_sym_44] = ACTIONS(148), - [anon_sym_select] = ACTIONS(148), - [anon_sym_45] = ACTIONS(148), - [anon_sym_pick] = ACTIONS(148), - [anon_sym_46] = ACTIONS(148), - [anon_sym_reshape] = ACTIONS(148), - [anon_sym_47] = ACTIONS(148), - [anon_sym_take] = ACTIONS(148), - [anon_sym_48] = ACTIONS(148), - [anon_sym_drop] = ACTIONS(148), - [anon_sym_49] = ACTIONS(148), - [anon_sym_rotate] = ACTIONS(148), - [anon_sym_50] = ACTIONS(148), - [anon_sym_windows] = ACTIONS(148), - [anon_sym_51] = ACTIONS(148), - [anon_sym_keep] = ACTIONS(148), - [anon_sym_52] = ACTIONS(148), - [anon_sym_find] = ACTIONS(148), - [anon_sym_53] = ACTIONS(148), - [anon_sym_member] = ACTIONS(148), - [anon_sym_54] = ACTIONS(148), - [anon_sym_indexof] = ACTIONS(148), - [anon_sym_55] = ACTIONS(148), - [anon_sym_assert] = ACTIONS(148), - [anon_sym_56] = ACTIONS(148), - [anon_sym_wait] = ACTIONS(148), - [anon_sym_break] = ACTIONS(148), - [anon_sym_57] = ACTIONS(148), - [anon_sym_parse] = ACTIONS(148), - [anon_sym_random] = ACTIONS(148), - [anon_sym_58] = ACTIONS(148), - [anon_sym_gen] = ACTIONS(148), - [anon_sym_deal] = ACTIONS(148), - [anon_sym_tag] = ACTIONS(148), - [anon_sym_now] = ACTIONS(148), - [anon_sym_type] = ACTIONS(148), - [anon_sym_59] = ACTIONS(148), - [anon_sym_dump] = ACTIONS(148), - [anon_sym_regex] = ACTIONS(148), - [anon_sym_utf] = ACTIONS(148), - [anon_sym_rock] = ACTIONS(148), - [anon_sym_60] = ACTIONS(148), - [anon_sym_surface] = ACTIONS(148), - [anon_sym_TILDE] = ACTIONS(148), - [anon_sym_deep] = ACTIONS(148), - [anon_sym_de] = ACTIONS(150), - [anon_sym_61] = ACTIONS(148), - [anon_sym_abyss] = ACTIONS(148), - [anon_sym_ab] = ACTIONS(150), - [anon_sym_62] = ACTIONS(148), - [anon_sym_seabed] = ACTIONS(148), - [anon_sym_se] = ACTIONS(150), - [anon_sym_63] = ACTIONS(148), - [anon_sym_send] = ACTIONS(148), - [anon_sym_recv] = ACTIONS(148), - [anon_sym_tryrecv] = ACTIONS(148), - [anon_sym_reduce] = ACTIONS(152), - [anon_sym_SLASH] = ACTIONS(152), - [anon_sym_scan] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_each] = ACTIONS(152), - [anon_sym_64] = ACTIONS(152), - [anon_sym_rows] = ACTIONS(152), - [anon_sym_65] = ACTIONS(152), - [anon_sym_repeat] = ACTIONS(152), - [anon_sym_66] = ACTIONS(152), - [anon_sym_dip] = ACTIONS(152), - [anon_sym_di] = ACTIONS(154), - [anon_sym_67] = ACTIONS(152), - [anon_sym_gap] = ACTIONS(152), - [anon_sym_ga] = ACTIONS(154), - [anon_sym_68] = ACTIONS(152), - [anon_sym_oust] = ACTIONS(152), - [anon_sym_69] = ACTIONS(152), - [anon_sym_invert] = ACTIONS(152), - [anon_sym_70] = ACTIONS(152), - [anon_sym_spawn] = ACTIONS(152), - [anon_sym_pack] = ACTIONS(152), - [anon_sym_71] = ACTIONS(152), - [anon_sym_tribute] = ACTIONS(152), - [anon_sym_72] = ACTIONS(152), - [anon_sym_fold] = ACTIONS(156), - [anon_sym_73] = ACTIONS(156), - [anon_sym_distribute] = ACTIONS(156), - [anon_sym_74] = ACTIONS(156), - [anon_sym_table] = ACTIONS(156), - [anon_sym_75] = ACTIONS(156), - [anon_sym_cross] = ACTIONS(156), - [anon_sym_76] = ACTIONS(156), - [anon_sym_group] = ACTIONS(156), - [anon_sym_77] = ACTIONS(156), - [anon_sym_partition] = ACTIONS(156), - [anon_sym_78] = ACTIONS(156), - [anon_sym_both] = ACTIONS(156), - [anon_sym_79] = ACTIONS(156), - [anon_sym_bracket] = ACTIONS(156), - [anon_sym_80] = ACTIONS(156), - [anon_sym_fork] = ACTIONS(156), - [anon_sym_81] = ACTIONS(156), - [anon_sym_under] = ACTIONS(156), - [anon_sym_82] = ACTIONS(156), - [anon_sym_level] = ACTIONS(156), - [anon_sym_83] = ACTIONS(156), - [anon_sym_fill] = ACTIONS(156), - [anon_sym_84] = ACTIONS(156), - [anon_sym_bind] = ACTIONS(156), - [anon_sym_SQUOTE] = ACTIONS(156), - [anon_sym_QMARK] = ACTIONS(156), - [anon_sym_try] = ACTIONS(158), - [anon_sym_85] = ACTIONS(156), - [anon_sym_combinate] = ACTIONS(156), - [anon_sym_86] = ACTIONS(156), - [anon_sym_87] = ACTIONS(160), - [anon_sym_88] = ACTIONS(160), - [anon_sym_89] = ACTIONS(160), - [anon_sym_90] = ACTIONS(160), - [anon_sym_91] = ACTIONS(160), - [anon_sym_92] = ACTIONS(160), - [anon_sym_93] = ACTIONS(160), + [sym_identifier] = ACTIONS(121), + [sym_identifier_deprecated] = ACTIONS(121), + [sym_system] = ACTIONS(117), + [sym_comment] = ACTIONS(218), + [sym_openParen] = ACTIONS(125), + [sym_openCurly] = ACTIONS(129), + [sym_openBracket] = ACTIONS(131), + [sym_closeBracket] = ACTIONS(226), + [sym_leftArrow] = ACTIONS(220), + [anon_sym_CARET] = ACTIONS(137), + [anon_sym_eta] = ACTIONS(139), + [anon_sym_] = ACTIONS(141), + [anon_sym_pi] = ACTIONS(141), + [anon_sym_2] = ACTIONS(141), + [anon_sym_tau] = ACTIONS(139), + [anon_sym_3] = ACTIONS(141), + [anon_sym_infinity] = ACTIONS(139), + [anon_sym_4] = ACTIONS(139), + [anon_sym_e] = ACTIONS(141), + [anon_sym_NaN] = ACTIONS(141), + [anon_sym_NumProcs] = ACTIONS(141), + [anon_sym_DOT] = ACTIONS(143), + [anon_sym_COMMA] = ACTIONS(143), + [anon_sym_5] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_identity] = ACTIONS(143), + [anon_sym_id] = ACTIONS(145), + [anon_sym_6] = ACTIONS(143), + [anon_sym_not] = ACTIONS(143), + [anon_sym_7] = ACTIONS(143), + [anon_sym_sign] = ACTIONS(143), + [anon_sym_8] = ACTIONS(143), + [anon_sym_BQUOTE] = ACTIONS(143), + [anon_sym_9] = ACTIONS(143), + [anon_sym_absolutevalue] = ACTIONS(143), + [anon_sym_10] = ACTIONS(143), + [anon_sym_sqrt] = ACTIONS(143), + [anon_sym_11] = ACTIONS(143), + [anon_sym_sine] = ACTIONS(143), + [anon_sym_12] = ACTIONS(143), + [anon_sym_floor] = ACTIONS(143), + [anon_sym_13] = ACTIONS(143), + [anon_sym_ceiling] = ACTIONS(143), + [anon_sym_14] = ACTIONS(143), + [anon_sym_round] = ACTIONS(143), + [anon_sym_15] = ACTIONS(143), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_16] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_17] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_18] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_19] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_20] = ACTIONS(143), + [anon_sym_modulus] = ACTIONS(143), + [anon_sym_21] = ACTIONS(143), + [anon_sym_power] = ACTIONS(143), + [anon_sym_22] = ACTIONS(143), + [anon_sym_logarithm] = ACTIONS(143), + [anon_sym_23] = ACTIONS(143), + [anon_sym_minimum] = ACTIONS(143), + [anon_sym_24] = ACTIONS(143), + [anon_sym_maximum] = ACTIONS(143), + [anon_sym_25] = ACTIONS(143), + [anon_sym_atangent] = ACTIONS(143), + [anon_sym_26] = ACTIONS(143), + [anon_sym_length] = ACTIONS(143), + [anon_sym_27] = ACTIONS(143), + [anon_sym_shape] = ACTIONS(143), + [anon_sym_28] = ACTIONS(143), + [anon_sym_range] = ACTIONS(143), + [anon_sym_29] = ACTIONS(143), + [anon_sym_first] = ACTIONS(143), + [anon_sym_30] = ACTIONS(143), + [anon_sym_reverse] = ACTIONS(143), + [anon_sym_31] = ACTIONS(143), + [anon_sym_deshape] = ACTIONS(143), + [anon_sym_32] = ACTIONS(143), + [anon_sym_bits] = ACTIONS(143), + [anon_sym_33] = ACTIONS(143), + [anon_sym_transpose] = ACTIONS(143), + [anon_sym_34] = ACTIONS(143), + [anon_sym_rise] = ACTIONS(143), + [anon_sym_35] = ACTIONS(143), + [anon_sym_fall] = ACTIONS(143), + [anon_sym_36] = ACTIONS(143), + [anon_sym_where] = ACTIONS(143), + [anon_sym_37] = ACTIONS(143), + [anon_sym_classify] = ACTIONS(143), + [anon_sym_38] = ACTIONS(143), + [anon_sym_deduplicate] = ACTIONS(143), + [anon_sym_39] = ACTIONS(143), + [anon_sym_box] = ACTIONS(143), + [anon_sym_40] = ACTIONS(143), + [anon_sym_unbox] = ACTIONS(143), + [anon_sym_41] = ACTIONS(143), + [anon_sym_match] = ACTIONS(143), + [anon_sym_42] = ACTIONS(143), + [anon_sym_couple] = ACTIONS(143), + [anon_sym_43] = ACTIONS(143), + [anon_sym_join] = ACTIONS(143), + [anon_sym_44] = ACTIONS(143), + [anon_sym_select] = ACTIONS(143), + [anon_sym_45] = ACTIONS(143), + [anon_sym_pick] = ACTIONS(143), + [anon_sym_46] = ACTIONS(143), + [anon_sym_reshape] = ACTIONS(143), + [anon_sym_47] = ACTIONS(143), + [anon_sym_take] = ACTIONS(143), + [anon_sym_48] = ACTIONS(143), + [anon_sym_drop] = ACTIONS(143), + [anon_sym_49] = ACTIONS(143), + [anon_sym_rotate] = ACTIONS(143), + [anon_sym_50] = ACTIONS(143), + [anon_sym_windows] = ACTIONS(143), + [anon_sym_51] = ACTIONS(143), + [anon_sym_keep] = ACTIONS(143), + [anon_sym_52] = ACTIONS(143), + [anon_sym_find] = ACTIONS(143), + [anon_sym_53] = ACTIONS(143), + [anon_sym_member] = ACTIONS(143), + [anon_sym_54] = ACTIONS(143), + [anon_sym_indexof] = ACTIONS(143), + [anon_sym_55] = ACTIONS(143), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_56] = ACTIONS(143), + [anon_sym_wait] = ACTIONS(143), + [anon_sym_break] = ACTIONS(143), + [anon_sym_57] = ACTIONS(143), + [anon_sym_parse] = ACTIONS(143), + [anon_sym_random] = ACTIONS(143), + [anon_sym_58] = ACTIONS(143), + [anon_sym_gen] = ACTIONS(143), + [anon_sym_deal] = ACTIONS(143), + [anon_sym_tag] = ACTIONS(143), + [anon_sym_now] = ACTIONS(143), + [anon_sym_type] = ACTIONS(143), + [anon_sym_59] = ACTIONS(143), + [anon_sym_dump] = ACTIONS(143), + [anon_sym_regex] = ACTIONS(143), + [anon_sym_utf] = ACTIONS(143), + [anon_sym_rock] = ACTIONS(143), + [anon_sym_60] = ACTIONS(143), + [anon_sym_surface] = ACTIONS(143), + [anon_sym_TILDE] = ACTIONS(143), + [anon_sym_deep] = ACTIONS(143), + [anon_sym_de] = ACTIONS(145), + [anon_sym_61] = ACTIONS(143), + [anon_sym_abyss] = ACTIONS(143), + [anon_sym_ab] = ACTIONS(145), + [anon_sym_62] = ACTIONS(143), + [anon_sym_seabed] = ACTIONS(143), + [anon_sym_se] = ACTIONS(145), + [anon_sym_63] = ACTIONS(143), + [anon_sym_send] = ACTIONS(143), + [anon_sym_recv] = ACTIONS(143), + [anon_sym_tryrecv] = ACTIONS(143), + [anon_sym_reduce] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_scan] = ACTIONS(147), + [anon_sym_BSLASH] = ACTIONS(147), + [anon_sym_each] = ACTIONS(147), + [anon_sym_64] = ACTIONS(147), + [anon_sym_rows] = ACTIONS(147), + [anon_sym_65] = ACTIONS(147), + [anon_sym_repeat] = ACTIONS(147), + [anon_sym_66] = ACTIONS(147), + [anon_sym_dip] = ACTIONS(147), + [anon_sym_67] = ACTIONS(147), + [anon_sym_gap] = ACTIONS(147), + [anon_sym_68] = ACTIONS(147), + [anon_sym_69] = ACTIONS(147), + [anon_sym_invert] = ACTIONS(147), + [anon_sym_70] = ACTIONS(147), + [anon_sym_spawn] = ACTIONS(147), + [anon_sym_pack] = ACTIONS(147), + [anon_sym_71] = ACTIONS(147), + [anon_sym_tribute] = ACTIONS(147), + [anon_sym_72] = ACTIONS(147), + [anon_sym_reach] = ACTIONS(147), + [anon_sym_fold] = ACTIONS(149), + [anon_sym_73] = ACTIONS(149), + [anon_sym_distribute] = ACTIONS(149), + [anon_sym_74] = ACTIONS(149), + [anon_sym_table] = ACTIONS(149), + [anon_sym_75] = ACTIONS(149), + [anon_sym_cross] = ACTIONS(149), + [anon_sym_76] = ACTIONS(149), + [anon_sym_group] = ACTIONS(149), + [anon_sym_77] = ACTIONS(149), + [anon_sym_partition] = ACTIONS(149), + [anon_sym_78] = ACTIONS(149), + [anon_sym_both] = ACTIONS(149), + [anon_sym_79] = ACTIONS(149), + [anon_sym_bracket] = ACTIONS(149), + [anon_sym_80] = ACTIONS(149), + [anon_sym_fork] = ACTIONS(149), + [anon_sym_81] = ACTIONS(149), + [anon_sym_under] = ACTIONS(149), + [anon_sym_82] = ACTIONS(149), + [anon_sym_level] = ACTIONS(149), + [anon_sym_83] = ACTIONS(149), + [anon_sym_fill] = ACTIONS(149), + [anon_sym_84] = ACTIONS(149), + [anon_sym_bind] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_try] = ACTIONS(151), + [anon_sym_85] = ACTIONS(149), + [anon_sym_combinate] = ACTIONS(149), + [anon_sym_86] = ACTIONS(149), + [anon_sym_87] = ACTIONS(153), + [anon_sym_88] = ACTIONS(153), + [anon_sym_89] = ACTIONS(153), + [anon_sym_90] = ACTIONS(153), + [anon_sym_91] = ACTIONS(153), + [anon_sym_92] = ACTIONS(153), + [anon_sym_93] = ACTIONS(153), [sym__whitespace] = ACTIONS(5), [sym__end_of_line] = ACTIONS(5), }, @@ -12470,244 +12406,242 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_deprecated] = STATE(61), [aux_sym_array_repeat1] = STATE(57), [aux_sym_array_repeat2] = STATE(30), - [aux_sym_number_token1] = ACTIONS(116), - [anon_sym_os] = ACTIONS(118), - [anon_sym_Family] = ACTIONS(118), - [anon_sym_Arch] = ACTIONS(118), - [anon_sym_ExeExt] = ACTIONS(118), - [anon_sym_PllExt] = ACTIONS(118), - [anon_sym_Sep] = ACTIONS(118), - [aux_sym_character_token1] = ACTIONS(120), - [sym_string] = ACTIONS(122), - [sym_multiLineString] = ACTIONS(122), + [aux_sym_number_token1] = ACTIONS(111), + [anon_sym_os] = ACTIONS(113), + [anon_sym_Family] = ACTIONS(113), + [anon_sym_Arch] = ACTIONS(113), + [anon_sym_ExeExt] = ACTIONS(113), + [anon_sym_PllExt] = ACTIONS(113), + [anon_sym_Sep] = ACTIONS(113), + [aux_sym_character_token1] = ACTIONS(115), + [sym_string] = ACTIONS(117), + [sym_multiLineString] = ACTIONS(117), [anon_sym_PIPE] = ACTIONS(15), - [sym_identifier] = ACTIONS(126), - [sym_identifier_deprecated] = ACTIONS(126), - [sym_system] = ACTIONS(122), - [sym_comment] = ACTIONS(228), - [sym_openParen] = ACTIONS(130), - [sym_openCurly] = ACTIONS(134), - [sym_closeCurly] = ACTIONS(252), - [sym_openBracket] = ACTIONS(136), - [sym_leftArrow] = ACTIONS(230), - [anon_sym_CARET] = ACTIONS(142), - [anon_sym_eta] = ACTIONS(144), - [anon_sym_] = ACTIONS(146), - [anon_sym_pi] = ACTIONS(146), - [anon_sym_2] = ACTIONS(146), - [anon_sym_tau] = ACTIONS(144), - [anon_sym_3] = ACTIONS(146), - [anon_sym_infinity] = ACTIONS(144), - [anon_sym_4] = ACTIONS(144), - [anon_sym_e] = ACTIONS(146), - [anon_sym_NaN] = ACTIONS(146), - [anon_sym_NumProcs] = ACTIONS(146), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_COMMA] = ACTIONS(148), - [anon_sym_5] = ACTIONS(148), - [anon_sym_SEMI] = ACTIONS(148), - [anon_sym_identity] = ACTIONS(148), - [anon_sym_id] = ACTIONS(150), - [anon_sym_6] = ACTIONS(148), - [anon_sym_not] = ACTIONS(148), - [anon_sym_7] = ACTIONS(148), - [anon_sym_sign] = ACTIONS(148), - [anon_sym_8] = ACTIONS(148), - [anon_sym_BQUOTE] = ACTIONS(148), - [anon_sym_9] = ACTIONS(148), - [anon_sym_absolutevalue] = ACTIONS(148), - [anon_sym_10] = ACTIONS(148), - [anon_sym_sqrt] = ACTIONS(148), - [anon_sym_11] = ACTIONS(148), - [anon_sym_sine] = ACTIONS(148), - [anon_sym_12] = ACTIONS(148), - [anon_sym_floor] = ACTIONS(148), - [anon_sym_13] = ACTIONS(148), - [anon_sym_ceiling] = ACTIONS(148), - [anon_sym_14] = ACTIONS(148), - [anon_sym_round] = ACTIONS(148), - [anon_sym_15] = ACTIONS(148), - [anon_sym_EQ] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_16] = ACTIONS(148), - [anon_sym_LT] = ACTIONS(150), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_17] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_18] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_19] = ACTIONS(148), - [anon_sym_PERCENT] = ACTIONS(148), - [anon_sym_20] = ACTIONS(148), - [anon_sym_modulus] = ACTIONS(148), - [anon_sym_21] = ACTIONS(148), - [anon_sym_power] = ACTIONS(148), - [anon_sym_22] = ACTIONS(148), - [anon_sym_logarithm] = ACTIONS(148), - [anon_sym_23] = ACTIONS(148), - [anon_sym_minimum] = ACTIONS(148), - [anon_sym_24] = ACTIONS(148), - [anon_sym_maximum] = ACTIONS(148), - [anon_sym_25] = ACTIONS(148), - [anon_sym_atangent] = ACTIONS(148), - [anon_sym_26] = ACTIONS(148), - [anon_sym_length] = ACTIONS(148), - [anon_sym_27] = ACTIONS(148), - [anon_sym_shape] = ACTIONS(148), - [anon_sym_28] = ACTIONS(148), - [anon_sym_range] = ACTIONS(148), - [anon_sym_29] = ACTIONS(148), - [anon_sym_first] = ACTIONS(148), - [anon_sym_30] = ACTIONS(148), - [anon_sym_reverse] = ACTIONS(148), - [anon_sym_31] = ACTIONS(148), - [anon_sym_deshape] = ACTIONS(148), - [anon_sym_32] = ACTIONS(148), - [anon_sym_bits] = ACTIONS(148), - [anon_sym_33] = ACTIONS(148), - [anon_sym_transpose] = ACTIONS(148), - [anon_sym_34] = ACTIONS(148), - [anon_sym_rise] = ACTIONS(148), - [anon_sym_35] = ACTIONS(148), - [anon_sym_fall] = ACTIONS(148), - [anon_sym_36] = ACTIONS(148), - [anon_sym_where] = ACTIONS(148), - [anon_sym_37] = ACTIONS(148), - [anon_sym_classify] = ACTIONS(148), - [anon_sym_38] = ACTIONS(148), - [anon_sym_deduplicate] = ACTIONS(148), - [anon_sym_39] = ACTIONS(148), - [anon_sym_box] = ACTIONS(148), - [anon_sym_40] = ACTIONS(148), - [anon_sym_unbox] = ACTIONS(148), - [anon_sym_41] = ACTIONS(148), - [anon_sym_match] = ACTIONS(148), - [anon_sym_42] = ACTIONS(148), - [anon_sym_couple] = ACTIONS(148), - [anon_sym_43] = ACTIONS(148), - [anon_sym_join] = ACTIONS(148), - [anon_sym_44] = ACTIONS(148), - [anon_sym_select] = ACTIONS(148), - [anon_sym_45] = ACTIONS(148), - [anon_sym_pick] = ACTIONS(148), - [anon_sym_46] = ACTIONS(148), - [anon_sym_reshape] = ACTIONS(148), - [anon_sym_47] = ACTIONS(148), - [anon_sym_take] = ACTIONS(148), - [anon_sym_48] = ACTIONS(148), - [anon_sym_drop] = ACTIONS(148), - [anon_sym_49] = ACTIONS(148), - [anon_sym_rotate] = ACTIONS(148), - [anon_sym_50] = ACTIONS(148), - [anon_sym_windows] = ACTIONS(148), - [anon_sym_51] = ACTIONS(148), - [anon_sym_keep] = ACTIONS(148), - [anon_sym_52] = ACTIONS(148), - [anon_sym_find] = ACTIONS(148), - [anon_sym_53] = ACTIONS(148), - [anon_sym_member] = ACTIONS(148), - [anon_sym_54] = ACTIONS(148), - [anon_sym_indexof] = ACTIONS(148), - [anon_sym_55] = ACTIONS(148), - [anon_sym_assert] = ACTIONS(148), - [anon_sym_56] = ACTIONS(148), - [anon_sym_wait] = ACTIONS(148), - [anon_sym_break] = ACTIONS(148), - [anon_sym_57] = ACTIONS(148), - [anon_sym_parse] = ACTIONS(148), - [anon_sym_random] = ACTIONS(148), - [anon_sym_58] = ACTIONS(148), - [anon_sym_gen] = ACTIONS(148), - [anon_sym_deal] = ACTIONS(148), - [anon_sym_tag] = ACTIONS(148), - [anon_sym_now] = ACTIONS(148), - [anon_sym_type] = ACTIONS(148), - [anon_sym_59] = ACTIONS(148), - [anon_sym_dump] = ACTIONS(148), - [anon_sym_regex] = ACTIONS(148), - [anon_sym_utf] = ACTIONS(148), - [anon_sym_rock] = ACTIONS(148), - [anon_sym_60] = ACTIONS(148), - [anon_sym_surface] = ACTIONS(148), - [anon_sym_TILDE] = ACTIONS(148), - [anon_sym_deep] = ACTIONS(148), - [anon_sym_de] = ACTIONS(150), - [anon_sym_61] = ACTIONS(148), - [anon_sym_abyss] = ACTIONS(148), - [anon_sym_ab] = ACTIONS(150), - [anon_sym_62] = ACTIONS(148), - [anon_sym_seabed] = ACTIONS(148), - [anon_sym_se] = ACTIONS(150), - [anon_sym_63] = ACTIONS(148), - [anon_sym_send] = ACTIONS(148), - [anon_sym_recv] = ACTIONS(148), - [anon_sym_tryrecv] = ACTIONS(148), - [anon_sym_reduce] = ACTIONS(152), - [anon_sym_SLASH] = ACTIONS(152), - [anon_sym_scan] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_each] = ACTIONS(152), - [anon_sym_64] = ACTIONS(152), - [anon_sym_rows] = ACTIONS(152), - [anon_sym_65] = ACTIONS(152), - [anon_sym_repeat] = ACTIONS(152), - [anon_sym_66] = ACTIONS(152), - [anon_sym_dip] = ACTIONS(152), - [anon_sym_di] = ACTIONS(154), - [anon_sym_67] = ACTIONS(152), - [anon_sym_gap] = ACTIONS(152), - [anon_sym_ga] = ACTIONS(154), - [anon_sym_68] = ACTIONS(152), - [anon_sym_oust] = ACTIONS(152), - [anon_sym_69] = ACTIONS(152), - [anon_sym_invert] = ACTIONS(152), - [anon_sym_70] = ACTIONS(152), - [anon_sym_spawn] = ACTIONS(152), - [anon_sym_pack] = ACTIONS(152), - [anon_sym_71] = ACTIONS(152), - [anon_sym_tribute] = ACTIONS(152), - [anon_sym_72] = ACTIONS(152), - [anon_sym_fold] = ACTIONS(156), - [anon_sym_73] = ACTIONS(156), - [anon_sym_distribute] = ACTIONS(156), - [anon_sym_74] = ACTIONS(156), - [anon_sym_table] = ACTIONS(156), - [anon_sym_75] = ACTIONS(156), - [anon_sym_cross] = ACTIONS(156), - [anon_sym_76] = ACTIONS(156), - [anon_sym_group] = ACTIONS(156), - [anon_sym_77] = ACTIONS(156), - [anon_sym_partition] = ACTIONS(156), - [anon_sym_78] = ACTIONS(156), - [anon_sym_both] = ACTIONS(156), - [anon_sym_79] = ACTIONS(156), - [anon_sym_bracket] = ACTIONS(156), - [anon_sym_80] = ACTIONS(156), - [anon_sym_fork] = ACTIONS(156), - [anon_sym_81] = ACTIONS(156), - [anon_sym_under] = ACTIONS(156), - [anon_sym_82] = ACTIONS(156), - [anon_sym_level] = ACTIONS(156), - [anon_sym_83] = ACTIONS(156), - [anon_sym_fill] = ACTIONS(156), - [anon_sym_84] = ACTIONS(156), - [anon_sym_bind] = ACTIONS(156), - [anon_sym_SQUOTE] = ACTIONS(156), - [anon_sym_QMARK] = ACTIONS(156), - [anon_sym_try] = ACTIONS(158), - [anon_sym_85] = ACTIONS(156), - [anon_sym_combinate] = ACTIONS(156), - [anon_sym_86] = ACTIONS(156), - [anon_sym_87] = ACTIONS(160), - [anon_sym_88] = ACTIONS(160), - [anon_sym_89] = ACTIONS(160), - [anon_sym_90] = ACTIONS(160), - [anon_sym_91] = ACTIONS(160), - [anon_sym_92] = ACTIONS(160), - [anon_sym_93] = ACTIONS(160), + [sym_identifier] = ACTIONS(121), + [sym_identifier_deprecated] = ACTIONS(121), + [sym_system] = ACTIONS(117), + [sym_comment] = ACTIONS(218), + [sym_openParen] = ACTIONS(125), + [sym_openCurly] = ACTIONS(129), + [sym_closeCurly] = ACTIONS(242), + [sym_openBracket] = ACTIONS(131), + [sym_leftArrow] = ACTIONS(220), + [anon_sym_CARET] = ACTIONS(137), + [anon_sym_eta] = ACTIONS(139), + [anon_sym_] = ACTIONS(141), + [anon_sym_pi] = ACTIONS(141), + [anon_sym_2] = ACTIONS(141), + [anon_sym_tau] = ACTIONS(139), + [anon_sym_3] = ACTIONS(141), + [anon_sym_infinity] = ACTIONS(139), + [anon_sym_4] = ACTIONS(139), + [anon_sym_e] = ACTIONS(141), + [anon_sym_NaN] = ACTIONS(141), + [anon_sym_NumProcs] = ACTIONS(141), + [anon_sym_DOT] = ACTIONS(143), + [anon_sym_COMMA] = ACTIONS(143), + [anon_sym_5] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_identity] = ACTIONS(143), + [anon_sym_id] = ACTIONS(145), + [anon_sym_6] = ACTIONS(143), + [anon_sym_not] = ACTIONS(143), + [anon_sym_7] = ACTIONS(143), + [anon_sym_sign] = ACTIONS(143), + [anon_sym_8] = ACTIONS(143), + [anon_sym_BQUOTE] = ACTIONS(143), + [anon_sym_9] = ACTIONS(143), + [anon_sym_absolutevalue] = ACTIONS(143), + [anon_sym_10] = ACTIONS(143), + [anon_sym_sqrt] = ACTIONS(143), + [anon_sym_11] = ACTIONS(143), + [anon_sym_sine] = ACTIONS(143), + [anon_sym_12] = ACTIONS(143), + [anon_sym_floor] = ACTIONS(143), + [anon_sym_13] = ACTIONS(143), + [anon_sym_ceiling] = ACTIONS(143), + [anon_sym_14] = ACTIONS(143), + [anon_sym_round] = ACTIONS(143), + [anon_sym_15] = ACTIONS(143), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_16] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_17] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_18] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_19] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_20] = ACTIONS(143), + [anon_sym_modulus] = ACTIONS(143), + [anon_sym_21] = ACTIONS(143), + [anon_sym_power] = ACTIONS(143), + [anon_sym_22] = ACTIONS(143), + [anon_sym_logarithm] = ACTIONS(143), + [anon_sym_23] = ACTIONS(143), + [anon_sym_minimum] = ACTIONS(143), + [anon_sym_24] = ACTIONS(143), + [anon_sym_maximum] = ACTIONS(143), + [anon_sym_25] = ACTIONS(143), + [anon_sym_atangent] = ACTIONS(143), + [anon_sym_26] = ACTIONS(143), + [anon_sym_length] = ACTIONS(143), + [anon_sym_27] = ACTIONS(143), + [anon_sym_shape] = ACTIONS(143), + [anon_sym_28] = ACTIONS(143), + [anon_sym_range] = ACTIONS(143), + [anon_sym_29] = ACTIONS(143), + [anon_sym_first] = ACTIONS(143), + [anon_sym_30] = ACTIONS(143), + [anon_sym_reverse] = ACTIONS(143), + [anon_sym_31] = ACTIONS(143), + [anon_sym_deshape] = ACTIONS(143), + [anon_sym_32] = ACTIONS(143), + [anon_sym_bits] = ACTIONS(143), + [anon_sym_33] = ACTIONS(143), + [anon_sym_transpose] = ACTIONS(143), + [anon_sym_34] = ACTIONS(143), + [anon_sym_rise] = ACTIONS(143), + [anon_sym_35] = ACTIONS(143), + [anon_sym_fall] = ACTIONS(143), + [anon_sym_36] = ACTIONS(143), + [anon_sym_where] = ACTIONS(143), + [anon_sym_37] = ACTIONS(143), + [anon_sym_classify] = ACTIONS(143), + [anon_sym_38] = ACTIONS(143), + [anon_sym_deduplicate] = ACTIONS(143), + [anon_sym_39] = ACTIONS(143), + [anon_sym_box] = ACTIONS(143), + [anon_sym_40] = ACTIONS(143), + [anon_sym_unbox] = ACTIONS(143), + [anon_sym_41] = ACTIONS(143), + [anon_sym_match] = ACTIONS(143), + [anon_sym_42] = ACTIONS(143), + [anon_sym_couple] = ACTIONS(143), + [anon_sym_43] = ACTIONS(143), + [anon_sym_join] = ACTIONS(143), + [anon_sym_44] = ACTIONS(143), + [anon_sym_select] = ACTIONS(143), + [anon_sym_45] = ACTIONS(143), + [anon_sym_pick] = ACTIONS(143), + [anon_sym_46] = ACTIONS(143), + [anon_sym_reshape] = ACTIONS(143), + [anon_sym_47] = ACTIONS(143), + [anon_sym_take] = ACTIONS(143), + [anon_sym_48] = ACTIONS(143), + [anon_sym_drop] = ACTIONS(143), + [anon_sym_49] = ACTIONS(143), + [anon_sym_rotate] = ACTIONS(143), + [anon_sym_50] = ACTIONS(143), + [anon_sym_windows] = ACTIONS(143), + [anon_sym_51] = ACTIONS(143), + [anon_sym_keep] = ACTIONS(143), + [anon_sym_52] = ACTIONS(143), + [anon_sym_find] = ACTIONS(143), + [anon_sym_53] = ACTIONS(143), + [anon_sym_member] = ACTIONS(143), + [anon_sym_54] = ACTIONS(143), + [anon_sym_indexof] = ACTIONS(143), + [anon_sym_55] = ACTIONS(143), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_56] = ACTIONS(143), + [anon_sym_wait] = ACTIONS(143), + [anon_sym_break] = ACTIONS(143), + [anon_sym_57] = ACTIONS(143), + [anon_sym_parse] = ACTIONS(143), + [anon_sym_random] = ACTIONS(143), + [anon_sym_58] = ACTIONS(143), + [anon_sym_gen] = ACTIONS(143), + [anon_sym_deal] = ACTIONS(143), + [anon_sym_tag] = ACTIONS(143), + [anon_sym_now] = ACTIONS(143), + [anon_sym_type] = ACTIONS(143), + [anon_sym_59] = ACTIONS(143), + [anon_sym_dump] = ACTIONS(143), + [anon_sym_regex] = ACTIONS(143), + [anon_sym_utf] = ACTIONS(143), + [anon_sym_rock] = ACTIONS(143), + [anon_sym_60] = ACTIONS(143), + [anon_sym_surface] = ACTIONS(143), + [anon_sym_TILDE] = ACTIONS(143), + [anon_sym_deep] = ACTIONS(143), + [anon_sym_de] = ACTIONS(145), + [anon_sym_61] = ACTIONS(143), + [anon_sym_abyss] = ACTIONS(143), + [anon_sym_ab] = ACTIONS(145), + [anon_sym_62] = ACTIONS(143), + [anon_sym_seabed] = ACTIONS(143), + [anon_sym_se] = ACTIONS(145), + [anon_sym_63] = ACTIONS(143), + [anon_sym_send] = ACTIONS(143), + [anon_sym_recv] = ACTIONS(143), + [anon_sym_tryrecv] = ACTIONS(143), + [anon_sym_reduce] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_scan] = ACTIONS(147), + [anon_sym_BSLASH] = ACTIONS(147), + [anon_sym_each] = ACTIONS(147), + [anon_sym_64] = ACTIONS(147), + [anon_sym_rows] = ACTIONS(147), + [anon_sym_65] = ACTIONS(147), + [anon_sym_repeat] = ACTIONS(147), + [anon_sym_66] = ACTIONS(147), + [anon_sym_dip] = ACTIONS(147), + [anon_sym_67] = ACTIONS(147), + [anon_sym_gap] = ACTIONS(147), + [anon_sym_68] = ACTIONS(147), + [anon_sym_69] = ACTIONS(147), + [anon_sym_invert] = ACTIONS(147), + [anon_sym_70] = ACTIONS(147), + [anon_sym_spawn] = ACTIONS(147), + [anon_sym_pack] = ACTIONS(147), + [anon_sym_71] = ACTIONS(147), + [anon_sym_tribute] = ACTIONS(147), + [anon_sym_72] = ACTIONS(147), + [anon_sym_reach] = ACTIONS(147), + [anon_sym_fold] = ACTIONS(149), + [anon_sym_73] = ACTIONS(149), + [anon_sym_distribute] = ACTIONS(149), + [anon_sym_74] = ACTIONS(149), + [anon_sym_table] = ACTIONS(149), + [anon_sym_75] = ACTIONS(149), + [anon_sym_cross] = ACTIONS(149), + [anon_sym_76] = ACTIONS(149), + [anon_sym_group] = ACTIONS(149), + [anon_sym_77] = ACTIONS(149), + [anon_sym_partition] = ACTIONS(149), + [anon_sym_78] = ACTIONS(149), + [anon_sym_both] = ACTIONS(149), + [anon_sym_79] = ACTIONS(149), + [anon_sym_bracket] = ACTIONS(149), + [anon_sym_80] = ACTIONS(149), + [anon_sym_fork] = ACTIONS(149), + [anon_sym_81] = ACTIONS(149), + [anon_sym_under] = ACTIONS(149), + [anon_sym_82] = ACTIONS(149), + [anon_sym_level] = ACTIONS(149), + [anon_sym_83] = ACTIONS(149), + [anon_sym_fill] = ACTIONS(149), + [anon_sym_84] = ACTIONS(149), + [anon_sym_bind] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_try] = ACTIONS(151), + [anon_sym_85] = ACTIONS(149), + [anon_sym_combinate] = ACTIONS(149), + [anon_sym_86] = ACTIONS(149), + [anon_sym_87] = ACTIONS(153), + [anon_sym_88] = ACTIONS(153), + [anon_sym_89] = ACTIONS(153), + [anon_sym_90] = ACTIONS(153), + [anon_sym_91] = ACTIONS(153), + [anon_sym_92] = ACTIONS(153), + [anon_sym_93] = ACTIONS(153), [sym__whitespace] = ACTIONS(5), [sym__end_of_line] = ACTIONS(5), }, @@ -12731,244 +12665,242 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_deprecated] = STATE(61), [aux_sym_array_repeat1] = STATE(57), [aux_sym_array_repeat2] = STATE(2), - [aux_sym_number_token1] = ACTIONS(116), - [anon_sym_os] = ACTIONS(118), - [anon_sym_Family] = ACTIONS(118), - [anon_sym_Arch] = ACTIONS(118), - [anon_sym_ExeExt] = ACTIONS(118), - [anon_sym_PllExt] = ACTIONS(118), - [anon_sym_Sep] = ACTIONS(118), - [aux_sym_character_token1] = ACTIONS(120), - [sym_string] = ACTIONS(122), - [sym_multiLineString] = ACTIONS(122), + [aux_sym_number_token1] = ACTIONS(111), + [anon_sym_os] = ACTIONS(113), + [anon_sym_Family] = ACTIONS(113), + [anon_sym_Arch] = ACTIONS(113), + [anon_sym_ExeExt] = ACTIONS(113), + [anon_sym_PllExt] = ACTIONS(113), + [anon_sym_Sep] = ACTIONS(113), + [aux_sym_character_token1] = ACTIONS(115), + [sym_string] = ACTIONS(117), + [sym_multiLineString] = ACTIONS(117), [anon_sym_PIPE] = ACTIONS(15), - [sym_identifier] = ACTIONS(126), - [sym_identifier_deprecated] = ACTIONS(126), - [sym_system] = ACTIONS(122), - [sym_comment] = ACTIONS(228), - [sym_openParen] = ACTIONS(130), - [sym_openCurly] = ACTIONS(134), - [sym_closeCurly] = ACTIONS(236), - [sym_openBracket] = ACTIONS(136), - [sym_leftArrow] = ACTIONS(230), - [anon_sym_CARET] = ACTIONS(142), - [anon_sym_eta] = ACTIONS(144), - [anon_sym_] = ACTIONS(146), - [anon_sym_pi] = ACTIONS(146), - [anon_sym_2] = ACTIONS(146), - [anon_sym_tau] = ACTIONS(144), - [anon_sym_3] = ACTIONS(146), - [anon_sym_infinity] = ACTIONS(144), - [anon_sym_4] = ACTIONS(144), - [anon_sym_e] = ACTIONS(146), - [anon_sym_NaN] = ACTIONS(146), - [anon_sym_NumProcs] = ACTIONS(146), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_COMMA] = ACTIONS(148), - [anon_sym_5] = ACTIONS(148), - [anon_sym_SEMI] = ACTIONS(148), - [anon_sym_identity] = ACTIONS(148), - [anon_sym_id] = ACTIONS(150), - [anon_sym_6] = ACTIONS(148), - [anon_sym_not] = ACTIONS(148), - [anon_sym_7] = ACTIONS(148), - [anon_sym_sign] = ACTIONS(148), - [anon_sym_8] = ACTIONS(148), - [anon_sym_BQUOTE] = ACTIONS(148), - [anon_sym_9] = ACTIONS(148), - [anon_sym_absolutevalue] = ACTIONS(148), - [anon_sym_10] = ACTIONS(148), - [anon_sym_sqrt] = ACTIONS(148), - [anon_sym_11] = ACTIONS(148), - [anon_sym_sine] = ACTIONS(148), - [anon_sym_12] = ACTIONS(148), - [anon_sym_floor] = ACTIONS(148), - [anon_sym_13] = ACTIONS(148), - [anon_sym_ceiling] = ACTIONS(148), - [anon_sym_14] = ACTIONS(148), - [anon_sym_round] = ACTIONS(148), - [anon_sym_15] = ACTIONS(148), - [anon_sym_EQ] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_16] = ACTIONS(148), - [anon_sym_LT] = ACTIONS(150), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_17] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_18] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_19] = ACTIONS(148), - [anon_sym_PERCENT] = ACTIONS(148), - [anon_sym_20] = ACTIONS(148), - [anon_sym_modulus] = ACTIONS(148), - [anon_sym_21] = ACTIONS(148), - [anon_sym_power] = ACTIONS(148), - [anon_sym_22] = ACTIONS(148), - [anon_sym_logarithm] = ACTIONS(148), - [anon_sym_23] = ACTIONS(148), - [anon_sym_minimum] = ACTIONS(148), - [anon_sym_24] = ACTIONS(148), - [anon_sym_maximum] = ACTIONS(148), - [anon_sym_25] = ACTIONS(148), - [anon_sym_atangent] = ACTIONS(148), - [anon_sym_26] = ACTIONS(148), - [anon_sym_length] = ACTIONS(148), - [anon_sym_27] = ACTIONS(148), - [anon_sym_shape] = ACTIONS(148), - [anon_sym_28] = ACTIONS(148), - [anon_sym_range] = ACTIONS(148), - [anon_sym_29] = ACTIONS(148), - [anon_sym_first] = ACTIONS(148), - [anon_sym_30] = ACTIONS(148), - [anon_sym_reverse] = ACTIONS(148), - [anon_sym_31] = ACTIONS(148), - [anon_sym_deshape] = ACTIONS(148), - [anon_sym_32] = ACTIONS(148), - [anon_sym_bits] = ACTIONS(148), - [anon_sym_33] = ACTIONS(148), - [anon_sym_transpose] = ACTIONS(148), - [anon_sym_34] = ACTIONS(148), - [anon_sym_rise] = ACTIONS(148), - [anon_sym_35] = ACTIONS(148), - [anon_sym_fall] = ACTIONS(148), - [anon_sym_36] = ACTIONS(148), - [anon_sym_where] = ACTIONS(148), - [anon_sym_37] = ACTIONS(148), - [anon_sym_classify] = ACTIONS(148), - [anon_sym_38] = ACTIONS(148), - [anon_sym_deduplicate] = ACTIONS(148), - [anon_sym_39] = ACTIONS(148), - [anon_sym_box] = ACTIONS(148), - [anon_sym_40] = ACTIONS(148), - [anon_sym_unbox] = ACTIONS(148), - [anon_sym_41] = ACTIONS(148), - [anon_sym_match] = ACTIONS(148), - [anon_sym_42] = ACTIONS(148), - [anon_sym_couple] = ACTIONS(148), - [anon_sym_43] = ACTIONS(148), - [anon_sym_join] = ACTIONS(148), - [anon_sym_44] = ACTIONS(148), - [anon_sym_select] = ACTIONS(148), - [anon_sym_45] = ACTIONS(148), - [anon_sym_pick] = ACTIONS(148), - [anon_sym_46] = ACTIONS(148), - [anon_sym_reshape] = ACTIONS(148), - [anon_sym_47] = ACTIONS(148), - [anon_sym_take] = ACTIONS(148), - [anon_sym_48] = ACTIONS(148), - [anon_sym_drop] = ACTIONS(148), - [anon_sym_49] = ACTIONS(148), - [anon_sym_rotate] = ACTIONS(148), - [anon_sym_50] = ACTIONS(148), - [anon_sym_windows] = ACTIONS(148), - [anon_sym_51] = ACTIONS(148), - [anon_sym_keep] = ACTIONS(148), - [anon_sym_52] = ACTIONS(148), - [anon_sym_find] = ACTIONS(148), - [anon_sym_53] = ACTIONS(148), - [anon_sym_member] = ACTIONS(148), - [anon_sym_54] = ACTIONS(148), - [anon_sym_indexof] = ACTIONS(148), - [anon_sym_55] = ACTIONS(148), - [anon_sym_assert] = ACTIONS(148), - [anon_sym_56] = ACTIONS(148), - [anon_sym_wait] = ACTIONS(148), - [anon_sym_break] = ACTIONS(148), - [anon_sym_57] = ACTIONS(148), - [anon_sym_parse] = ACTIONS(148), - [anon_sym_random] = ACTIONS(148), - [anon_sym_58] = ACTIONS(148), - [anon_sym_gen] = ACTIONS(148), - [anon_sym_deal] = ACTIONS(148), - [anon_sym_tag] = ACTIONS(148), - [anon_sym_now] = ACTIONS(148), - [anon_sym_type] = ACTIONS(148), - [anon_sym_59] = ACTIONS(148), - [anon_sym_dump] = ACTIONS(148), - [anon_sym_regex] = ACTIONS(148), - [anon_sym_utf] = ACTIONS(148), - [anon_sym_rock] = ACTIONS(148), - [anon_sym_60] = ACTIONS(148), - [anon_sym_surface] = ACTIONS(148), - [anon_sym_TILDE] = ACTIONS(148), - [anon_sym_deep] = ACTIONS(148), - [anon_sym_de] = ACTIONS(150), - [anon_sym_61] = ACTIONS(148), - [anon_sym_abyss] = ACTIONS(148), - [anon_sym_ab] = ACTIONS(150), - [anon_sym_62] = ACTIONS(148), - [anon_sym_seabed] = ACTIONS(148), - [anon_sym_se] = ACTIONS(150), - [anon_sym_63] = ACTIONS(148), - [anon_sym_send] = ACTIONS(148), - [anon_sym_recv] = ACTIONS(148), - [anon_sym_tryrecv] = ACTIONS(148), - [anon_sym_reduce] = ACTIONS(152), - [anon_sym_SLASH] = ACTIONS(152), - [anon_sym_scan] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_each] = ACTIONS(152), - [anon_sym_64] = ACTIONS(152), - [anon_sym_rows] = ACTIONS(152), - [anon_sym_65] = ACTIONS(152), - [anon_sym_repeat] = ACTIONS(152), - [anon_sym_66] = ACTIONS(152), - [anon_sym_dip] = ACTIONS(152), - [anon_sym_di] = ACTIONS(154), - [anon_sym_67] = ACTIONS(152), - [anon_sym_gap] = ACTIONS(152), - [anon_sym_ga] = ACTIONS(154), - [anon_sym_68] = ACTIONS(152), - [anon_sym_oust] = ACTIONS(152), - [anon_sym_69] = ACTIONS(152), - [anon_sym_invert] = ACTIONS(152), - [anon_sym_70] = ACTIONS(152), - [anon_sym_spawn] = ACTIONS(152), - [anon_sym_pack] = ACTIONS(152), - [anon_sym_71] = ACTIONS(152), - [anon_sym_tribute] = ACTIONS(152), - [anon_sym_72] = ACTIONS(152), - [anon_sym_fold] = ACTIONS(156), - [anon_sym_73] = ACTIONS(156), - [anon_sym_distribute] = ACTIONS(156), - [anon_sym_74] = ACTIONS(156), - [anon_sym_table] = ACTIONS(156), - [anon_sym_75] = ACTIONS(156), - [anon_sym_cross] = ACTIONS(156), - [anon_sym_76] = ACTIONS(156), - [anon_sym_group] = ACTIONS(156), - [anon_sym_77] = ACTIONS(156), - [anon_sym_partition] = ACTIONS(156), - [anon_sym_78] = ACTIONS(156), - [anon_sym_both] = ACTIONS(156), - [anon_sym_79] = ACTIONS(156), - [anon_sym_bracket] = ACTIONS(156), - [anon_sym_80] = ACTIONS(156), - [anon_sym_fork] = ACTIONS(156), - [anon_sym_81] = ACTIONS(156), - [anon_sym_under] = ACTIONS(156), - [anon_sym_82] = ACTIONS(156), - [anon_sym_level] = ACTIONS(156), - [anon_sym_83] = ACTIONS(156), - [anon_sym_fill] = ACTIONS(156), - [anon_sym_84] = ACTIONS(156), - [anon_sym_bind] = ACTIONS(156), - [anon_sym_SQUOTE] = ACTIONS(156), - [anon_sym_QMARK] = ACTIONS(156), - [anon_sym_try] = ACTIONS(158), - [anon_sym_85] = ACTIONS(156), - [anon_sym_combinate] = ACTIONS(156), - [anon_sym_86] = ACTIONS(156), - [anon_sym_87] = ACTIONS(160), - [anon_sym_88] = ACTIONS(160), - [anon_sym_89] = ACTIONS(160), - [anon_sym_90] = ACTIONS(160), - [anon_sym_91] = ACTIONS(160), - [anon_sym_92] = ACTIONS(160), - [anon_sym_93] = ACTIONS(160), + [sym_identifier] = ACTIONS(121), + [sym_identifier_deprecated] = ACTIONS(121), + [sym_system] = ACTIONS(117), + [sym_comment] = ACTIONS(218), + [sym_openParen] = ACTIONS(125), + [sym_openCurly] = ACTIONS(129), + [sym_closeCurly] = ACTIONS(226), + [sym_openBracket] = ACTIONS(131), + [sym_leftArrow] = ACTIONS(220), + [anon_sym_CARET] = ACTIONS(137), + [anon_sym_eta] = ACTIONS(139), + [anon_sym_] = ACTIONS(141), + [anon_sym_pi] = ACTIONS(141), + [anon_sym_2] = ACTIONS(141), + [anon_sym_tau] = ACTIONS(139), + [anon_sym_3] = ACTIONS(141), + [anon_sym_infinity] = ACTIONS(139), + [anon_sym_4] = ACTIONS(139), + [anon_sym_e] = ACTIONS(141), + [anon_sym_NaN] = ACTIONS(141), + [anon_sym_NumProcs] = ACTIONS(141), + [anon_sym_DOT] = ACTIONS(143), + [anon_sym_COMMA] = ACTIONS(143), + [anon_sym_5] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_identity] = ACTIONS(143), + [anon_sym_id] = ACTIONS(145), + [anon_sym_6] = ACTIONS(143), + [anon_sym_not] = ACTIONS(143), + [anon_sym_7] = ACTIONS(143), + [anon_sym_sign] = ACTIONS(143), + [anon_sym_8] = ACTIONS(143), + [anon_sym_BQUOTE] = ACTIONS(143), + [anon_sym_9] = ACTIONS(143), + [anon_sym_absolutevalue] = ACTIONS(143), + [anon_sym_10] = ACTIONS(143), + [anon_sym_sqrt] = ACTIONS(143), + [anon_sym_11] = ACTIONS(143), + [anon_sym_sine] = ACTIONS(143), + [anon_sym_12] = ACTIONS(143), + [anon_sym_floor] = ACTIONS(143), + [anon_sym_13] = ACTIONS(143), + [anon_sym_ceiling] = ACTIONS(143), + [anon_sym_14] = ACTIONS(143), + [anon_sym_round] = ACTIONS(143), + [anon_sym_15] = ACTIONS(143), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_16] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_17] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_18] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_19] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_20] = ACTIONS(143), + [anon_sym_modulus] = ACTIONS(143), + [anon_sym_21] = ACTIONS(143), + [anon_sym_power] = ACTIONS(143), + [anon_sym_22] = ACTIONS(143), + [anon_sym_logarithm] = ACTIONS(143), + [anon_sym_23] = ACTIONS(143), + [anon_sym_minimum] = ACTIONS(143), + [anon_sym_24] = ACTIONS(143), + [anon_sym_maximum] = ACTIONS(143), + [anon_sym_25] = ACTIONS(143), + [anon_sym_atangent] = ACTIONS(143), + [anon_sym_26] = ACTIONS(143), + [anon_sym_length] = ACTIONS(143), + [anon_sym_27] = ACTIONS(143), + [anon_sym_shape] = ACTIONS(143), + [anon_sym_28] = ACTIONS(143), + [anon_sym_range] = ACTIONS(143), + [anon_sym_29] = ACTIONS(143), + [anon_sym_first] = ACTIONS(143), + [anon_sym_30] = ACTIONS(143), + [anon_sym_reverse] = ACTIONS(143), + [anon_sym_31] = ACTIONS(143), + [anon_sym_deshape] = ACTIONS(143), + [anon_sym_32] = ACTIONS(143), + [anon_sym_bits] = ACTIONS(143), + [anon_sym_33] = ACTIONS(143), + [anon_sym_transpose] = ACTIONS(143), + [anon_sym_34] = ACTIONS(143), + [anon_sym_rise] = ACTIONS(143), + [anon_sym_35] = ACTIONS(143), + [anon_sym_fall] = ACTIONS(143), + [anon_sym_36] = ACTIONS(143), + [anon_sym_where] = ACTIONS(143), + [anon_sym_37] = ACTIONS(143), + [anon_sym_classify] = ACTIONS(143), + [anon_sym_38] = ACTIONS(143), + [anon_sym_deduplicate] = ACTIONS(143), + [anon_sym_39] = ACTIONS(143), + [anon_sym_box] = ACTIONS(143), + [anon_sym_40] = ACTIONS(143), + [anon_sym_unbox] = ACTIONS(143), + [anon_sym_41] = ACTIONS(143), + [anon_sym_match] = ACTIONS(143), + [anon_sym_42] = ACTIONS(143), + [anon_sym_couple] = ACTIONS(143), + [anon_sym_43] = ACTIONS(143), + [anon_sym_join] = ACTIONS(143), + [anon_sym_44] = ACTIONS(143), + [anon_sym_select] = ACTIONS(143), + [anon_sym_45] = ACTIONS(143), + [anon_sym_pick] = ACTIONS(143), + [anon_sym_46] = ACTIONS(143), + [anon_sym_reshape] = ACTIONS(143), + [anon_sym_47] = ACTIONS(143), + [anon_sym_take] = ACTIONS(143), + [anon_sym_48] = ACTIONS(143), + [anon_sym_drop] = ACTIONS(143), + [anon_sym_49] = ACTIONS(143), + [anon_sym_rotate] = ACTIONS(143), + [anon_sym_50] = ACTIONS(143), + [anon_sym_windows] = ACTIONS(143), + [anon_sym_51] = ACTIONS(143), + [anon_sym_keep] = ACTIONS(143), + [anon_sym_52] = ACTIONS(143), + [anon_sym_find] = ACTIONS(143), + [anon_sym_53] = ACTIONS(143), + [anon_sym_member] = ACTIONS(143), + [anon_sym_54] = ACTIONS(143), + [anon_sym_indexof] = ACTIONS(143), + [anon_sym_55] = ACTIONS(143), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_56] = ACTIONS(143), + [anon_sym_wait] = ACTIONS(143), + [anon_sym_break] = ACTIONS(143), + [anon_sym_57] = ACTIONS(143), + [anon_sym_parse] = ACTIONS(143), + [anon_sym_random] = ACTIONS(143), + [anon_sym_58] = ACTIONS(143), + [anon_sym_gen] = ACTIONS(143), + [anon_sym_deal] = ACTIONS(143), + [anon_sym_tag] = ACTIONS(143), + [anon_sym_now] = ACTIONS(143), + [anon_sym_type] = ACTIONS(143), + [anon_sym_59] = ACTIONS(143), + [anon_sym_dump] = ACTIONS(143), + [anon_sym_regex] = ACTIONS(143), + [anon_sym_utf] = ACTIONS(143), + [anon_sym_rock] = ACTIONS(143), + [anon_sym_60] = ACTIONS(143), + [anon_sym_surface] = ACTIONS(143), + [anon_sym_TILDE] = ACTIONS(143), + [anon_sym_deep] = ACTIONS(143), + [anon_sym_de] = ACTIONS(145), + [anon_sym_61] = ACTIONS(143), + [anon_sym_abyss] = ACTIONS(143), + [anon_sym_ab] = ACTIONS(145), + [anon_sym_62] = ACTIONS(143), + [anon_sym_seabed] = ACTIONS(143), + [anon_sym_se] = ACTIONS(145), + [anon_sym_63] = ACTIONS(143), + [anon_sym_send] = ACTIONS(143), + [anon_sym_recv] = ACTIONS(143), + [anon_sym_tryrecv] = ACTIONS(143), + [anon_sym_reduce] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_scan] = ACTIONS(147), + [anon_sym_BSLASH] = ACTIONS(147), + [anon_sym_each] = ACTIONS(147), + [anon_sym_64] = ACTIONS(147), + [anon_sym_rows] = ACTIONS(147), + [anon_sym_65] = ACTIONS(147), + [anon_sym_repeat] = ACTIONS(147), + [anon_sym_66] = ACTIONS(147), + [anon_sym_dip] = ACTIONS(147), + [anon_sym_67] = ACTIONS(147), + [anon_sym_gap] = ACTIONS(147), + [anon_sym_68] = ACTIONS(147), + [anon_sym_69] = ACTIONS(147), + [anon_sym_invert] = ACTIONS(147), + [anon_sym_70] = ACTIONS(147), + [anon_sym_spawn] = ACTIONS(147), + [anon_sym_pack] = ACTIONS(147), + [anon_sym_71] = ACTIONS(147), + [anon_sym_tribute] = ACTIONS(147), + [anon_sym_72] = ACTIONS(147), + [anon_sym_reach] = ACTIONS(147), + [anon_sym_fold] = ACTIONS(149), + [anon_sym_73] = ACTIONS(149), + [anon_sym_distribute] = ACTIONS(149), + [anon_sym_74] = ACTIONS(149), + [anon_sym_table] = ACTIONS(149), + [anon_sym_75] = ACTIONS(149), + [anon_sym_cross] = ACTIONS(149), + [anon_sym_76] = ACTIONS(149), + [anon_sym_group] = ACTIONS(149), + [anon_sym_77] = ACTIONS(149), + [anon_sym_partition] = ACTIONS(149), + [anon_sym_78] = ACTIONS(149), + [anon_sym_both] = ACTIONS(149), + [anon_sym_79] = ACTIONS(149), + [anon_sym_bracket] = ACTIONS(149), + [anon_sym_80] = ACTIONS(149), + [anon_sym_fork] = ACTIONS(149), + [anon_sym_81] = ACTIONS(149), + [anon_sym_under] = ACTIONS(149), + [anon_sym_82] = ACTIONS(149), + [anon_sym_level] = ACTIONS(149), + [anon_sym_83] = ACTIONS(149), + [anon_sym_fill] = ACTIONS(149), + [anon_sym_84] = ACTIONS(149), + [anon_sym_bind] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_try] = ACTIONS(151), + [anon_sym_85] = ACTIONS(149), + [anon_sym_combinate] = ACTIONS(149), + [anon_sym_86] = ACTIONS(149), + [anon_sym_87] = ACTIONS(153), + [anon_sym_88] = ACTIONS(153), + [anon_sym_89] = ACTIONS(153), + [anon_sym_90] = ACTIONS(153), + [anon_sym_91] = ACTIONS(153), + [anon_sym_92] = ACTIONS(153), + [anon_sym_93] = ACTIONS(153), [sym__whitespace] = ACTIONS(5), [sym__end_of_line] = ACTIONS(5), }, @@ -12992,244 +12924,242 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_deprecated] = STATE(61), [aux_sym_array_repeat1] = STATE(57), [aux_sym_array_repeat2] = STATE(2), - [aux_sym_number_token1] = ACTIONS(116), - [anon_sym_os] = ACTIONS(118), - [anon_sym_Family] = ACTIONS(118), - [anon_sym_Arch] = ACTIONS(118), - [anon_sym_ExeExt] = ACTIONS(118), - [anon_sym_PllExt] = ACTIONS(118), - [anon_sym_Sep] = ACTIONS(118), - [aux_sym_character_token1] = ACTIONS(120), - [sym_string] = ACTIONS(122), - [sym_multiLineString] = ACTIONS(122), + [aux_sym_number_token1] = ACTIONS(111), + [anon_sym_os] = ACTIONS(113), + [anon_sym_Family] = ACTIONS(113), + [anon_sym_Arch] = ACTIONS(113), + [anon_sym_ExeExt] = ACTIONS(113), + [anon_sym_PllExt] = ACTIONS(113), + [anon_sym_Sep] = ACTIONS(113), + [aux_sym_character_token1] = ACTIONS(115), + [sym_string] = ACTIONS(117), + [sym_multiLineString] = ACTIONS(117), [anon_sym_PIPE] = ACTIONS(15), - [sym_identifier] = ACTIONS(126), - [sym_identifier_deprecated] = ACTIONS(126), - [sym_system] = ACTIONS(122), - [sym_comment] = ACTIONS(228), - [sym_openParen] = ACTIONS(130), - [sym_openCurly] = ACTIONS(134), - [sym_closeCurly] = ACTIONS(252), - [sym_openBracket] = ACTIONS(136), - [sym_leftArrow] = ACTIONS(230), - [anon_sym_CARET] = ACTIONS(142), - [anon_sym_eta] = ACTIONS(144), - [anon_sym_] = ACTIONS(146), - [anon_sym_pi] = ACTIONS(146), - [anon_sym_2] = ACTIONS(146), - [anon_sym_tau] = ACTIONS(144), - [anon_sym_3] = ACTIONS(146), - [anon_sym_infinity] = ACTIONS(144), - [anon_sym_4] = ACTIONS(144), - [anon_sym_e] = ACTIONS(146), - [anon_sym_NaN] = ACTIONS(146), - [anon_sym_NumProcs] = ACTIONS(146), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_COMMA] = ACTIONS(148), - [anon_sym_5] = ACTIONS(148), - [anon_sym_SEMI] = ACTIONS(148), - [anon_sym_identity] = ACTIONS(148), - [anon_sym_id] = ACTIONS(150), - [anon_sym_6] = ACTIONS(148), - [anon_sym_not] = ACTIONS(148), - [anon_sym_7] = ACTIONS(148), - [anon_sym_sign] = ACTIONS(148), - [anon_sym_8] = ACTIONS(148), - [anon_sym_BQUOTE] = ACTIONS(148), - [anon_sym_9] = ACTIONS(148), - [anon_sym_absolutevalue] = ACTIONS(148), - [anon_sym_10] = ACTIONS(148), - [anon_sym_sqrt] = ACTIONS(148), - [anon_sym_11] = ACTIONS(148), - [anon_sym_sine] = ACTIONS(148), - [anon_sym_12] = ACTIONS(148), - [anon_sym_floor] = ACTIONS(148), - [anon_sym_13] = ACTIONS(148), - [anon_sym_ceiling] = ACTIONS(148), - [anon_sym_14] = ACTIONS(148), - [anon_sym_round] = ACTIONS(148), - [anon_sym_15] = ACTIONS(148), - [anon_sym_EQ] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_16] = ACTIONS(148), - [anon_sym_LT] = ACTIONS(150), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_17] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_18] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_19] = ACTIONS(148), - [anon_sym_PERCENT] = ACTIONS(148), - [anon_sym_20] = ACTIONS(148), - [anon_sym_modulus] = ACTIONS(148), - [anon_sym_21] = ACTIONS(148), - [anon_sym_power] = ACTIONS(148), - [anon_sym_22] = ACTIONS(148), - [anon_sym_logarithm] = ACTIONS(148), - [anon_sym_23] = ACTIONS(148), - [anon_sym_minimum] = ACTIONS(148), - [anon_sym_24] = ACTIONS(148), - [anon_sym_maximum] = ACTIONS(148), - [anon_sym_25] = ACTIONS(148), - [anon_sym_atangent] = ACTIONS(148), - [anon_sym_26] = ACTIONS(148), - [anon_sym_length] = ACTIONS(148), - [anon_sym_27] = ACTIONS(148), - [anon_sym_shape] = ACTIONS(148), - [anon_sym_28] = ACTIONS(148), - [anon_sym_range] = ACTIONS(148), - [anon_sym_29] = ACTIONS(148), - [anon_sym_first] = ACTIONS(148), - [anon_sym_30] = ACTIONS(148), - [anon_sym_reverse] = ACTIONS(148), - [anon_sym_31] = ACTIONS(148), - [anon_sym_deshape] = ACTIONS(148), - [anon_sym_32] = ACTIONS(148), - [anon_sym_bits] = ACTIONS(148), - [anon_sym_33] = ACTIONS(148), - [anon_sym_transpose] = ACTIONS(148), - [anon_sym_34] = ACTIONS(148), - [anon_sym_rise] = ACTIONS(148), - [anon_sym_35] = ACTIONS(148), - [anon_sym_fall] = ACTIONS(148), - [anon_sym_36] = ACTIONS(148), - [anon_sym_where] = ACTIONS(148), - [anon_sym_37] = ACTIONS(148), - [anon_sym_classify] = ACTIONS(148), - [anon_sym_38] = ACTIONS(148), - [anon_sym_deduplicate] = ACTIONS(148), - [anon_sym_39] = ACTIONS(148), - [anon_sym_box] = ACTIONS(148), - [anon_sym_40] = ACTIONS(148), - [anon_sym_unbox] = ACTIONS(148), - [anon_sym_41] = ACTIONS(148), - [anon_sym_match] = ACTIONS(148), - [anon_sym_42] = ACTIONS(148), - [anon_sym_couple] = ACTIONS(148), - [anon_sym_43] = ACTIONS(148), - [anon_sym_join] = ACTIONS(148), - [anon_sym_44] = ACTIONS(148), - [anon_sym_select] = ACTIONS(148), - [anon_sym_45] = ACTIONS(148), - [anon_sym_pick] = ACTIONS(148), - [anon_sym_46] = ACTIONS(148), - [anon_sym_reshape] = ACTIONS(148), - [anon_sym_47] = ACTIONS(148), - [anon_sym_take] = ACTIONS(148), - [anon_sym_48] = ACTIONS(148), - [anon_sym_drop] = ACTIONS(148), - [anon_sym_49] = ACTIONS(148), - [anon_sym_rotate] = ACTIONS(148), - [anon_sym_50] = ACTIONS(148), - [anon_sym_windows] = ACTIONS(148), - [anon_sym_51] = ACTIONS(148), - [anon_sym_keep] = ACTIONS(148), - [anon_sym_52] = ACTIONS(148), - [anon_sym_find] = ACTIONS(148), - [anon_sym_53] = ACTIONS(148), - [anon_sym_member] = ACTIONS(148), - [anon_sym_54] = ACTIONS(148), - [anon_sym_indexof] = ACTIONS(148), - [anon_sym_55] = ACTIONS(148), - [anon_sym_assert] = ACTIONS(148), - [anon_sym_56] = ACTIONS(148), - [anon_sym_wait] = ACTIONS(148), - [anon_sym_break] = ACTIONS(148), - [anon_sym_57] = ACTIONS(148), - [anon_sym_parse] = ACTIONS(148), - [anon_sym_random] = ACTIONS(148), - [anon_sym_58] = ACTIONS(148), - [anon_sym_gen] = ACTIONS(148), - [anon_sym_deal] = ACTIONS(148), - [anon_sym_tag] = ACTIONS(148), - [anon_sym_now] = ACTIONS(148), - [anon_sym_type] = ACTIONS(148), - [anon_sym_59] = ACTIONS(148), - [anon_sym_dump] = ACTIONS(148), - [anon_sym_regex] = ACTIONS(148), - [anon_sym_utf] = ACTIONS(148), - [anon_sym_rock] = ACTIONS(148), - [anon_sym_60] = ACTIONS(148), - [anon_sym_surface] = ACTIONS(148), - [anon_sym_TILDE] = ACTIONS(148), - [anon_sym_deep] = ACTIONS(148), - [anon_sym_de] = ACTIONS(150), - [anon_sym_61] = ACTIONS(148), - [anon_sym_abyss] = ACTIONS(148), - [anon_sym_ab] = ACTIONS(150), - [anon_sym_62] = ACTIONS(148), - [anon_sym_seabed] = ACTIONS(148), - [anon_sym_se] = ACTIONS(150), - [anon_sym_63] = ACTIONS(148), - [anon_sym_send] = ACTIONS(148), - [anon_sym_recv] = ACTIONS(148), - [anon_sym_tryrecv] = ACTIONS(148), - [anon_sym_reduce] = ACTIONS(152), - [anon_sym_SLASH] = ACTIONS(152), - [anon_sym_scan] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_each] = ACTIONS(152), - [anon_sym_64] = ACTIONS(152), - [anon_sym_rows] = ACTIONS(152), - [anon_sym_65] = ACTIONS(152), - [anon_sym_repeat] = ACTIONS(152), - [anon_sym_66] = ACTIONS(152), - [anon_sym_dip] = ACTIONS(152), - [anon_sym_di] = ACTIONS(154), - [anon_sym_67] = ACTIONS(152), - [anon_sym_gap] = ACTIONS(152), - [anon_sym_ga] = ACTIONS(154), - [anon_sym_68] = ACTIONS(152), - [anon_sym_oust] = ACTIONS(152), - [anon_sym_69] = ACTIONS(152), - [anon_sym_invert] = ACTIONS(152), - [anon_sym_70] = ACTIONS(152), - [anon_sym_spawn] = ACTIONS(152), - [anon_sym_pack] = ACTIONS(152), - [anon_sym_71] = ACTIONS(152), - [anon_sym_tribute] = ACTIONS(152), - [anon_sym_72] = ACTIONS(152), - [anon_sym_fold] = ACTIONS(156), - [anon_sym_73] = ACTIONS(156), - [anon_sym_distribute] = ACTIONS(156), - [anon_sym_74] = ACTIONS(156), - [anon_sym_table] = ACTIONS(156), - [anon_sym_75] = ACTIONS(156), - [anon_sym_cross] = ACTIONS(156), - [anon_sym_76] = ACTIONS(156), - [anon_sym_group] = ACTIONS(156), - [anon_sym_77] = ACTIONS(156), - [anon_sym_partition] = ACTIONS(156), - [anon_sym_78] = ACTIONS(156), - [anon_sym_both] = ACTIONS(156), - [anon_sym_79] = ACTIONS(156), - [anon_sym_bracket] = ACTIONS(156), - [anon_sym_80] = ACTIONS(156), - [anon_sym_fork] = ACTIONS(156), - [anon_sym_81] = ACTIONS(156), - [anon_sym_under] = ACTIONS(156), - [anon_sym_82] = ACTIONS(156), - [anon_sym_level] = ACTIONS(156), - [anon_sym_83] = ACTIONS(156), - [anon_sym_fill] = ACTIONS(156), - [anon_sym_84] = ACTIONS(156), - [anon_sym_bind] = ACTIONS(156), - [anon_sym_SQUOTE] = ACTIONS(156), - [anon_sym_QMARK] = ACTIONS(156), - [anon_sym_try] = ACTIONS(158), - [anon_sym_85] = ACTIONS(156), - [anon_sym_combinate] = ACTIONS(156), - [anon_sym_86] = ACTIONS(156), - [anon_sym_87] = ACTIONS(160), - [anon_sym_88] = ACTIONS(160), - [anon_sym_89] = ACTIONS(160), - [anon_sym_90] = ACTIONS(160), - [anon_sym_91] = ACTIONS(160), - [anon_sym_92] = ACTIONS(160), - [anon_sym_93] = ACTIONS(160), + [sym_identifier] = ACTIONS(121), + [sym_identifier_deprecated] = ACTIONS(121), + [sym_system] = ACTIONS(117), + [sym_comment] = ACTIONS(218), + [sym_openParen] = ACTIONS(125), + [sym_openCurly] = ACTIONS(129), + [sym_closeCurly] = ACTIONS(242), + [sym_openBracket] = ACTIONS(131), + [sym_leftArrow] = ACTIONS(220), + [anon_sym_CARET] = ACTIONS(137), + [anon_sym_eta] = ACTIONS(139), + [anon_sym_] = ACTIONS(141), + [anon_sym_pi] = ACTIONS(141), + [anon_sym_2] = ACTIONS(141), + [anon_sym_tau] = ACTIONS(139), + [anon_sym_3] = ACTIONS(141), + [anon_sym_infinity] = ACTIONS(139), + [anon_sym_4] = ACTIONS(139), + [anon_sym_e] = ACTIONS(141), + [anon_sym_NaN] = ACTIONS(141), + [anon_sym_NumProcs] = ACTIONS(141), + [anon_sym_DOT] = ACTIONS(143), + [anon_sym_COMMA] = ACTIONS(143), + [anon_sym_5] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_identity] = ACTIONS(143), + [anon_sym_id] = ACTIONS(145), + [anon_sym_6] = ACTIONS(143), + [anon_sym_not] = ACTIONS(143), + [anon_sym_7] = ACTIONS(143), + [anon_sym_sign] = ACTIONS(143), + [anon_sym_8] = ACTIONS(143), + [anon_sym_BQUOTE] = ACTIONS(143), + [anon_sym_9] = ACTIONS(143), + [anon_sym_absolutevalue] = ACTIONS(143), + [anon_sym_10] = ACTIONS(143), + [anon_sym_sqrt] = ACTIONS(143), + [anon_sym_11] = ACTIONS(143), + [anon_sym_sine] = ACTIONS(143), + [anon_sym_12] = ACTIONS(143), + [anon_sym_floor] = ACTIONS(143), + [anon_sym_13] = ACTIONS(143), + [anon_sym_ceiling] = ACTIONS(143), + [anon_sym_14] = ACTIONS(143), + [anon_sym_round] = ACTIONS(143), + [anon_sym_15] = ACTIONS(143), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_16] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_17] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_18] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_19] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_20] = ACTIONS(143), + [anon_sym_modulus] = ACTIONS(143), + [anon_sym_21] = ACTIONS(143), + [anon_sym_power] = ACTIONS(143), + [anon_sym_22] = ACTIONS(143), + [anon_sym_logarithm] = ACTIONS(143), + [anon_sym_23] = ACTIONS(143), + [anon_sym_minimum] = ACTIONS(143), + [anon_sym_24] = ACTIONS(143), + [anon_sym_maximum] = ACTIONS(143), + [anon_sym_25] = ACTIONS(143), + [anon_sym_atangent] = ACTIONS(143), + [anon_sym_26] = ACTIONS(143), + [anon_sym_length] = ACTIONS(143), + [anon_sym_27] = ACTIONS(143), + [anon_sym_shape] = ACTIONS(143), + [anon_sym_28] = ACTIONS(143), + [anon_sym_range] = ACTIONS(143), + [anon_sym_29] = ACTIONS(143), + [anon_sym_first] = ACTIONS(143), + [anon_sym_30] = ACTIONS(143), + [anon_sym_reverse] = ACTIONS(143), + [anon_sym_31] = ACTIONS(143), + [anon_sym_deshape] = ACTIONS(143), + [anon_sym_32] = ACTIONS(143), + [anon_sym_bits] = ACTIONS(143), + [anon_sym_33] = ACTIONS(143), + [anon_sym_transpose] = ACTIONS(143), + [anon_sym_34] = ACTIONS(143), + [anon_sym_rise] = ACTIONS(143), + [anon_sym_35] = ACTIONS(143), + [anon_sym_fall] = ACTIONS(143), + [anon_sym_36] = ACTIONS(143), + [anon_sym_where] = ACTIONS(143), + [anon_sym_37] = ACTIONS(143), + [anon_sym_classify] = ACTIONS(143), + [anon_sym_38] = ACTIONS(143), + [anon_sym_deduplicate] = ACTIONS(143), + [anon_sym_39] = ACTIONS(143), + [anon_sym_box] = ACTIONS(143), + [anon_sym_40] = ACTIONS(143), + [anon_sym_unbox] = ACTIONS(143), + [anon_sym_41] = ACTIONS(143), + [anon_sym_match] = ACTIONS(143), + [anon_sym_42] = ACTIONS(143), + [anon_sym_couple] = ACTIONS(143), + [anon_sym_43] = ACTIONS(143), + [anon_sym_join] = ACTIONS(143), + [anon_sym_44] = ACTIONS(143), + [anon_sym_select] = ACTIONS(143), + [anon_sym_45] = ACTIONS(143), + [anon_sym_pick] = ACTIONS(143), + [anon_sym_46] = ACTIONS(143), + [anon_sym_reshape] = ACTIONS(143), + [anon_sym_47] = ACTIONS(143), + [anon_sym_take] = ACTIONS(143), + [anon_sym_48] = ACTIONS(143), + [anon_sym_drop] = ACTIONS(143), + [anon_sym_49] = ACTIONS(143), + [anon_sym_rotate] = ACTIONS(143), + [anon_sym_50] = ACTIONS(143), + [anon_sym_windows] = ACTIONS(143), + [anon_sym_51] = ACTIONS(143), + [anon_sym_keep] = ACTIONS(143), + [anon_sym_52] = ACTIONS(143), + [anon_sym_find] = ACTIONS(143), + [anon_sym_53] = ACTIONS(143), + [anon_sym_member] = ACTIONS(143), + [anon_sym_54] = ACTIONS(143), + [anon_sym_indexof] = ACTIONS(143), + [anon_sym_55] = ACTIONS(143), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_56] = ACTIONS(143), + [anon_sym_wait] = ACTIONS(143), + [anon_sym_break] = ACTIONS(143), + [anon_sym_57] = ACTIONS(143), + [anon_sym_parse] = ACTIONS(143), + [anon_sym_random] = ACTIONS(143), + [anon_sym_58] = ACTIONS(143), + [anon_sym_gen] = ACTIONS(143), + [anon_sym_deal] = ACTIONS(143), + [anon_sym_tag] = ACTIONS(143), + [anon_sym_now] = ACTIONS(143), + [anon_sym_type] = ACTIONS(143), + [anon_sym_59] = ACTIONS(143), + [anon_sym_dump] = ACTIONS(143), + [anon_sym_regex] = ACTIONS(143), + [anon_sym_utf] = ACTIONS(143), + [anon_sym_rock] = ACTIONS(143), + [anon_sym_60] = ACTIONS(143), + [anon_sym_surface] = ACTIONS(143), + [anon_sym_TILDE] = ACTIONS(143), + [anon_sym_deep] = ACTIONS(143), + [anon_sym_de] = ACTIONS(145), + [anon_sym_61] = ACTIONS(143), + [anon_sym_abyss] = ACTIONS(143), + [anon_sym_ab] = ACTIONS(145), + [anon_sym_62] = ACTIONS(143), + [anon_sym_seabed] = ACTIONS(143), + [anon_sym_se] = ACTIONS(145), + [anon_sym_63] = ACTIONS(143), + [anon_sym_send] = ACTIONS(143), + [anon_sym_recv] = ACTIONS(143), + [anon_sym_tryrecv] = ACTIONS(143), + [anon_sym_reduce] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_scan] = ACTIONS(147), + [anon_sym_BSLASH] = ACTIONS(147), + [anon_sym_each] = ACTIONS(147), + [anon_sym_64] = ACTIONS(147), + [anon_sym_rows] = ACTIONS(147), + [anon_sym_65] = ACTIONS(147), + [anon_sym_repeat] = ACTIONS(147), + [anon_sym_66] = ACTIONS(147), + [anon_sym_dip] = ACTIONS(147), + [anon_sym_67] = ACTIONS(147), + [anon_sym_gap] = ACTIONS(147), + [anon_sym_68] = ACTIONS(147), + [anon_sym_69] = ACTIONS(147), + [anon_sym_invert] = ACTIONS(147), + [anon_sym_70] = ACTIONS(147), + [anon_sym_spawn] = ACTIONS(147), + [anon_sym_pack] = ACTIONS(147), + [anon_sym_71] = ACTIONS(147), + [anon_sym_tribute] = ACTIONS(147), + [anon_sym_72] = ACTIONS(147), + [anon_sym_reach] = ACTIONS(147), + [anon_sym_fold] = ACTIONS(149), + [anon_sym_73] = ACTIONS(149), + [anon_sym_distribute] = ACTIONS(149), + [anon_sym_74] = ACTIONS(149), + [anon_sym_table] = ACTIONS(149), + [anon_sym_75] = ACTIONS(149), + [anon_sym_cross] = ACTIONS(149), + [anon_sym_76] = ACTIONS(149), + [anon_sym_group] = ACTIONS(149), + [anon_sym_77] = ACTIONS(149), + [anon_sym_partition] = ACTIONS(149), + [anon_sym_78] = ACTIONS(149), + [anon_sym_both] = ACTIONS(149), + [anon_sym_79] = ACTIONS(149), + [anon_sym_bracket] = ACTIONS(149), + [anon_sym_80] = ACTIONS(149), + [anon_sym_fork] = ACTIONS(149), + [anon_sym_81] = ACTIONS(149), + [anon_sym_under] = ACTIONS(149), + [anon_sym_82] = ACTIONS(149), + [anon_sym_level] = ACTIONS(149), + [anon_sym_83] = ACTIONS(149), + [anon_sym_fill] = ACTIONS(149), + [anon_sym_84] = ACTIONS(149), + [anon_sym_bind] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_try] = ACTIONS(151), + [anon_sym_85] = ACTIONS(149), + [anon_sym_combinate] = ACTIONS(149), + [anon_sym_86] = ACTIONS(149), + [anon_sym_87] = ACTIONS(153), + [anon_sym_88] = ACTIONS(153), + [anon_sym_89] = ACTIONS(153), + [anon_sym_90] = ACTIONS(153), + [anon_sym_91] = ACTIONS(153), + [anon_sym_92] = ACTIONS(153), + [anon_sym_93] = ACTIONS(153), [sym__whitespace] = ACTIONS(5), [sym__end_of_line] = ACTIONS(5), }, @@ -13253,244 +13183,242 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_deprecated] = STATE(61), [aux_sym_array_repeat1] = STATE(57), [aux_sym_array_repeat2] = STATE(15), - [aux_sym_number_token1] = ACTIONS(116), - [anon_sym_os] = ACTIONS(118), - [anon_sym_Family] = ACTIONS(118), - [anon_sym_Arch] = ACTIONS(118), - [anon_sym_ExeExt] = ACTIONS(118), - [anon_sym_PllExt] = ACTIONS(118), - [anon_sym_Sep] = ACTIONS(118), - [aux_sym_character_token1] = ACTIONS(120), - [sym_string] = ACTIONS(122), - [sym_multiLineString] = ACTIONS(122), + [aux_sym_number_token1] = ACTIONS(111), + [anon_sym_os] = ACTIONS(113), + [anon_sym_Family] = ACTIONS(113), + [anon_sym_Arch] = ACTIONS(113), + [anon_sym_ExeExt] = ACTIONS(113), + [anon_sym_PllExt] = ACTIONS(113), + [anon_sym_Sep] = ACTIONS(113), + [aux_sym_character_token1] = ACTIONS(115), + [sym_string] = ACTIONS(117), + [sym_multiLineString] = ACTIONS(117), [anon_sym_PIPE] = ACTIONS(15), - [sym_identifier] = ACTIONS(126), - [sym_identifier_deprecated] = ACTIONS(126), - [sym_system] = ACTIONS(122), - [sym_comment] = ACTIONS(228), - [sym_openParen] = ACTIONS(130), - [sym_openCurly] = ACTIONS(134), - [sym_closeCurly] = ACTIONS(236), - [sym_openBracket] = ACTIONS(136), - [sym_leftArrow] = ACTIONS(230), - [anon_sym_CARET] = ACTIONS(142), - [anon_sym_eta] = ACTIONS(144), - [anon_sym_] = ACTIONS(146), - [anon_sym_pi] = ACTIONS(146), - [anon_sym_2] = ACTIONS(146), - [anon_sym_tau] = ACTIONS(144), - [anon_sym_3] = ACTIONS(146), - [anon_sym_infinity] = ACTIONS(144), - [anon_sym_4] = ACTIONS(144), - [anon_sym_e] = ACTIONS(146), - [anon_sym_NaN] = ACTIONS(146), - [anon_sym_NumProcs] = ACTIONS(146), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_COMMA] = ACTIONS(148), - [anon_sym_5] = ACTIONS(148), - [anon_sym_SEMI] = ACTIONS(148), - [anon_sym_identity] = ACTIONS(148), - [anon_sym_id] = ACTIONS(150), - [anon_sym_6] = ACTIONS(148), - [anon_sym_not] = ACTIONS(148), - [anon_sym_7] = ACTIONS(148), - [anon_sym_sign] = ACTIONS(148), - [anon_sym_8] = ACTIONS(148), - [anon_sym_BQUOTE] = ACTIONS(148), - [anon_sym_9] = ACTIONS(148), - [anon_sym_absolutevalue] = ACTIONS(148), - [anon_sym_10] = ACTIONS(148), - [anon_sym_sqrt] = ACTIONS(148), - [anon_sym_11] = ACTIONS(148), - [anon_sym_sine] = ACTIONS(148), - [anon_sym_12] = ACTIONS(148), - [anon_sym_floor] = ACTIONS(148), - [anon_sym_13] = ACTIONS(148), - [anon_sym_ceiling] = ACTIONS(148), - [anon_sym_14] = ACTIONS(148), - [anon_sym_round] = ACTIONS(148), - [anon_sym_15] = ACTIONS(148), - [anon_sym_EQ] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_16] = ACTIONS(148), - [anon_sym_LT] = ACTIONS(150), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_17] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_18] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_19] = ACTIONS(148), - [anon_sym_PERCENT] = ACTIONS(148), - [anon_sym_20] = ACTIONS(148), - [anon_sym_modulus] = ACTIONS(148), - [anon_sym_21] = ACTIONS(148), - [anon_sym_power] = ACTIONS(148), - [anon_sym_22] = ACTIONS(148), - [anon_sym_logarithm] = ACTIONS(148), - [anon_sym_23] = ACTIONS(148), - [anon_sym_minimum] = ACTIONS(148), - [anon_sym_24] = ACTIONS(148), - [anon_sym_maximum] = ACTIONS(148), - [anon_sym_25] = ACTIONS(148), - [anon_sym_atangent] = ACTIONS(148), - [anon_sym_26] = ACTIONS(148), - [anon_sym_length] = ACTIONS(148), - [anon_sym_27] = ACTIONS(148), - [anon_sym_shape] = ACTIONS(148), - [anon_sym_28] = ACTIONS(148), - [anon_sym_range] = ACTIONS(148), - [anon_sym_29] = ACTIONS(148), - [anon_sym_first] = ACTIONS(148), - [anon_sym_30] = ACTIONS(148), - [anon_sym_reverse] = ACTIONS(148), - [anon_sym_31] = ACTIONS(148), - [anon_sym_deshape] = ACTIONS(148), - [anon_sym_32] = ACTIONS(148), - [anon_sym_bits] = ACTIONS(148), - [anon_sym_33] = ACTIONS(148), - [anon_sym_transpose] = ACTIONS(148), - [anon_sym_34] = ACTIONS(148), - [anon_sym_rise] = ACTIONS(148), - [anon_sym_35] = ACTIONS(148), - [anon_sym_fall] = ACTIONS(148), - [anon_sym_36] = ACTIONS(148), - [anon_sym_where] = ACTIONS(148), - [anon_sym_37] = ACTIONS(148), - [anon_sym_classify] = ACTIONS(148), - [anon_sym_38] = ACTIONS(148), - [anon_sym_deduplicate] = ACTIONS(148), - [anon_sym_39] = ACTIONS(148), - [anon_sym_box] = ACTIONS(148), - [anon_sym_40] = ACTIONS(148), - [anon_sym_unbox] = ACTIONS(148), - [anon_sym_41] = ACTIONS(148), - [anon_sym_match] = ACTIONS(148), - [anon_sym_42] = ACTIONS(148), - [anon_sym_couple] = ACTIONS(148), - [anon_sym_43] = ACTIONS(148), - [anon_sym_join] = ACTIONS(148), - [anon_sym_44] = ACTIONS(148), - [anon_sym_select] = ACTIONS(148), - [anon_sym_45] = ACTIONS(148), - [anon_sym_pick] = ACTIONS(148), - [anon_sym_46] = ACTIONS(148), - [anon_sym_reshape] = ACTIONS(148), - [anon_sym_47] = ACTIONS(148), - [anon_sym_take] = ACTIONS(148), - [anon_sym_48] = ACTIONS(148), - [anon_sym_drop] = ACTIONS(148), - [anon_sym_49] = ACTIONS(148), - [anon_sym_rotate] = ACTIONS(148), - [anon_sym_50] = ACTIONS(148), - [anon_sym_windows] = ACTIONS(148), - [anon_sym_51] = ACTIONS(148), - [anon_sym_keep] = ACTIONS(148), - [anon_sym_52] = ACTIONS(148), - [anon_sym_find] = ACTIONS(148), - [anon_sym_53] = ACTIONS(148), - [anon_sym_member] = ACTIONS(148), - [anon_sym_54] = ACTIONS(148), - [anon_sym_indexof] = ACTIONS(148), - [anon_sym_55] = ACTIONS(148), - [anon_sym_assert] = ACTIONS(148), - [anon_sym_56] = ACTIONS(148), - [anon_sym_wait] = ACTIONS(148), - [anon_sym_break] = ACTIONS(148), - [anon_sym_57] = ACTIONS(148), - [anon_sym_parse] = ACTIONS(148), - [anon_sym_random] = ACTIONS(148), - [anon_sym_58] = ACTIONS(148), - [anon_sym_gen] = ACTIONS(148), - [anon_sym_deal] = ACTIONS(148), - [anon_sym_tag] = ACTIONS(148), - [anon_sym_now] = ACTIONS(148), - [anon_sym_type] = ACTIONS(148), - [anon_sym_59] = ACTIONS(148), - [anon_sym_dump] = ACTIONS(148), - [anon_sym_regex] = ACTIONS(148), - [anon_sym_utf] = ACTIONS(148), - [anon_sym_rock] = ACTIONS(148), - [anon_sym_60] = ACTIONS(148), - [anon_sym_surface] = ACTIONS(148), - [anon_sym_TILDE] = ACTIONS(148), - [anon_sym_deep] = ACTIONS(148), - [anon_sym_de] = ACTIONS(150), - [anon_sym_61] = ACTIONS(148), - [anon_sym_abyss] = ACTIONS(148), - [anon_sym_ab] = ACTIONS(150), - [anon_sym_62] = ACTIONS(148), - [anon_sym_seabed] = ACTIONS(148), - [anon_sym_se] = ACTIONS(150), - [anon_sym_63] = ACTIONS(148), - [anon_sym_send] = ACTIONS(148), - [anon_sym_recv] = ACTIONS(148), - [anon_sym_tryrecv] = ACTIONS(148), - [anon_sym_reduce] = ACTIONS(152), - [anon_sym_SLASH] = ACTIONS(152), - [anon_sym_scan] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_each] = ACTIONS(152), - [anon_sym_64] = ACTIONS(152), - [anon_sym_rows] = ACTIONS(152), - [anon_sym_65] = ACTIONS(152), - [anon_sym_repeat] = ACTIONS(152), - [anon_sym_66] = ACTIONS(152), - [anon_sym_dip] = ACTIONS(152), - [anon_sym_di] = ACTIONS(154), - [anon_sym_67] = ACTIONS(152), - [anon_sym_gap] = ACTIONS(152), - [anon_sym_ga] = ACTIONS(154), - [anon_sym_68] = ACTIONS(152), - [anon_sym_oust] = ACTIONS(152), - [anon_sym_69] = ACTIONS(152), - [anon_sym_invert] = ACTIONS(152), - [anon_sym_70] = ACTIONS(152), - [anon_sym_spawn] = ACTIONS(152), - [anon_sym_pack] = ACTIONS(152), - [anon_sym_71] = ACTIONS(152), - [anon_sym_tribute] = ACTIONS(152), - [anon_sym_72] = ACTIONS(152), - [anon_sym_fold] = ACTIONS(156), - [anon_sym_73] = ACTIONS(156), - [anon_sym_distribute] = ACTIONS(156), - [anon_sym_74] = ACTIONS(156), - [anon_sym_table] = ACTIONS(156), - [anon_sym_75] = ACTIONS(156), - [anon_sym_cross] = ACTIONS(156), - [anon_sym_76] = ACTIONS(156), - [anon_sym_group] = ACTIONS(156), - [anon_sym_77] = ACTIONS(156), - [anon_sym_partition] = ACTIONS(156), - [anon_sym_78] = ACTIONS(156), - [anon_sym_both] = ACTIONS(156), - [anon_sym_79] = ACTIONS(156), - [anon_sym_bracket] = ACTIONS(156), - [anon_sym_80] = ACTIONS(156), - [anon_sym_fork] = ACTIONS(156), - [anon_sym_81] = ACTIONS(156), - [anon_sym_under] = ACTIONS(156), - [anon_sym_82] = ACTIONS(156), - [anon_sym_level] = ACTIONS(156), - [anon_sym_83] = ACTIONS(156), - [anon_sym_fill] = ACTIONS(156), - [anon_sym_84] = ACTIONS(156), - [anon_sym_bind] = ACTIONS(156), - [anon_sym_SQUOTE] = ACTIONS(156), - [anon_sym_QMARK] = ACTIONS(156), - [anon_sym_try] = ACTIONS(158), - [anon_sym_85] = ACTIONS(156), - [anon_sym_combinate] = ACTIONS(156), - [anon_sym_86] = ACTIONS(156), - [anon_sym_87] = ACTIONS(160), - [anon_sym_88] = ACTIONS(160), - [anon_sym_89] = ACTIONS(160), - [anon_sym_90] = ACTIONS(160), - [anon_sym_91] = ACTIONS(160), - [anon_sym_92] = ACTIONS(160), - [anon_sym_93] = ACTIONS(160), + [sym_identifier] = ACTIONS(121), + [sym_identifier_deprecated] = ACTIONS(121), + [sym_system] = ACTIONS(117), + [sym_comment] = ACTIONS(218), + [sym_openParen] = ACTIONS(125), + [sym_openCurly] = ACTIONS(129), + [sym_closeCurly] = ACTIONS(226), + [sym_openBracket] = ACTIONS(131), + [sym_leftArrow] = ACTIONS(220), + [anon_sym_CARET] = ACTIONS(137), + [anon_sym_eta] = ACTIONS(139), + [anon_sym_] = ACTIONS(141), + [anon_sym_pi] = ACTIONS(141), + [anon_sym_2] = ACTIONS(141), + [anon_sym_tau] = ACTIONS(139), + [anon_sym_3] = ACTIONS(141), + [anon_sym_infinity] = ACTIONS(139), + [anon_sym_4] = ACTIONS(139), + [anon_sym_e] = ACTIONS(141), + [anon_sym_NaN] = ACTIONS(141), + [anon_sym_NumProcs] = ACTIONS(141), + [anon_sym_DOT] = ACTIONS(143), + [anon_sym_COMMA] = ACTIONS(143), + [anon_sym_5] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_identity] = ACTIONS(143), + [anon_sym_id] = ACTIONS(145), + [anon_sym_6] = ACTIONS(143), + [anon_sym_not] = ACTIONS(143), + [anon_sym_7] = ACTIONS(143), + [anon_sym_sign] = ACTIONS(143), + [anon_sym_8] = ACTIONS(143), + [anon_sym_BQUOTE] = ACTIONS(143), + [anon_sym_9] = ACTIONS(143), + [anon_sym_absolutevalue] = ACTIONS(143), + [anon_sym_10] = ACTIONS(143), + [anon_sym_sqrt] = ACTIONS(143), + [anon_sym_11] = ACTIONS(143), + [anon_sym_sine] = ACTIONS(143), + [anon_sym_12] = ACTIONS(143), + [anon_sym_floor] = ACTIONS(143), + [anon_sym_13] = ACTIONS(143), + [anon_sym_ceiling] = ACTIONS(143), + [anon_sym_14] = ACTIONS(143), + [anon_sym_round] = ACTIONS(143), + [anon_sym_15] = ACTIONS(143), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_16] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_17] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_18] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_19] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_20] = ACTIONS(143), + [anon_sym_modulus] = ACTIONS(143), + [anon_sym_21] = ACTIONS(143), + [anon_sym_power] = ACTIONS(143), + [anon_sym_22] = ACTIONS(143), + [anon_sym_logarithm] = ACTIONS(143), + [anon_sym_23] = ACTIONS(143), + [anon_sym_minimum] = ACTIONS(143), + [anon_sym_24] = ACTIONS(143), + [anon_sym_maximum] = ACTIONS(143), + [anon_sym_25] = ACTIONS(143), + [anon_sym_atangent] = ACTIONS(143), + [anon_sym_26] = ACTIONS(143), + [anon_sym_length] = ACTIONS(143), + [anon_sym_27] = ACTIONS(143), + [anon_sym_shape] = ACTIONS(143), + [anon_sym_28] = ACTIONS(143), + [anon_sym_range] = ACTIONS(143), + [anon_sym_29] = ACTIONS(143), + [anon_sym_first] = ACTIONS(143), + [anon_sym_30] = ACTIONS(143), + [anon_sym_reverse] = ACTIONS(143), + [anon_sym_31] = ACTIONS(143), + [anon_sym_deshape] = ACTIONS(143), + [anon_sym_32] = ACTIONS(143), + [anon_sym_bits] = ACTIONS(143), + [anon_sym_33] = ACTIONS(143), + [anon_sym_transpose] = ACTIONS(143), + [anon_sym_34] = ACTIONS(143), + [anon_sym_rise] = ACTIONS(143), + [anon_sym_35] = ACTIONS(143), + [anon_sym_fall] = ACTIONS(143), + [anon_sym_36] = ACTIONS(143), + [anon_sym_where] = ACTIONS(143), + [anon_sym_37] = ACTIONS(143), + [anon_sym_classify] = ACTIONS(143), + [anon_sym_38] = ACTIONS(143), + [anon_sym_deduplicate] = ACTIONS(143), + [anon_sym_39] = ACTIONS(143), + [anon_sym_box] = ACTIONS(143), + [anon_sym_40] = ACTIONS(143), + [anon_sym_unbox] = ACTIONS(143), + [anon_sym_41] = ACTIONS(143), + [anon_sym_match] = ACTIONS(143), + [anon_sym_42] = ACTIONS(143), + [anon_sym_couple] = ACTIONS(143), + [anon_sym_43] = ACTIONS(143), + [anon_sym_join] = ACTIONS(143), + [anon_sym_44] = ACTIONS(143), + [anon_sym_select] = ACTIONS(143), + [anon_sym_45] = ACTIONS(143), + [anon_sym_pick] = ACTIONS(143), + [anon_sym_46] = ACTIONS(143), + [anon_sym_reshape] = ACTIONS(143), + [anon_sym_47] = ACTIONS(143), + [anon_sym_take] = ACTIONS(143), + [anon_sym_48] = ACTIONS(143), + [anon_sym_drop] = ACTIONS(143), + [anon_sym_49] = ACTIONS(143), + [anon_sym_rotate] = ACTIONS(143), + [anon_sym_50] = ACTIONS(143), + [anon_sym_windows] = ACTIONS(143), + [anon_sym_51] = ACTIONS(143), + [anon_sym_keep] = ACTIONS(143), + [anon_sym_52] = ACTIONS(143), + [anon_sym_find] = ACTIONS(143), + [anon_sym_53] = ACTIONS(143), + [anon_sym_member] = ACTIONS(143), + [anon_sym_54] = ACTIONS(143), + [anon_sym_indexof] = ACTIONS(143), + [anon_sym_55] = ACTIONS(143), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_56] = ACTIONS(143), + [anon_sym_wait] = ACTIONS(143), + [anon_sym_break] = ACTIONS(143), + [anon_sym_57] = ACTIONS(143), + [anon_sym_parse] = ACTIONS(143), + [anon_sym_random] = ACTIONS(143), + [anon_sym_58] = ACTIONS(143), + [anon_sym_gen] = ACTIONS(143), + [anon_sym_deal] = ACTIONS(143), + [anon_sym_tag] = ACTIONS(143), + [anon_sym_now] = ACTIONS(143), + [anon_sym_type] = ACTIONS(143), + [anon_sym_59] = ACTIONS(143), + [anon_sym_dump] = ACTIONS(143), + [anon_sym_regex] = ACTIONS(143), + [anon_sym_utf] = ACTIONS(143), + [anon_sym_rock] = ACTIONS(143), + [anon_sym_60] = ACTIONS(143), + [anon_sym_surface] = ACTIONS(143), + [anon_sym_TILDE] = ACTIONS(143), + [anon_sym_deep] = ACTIONS(143), + [anon_sym_de] = ACTIONS(145), + [anon_sym_61] = ACTIONS(143), + [anon_sym_abyss] = ACTIONS(143), + [anon_sym_ab] = ACTIONS(145), + [anon_sym_62] = ACTIONS(143), + [anon_sym_seabed] = ACTIONS(143), + [anon_sym_se] = ACTIONS(145), + [anon_sym_63] = ACTIONS(143), + [anon_sym_send] = ACTIONS(143), + [anon_sym_recv] = ACTIONS(143), + [anon_sym_tryrecv] = ACTIONS(143), + [anon_sym_reduce] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_scan] = ACTIONS(147), + [anon_sym_BSLASH] = ACTIONS(147), + [anon_sym_each] = ACTIONS(147), + [anon_sym_64] = ACTIONS(147), + [anon_sym_rows] = ACTIONS(147), + [anon_sym_65] = ACTIONS(147), + [anon_sym_repeat] = ACTIONS(147), + [anon_sym_66] = ACTIONS(147), + [anon_sym_dip] = ACTIONS(147), + [anon_sym_67] = ACTIONS(147), + [anon_sym_gap] = ACTIONS(147), + [anon_sym_68] = ACTIONS(147), + [anon_sym_69] = ACTIONS(147), + [anon_sym_invert] = ACTIONS(147), + [anon_sym_70] = ACTIONS(147), + [anon_sym_spawn] = ACTIONS(147), + [anon_sym_pack] = ACTIONS(147), + [anon_sym_71] = ACTIONS(147), + [anon_sym_tribute] = ACTIONS(147), + [anon_sym_72] = ACTIONS(147), + [anon_sym_reach] = ACTIONS(147), + [anon_sym_fold] = ACTIONS(149), + [anon_sym_73] = ACTIONS(149), + [anon_sym_distribute] = ACTIONS(149), + [anon_sym_74] = ACTIONS(149), + [anon_sym_table] = ACTIONS(149), + [anon_sym_75] = ACTIONS(149), + [anon_sym_cross] = ACTIONS(149), + [anon_sym_76] = ACTIONS(149), + [anon_sym_group] = ACTIONS(149), + [anon_sym_77] = ACTIONS(149), + [anon_sym_partition] = ACTIONS(149), + [anon_sym_78] = ACTIONS(149), + [anon_sym_both] = ACTIONS(149), + [anon_sym_79] = ACTIONS(149), + [anon_sym_bracket] = ACTIONS(149), + [anon_sym_80] = ACTIONS(149), + [anon_sym_fork] = ACTIONS(149), + [anon_sym_81] = ACTIONS(149), + [anon_sym_under] = ACTIONS(149), + [anon_sym_82] = ACTIONS(149), + [anon_sym_level] = ACTIONS(149), + [anon_sym_83] = ACTIONS(149), + [anon_sym_fill] = ACTIONS(149), + [anon_sym_84] = ACTIONS(149), + [anon_sym_bind] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_try] = ACTIONS(151), + [anon_sym_85] = ACTIONS(149), + [anon_sym_combinate] = ACTIONS(149), + [anon_sym_86] = ACTIONS(149), + [anon_sym_87] = ACTIONS(153), + [anon_sym_88] = ACTIONS(153), + [anon_sym_89] = ACTIONS(153), + [anon_sym_90] = ACTIONS(153), + [anon_sym_91] = ACTIONS(153), + [anon_sym_92] = ACTIONS(153), + [anon_sym_93] = ACTIONS(153), [sym__whitespace] = ACTIONS(5), [sym__end_of_line] = ACTIONS(5), }, @@ -13514,246 +13442,244 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_deprecated] = STATE(61), [aux_sym_array_repeat1] = STATE(57), [aux_sym_array_repeat2] = STATE(9), - [aux_sym_number_token1] = ACTIONS(116), - [anon_sym_os] = ACTIONS(118), - [anon_sym_Family] = ACTIONS(118), - [anon_sym_Arch] = ACTIONS(118), - [anon_sym_ExeExt] = ACTIONS(118), - [anon_sym_PllExt] = ACTIONS(118), - [anon_sym_Sep] = ACTIONS(118), - [aux_sym_character_token1] = ACTIONS(120), - [sym_string] = ACTIONS(122), - [sym_multiLineString] = ACTIONS(122), + [aux_sym_number_token1] = ACTIONS(111), + [anon_sym_os] = ACTIONS(113), + [anon_sym_Family] = ACTIONS(113), + [anon_sym_Arch] = ACTIONS(113), + [anon_sym_ExeExt] = ACTIONS(113), + [anon_sym_PllExt] = ACTIONS(113), + [anon_sym_Sep] = ACTIONS(113), + [aux_sym_character_token1] = ACTIONS(115), + [sym_string] = ACTIONS(117), + [sym_multiLineString] = ACTIONS(117), [anon_sym_PIPE] = ACTIONS(15), - [sym_identifier] = ACTIONS(126), - [sym_identifier_deprecated] = ACTIONS(126), - [sym_system] = ACTIONS(122), - [sym_comment] = ACTIONS(228), - [sym_openParen] = ACTIONS(130), - [sym_openCurly] = ACTIONS(134), - [sym_openBracket] = ACTIONS(136), - [sym_closeBracket] = ACTIONS(254), - [sym_leftArrow] = ACTIONS(230), - [anon_sym_CARET] = ACTIONS(142), - [anon_sym_eta] = ACTIONS(144), - [anon_sym_] = ACTIONS(146), - [anon_sym_pi] = ACTIONS(146), - [anon_sym_2] = ACTIONS(146), - [anon_sym_tau] = ACTIONS(144), - [anon_sym_3] = ACTIONS(146), - [anon_sym_infinity] = ACTIONS(144), - [anon_sym_4] = ACTIONS(144), - [anon_sym_e] = ACTIONS(146), - [anon_sym_NaN] = ACTIONS(146), - [anon_sym_NumProcs] = ACTIONS(146), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_COMMA] = ACTIONS(148), - [anon_sym_5] = ACTIONS(148), - [anon_sym_SEMI] = ACTIONS(148), - [anon_sym_identity] = ACTIONS(148), - [anon_sym_id] = ACTIONS(150), - [anon_sym_6] = ACTIONS(148), - [anon_sym_not] = ACTIONS(148), - [anon_sym_7] = ACTIONS(148), - [anon_sym_sign] = ACTIONS(148), - [anon_sym_8] = ACTIONS(148), - [anon_sym_BQUOTE] = ACTIONS(148), - [anon_sym_9] = ACTIONS(148), - [anon_sym_absolutevalue] = ACTIONS(148), - [anon_sym_10] = ACTIONS(148), - [anon_sym_sqrt] = ACTIONS(148), - [anon_sym_11] = ACTIONS(148), - [anon_sym_sine] = ACTIONS(148), - [anon_sym_12] = ACTIONS(148), - [anon_sym_floor] = ACTIONS(148), - [anon_sym_13] = ACTIONS(148), - [anon_sym_ceiling] = ACTIONS(148), - [anon_sym_14] = ACTIONS(148), - [anon_sym_round] = ACTIONS(148), - [anon_sym_15] = ACTIONS(148), - [anon_sym_EQ] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_16] = ACTIONS(148), - [anon_sym_LT] = ACTIONS(150), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_17] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_18] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_19] = ACTIONS(148), - [anon_sym_PERCENT] = ACTIONS(148), - [anon_sym_20] = ACTIONS(148), - [anon_sym_modulus] = ACTIONS(148), - [anon_sym_21] = ACTIONS(148), - [anon_sym_power] = ACTIONS(148), - [anon_sym_22] = ACTIONS(148), - [anon_sym_logarithm] = ACTIONS(148), - [anon_sym_23] = ACTIONS(148), - [anon_sym_minimum] = ACTIONS(148), - [anon_sym_24] = ACTIONS(148), - [anon_sym_maximum] = ACTIONS(148), - [anon_sym_25] = ACTIONS(148), - [anon_sym_atangent] = ACTIONS(148), - [anon_sym_26] = ACTIONS(148), - [anon_sym_length] = ACTIONS(148), - [anon_sym_27] = ACTIONS(148), - [anon_sym_shape] = ACTIONS(148), - [anon_sym_28] = ACTIONS(148), - [anon_sym_range] = ACTIONS(148), - [anon_sym_29] = ACTIONS(148), - [anon_sym_first] = ACTIONS(148), - [anon_sym_30] = ACTIONS(148), - [anon_sym_reverse] = ACTIONS(148), - [anon_sym_31] = ACTIONS(148), - [anon_sym_deshape] = ACTIONS(148), - [anon_sym_32] = ACTIONS(148), - [anon_sym_bits] = ACTIONS(148), - [anon_sym_33] = ACTIONS(148), - [anon_sym_transpose] = ACTIONS(148), - [anon_sym_34] = ACTIONS(148), - [anon_sym_rise] = ACTIONS(148), - [anon_sym_35] = ACTIONS(148), - [anon_sym_fall] = ACTIONS(148), - [anon_sym_36] = ACTIONS(148), - [anon_sym_where] = ACTIONS(148), - [anon_sym_37] = ACTIONS(148), - [anon_sym_classify] = ACTIONS(148), - [anon_sym_38] = ACTIONS(148), - [anon_sym_deduplicate] = ACTIONS(148), - [anon_sym_39] = ACTIONS(148), - [anon_sym_box] = ACTIONS(148), - [anon_sym_40] = ACTIONS(148), - [anon_sym_unbox] = ACTIONS(148), - [anon_sym_41] = ACTIONS(148), - [anon_sym_match] = ACTIONS(148), - [anon_sym_42] = ACTIONS(148), - [anon_sym_couple] = ACTIONS(148), - [anon_sym_43] = ACTIONS(148), - [anon_sym_join] = ACTIONS(148), - [anon_sym_44] = ACTIONS(148), - [anon_sym_select] = ACTIONS(148), - [anon_sym_45] = ACTIONS(148), - [anon_sym_pick] = ACTIONS(148), - [anon_sym_46] = ACTIONS(148), - [anon_sym_reshape] = ACTIONS(148), - [anon_sym_47] = ACTIONS(148), - [anon_sym_take] = ACTIONS(148), - [anon_sym_48] = ACTIONS(148), - [anon_sym_drop] = ACTIONS(148), - [anon_sym_49] = ACTIONS(148), - [anon_sym_rotate] = ACTIONS(148), - [anon_sym_50] = ACTIONS(148), - [anon_sym_windows] = ACTIONS(148), - [anon_sym_51] = ACTIONS(148), - [anon_sym_keep] = ACTIONS(148), - [anon_sym_52] = ACTIONS(148), - [anon_sym_find] = ACTIONS(148), - [anon_sym_53] = ACTIONS(148), - [anon_sym_member] = ACTIONS(148), - [anon_sym_54] = ACTIONS(148), - [anon_sym_indexof] = ACTIONS(148), - [anon_sym_55] = ACTIONS(148), - [anon_sym_assert] = ACTIONS(148), - [anon_sym_56] = ACTIONS(148), - [anon_sym_wait] = ACTIONS(148), - [anon_sym_break] = ACTIONS(148), - [anon_sym_57] = ACTIONS(148), - [anon_sym_parse] = ACTIONS(148), - [anon_sym_random] = ACTIONS(148), - [anon_sym_58] = ACTIONS(148), - [anon_sym_gen] = ACTIONS(148), - [anon_sym_deal] = ACTIONS(148), - [anon_sym_tag] = ACTIONS(148), - [anon_sym_now] = ACTIONS(148), - [anon_sym_type] = ACTIONS(148), - [anon_sym_59] = ACTIONS(148), - [anon_sym_dump] = ACTIONS(148), - [anon_sym_regex] = ACTIONS(148), - [anon_sym_utf] = ACTIONS(148), - [anon_sym_rock] = ACTIONS(148), - [anon_sym_60] = ACTIONS(148), - [anon_sym_surface] = ACTIONS(148), - [anon_sym_TILDE] = ACTIONS(148), - [anon_sym_deep] = ACTIONS(148), - [anon_sym_de] = ACTIONS(150), - [anon_sym_61] = ACTIONS(148), - [anon_sym_abyss] = ACTIONS(148), - [anon_sym_ab] = ACTIONS(150), - [anon_sym_62] = ACTIONS(148), - [anon_sym_seabed] = ACTIONS(148), - [anon_sym_se] = ACTIONS(150), - [anon_sym_63] = ACTIONS(148), - [anon_sym_send] = ACTIONS(148), - [anon_sym_recv] = ACTIONS(148), - [anon_sym_tryrecv] = ACTIONS(148), - [anon_sym_reduce] = ACTIONS(152), - [anon_sym_SLASH] = ACTIONS(152), - [anon_sym_scan] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_each] = ACTIONS(152), - [anon_sym_64] = ACTIONS(152), - [anon_sym_rows] = ACTIONS(152), - [anon_sym_65] = ACTIONS(152), - [anon_sym_repeat] = ACTIONS(152), - [anon_sym_66] = ACTIONS(152), - [anon_sym_dip] = ACTIONS(152), - [anon_sym_di] = ACTIONS(154), - [anon_sym_67] = ACTIONS(152), - [anon_sym_gap] = ACTIONS(152), - [anon_sym_ga] = ACTIONS(154), - [anon_sym_68] = ACTIONS(152), - [anon_sym_oust] = ACTIONS(152), - [anon_sym_69] = ACTIONS(152), - [anon_sym_invert] = ACTIONS(152), - [anon_sym_70] = ACTIONS(152), - [anon_sym_spawn] = ACTIONS(152), - [anon_sym_pack] = ACTIONS(152), - [anon_sym_71] = ACTIONS(152), - [anon_sym_tribute] = ACTIONS(152), - [anon_sym_72] = ACTIONS(152), - [anon_sym_fold] = ACTIONS(156), - [anon_sym_73] = ACTIONS(156), - [anon_sym_distribute] = ACTIONS(156), - [anon_sym_74] = ACTIONS(156), - [anon_sym_table] = ACTIONS(156), - [anon_sym_75] = ACTIONS(156), - [anon_sym_cross] = ACTIONS(156), - [anon_sym_76] = ACTIONS(156), - [anon_sym_group] = ACTIONS(156), - [anon_sym_77] = ACTIONS(156), - [anon_sym_partition] = ACTIONS(156), - [anon_sym_78] = ACTIONS(156), - [anon_sym_both] = ACTIONS(156), - [anon_sym_79] = ACTIONS(156), - [anon_sym_bracket] = ACTIONS(156), - [anon_sym_80] = ACTIONS(156), - [anon_sym_fork] = ACTIONS(156), - [anon_sym_81] = ACTIONS(156), - [anon_sym_under] = ACTIONS(156), - [anon_sym_82] = ACTIONS(156), - [anon_sym_level] = ACTIONS(156), - [anon_sym_83] = ACTIONS(156), - [anon_sym_fill] = ACTIONS(156), - [anon_sym_84] = ACTIONS(156), - [anon_sym_bind] = ACTIONS(156), - [anon_sym_SQUOTE] = ACTIONS(156), - [anon_sym_QMARK] = ACTIONS(156), - [anon_sym_try] = ACTIONS(158), - [anon_sym_85] = ACTIONS(156), - [anon_sym_combinate] = ACTIONS(156), - [anon_sym_86] = ACTIONS(156), - [anon_sym_87] = ACTIONS(160), - [anon_sym_88] = ACTIONS(160), - [anon_sym_89] = ACTIONS(160), - [anon_sym_90] = ACTIONS(160), - [anon_sym_91] = ACTIONS(160), - [anon_sym_92] = ACTIONS(160), - [anon_sym_93] = ACTIONS(160), + [sym_identifier] = ACTIONS(121), + [sym_identifier_deprecated] = ACTIONS(121), + [sym_system] = ACTIONS(117), + [sym_comment] = ACTIONS(218), + [sym_openParen] = ACTIONS(125), + [sym_openCurly] = ACTIONS(129), + [sym_openBracket] = ACTIONS(131), + [sym_closeBracket] = ACTIONS(244), + [sym_leftArrow] = ACTIONS(220), + [anon_sym_CARET] = ACTIONS(137), + [anon_sym_eta] = ACTIONS(139), + [anon_sym_] = ACTIONS(141), + [anon_sym_pi] = ACTIONS(141), + [anon_sym_2] = ACTIONS(141), + [anon_sym_tau] = ACTIONS(139), + [anon_sym_3] = ACTIONS(141), + [anon_sym_infinity] = ACTIONS(139), + [anon_sym_4] = ACTIONS(139), + [anon_sym_e] = ACTIONS(141), + [anon_sym_NaN] = ACTIONS(141), + [anon_sym_NumProcs] = ACTIONS(141), + [anon_sym_DOT] = ACTIONS(143), + [anon_sym_COMMA] = ACTIONS(143), + [anon_sym_5] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_identity] = ACTIONS(143), + [anon_sym_id] = ACTIONS(145), + [anon_sym_6] = ACTIONS(143), + [anon_sym_not] = ACTIONS(143), + [anon_sym_7] = ACTIONS(143), + [anon_sym_sign] = ACTIONS(143), + [anon_sym_8] = ACTIONS(143), + [anon_sym_BQUOTE] = ACTIONS(143), + [anon_sym_9] = ACTIONS(143), + [anon_sym_absolutevalue] = ACTIONS(143), + [anon_sym_10] = ACTIONS(143), + [anon_sym_sqrt] = ACTIONS(143), + [anon_sym_11] = ACTIONS(143), + [anon_sym_sine] = ACTIONS(143), + [anon_sym_12] = ACTIONS(143), + [anon_sym_floor] = ACTIONS(143), + [anon_sym_13] = ACTIONS(143), + [anon_sym_ceiling] = ACTIONS(143), + [anon_sym_14] = ACTIONS(143), + [anon_sym_round] = ACTIONS(143), + [anon_sym_15] = ACTIONS(143), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_16] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_17] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_18] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_19] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_20] = ACTIONS(143), + [anon_sym_modulus] = ACTIONS(143), + [anon_sym_21] = ACTIONS(143), + [anon_sym_power] = ACTIONS(143), + [anon_sym_22] = ACTIONS(143), + [anon_sym_logarithm] = ACTIONS(143), + [anon_sym_23] = ACTIONS(143), + [anon_sym_minimum] = ACTIONS(143), + [anon_sym_24] = ACTIONS(143), + [anon_sym_maximum] = ACTIONS(143), + [anon_sym_25] = ACTIONS(143), + [anon_sym_atangent] = ACTIONS(143), + [anon_sym_26] = ACTIONS(143), + [anon_sym_length] = ACTIONS(143), + [anon_sym_27] = ACTIONS(143), + [anon_sym_shape] = ACTIONS(143), + [anon_sym_28] = ACTIONS(143), + [anon_sym_range] = ACTIONS(143), + [anon_sym_29] = ACTIONS(143), + [anon_sym_first] = ACTIONS(143), + [anon_sym_30] = ACTIONS(143), + [anon_sym_reverse] = ACTIONS(143), + [anon_sym_31] = ACTIONS(143), + [anon_sym_deshape] = ACTIONS(143), + [anon_sym_32] = ACTIONS(143), + [anon_sym_bits] = ACTIONS(143), + [anon_sym_33] = ACTIONS(143), + [anon_sym_transpose] = ACTIONS(143), + [anon_sym_34] = ACTIONS(143), + [anon_sym_rise] = ACTIONS(143), + [anon_sym_35] = ACTIONS(143), + [anon_sym_fall] = ACTIONS(143), + [anon_sym_36] = ACTIONS(143), + [anon_sym_where] = ACTIONS(143), + [anon_sym_37] = ACTIONS(143), + [anon_sym_classify] = ACTIONS(143), + [anon_sym_38] = ACTIONS(143), + [anon_sym_deduplicate] = ACTIONS(143), + [anon_sym_39] = ACTIONS(143), + [anon_sym_box] = ACTIONS(143), + [anon_sym_40] = ACTIONS(143), + [anon_sym_unbox] = ACTIONS(143), + [anon_sym_41] = ACTIONS(143), + [anon_sym_match] = ACTIONS(143), + [anon_sym_42] = ACTIONS(143), + [anon_sym_couple] = ACTIONS(143), + [anon_sym_43] = ACTIONS(143), + [anon_sym_join] = ACTIONS(143), + [anon_sym_44] = ACTIONS(143), + [anon_sym_select] = ACTIONS(143), + [anon_sym_45] = ACTIONS(143), + [anon_sym_pick] = ACTIONS(143), + [anon_sym_46] = ACTIONS(143), + [anon_sym_reshape] = ACTIONS(143), + [anon_sym_47] = ACTIONS(143), + [anon_sym_take] = ACTIONS(143), + [anon_sym_48] = ACTIONS(143), + [anon_sym_drop] = ACTIONS(143), + [anon_sym_49] = ACTIONS(143), + [anon_sym_rotate] = ACTIONS(143), + [anon_sym_50] = ACTIONS(143), + [anon_sym_windows] = ACTIONS(143), + [anon_sym_51] = ACTIONS(143), + [anon_sym_keep] = ACTIONS(143), + [anon_sym_52] = ACTIONS(143), + [anon_sym_find] = ACTIONS(143), + [anon_sym_53] = ACTIONS(143), + [anon_sym_member] = ACTIONS(143), + [anon_sym_54] = ACTIONS(143), + [anon_sym_indexof] = ACTIONS(143), + [anon_sym_55] = ACTIONS(143), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_56] = ACTIONS(143), + [anon_sym_wait] = ACTIONS(143), + [anon_sym_break] = ACTIONS(143), + [anon_sym_57] = ACTIONS(143), + [anon_sym_parse] = ACTIONS(143), + [anon_sym_random] = ACTIONS(143), + [anon_sym_58] = ACTIONS(143), + [anon_sym_gen] = ACTIONS(143), + [anon_sym_deal] = ACTIONS(143), + [anon_sym_tag] = ACTIONS(143), + [anon_sym_now] = ACTIONS(143), + [anon_sym_type] = ACTIONS(143), + [anon_sym_59] = ACTIONS(143), + [anon_sym_dump] = ACTIONS(143), + [anon_sym_regex] = ACTIONS(143), + [anon_sym_utf] = ACTIONS(143), + [anon_sym_rock] = ACTIONS(143), + [anon_sym_60] = ACTIONS(143), + [anon_sym_surface] = ACTIONS(143), + [anon_sym_TILDE] = ACTIONS(143), + [anon_sym_deep] = ACTIONS(143), + [anon_sym_de] = ACTIONS(145), + [anon_sym_61] = ACTIONS(143), + [anon_sym_abyss] = ACTIONS(143), + [anon_sym_ab] = ACTIONS(145), + [anon_sym_62] = ACTIONS(143), + [anon_sym_seabed] = ACTIONS(143), + [anon_sym_se] = ACTIONS(145), + [anon_sym_63] = ACTIONS(143), + [anon_sym_send] = ACTIONS(143), + [anon_sym_recv] = ACTIONS(143), + [anon_sym_tryrecv] = ACTIONS(143), + [anon_sym_reduce] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_scan] = ACTIONS(147), + [anon_sym_BSLASH] = ACTIONS(147), + [anon_sym_each] = ACTIONS(147), + [anon_sym_64] = ACTIONS(147), + [anon_sym_rows] = ACTIONS(147), + [anon_sym_65] = ACTIONS(147), + [anon_sym_repeat] = ACTIONS(147), + [anon_sym_66] = ACTIONS(147), + [anon_sym_dip] = ACTIONS(147), + [anon_sym_67] = ACTIONS(147), + [anon_sym_gap] = ACTIONS(147), + [anon_sym_68] = ACTIONS(147), + [anon_sym_69] = ACTIONS(147), + [anon_sym_invert] = ACTIONS(147), + [anon_sym_70] = ACTIONS(147), + [anon_sym_spawn] = ACTIONS(147), + [anon_sym_pack] = ACTIONS(147), + [anon_sym_71] = ACTIONS(147), + [anon_sym_tribute] = ACTIONS(147), + [anon_sym_72] = ACTIONS(147), + [anon_sym_reach] = ACTIONS(147), + [anon_sym_fold] = ACTIONS(149), + [anon_sym_73] = ACTIONS(149), + [anon_sym_distribute] = ACTIONS(149), + [anon_sym_74] = ACTIONS(149), + [anon_sym_table] = ACTIONS(149), + [anon_sym_75] = ACTIONS(149), + [anon_sym_cross] = ACTIONS(149), + [anon_sym_76] = ACTIONS(149), + [anon_sym_group] = ACTIONS(149), + [anon_sym_77] = ACTIONS(149), + [anon_sym_partition] = ACTIONS(149), + [anon_sym_78] = ACTIONS(149), + [anon_sym_both] = ACTIONS(149), + [anon_sym_79] = ACTIONS(149), + [anon_sym_bracket] = ACTIONS(149), + [anon_sym_80] = ACTIONS(149), + [anon_sym_fork] = ACTIONS(149), + [anon_sym_81] = ACTIONS(149), + [anon_sym_under] = ACTIONS(149), + [anon_sym_82] = ACTIONS(149), + [anon_sym_level] = ACTIONS(149), + [anon_sym_83] = ACTIONS(149), + [anon_sym_fill] = ACTIONS(149), + [anon_sym_84] = ACTIONS(149), + [anon_sym_bind] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_try] = ACTIONS(151), + [anon_sym_85] = ACTIONS(149), + [anon_sym_combinate] = ACTIONS(149), + [anon_sym_86] = ACTIONS(149), + [anon_sym_87] = ACTIONS(153), + [anon_sym_88] = ACTIONS(153), + [anon_sym_89] = ACTIONS(153), + [anon_sym_90] = ACTIONS(153), + [anon_sym_91] = ACTIONS(153), + [anon_sym_92] = ACTIONS(153), + [anon_sym_93] = ACTIONS(153), [sym__whitespace] = ACTIONS(5), - [sym__end_of_line] = ACTIONS(256), + [sym__end_of_line] = ACTIONS(246), }, [28] = { [sym_segment] = STATE(167), @@ -13776,243 +13702,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_module_repeat1] = STATE(43), [aux_sym_switchFunctions_repeat1] = STATE(46), [aux_sym_array_repeat1] = STATE(57), - [aux_sym_number_token1] = ACTIONS(116), - [anon_sym_os] = ACTIONS(118), - [anon_sym_Family] = ACTIONS(118), - [anon_sym_Arch] = ACTIONS(118), - [anon_sym_ExeExt] = ACTIONS(118), - [anon_sym_PllExt] = ACTIONS(118), - [anon_sym_Sep] = ACTIONS(118), - [aux_sym_character_token1] = ACTIONS(120), - [sym_string] = ACTIONS(122), - [sym_multiLineString] = ACTIONS(122), + [aux_sym_number_token1] = ACTIONS(111), + [anon_sym_os] = ACTIONS(113), + [anon_sym_Family] = ACTIONS(113), + [anon_sym_Arch] = ACTIONS(113), + [anon_sym_ExeExt] = ACTIONS(113), + [anon_sym_PllExt] = ACTIONS(113), + [anon_sym_Sep] = ACTIONS(113), + [aux_sym_character_token1] = ACTIONS(115), + [sym_string] = ACTIONS(117), + [sym_multiLineString] = ACTIONS(117), [anon_sym_PIPE] = ACTIONS(15), - [sym_identifier] = ACTIONS(126), - [sym_identifier_deprecated] = ACTIONS(126), - [sym_system] = ACTIONS(122), - [sym_comment] = ACTIONS(128), - [sym_openParen] = ACTIONS(130), - [sym_openCurly] = ACTIONS(134), - [sym_openBracket] = ACTIONS(136), - [sym_leftArrow] = ACTIONS(140), - [anon_sym_CARET] = ACTIONS(142), - [anon_sym_eta] = ACTIONS(144), - [anon_sym_] = ACTIONS(146), - [anon_sym_pi] = ACTIONS(146), - [anon_sym_2] = ACTIONS(146), - [anon_sym_tau] = ACTIONS(144), - [anon_sym_3] = ACTIONS(146), - [anon_sym_infinity] = ACTIONS(144), - [anon_sym_4] = ACTIONS(144), - [anon_sym_e] = ACTIONS(146), - [anon_sym_NaN] = ACTIONS(146), - [anon_sym_NumProcs] = ACTIONS(146), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_COMMA] = ACTIONS(148), - [anon_sym_5] = ACTIONS(148), - [anon_sym_SEMI] = ACTIONS(148), - [anon_sym_identity] = ACTIONS(148), - [anon_sym_id] = ACTIONS(150), - [anon_sym_6] = ACTIONS(148), - [anon_sym_not] = ACTIONS(148), - [anon_sym_7] = ACTIONS(148), - [anon_sym_sign] = ACTIONS(148), - [anon_sym_8] = ACTIONS(148), - [anon_sym_BQUOTE] = ACTIONS(148), - [anon_sym_9] = ACTIONS(148), - [anon_sym_absolutevalue] = ACTIONS(148), - [anon_sym_10] = ACTIONS(148), - [anon_sym_sqrt] = ACTIONS(148), - [anon_sym_11] = ACTIONS(148), - [anon_sym_sine] = ACTIONS(148), - [anon_sym_12] = ACTIONS(148), - [anon_sym_floor] = ACTIONS(148), - [anon_sym_13] = ACTIONS(148), - [anon_sym_ceiling] = ACTIONS(148), - [anon_sym_14] = ACTIONS(148), - [anon_sym_round] = ACTIONS(148), - [anon_sym_15] = ACTIONS(148), - [anon_sym_EQ] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_16] = ACTIONS(148), - [anon_sym_LT] = ACTIONS(150), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_17] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_18] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_19] = ACTIONS(148), - [anon_sym_PERCENT] = ACTIONS(148), - [anon_sym_20] = ACTIONS(148), - [anon_sym_modulus] = ACTIONS(148), - [anon_sym_21] = ACTIONS(148), - [anon_sym_power] = ACTIONS(148), - [anon_sym_22] = ACTIONS(148), - [anon_sym_logarithm] = ACTIONS(148), - [anon_sym_23] = ACTIONS(148), - [anon_sym_minimum] = ACTIONS(148), - [anon_sym_24] = ACTIONS(148), - [anon_sym_maximum] = ACTIONS(148), - [anon_sym_25] = ACTIONS(148), - [anon_sym_atangent] = ACTIONS(148), - [anon_sym_26] = ACTIONS(148), - [anon_sym_length] = ACTIONS(148), - [anon_sym_27] = ACTIONS(148), - [anon_sym_shape] = ACTIONS(148), - [anon_sym_28] = ACTIONS(148), - [anon_sym_range] = ACTIONS(148), - [anon_sym_29] = ACTIONS(148), - [anon_sym_first] = ACTIONS(148), - [anon_sym_30] = ACTIONS(148), - [anon_sym_reverse] = ACTIONS(148), - [anon_sym_31] = ACTIONS(148), - [anon_sym_deshape] = ACTIONS(148), - [anon_sym_32] = ACTIONS(148), - [anon_sym_bits] = ACTIONS(148), - [anon_sym_33] = ACTIONS(148), - [anon_sym_transpose] = ACTIONS(148), - [anon_sym_34] = ACTIONS(148), - [anon_sym_rise] = ACTIONS(148), - [anon_sym_35] = ACTIONS(148), - [anon_sym_fall] = ACTIONS(148), - [anon_sym_36] = ACTIONS(148), - [anon_sym_where] = ACTIONS(148), - [anon_sym_37] = ACTIONS(148), - [anon_sym_classify] = ACTIONS(148), - [anon_sym_38] = ACTIONS(148), - [anon_sym_deduplicate] = ACTIONS(148), - [anon_sym_39] = ACTIONS(148), - [anon_sym_box] = ACTIONS(148), - [anon_sym_40] = ACTIONS(148), - [anon_sym_unbox] = ACTIONS(148), - [anon_sym_41] = ACTIONS(148), - [anon_sym_match] = ACTIONS(148), - [anon_sym_42] = ACTIONS(148), - [anon_sym_couple] = ACTIONS(148), - [anon_sym_43] = ACTIONS(148), - [anon_sym_join] = ACTIONS(148), - [anon_sym_44] = ACTIONS(148), - [anon_sym_select] = ACTIONS(148), - [anon_sym_45] = ACTIONS(148), - [anon_sym_pick] = ACTIONS(148), - [anon_sym_46] = ACTIONS(148), - [anon_sym_reshape] = ACTIONS(148), - [anon_sym_47] = ACTIONS(148), - [anon_sym_take] = ACTIONS(148), - [anon_sym_48] = ACTIONS(148), - [anon_sym_drop] = ACTIONS(148), - [anon_sym_49] = ACTIONS(148), - [anon_sym_rotate] = ACTIONS(148), - [anon_sym_50] = ACTIONS(148), - [anon_sym_windows] = ACTIONS(148), - [anon_sym_51] = ACTIONS(148), - [anon_sym_keep] = ACTIONS(148), - [anon_sym_52] = ACTIONS(148), - [anon_sym_find] = ACTIONS(148), - [anon_sym_53] = ACTIONS(148), - [anon_sym_member] = ACTIONS(148), - [anon_sym_54] = ACTIONS(148), - [anon_sym_indexof] = ACTIONS(148), - [anon_sym_55] = ACTIONS(148), - [anon_sym_assert] = ACTIONS(148), - [anon_sym_56] = ACTIONS(148), - [anon_sym_wait] = ACTIONS(148), - [anon_sym_break] = ACTIONS(148), - [anon_sym_57] = ACTIONS(148), - [anon_sym_parse] = ACTIONS(148), - [anon_sym_random] = ACTIONS(148), - [anon_sym_58] = ACTIONS(148), - [anon_sym_gen] = ACTIONS(148), - [anon_sym_deal] = ACTIONS(148), - [anon_sym_tag] = ACTIONS(148), - [anon_sym_now] = ACTIONS(148), - [anon_sym_type] = ACTIONS(148), - [anon_sym_59] = ACTIONS(148), - [anon_sym_dump] = ACTIONS(148), - [anon_sym_regex] = ACTIONS(148), - [anon_sym_utf] = ACTIONS(148), - [anon_sym_rock] = ACTIONS(148), - [anon_sym_60] = ACTIONS(148), - [anon_sym_surface] = ACTIONS(148), - [anon_sym_TILDE] = ACTIONS(148), - [anon_sym_deep] = ACTIONS(148), - [anon_sym_de] = ACTIONS(150), - [anon_sym_61] = ACTIONS(148), - [anon_sym_abyss] = ACTIONS(148), - [anon_sym_ab] = ACTIONS(150), - [anon_sym_62] = ACTIONS(148), - [anon_sym_seabed] = ACTIONS(148), - [anon_sym_se] = ACTIONS(150), - [anon_sym_63] = ACTIONS(148), - [anon_sym_send] = ACTIONS(148), - [anon_sym_recv] = ACTIONS(148), - [anon_sym_tryrecv] = ACTIONS(148), - [anon_sym_reduce] = ACTIONS(152), - [anon_sym_SLASH] = ACTIONS(152), - [anon_sym_scan] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_each] = ACTIONS(152), - [anon_sym_64] = ACTIONS(152), - [anon_sym_rows] = ACTIONS(152), - [anon_sym_65] = ACTIONS(152), - [anon_sym_repeat] = ACTIONS(152), - [anon_sym_66] = ACTIONS(152), - [anon_sym_dip] = ACTIONS(152), - [anon_sym_di] = ACTIONS(154), - [anon_sym_67] = ACTIONS(152), - [anon_sym_gap] = ACTIONS(152), - [anon_sym_ga] = ACTIONS(154), - [anon_sym_68] = ACTIONS(152), - [anon_sym_oust] = ACTIONS(152), - [anon_sym_69] = ACTIONS(152), - [anon_sym_invert] = ACTIONS(152), - [anon_sym_70] = ACTIONS(152), - [anon_sym_spawn] = ACTIONS(152), - [anon_sym_pack] = ACTIONS(152), - [anon_sym_71] = ACTIONS(152), - [anon_sym_tribute] = ACTIONS(152), - [anon_sym_72] = ACTIONS(152), - [anon_sym_fold] = ACTIONS(156), - [anon_sym_73] = ACTIONS(156), - [anon_sym_distribute] = ACTIONS(156), - [anon_sym_74] = ACTIONS(156), - [anon_sym_table] = ACTIONS(156), - [anon_sym_75] = ACTIONS(156), - [anon_sym_cross] = ACTIONS(156), - [anon_sym_76] = ACTIONS(156), - [anon_sym_group] = ACTIONS(156), - [anon_sym_77] = ACTIONS(156), - [anon_sym_partition] = ACTIONS(156), - [anon_sym_78] = ACTIONS(156), - [anon_sym_both] = ACTIONS(156), - [anon_sym_79] = ACTIONS(156), - [anon_sym_bracket] = ACTIONS(156), - [anon_sym_80] = ACTIONS(156), - [anon_sym_fork] = ACTIONS(156), - [anon_sym_81] = ACTIONS(156), - [anon_sym_under] = ACTIONS(156), - [anon_sym_82] = ACTIONS(156), - [anon_sym_level] = ACTIONS(156), - [anon_sym_83] = ACTIONS(156), - [anon_sym_fill] = ACTIONS(156), - [anon_sym_84] = ACTIONS(156), - [anon_sym_bind] = ACTIONS(156), - [anon_sym_SQUOTE] = ACTIONS(156), - [anon_sym_QMARK] = ACTIONS(156), - [anon_sym_try] = ACTIONS(158), - [anon_sym_85] = ACTIONS(156), - [anon_sym_combinate] = ACTIONS(156), - [anon_sym_86] = ACTIONS(156), - [anon_sym_87] = ACTIONS(160), - [anon_sym_88] = ACTIONS(160), - [anon_sym_89] = ACTIONS(160), - [anon_sym_90] = ACTIONS(160), - [anon_sym_91] = ACTIONS(160), - [anon_sym_92] = ACTIONS(160), - [anon_sym_93] = ACTIONS(160), + [sym_identifier] = ACTIONS(121), + [sym_identifier_deprecated] = ACTIONS(121), + [sym_system] = ACTIONS(117), + [sym_comment] = ACTIONS(123), + [sym_openParen] = ACTIONS(125), + [sym_openCurly] = ACTIONS(129), + [sym_openBracket] = ACTIONS(131), + [sym_leftArrow] = ACTIONS(135), + [anon_sym_CARET] = ACTIONS(137), + [anon_sym_eta] = ACTIONS(139), + [anon_sym_] = ACTIONS(141), + [anon_sym_pi] = ACTIONS(141), + [anon_sym_2] = ACTIONS(141), + [anon_sym_tau] = ACTIONS(139), + [anon_sym_3] = ACTIONS(141), + [anon_sym_infinity] = ACTIONS(139), + [anon_sym_4] = ACTIONS(139), + [anon_sym_e] = ACTIONS(141), + [anon_sym_NaN] = ACTIONS(141), + [anon_sym_NumProcs] = ACTIONS(141), + [anon_sym_DOT] = ACTIONS(143), + [anon_sym_COMMA] = ACTIONS(143), + [anon_sym_5] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_identity] = ACTIONS(143), + [anon_sym_id] = ACTIONS(145), + [anon_sym_6] = ACTIONS(143), + [anon_sym_not] = ACTIONS(143), + [anon_sym_7] = ACTIONS(143), + [anon_sym_sign] = ACTIONS(143), + [anon_sym_8] = ACTIONS(143), + [anon_sym_BQUOTE] = ACTIONS(143), + [anon_sym_9] = ACTIONS(143), + [anon_sym_absolutevalue] = ACTIONS(143), + [anon_sym_10] = ACTIONS(143), + [anon_sym_sqrt] = ACTIONS(143), + [anon_sym_11] = ACTIONS(143), + [anon_sym_sine] = ACTIONS(143), + [anon_sym_12] = ACTIONS(143), + [anon_sym_floor] = ACTIONS(143), + [anon_sym_13] = ACTIONS(143), + [anon_sym_ceiling] = ACTIONS(143), + [anon_sym_14] = ACTIONS(143), + [anon_sym_round] = ACTIONS(143), + [anon_sym_15] = ACTIONS(143), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_16] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_17] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_18] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_19] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_20] = ACTIONS(143), + [anon_sym_modulus] = ACTIONS(143), + [anon_sym_21] = ACTIONS(143), + [anon_sym_power] = ACTIONS(143), + [anon_sym_22] = ACTIONS(143), + [anon_sym_logarithm] = ACTIONS(143), + [anon_sym_23] = ACTIONS(143), + [anon_sym_minimum] = ACTIONS(143), + [anon_sym_24] = ACTIONS(143), + [anon_sym_maximum] = ACTIONS(143), + [anon_sym_25] = ACTIONS(143), + [anon_sym_atangent] = ACTIONS(143), + [anon_sym_26] = ACTIONS(143), + [anon_sym_length] = ACTIONS(143), + [anon_sym_27] = ACTIONS(143), + [anon_sym_shape] = ACTIONS(143), + [anon_sym_28] = ACTIONS(143), + [anon_sym_range] = ACTIONS(143), + [anon_sym_29] = ACTIONS(143), + [anon_sym_first] = ACTIONS(143), + [anon_sym_30] = ACTIONS(143), + [anon_sym_reverse] = ACTIONS(143), + [anon_sym_31] = ACTIONS(143), + [anon_sym_deshape] = ACTIONS(143), + [anon_sym_32] = ACTIONS(143), + [anon_sym_bits] = ACTIONS(143), + [anon_sym_33] = ACTIONS(143), + [anon_sym_transpose] = ACTIONS(143), + [anon_sym_34] = ACTIONS(143), + [anon_sym_rise] = ACTIONS(143), + [anon_sym_35] = ACTIONS(143), + [anon_sym_fall] = ACTIONS(143), + [anon_sym_36] = ACTIONS(143), + [anon_sym_where] = ACTIONS(143), + [anon_sym_37] = ACTIONS(143), + [anon_sym_classify] = ACTIONS(143), + [anon_sym_38] = ACTIONS(143), + [anon_sym_deduplicate] = ACTIONS(143), + [anon_sym_39] = ACTIONS(143), + [anon_sym_box] = ACTIONS(143), + [anon_sym_40] = ACTIONS(143), + [anon_sym_unbox] = ACTIONS(143), + [anon_sym_41] = ACTIONS(143), + [anon_sym_match] = ACTIONS(143), + [anon_sym_42] = ACTIONS(143), + [anon_sym_couple] = ACTIONS(143), + [anon_sym_43] = ACTIONS(143), + [anon_sym_join] = ACTIONS(143), + [anon_sym_44] = ACTIONS(143), + [anon_sym_select] = ACTIONS(143), + [anon_sym_45] = ACTIONS(143), + [anon_sym_pick] = ACTIONS(143), + [anon_sym_46] = ACTIONS(143), + [anon_sym_reshape] = ACTIONS(143), + [anon_sym_47] = ACTIONS(143), + [anon_sym_take] = ACTIONS(143), + [anon_sym_48] = ACTIONS(143), + [anon_sym_drop] = ACTIONS(143), + [anon_sym_49] = ACTIONS(143), + [anon_sym_rotate] = ACTIONS(143), + [anon_sym_50] = ACTIONS(143), + [anon_sym_windows] = ACTIONS(143), + [anon_sym_51] = ACTIONS(143), + [anon_sym_keep] = ACTIONS(143), + [anon_sym_52] = ACTIONS(143), + [anon_sym_find] = ACTIONS(143), + [anon_sym_53] = ACTIONS(143), + [anon_sym_member] = ACTIONS(143), + [anon_sym_54] = ACTIONS(143), + [anon_sym_indexof] = ACTIONS(143), + [anon_sym_55] = ACTIONS(143), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_56] = ACTIONS(143), + [anon_sym_wait] = ACTIONS(143), + [anon_sym_break] = ACTIONS(143), + [anon_sym_57] = ACTIONS(143), + [anon_sym_parse] = ACTIONS(143), + [anon_sym_random] = ACTIONS(143), + [anon_sym_58] = ACTIONS(143), + [anon_sym_gen] = ACTIONS(143), + [anon_sym_deal] = ACTIONS(143), + [anon_sym_tag] = ACTIONS(143), + [anon_sym_now] = ACTIONS(143), + [anon_sym_type] = ACTIONS(143), + [anon_sym_59] = ACTIONS(143), + [anon_sym_dump] = ACTIONS(143), + [anon_sym_regex] = ACTIONS(143), + [anon_sym_utf] = ACTIONS(143), + [anon_sym_rock] = ACTIONS(143), + [anon_sym_60] = ACTIONS(143), + [anon_sym_surface] = ACTIONS(143), + [anon_sym_TILDE] = ACTIONS(143), + [anon_sym_deep] = ACTIONS(143), + [anon_sym_de] = ACTIONS(145), + [anon_sym_61] = ACTIONS(143), + [anon_sym_abyss] = ACTIONS(143), + [anon_sym_ab] = ACTIONS(145), + [anon_sym_62] = ACTIONS(143), + [anon_sym_seabed] = ACTIONS(143), + [anon_sym_se] = ACTIONS(145), + [anon_sym_63] = ACTIONS(143), + [anon_sym_send] = ACTIONS(143), + [anon_sym_recv] = ACTIONS(143), + [anon_sym_tryrecv] = ACTIONS(143), + [anon_sym_reduce] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_scan] = ACTIONS(147), + [anon_sym_BSLASH] = ACTIONS(147), + [anon_sym_each] = ACTIONS(147), + [anon_sym_64] = ACTIONS(147), + [anon_sym_rows] = ACTIONS(147), + [anon_sym_65] = ACTIONS(147), + [anon_sym_repeat] = ACTIONS(147), + [anon_sym_66] = ACTIONS(147), + [anon_sym_dip] = ACTIONS(147), + [anon_sym_67] = ACTIONS(147), + [anon_sym_gap] = ACTIONS(147), + [anon_sym_68] = ACTIONS(147), + [anon_sym_69] = ACTIONS(147), + [anon_sym_invert] = ACTIONS(147), + [anon_sym_70] = ACTIONS(147), + [anon_sym_spawn] = ACTIONS(147), + [anon_sym_pack] = ACTIONS(147), + [anon_sym_71] = ACTIONS(147), + [anon_sym_tribute] = ACTIONS(147), + [anon_sym_72] = ACTIONS(147), + [anon_sym_reach] = ACTIONS(147), + [anon_sym_fold] = ACTIONS(149), + [anon_sym_73] = ACTIONS(149), + [anon_sym_distribute] = ACTIONS(149), + [anon_sym_74] = ACTIONS(149), + [anon_sym_table] = ACTIONS(149), + [anon_sym_75] = ACTIONS(149), + [anon_sym_cross] = ACTIONS(149), + [anon_sym_76] = ACTIONS(149), + [anon_sym_group] = ACTIONS(149), + [anon_sym_77] = ACTIONS(149), + [anon_sym_partition] = ACTIONS(149), + [anon_sym_78] = ACTIONS(149), + [anon_sym_both] = ACTIONS(149), + [anon_sym_79] = ACTIONS(149), + [anon_sym_bracket] = ACTIONS(149), + [anon_sym_80] = ACTIONS(149), + [anon_sym_fork] = ACTIONS(149), + [anon_sym_81] = ACTIONS(149), + [anon_sym_under] = ACTIONS(149), + [anon_sym_82] = ACTIONS(149), + [anon_sym_level] = ACTIONS(149), + [anon_sym_83] = ACTIONS(149), + [anon_sym_fill] = ACTIONS(149), + [anon_sym_84] = ACTIONS(149), + [anon_sym_bind] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_try] = ACTIONS(151), + [anon_sym_85] = ACTIONS(149), + [anon_sym_combinate] = ACTIONS(149), + [anon_sym_86] = ACTIONS(149), + [anon_sym_87] = ACTIONS(153), + [anon_sym_88] = ACTIONS(153), + [anon_sym_89] = ACTIONS(153), + [anon_sym_90] = ACTIONS(153), + [anon_sym_91] = ACTIONS(153), + [anon_sym_92] = ACTIONS(153), + [anon_sym_93] = ACTIONS(153), [sym__whitespace] = ACTIONS(5), [sym__end_of_line] = ACTIONS(5), }, @@ -14036,244 +13960,242 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_deprecated] = STATE(61), [aux_sym_array_repeat1] = STATE(57), [aux_sym_array_repeat2] = STATE(2), - [aux_sym_number_token1] = ACTIONS(116), - [anon_sym_os] = ACTIONS(118), - [anon_sym_Family] = ACTIONS(118), - [anon_sym_Arch] = ACTIONS(118), - [anon_sym_ExeExt] = ACTIONS(118), - [anon_sym_PllExt] = ACTIONS(118), - [anon_sym_Sep] = ACTIONS(118), - [aux_sym_character_token1] = ACTIONS(120), - [sym_string] = ACTIONS(122), - [sym_multiLineString] = ACTIONS(122), + [aux_sym_number_token1] = ACTIONS(111), + [anon_sym_os] = ACTIONS(113), + [anon_sym_Family] = ACTIONS(113), + [anon_sym_Arch] = ACTIONS(113), + [anon_sym_ExeExt] = ACTIONS(113), + [anon_sym_PllExt] = ACTIONS(113), + [anon_sym_Sep] = ACTIONS(113), + [aux_sym_character_token1] = ACTIONS(115), + [sym_string] = ACTIONS(117), + [sym_multiLineString] = ACTIONS(117), [anon_sym_PIPE] = ACTIONS(15), - [sym_identifier] = ACTIONS(126), - [sym_identifier_deprecated] = ACTIONS(126), - [sym_system] = ACTIONS(122), - [sym_comment] = ACTIONS(228), - [sym_openParen] = ACTIONS(130), - [sym_openCurly] = ACTIONS(134), - [sym_openBracket] = ACTIONS(136), - [sym_closeBracket] = ACTIONS(258), - [sym_leftArrow] = ACTIONS(230), - [anon_sym_CARET] = ACTIONS(142), - [anon_sym_eta] = ACTIONS(144), - [anon_sym_] = ACTIONS(146), - [anon_sym_pi] = ACTIONS(146), - [anon_sym_2] = ACTIONS(146), - [anon_sym_tau] = ACTIONS(144), - [anon_sym_3] = ACTIONS(146), - [anon_sym_infinity] = ACTIONS(144), - [anon_sym_4] = ACTIONS(144), - [anon_sym_e] = ACTIONS(146), - [anon_sym_NaN] = ACTIONS(146), - [anon_sym_NumProcs] = ACTIONS(146), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_COMMA] = ACTIONS(148), - [anon_sym_5] = ACTIONS(148), - [anon_sym_SEMI] = ACTIONS(148), - [anon_sym_identity] = ACTIONS(148), - [anon_sym_id] = ACTIONS(150), - [anon_sym_6] = ACTIONS(148), - [anon_sym_not] = ACTIONS(148), - [anon_sym_7] = ACTIONS(148), - [anon_sym_sign] = ACTIONS(148), - [anon_sym_8] = ACTIONS(148), - [anon_sym_BQUOTE] = ACTIONS(148), - [anon_sym_9] = ACTIONS(148), - [anon_sym_absolutevalue] = ACTIONS(148), - [anon_sym_10] = ACTIONS(148), - [anon_sym_sqrt] = ACTIONS(148), - [anon_sym_11] = ACTIONS(148), - [anon_sym_sine] = ACTIONS(148), - [anon_sym_12] = ACTIONS(148), - [anon_sym_floor] = ACTIONS(148), - [anon_sym_13] = ACTIONS(148), - [anon_sym_ceiling] = ACTIONS(148), - [anon_sym_14] = ACTIONS(148), - [anon_sym_round] = ACTIONS(148), - [anon_sym_15] = ACTIONS(148), - [anon_sym_EQ] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_16] = ACTIONS(148), - [anon_sym_LT] = ACTIONS(150), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_17] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_18] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_19] = ACTIONS(148), - [anon_sym_PERCENT] = ACTIONS(148), - [anon_sym_20] = ACTIONS(148), - [anon_sym_modulus] = ACTIONS(148), - [anon_sym_21] = ACTIONS(148), - [anon_sym_power] = ACTIONS(148), - [anon_sym_22] = ACTIONS(148), - [anon_sym_logarithm] = ACTIONS(148), - [anon_sym_23] = ACTIONS(148), - [anon_sym_minimum] = ACTIONS(148), - [anon_sym_24] = ACTIONS(148), - [anon_sym_maximum] = ACTIONS(148), - [anon_sym_25] = ACTIONS(148), - [anon_sym_atangent] = ACTIONS(148), - [anon_sym_26] = ACTIONS(148), - [anon_sym_length] = ACTIONS(148), - [anon_sym_27] = ACTIONS(148), - [anon_sym_shape] = ACTIONS(148), - [anon_sym_28] = ACTIONS(148), - [anon_sym_range] = ACTIONS(148), - [anon_sym_29] = ACTIONS(148), - [anon_sym_first] = ACTIONS(148), - [anon_sym_30] = ACTIONS(148), - [anon_sym_reverse] = ACTIONS(148), - [anon_sym_31] = ACTIONS(148), - [anon_sym_deshape] = ACTIONS(148), - [anon_sym_32] = ACTIONS(148), - [anon_sym_bits] = ACTIONS(148), - [anon_sym_33] = ACTIONS(148), - [anon_sym_transpose] = ACTIONS(148), - [anon_sym_34] = ACTIONS(148), - [anon_sym_rise] = ACTIONS(148), - [anon_sym_35] = ACTIONS(148), - [anon_sym_fall] = ACTIONS(148), - [anon_sym_36] = ACTIONS(148), - [anon_sym_where] = ACTIONS(148), - [anon_sym_37] = ACTIONS(148), - [anon_sym_classify] = ACTIONS(148), - [anon_sym_38] = ACTIONS(148), - [anon_sym_deduplicate] = ACTIONS(148), - [anon_sym_39] = ACTIONS(148), - [anon_sym_box] = ACTIONS(148), - [anon_sym_40] = ACTIONS(148), - [anon_sym_unbox] = ACTIONS(148), - [anon_sym_41] = ACTIONS(148), - [anon_sym_match] = ACTIONS(148), - [anon_sym_42] = ACTIONS(148), - [anon_sym_couple] = ACTIONS(148), - [anon_sym_43] = ACTIONS(148), - [anon_sym_join] = ACTIONS(148), - [anon_sym_44] = ACTIONS(148), - [anon_sym_select] = ACTIONS(148), - [anon_sym_45] = ACTIONS(148), - [anon_sym_pick] = ACTIONS(148), - [anon_sym_46] = ACTIONS(148), - [anon_sym_reshape] = ACTIONS(148), - [anon_sym_47] = ACTIONS(148), - [anon_sym_take] = ACTIONS(148), - [anon_sym_48] = ACTIONS(148), - [anon_sym_drop] = ACTIONS(148), - [anon_sym_49] = ACTIONS(148), - [anon_sym_rotate] = ACTIONS(148), - [anon_sym_50] = ACTIONS(148), - [anon_sym_windows] = ACTIONS(148), - [anon_sym_51] = ACTIONS(148), - [anon_sym_keep] = ACTIONS(148), - [anon_sym_52] = ACTIONS(148), - [anon_sym_find] = ACTIONS(148), - [anon_sym_53] = ACTIONS(148), - [anon_sym_member] = ACTIONS(148), - [anon_sym_54] = ACTIONS(148), - [anon_sym_indexof] = ACTIONS(148), - [anon_sym_55] = ACTIONS(148), - [anon_sym_assert] = ACTIONS(148), - [anon_sym_56] = ACTIONS(148), - [anon_sym_wait] = ACTIONS(148), - [anon_sym_break] = ACTIONS(148), - [anon_sym_57] = ACTIONS(148), - [anon_sym_parse] = ACTIONS(148), - [anon_sym_random] = ACTIONS(148), - [anon_sym_58] = ACTIONS(148), - [anon_sym_gen] = ACTIONS(148), - [anon_sym_deal] = ACTIONS(148), - [anon_sym_tag] = ACTIONS(148), - [anon_sym_now] = ACTIONS(148), - [anon_sym_type] = ACTIONS(148), - [anon_sym_59] = ACTIONS(148), - [anon_sym_dump] = ACTIONS(148), - [anon_sym_regex] = ACTIONS(148), - [anon_sym_utf] = ACTIONS(148), - [anon_sym_rock] = ACTIONS(148), - [anon_sym_60] = ACTIONS(148), - [anon_sym_surface] = ACTIONS(148), - [anon_sym_TILDE] = ACTIONS(148), - [anon_sym_deep] = ACTIONS(148), - [anon_sym_de] = ACTIONS(150), - [anon_sym_61] = ACTIONS(148), - [anon_sym_abyss] = ACTIONS(148), - [anon_sym_ab] = ACTIONS(150), - [anon_sym_62] = ACTIONS(148), - [anon_sym_seabed] = ACTIONS(148), - [anon_sym_se] = ACTIONS(150), - [anon_sym_63] = ACTIONS(148), - [anon_sym_send] = ACTIONS(148), - [anon_sym_recv] = ACTIONS(148), - [anon_sym_tryrecv] = ACTIONS(148), - [anon_sym_reduce] = ACTIONS(152), - [anon_sym_SLASH] = ACTIONS(152), - [anon_sym_scan] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_each] = ACTIONS(152), - [anon_sym_64] = ACTIONS(152), - [anon_sym_rows] = ACTIONS(152), - [anon_sym_65] = ACTIONS(152), - [anon_sym_repeat] = ACTIONS(152), - [anon_sym_66] = ACTIONS(152), - [anon_sym_dip] = ACTIONS(152), - [anon_sym_di] = ACTIONS(154), - [anon_sym_67] = ACTIONS(152), - [anon_sym_gap] = ACTIONS(152), - [anon_sym_ga] = ACTIONS(154), - [anon_sym_68] = ACTIONS(152), - [anon_sym_oust] = ACTIONS(152), - [anon_sym_69] = ACTIONS(152), - [anon_sym_invert] = ACTIONS(152), - [anon_sym_70] = ACTIONS(152), - [anon_sym_spawn] = ACTIONS(152), - [anon_sym_pack] = ACTIONS(152), - [anon_sym_71] = ACTIONS(152), - [anon_sym_tribute] = ACTIONS(152), - [anon_sym_72] = ACTIONS(152), - [anon_sym_fold] = ACTIONS(156), - [anon_sym_73] = ACTIONS(156), - [anon_sym_distribute] = ACTIONS(156), - [anon_sym_74] = ACTIONS(156), - [anon_sym_table] = ACTIONS(156), - [anon_sym_75] = ACTIONS(156), - [anon_sym_cross] = ACTIONS(156), - [anon_sym_76] = ACTIONS(156), - [anon_sym_group] = ACTIONS(156), - [anon_sym_77] = ACTIONS(156), - [anon_sym_partition] = ACTIONS(156), - [anon_sym_78] = ACTIONS(156), - [anon_sym_both] = ACTIONS(156), - [anon_sym_79] = ACTIONS(156), - [anon_sym_bracket] = ACTIONS(156), - [anon_sym_80] = ACTIONS(156), - [anon_sym_fork] = ACTIONS(156), - [anon_sym_81] = ACTIONS(156), - [anon_sym_under] = ACTIONS(156), - [anon_sym_82] = ACTIONS(156), - [anon_sym_level] = ACTIONS(156), - [anon_sym_83] = ACTIONS(156), - [anon_sym_fill] = ACTIONS(156), - [anon_sym_84] = ACTIONS(156), - [anon_sym_bind] = ACTIONS(156), - [anon_sym_SQUOTE] = ACTIONS(156), - [anon_sym_QMARK] = ACTIONS(156), - [anon_sym_try] = ACTIONS(158), - [anon_sym_85] = ACTIONS(156), - [anon_sym_combinate] = ACTIONS(156), - [anon_sym_86] = ACTIONS(156), - [anon_sym_87] = ACTIONS(160), - [anon_sym_88] = ACTIONS(160), - [anon_sym_89] = ACTIONS(160), - [anon_sym_90] = ACTIONS(160), - [anon_sym_91] = ACTIONS(160), - [anon_sym_92] = ACTIONS(160), - [anon_sym_93] = ACTIONS(160), + [sym_identifier] = ACTIONS(121), + [sym_identifier_deprecated] = ACTIONS(121), + [sym_system] = ACTIONS(117), + [sym_comment] = ACTIONS(218), + [sym_openParen] = ACTIONS(125), + [sym_openCurly] = ACTIONS(129), + [sym_openBracket] = ACTIONS(131), + [sym_closeBracket] = ACTIONS(248), + [sym_leftArrow] = ACTIONS(220), + [anon_sym_CARET] = ACTIONS(137), + [anon_sym_eta] = ACTIONS(139), + [anon_sym_] = ACTIONS(141), + [anon_sym_pi] = ACTIONS(141), + [anon_sym_2] = ACTIONS(141), + [anon_sym_tau] = ACTIONS(139), + [anon_sym_3] = ACTIONS(141), + [anon_sym_infinity] = ACTIONS(139), + [anon_sym_4] = ACTIONS(139), + [anon_sym_e] = ACTIONS(141), + [anon_sym_NaN] = ACTIONS(141), + [anon_sym_NumProcs] = ACTIONS(141), + [anon_sym_DOT] = ACTIONS(143), + [anon_sym_COMMA] = ACTIONS(143), + [anon_sym_5] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_identity] = ACTIONS(143), + [anon_sym_id] = ACTIONS(145), + [anon_sym_6] = ACTIONS(143), + [anon_sym_not] = ACTIONS(143), + [anon_sym_7] = ACTIONS(143), + [anon_sym_sign] = ACTIONS(143), + [anon_sym_8] = ACTIONS(143), + [anon_sym_BQUOTE] = ACTIONS(143), + [anon_sym_9] = ACTIONS(143), + [anon_sym_absolutevalue] = ACTIONS(143), + [anon_sym_10] = ACTIONS(143), + [anon_sym_sqrt] = ACTIONS(143), + [anon_sym_11] = ACTIONS(143), + [anon_sym_sine] = ACTIONS(143), + [anon_sym_12] = ACTIONS(143), + [anon_sym_floor] = ACTIONS(143), + [anon_sym_13] = ACTIONS(143), + [anon_sym_ceiling] = ACTIONS(143), + [anon_sym_14] = ACTIONS(143), + [anon_sym_round] = ACTIONS(143), + [anon_sym_15] = ACTIONS(143), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_16] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_17] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_18] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_19] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_20] = ACTIONS(143), + [anon_sym_modulus] = ACTIONS(143), + [anon_sym_21] = ACTIONS(143), + [anon_sym_power] = ACTIONS(143), + [anon_sym_22] = ACTIONS(143), + [anon_sym_logarithm] = ACTIONS(143), + [anon_sym_23] = ACTIONS(143), + [anon_sym_minimum] = ACTIONS(143), + [anon_sym_24] = ACTIONS(143), + [anon_sym_maximum] = ACTIONS(143), + [anon_sym_25] = ACTIONS(143), + [anon_sym_atangent] = ACTIONS(143), + [anon_sym_26] = ACTIONS(143), + [anon_sym_length] = ACTIONS(143), + [anon_sym_27] = ACTIONS(143), + [anon_sym_shape] = ACTIONS(143), + [anon_sym_28] = ACTIONS(143), + [anon_sym_range] = ACTIONS(143), + [anon_sym_29] = ACTIONS(143), + [anon_sym_first] = ACTIONS(143), + [anon_sym_30] = ACTIONS(143), + [anon_sym_reverse] = ACTIONS(143), + [anon_sym_31] = ACTIONS(143), + [anon_sym_deshape] = ACTIONS(143), + [anon_sym_32] = ACTIONS(143), + [anon_sym_bits] = ACTIONS(143), + [anon_sym_33] = ACTIONS(143), + [anon_sym_transpose] = ACTIONS(143), + [anon_sym_34] = ACTIONS(143), + [anon_sym_rise] = ACTIONS(143), + [anon_sym_35] = ACTIONS(143), + [anon_sym_fall] = ACTIONS(143), + [anon_sym_36] = ACTIONS(143), + [anon_sym_where] = ACTIONS(143), + [anon_sym_37] = ACTIONS(143), + [anon_sym_classify] = ACTIONS(143), + [anon_sym_38] = ACTIONS(143), + [anon_sym_deduplicate] = ACTIONS(143), + [anon_sym_39] = ACTIONS(143), + [anon_sym_box] = ACTIONS(143), + [anon_sym_40] = ACTIONS(143), + [anon_sym_unbox] = ACTIONS(143), + [anon_sym_41] = ACTIONS(143), + [anon_sym_match] = ACTIONS(143), + [anon_sym_42] = ACTIONS(143), + [anon_sym_couple] = ACTIONS(143), + [anon_sym_43] = ACTIONS(143), + [anon_sym_join] = ACTIONS(143), + [anon_sym_44] = ACTIONS(143), + [anon_sym_select] = ACTIONS(143), + [anon_sym_45] = ACTIONS(143), + [anon_sym_pick] = ACTIONS(143), + [anon_sym_46] = ACTIONS(143), + [anon_sym_reshape] = ACTIONS(143), + [anon_sym_47] = ACTIONS(143), + [anon_sym_take] = ACTIONS(143), + [anon_sym_48] = ACTIONS(143), + [anon_sym_drop] = ACTIONS(143), + [anon_sym_49] = ACTIONS(143), + [anon_sym_rotate] = ACTIONS(143), + [anon_sym_50] = ACTIONS(143), + [anon_sym_windows] = ACTIONS(143), + [anon_sym_51] = ACTIONS(143), + [anon_sym_keep] = ACTIONS(143), + [anon_sym_52] = ACTIONS(143), + [anon_sym_find] = ACTIONS(143), + [anon_sym_53] = ACTIONS(143), + [anon_sym_member] = ACTIONS(143), + [anon_sym_54] = ACTIONS(143), + [anon_sym_indexof] = ACTIONS(143), + [anon_sym_55] = ACTIONS(143), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_56] = ACTIONS(143), + [anon_sym_wait] = ACTIONS(143), + [anon_sym_break] = ACTIONS(143), + [anon_sym_57] = ACTIONS(143), + [anon_sym_parse] = ACTIONS(143), + [anon_sym_random] = ACTIONS(143), + [anon_sym_58] = ACTIONS(143), + [anon_sym_gen] = ACTIONS(143), + [anon_sym_deal] = ACTIONS(143), + [anon_sym_tag] = ACTIONS(143), + [anon_sym_now] = ACTIONS(143), + [anon_sym_type] = ACTIONS(143), + [anon_sym_59] = ACTIONS(143), + [anon_sym_dump] = ACTIONS(143), + [anon_sym_regex] = ACTIONS(143), + [anon_sym_utf] = ACTIONS(143), + [anon_sym_rock] = ACTIONS(143), + [anon_sym_60] = ACTIONS(143), + [anon_sym_surface] = ACTIONS(143), + [anon_sym_TILDE] = ACTIONS(143), + [anon_sym_deep] = ACTIONS(143), + [anon_sym_de] = ACTIONS(145), + [anon_sym_61] = ACTIONS(143), + [anon_sym_abyss] = ACTIONS(143), + [anon_sym_ab] = ACTIONS(145), + [anon_sym_62] = ACTIONS(143), + [anon_sym_seabed] = ACTIONS(143), + [anon_sym_se] = ACTIONS(145), + [anon_sym_63] = ACTIONS(143), + [anon_sym_send] = ACTIONS(143), + [anon_sym_recv] = ACTIONS(143), + [anon_sym_tryrecv] = ACTIONS(143), + [anon_sym_reduce] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_scan] = ACTIONS(147), + [anon_sym_BSLASH] = ACTIONS(147), + [anon_sym_each] = ACTIONS(147), + [anon_sym_64] = ACTIONS(147), + [anon_sym_rows] = ACTIONS(147), + [anon_sym_65] = ACTIONS(147), + [anon_sym_repeat] = ACTIONS(147), + [anon_sym_66] = ACTIONS(147), + [anon_sym_dip] = ACTIONS(147), + [anon_sym_67] = ACTIONS(147), + [anon_sym_gap] = ACTIONS(147), + [anon_sym_68] = ACTIONS(147), + [anon_sym_69] = ACTIONS(147), + [anon_sym_invert] = ACTIONS(147), + [anon_sym_70] = ACTIONS(147), + [anon_sym_spawn] = ACTIONS(147), + [anon_sym_pack] = ACTIONS(147), + [anon_sym_71] = ACTIONS(147), + [anon_sym_tribute] = ACTIONS(147), + [anon_sym_72] = ACTIONS(147), + [anon_sym_reach] = ACTIONS(147), + [anon_sym_fold] = ACTIONS(149), + [anon_sym_73] = ACTIONS(149), + [anon_sym_distribute] = ACTIONS(149), + [anon_sym_74] = ACTIONS(149), + [anon_sym_table] = ACTIONS(149), + [anon_sym_75] = ACTIONS(149), + [anon_sym_cross] = ACTIONS(149), + [anon_sym_76] = ACTIONS(149), + [anon_sym_group] = ACTIONS(149), + [anon_sym_77] = ACTIONS(149), + [anon_sym_partition] = ACTIONS(149), + [anon_sym_78] = ACTIONS(149), + [anon_sym_both] = ACTIONS(149), + [anon_sym_79] = ACTIONS(149), + [anon_sym_bracket] = ACTIONS(149), + [anon_sym_80] = ACTIONS(149), + [anon_sym_fork] = ACTIONS(149), + [anon_sym_81] = ACTIONS(149), + [anon_sym_under] = ACTIONS(149), + [anon_sym_82] = ACTIONS(149), + [anon_sym_level] = ACTIONS(149), + [anon_sym_83] = ACTIONS(149), + [anon_sym_fill] = ACTIONS(149), + [anon_sym_84] = ACTIONS(149), + [anon_sym_bind] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_try] = ACTIONS(151), + [anon_sym_85] = ACTIONS(149), + [anon_sym_combinate] = ACTIONS(149), + [anon_sym_86] = ACTIONS(149), + [anon_sym_87] = ACTIONS(153), + [anon_sym_88] = ACTIONS(153), + [anon_sym_89] = ACTIONS(153), + [anon_sym_90] = ACTIONS(153), + [anon_sym_91] = ACTIONS(153), + [anon_sym_92] = ACTIONS(153), + [anon_sym_93] = ACTIONS(153), [sym__whitespace] = ACTIONS(5), [sym__end_of_line] = ACTIONS(5), }, @@ -14297,244 +14219,242 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_deprecated] = STATE(61), [aux_sym_array_repeat1] = STATE(57), [aux_sym_array_repeat2] = STATE(2), - [aux_sym_number_token1] = ACTIONS(116), - [anon_sym_os] = ACTIONS(118), - [anon_sym_Family] = ACTIONS(118), - [anon_sym_Arch] = ACTIONS(118), - [anon_sym_ExeExt] = ACTIONS(118), - [anon_sym_PllExt] = ACTIONS(118), - [anon_sym_Sep] = ACTIONS(118), - [aux_sym_character_token1] = ACTIONS(120), - [sym_string] = ACTIONS(122), - [sym_multiLineString] = ACTIONS(122), + [aux_sym_number_token1] = ACTIONS(111), + [anon_sym_os] = ACTIONS(113), + [anon_sym_Family] = ACTIONS(113), + [anon_sym_Arch] = ACTIONS(113), + [anon_sym_ExeExt] = ACTIONS(113), + [anon_sym_PllExt] = ACTIONS(113), + [anon_sym_Sep] = ACTIONS(113), + [aux_sym_character_token1] = ACTIONS(115), + [sym_string] = ACTIONS(117), + [sym_multiLineString] = ACTIONS(117), [anon_sym_PIPE] = ACTIONS(15), - [sym_identifier] = ACTIONS(126), - [sym_identifier_deprecated] = ACTIONS(126), - [sym_system] = ACTIONS(122), - [sym_comment] = ACTIONS(228), - [sym_openParen] = ACTIONS(130), - [sym_openCurly] = ACTIONS(134), - [sym_closeCurly] = ACTIONS(258), - [sym_openBracket] = ACTIONS(136), - [sym_leftArrow] = ACTIONS(230), - [anon_sym_CARET] = ACTIONS(142), - [anon_sym_eta] = ACTIONS(144), - [anon_sym_] = ACTIONS(146), - [anon_sym_pi] = ACTIONS(146), - [anon_sym_2] = ACTIONS(146), - [anon_sym_tau] = ACTIONS(144), - [anon_sym_3] = ACTIONS(146), - [anon_sym_infinity] = ACTIONS(144), - [anon_sym_4] = ACTIONS(144), - [anon_sym_e] = ACTIONS(146), - [anon_sym_NaN] = ACTIONS(146), - [anon_sym_NumProcs] = ACTIONS(146), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_COMMA] = ACTIONS(148), - [anon_sym_5] = ACTIONS(148), - [anon_sym_SEMI] = ACTIONS(148), - [anon_sym_identity] = ACTIONS(148), - [anon_sym_id] = ACTIONS(150), - [anon_sym_6] = ACTIONS(148), - [anon_sym_not] = ACTIONS(148), - [anon_sym_7] = ACTIONS(148), - [anon_sym_sign] = ACTIONS(148), - [anon_sym_8] = ACTIONS(148), - [anon_sym_BQUOTE] = ACTIONS(148), - [anon_sym_9] = ACTIONS(148), - [anon_sym_absolutevalue] = ACTIONS(148), - [anon_sym_10] = ACTIONS(148), - [anon_sym_sqrt] = ACTIONS(148), - [anon_sym_11] = ACTIONS(148), - [anon_sym_sine] = ACTIONS(148), - [anon_sym_12] = ACTIONS(148), - [anon_sym_floor] = ACTIONS(148), - [anon_sym_13] = ACTIONS(148), - [anon_sym_ceiling] = ACTIONS(148), - [anon_sym_14] = ACTIONS(148), - [anon_sym_round] = ACTIONS(148), - [anon_sym_15] = ACTIONS(148), - [anon_sym_EQ] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_16] = ACTIONS(148), - [anon_sym_LT] = ACTIONS(150), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_17] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_18] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_19] = ACTIONS(148), - [anon_sym_PERCENT] = ACTIONS(148), - [anon_sym_20] = ACTIONS(148), - [anon_sym_modulus] = ACTIONS(148), - [anon_sym_21] = ACTIONS(148), - [anon_sym_power] = ACTIONS(148), - [anon_sym_22] = ACTIONS(148), - [anon_sym_logarithm] = ACTIONS(148), - [anon_sym_23] = ACTIONS(148), - [anon_sym_minimum] = ACTIONS(148), - [anon_sym_24] = ACTIONS(148), - [anon_sym_maximum] = ACTIONS(148), - [anon_sym_25] = ACTIONS(148), - [anon_sym_atangent] = ACTIONS(148), - [anon_sym_26] = ACTIONS(148), - [anon_sym_length] = ACTIONS(148), - [anon_sym_27] = ACTIONS(148), - [anon_sym_shape] = ACTIONS(148), - [anon_sym_28] = ACTIONS(148), - [anon_sym_range] = ACTIONS(148), - [anon_sym_29] = ACTIONS(148), - [anon_sym_first] = ACTIONS(148), - [anon_sym_30] = ACTIONS(148), - [anon_sym_reverse] = ACTIONS(148), - [anon_sym_31] = ACTIONS(148), - [anon_sym_deshape] = ACTIONS(148), - [anon_sym_32] = ACTIONS(148), - [anon_sym_bits] = ACTIONS(148), - [anon_sym_33] = ACTIONS(148), - [anon_sym_transpose] = ACTIONS(148), - [anon_sym_34] = ACTIONS(148), - [anon_sym_rise] = ACTIONS(148), - [anon_sym_35] = ACTIONS(148), - [anon_sym_fall] = ACTIONS(148), - [anon_sym_36] = ACTIONS(148), - [anon_sym_where] = ACTIONS(148), - [anon_sym_37] = ACTIONS(148), - [anon_sym_classify] = ACTIONS(148), - [anon_sym_38] = ACTIONS(148), - [anon_sym_deduplicate] = ACTIONS(148), - [anon_sym_39] = ACTIONS(148), - [anon_sym_box] = ACTIONS(148), - [anon_sym_40] = ACTIONS(148), - [anon_sym_unbox] = ACTIONS(148), - [anon_sym_41] = ACTIONS(148), - [anon_sym_match] = ACTIONS(148), - [anon_sym_42] = ACTIONS(148), - [anon_sym_couple] = ACTIONS(148), - [anon_sym_43] = ACTIONS(148), - [anon_sym_join] = ACTIONS(148), - [anon_sym_44] = ACTIONS(148), - [anon_sym_select] = ACTIONS(148), - [anon_sym_45] = ACTIONS(148), - [anon_sym_pick] = ACTIONS(148), - [anon_sym_46] = ACTIONS(148), - [anon_sym_reshape] = ACTIONS(148), - [anon_sym_47] = ACTIONS(148), - [anon_sym_take] = ACTIONS(148), - [anon_sym_48] = ACTIONS(148), - [anon_sym_drop] = ACTIONS(148), - [anon_sym_49] = ACTIONS(148), - [anon_sym_rotate] = ACTIONS(148), - [anon_sym_50] = ACTIONS(148), - [anon_sym_windows] = ACTIONS(148), - [anon_sym_51] = ACTIONS(148), - [anon_sym_keep] = ACTIONS(148), - [anon_sym_52] = ACTIONS(148), - [anon_sym_find] = ACTIONS(148), - [anon_sym_53] = ACTIONS(148), - [anon_sym_member] = ACTIONS(148), - [anon_sym_54] = ACTIONS(148), - [anon_sym_indexof] = ACTIONS(148), - [anon_sym_55] = ACTIONS(148), - [anon_sym_assert] = ACTIONS(148), - [anon_sym_56] = ACTIONS(148), - [anon_sym_wait] = ACTIONS(148), - [anon_sym_break] = ACTIONS(148), - [anon_sym_57] = ACTIONS(148), - [anon_sym_parse] = ACTIONS(148), - [anon_sym_random] = ACTIONS(148), - [anon_sym_58] = ACTIONS(148), - [anon_sym_gen] = ACTIONS(148), - [anon_sym_deal] = ACTIONS(148), - [anon_sym_tag] = ACTIONS(148), - [anon_sym_now] = ACTIONS(148), - [anon_sym_type] = ACTIONS(148), - [anon_sym_59] = ACTIONS(148), - [anon_sym_dump] = ACTIONS(148), - [anon_sym_regex] = ACTIONS(148), - [anon_sym_utf] = ACTIONS(148), - [anon_sym_rock] = ACTIONS(148), - [anon_sym_60] = ACTIONS(148), - [anon_sym_surface] = ACTIONS(148), - [anon_sym_TILDE] = ACTIONS(148), - [anon_sym_deep] = ACTIONS(148), - [anon_sym_de] = ACTIONS(150), - [anon_sym_61] = ACTIONS(148), - [anon_sym_abyss] = ACTIONS(148), - [anon_sym_ab] = ACTIONS(150), - [anon_sym_62] = ACTIONS(148), - [anon_sym_seabed] = ACTIONS(148), - [anon_sym_se] = ACTIONS(150), - [anon_sym_63] = ACTIONS(148), - [anon_sym_send] = ACTIONS(148), - [anon_sym_recv] = ACTIONS(148), - [anon_sym_tryrecv] = ACTIONS(148), - [anon_sym_reduce] = ACTIONS(152), - [anon_sym_SLASH] = ACTIONS(152), - [anon_sym_scan] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_each] = ACTIONS(152), - [anon_sym_64] = ACTIONS(152), - [anon_sym_rows] = ACTIONS(152), - [anon_sym_65] = ACTIONS(152), - [anon_sym_repeat] = ACTIONS(152), - [anon_sym_66] = ACTIONS(152), - [anon_sym_dip] = ACTIONS(152), - [anon_sym_di] = ACTIONS(154), - [anon_sym_67] = ACTIONS(152), - [anon_sym_gap] = ACTIONS(152), - [anon_sym_ga] = ACTIONS(154), - [anon_sym_68] = ACTIONS(152), - [anon_sym_oust] = ACTIONS(152), - [anon_sym_69] = ACTIONS(152), - [anon_sym_invert] = ACTIONS(152), - [anon_sym_70] = ACTIONS(152), - [anon_sym_spawn] = ACTIONS(152), - [anon_sym_pack] = ACTIONS(152), - [anon_sym_71] = ACTIONS(152), - [anon_sym_tribute] = ACTIONS(152), - [anon_sym_72] = ACTIONS(152), - [anon_sym_fold] = ACTIONS(156), - [anon_sym_73] = ACTIONS(156), - [anon_sym_distribute] = ACTIONS(156), - [anon_sym_74] = ACTIONS(156), - [anon_sym_table] = ACTIONS(156), - [anon_sym_75] = ACTIONS(156), - [anon_sym_cross] = ACTIONS(156), - [anon_sym_76] = ACTIONS(156), - [anon_sym_group] = ACTIONS(156), - [anon_sym_77] = ACTIONS(156), - [anon_sym_partition] = ACTIONS(156), - [anon_sym_78] = ACTIONS(156), - [anon_sym_both] = ACTIONS(156), - [anon_sym_79] = ACTIONS(156), - [anon_sym_bracket] = ACTIONS(156), - [anon_sym_80] = ACTIONS(156), - [anon_sym_fork] = ACTIONS(156), - [anon_sym_81] = ACTIONS(156), - [anon_sym_under] = ACTIONS(156), - [anon_sym_82] = ACTIONS(156), - [anon_sym_level] = ACTIONS(156), - [anon_sym_83] = ACTIONS(156), - [anon_sym_fill] = ACTIONS(156), - [anon_sym_84] = ACTIONS(156), - [anon_sym_bind] = ACTIONS(156), - [anon_sym_SQUOTE] = ACTIONS(156), - [anon_sym_QMARK] = ACTIONS(156), - [anon_sym_try] = ACTIONS(158), - [anon_sym_85] = ACTIONS(156), - [anon_sym_combinate] = ACTIONS(156), - [anon_sym_86] = ACTIONS(156), - [anon_sym_87] = ACTIONS(160), - [anon_sym_88] = ACTIONS(160), - [anon_sym_89] = ACTIONS(160), - [anon_sym_90] = ACTIONS(160), - [anon_sym_91] = ACTIONS(160), - [anon_sym_92] = ACTIONS(160), - [anon_sym_93] = ACTIONS(160), + [sym_identifier] = ACTIONS(121), + [sym_identifier_deprecated] = ACTIONS(121), + [sym_system] = ACTIONS(117), + [sym_comment] = ACTIONS(218), + [sym_openParen] = ACTIONS(125), + [sym_openCurly] = ACTIONS(129), + [sym_closeCurly] = ACTIONS(248), + [sym_openBracket] = ACTIONS(131), + [sym_leftArrow] = ACTIONS(220), + [anon_sym_CARET] = ACTIONS(137), + [anon_sym_eta] = ACTIONS(139), + [anon_sym_] = ACTIONS(141), + [anon_sym_pi] = ACTIONS(141), + [anon_sym_2] = ACTIONS(141), + [anon_sym_tau] = ACTIONS(139), + [anon_sym_3] = ACTIONS(141), + [anon_sym_infinity] = ACTIONS(139), + [anon_sym_4] = ACTIONS(139), + [anon_sym_e] = ACTIONS(141), + [anon_sym_NaN] = ACTIONS(141), + [anon_sym_NumProcs] = ACTIONS(141), + [anon_sym_DOT] = ACTIONS(143), + [anon_sym_COMMA] = ACTIONS(143), + [anon_sym_5] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_identity] = ACTIONS(143), + [anon_sym_id] = ACTIONS(145), + [anon_sym_6] = ACTIONS(143), + [anon_sym_not] = ACTIONS(143), + [anon_sym_7] = ACTIONS(143), + [anon_sym_sign] = ACTIONS(143), + [anon_sym_8] = ACTIONS(143), + [anon_sym_BQUOTE] = ACTIONS(143), + [anon_sym_9] = ACTIONS(143), + [anon_sym_absolutevalue] = ACTIONS(143), + [anon_sym_10] = ACTIONS(143), + [anon_sym_sqrt] = ACTIONS(143), + [anon_sym_11] = ACTIONS(143), + [anon_sym_sine] = ACTIONS(143), + [anon_sym_12] = ACTIONS(143), + [anon_sym_floor] = ACTIONS(143), + [anon_sym_13] = ACTIONS(143), + [anon_sym_ceiling] = ACTIONS(143), + [anon_sym_14] = ACTIONS(143), + [anon_sym_round] = ACTIONS(143), + [anon_sym_15] = ACTIONS(143), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_16] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_17] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_18] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_19] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_20] = ACTIONS(143), + [anon_sym_modulus] = ACTIONS(143), + [anon_sym_21] = ACTIONS(143), + [anon_sym_power] = ACTIONS(143), + [anon_sym_22] = ACTIONS(143), + [anon_sym_logarithm] = ACTIONS(143), + [anon_sym_23] = ACTIONS(143), + [anon_sym_minimum] = ACTIONS(143), + [anon_sym_24] = ACTIONS(143), + [anon_sym_maximum] = ACTIONS(143), + [anon_sym_25] = ACTIONS(143), + [anon_sym_atangent] = ACTIONS(143), + [anon_sym_26] = ACTIONS(143), + [anon_sym_length] = ACTIONS(143), + [anon_sym_27] = ACTIONS(143), + [anon_sym_shape] = ACTIONS(143), + [anon_sym_28] = ACTIONS(143), + [anon_sym_range] = ACTIONS(143), + [anon_sym_29] = ACTIONS(143), + [anon_sym_first] = ACTIONS(143), + [anon_sym_30] = ACTIONS(143), + [anon_sym_reverse] = ACTIONS(143), + [anon_sym_31] = ACTIONS(143), + [anon_sym_deshape] = ACTIONS(143), + [anon_sym_32] = ACTIONS(143), + [anon_sym_bits] = ACTIONS(143), + [anon_sym_33] = ACTIONS(143), + [anon_sym_transpose] = ACTIONS(143), + [anon_sym_34] = ACTIONS(143), + [anon_sym_rise] = ACTIONS(143), + [anon_sym_35] = ACTIONS(143), + [anon_sym_fall] = ACTIONS(143), + [anon_sym_36] = ACTIONS(143), + [anon_sym_where] = ACTIONS(143), + [anon_sym_37] = ACTIONS(143), + [anon_sym_classify] = ACTIONS(143), + [anon_sym_38] = ACTIONS(143), + [anon_sym_deduplicate] = ACTIONS(143), + [anon_sym_39] = ACTIONS(143), + [anon_sym_box] = ACTIONS(143), + [anon_sym_40] = ACTIONS(143), + [anon_sym_unbox] = ACTIONS(143), + [anon_sym_41] = ACTIONS(143), + [anon_sym_match] = ACTIONS(143), + [anon_sym_42] = ACTIONS(143), + [anon_sym_couple] = ACTIONS(143), + [anon_sym_43] = ACTIONS(143), + [anon_sym_join] = ACTIONS(143), + [anon_sym_44] = ACTIONS(143), + [anon_sym_select] = ACTIONS(143), + [anon_sym_45] = ACTIONS(143), + [anon_sym_pick] = ACTIONS(143), + [anon_sym_46] = ACTIONS(143), + [anon_sym_reshape] = ACTIONS(143), + [anon_sym_47] = ACTIONS(143), + [anon_sym_take] = ACTIONS(143), + [anon_sym_48] = ACTIONS(143), + [anon_sym_drop] = ACTIONS(143), + [anon_sym_49] = ACTIONS(143), + [anon_sym_rotate] = ACTIONS(143), + [anon_sym_50] = ACTIONS(143), + [anon_sym_windows] = ACTIONS(143), + [anon_sym_51] = ACTIONS(143), + [anon_sym_keep] = ACTIONS(143), + [anon_sym_52] = ACTIONS(143), + [anon_sym_find] = ACTIONS(143), + [anon_sym_53] = ACTIONS(143), + [anon_sym_member] = ACTIONS(143), + [anon_sym_54] = ACTIONS(143), + [anon_sym_indexof] = ACTIONS(143), + [anon_sym_55] = ACTIONS(143), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_56] = ACTIONS(143), + [anon_sym_wait] = ACTIONS(143), + [anon_sym_break] = ACTIONS(143), + [anon_sym_57] = ACTIONS(143), + [anon_sym_parse] = ACTIONS(143), + [anon_sym_random] = ACTIONS(143), + [anon_sym_58] = ACTIONS(143), + [anon_sym_gen] = ACTIONS(143), + [anon_sym_deal] = ACTIONS(143), + [anon_sym_tag] = ACTIONS(143), + [anon_sym_now] = ACTIONS(143), + [anon_sym_type] = ACTIONS(143), + [anon_sym_59] = ACTIONS(143), + [anon_sym_dump] = ACTIONS(143), + [anon_sym_regex] = ACTIONS(143), + [anon_sym_utf] = ACTIONS(143), + [anon_sym_rock] = ACTIONS(143), + [anon_sym_60] = ACTIONS(143), + [anon_sym_surface] = ACTIONS(143), + [anon_sym_TILDE] = ACTIONS(143), + [anon_sym_deep] = ACTIONS(143), + [anon_sym_de] = ACTIONS(145), + [anon_sym_61] = ACTIONS(143), + [anon_sym_abyss] = ACTIONS(143), + [anon_sym_ab] = ACTIONS(145), + [anon_sym_62] = ACTIONS(143), + [anon_sym_seabed] = ACTIONS(143), + [anon_sym_se] = ACTIONS(145), + [anon_sym_63] = ACTIONS(143), + [anon_sym_send] = ACTIONS(143), + [anon_sym_recv] = ACTIONS(143), + [anon_sym_tryrecv] = ACTIONS(143), + [anon_sym_reduce] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_scan] = ACTIONS(147), + [anon_sym_BSLASH] = ACTIONS(147), + [anon_sym_each] = ACTIONS(147), + [anon_sym_64] = ACTIONS(147), + [anon_sym_rows] = ACTIONS(147), + [anon_sym_65] = ACTIONS(147), + [anon_sym_repeat] = ACTIONS(147), + [anon_sym_66] = ACTIONS(147), + [anon_sym_dip] = ACTIONS(147), + [anon_sym_67] = ACTIONS(147), + [anon_sym_gap] = ACTIONS(147), + [anon_sym_68] = ACTIONS(147), + [anon_sym_69] = ACTIONS(147), + [anon_sym_invert] = ACTIONS(147), + [anon_sym_70] = ACTIONS(147), + [anon_sym_spawn] = ACTIONS(147), + [anon_sym_pack] = ACTIONS(147), + [anon_sym_71] = ACTIONS(147), + [anon_sym_tribute] = ACTIONS(147), + [anon_sym_72] = ACTIONS(147), + [anon_sym_reach] = ACTIONS(147), + [anon_sym_fold] = ACTIONS(149), + [anon_sym_73] = ACTIONS(149), + [anon_sym_distribute] = ACTIONS(149), + [anon_sym_74] = ACTIONS(149), + [anon_sym_table] = ACTIONS(149), + [anon_sym_75] = ACTIONS(149), + [anon_sym_cross] = ACTIONS(149), + [anon_sym_76] = ACTIONS(149), + [anon_sym_group] = ACTIONS(149), + [anon_sym_77] = ACTIONS(149), + [anon_sym_partition] = ACTIONS(149), + [anon_sym_78] = ACTIONS(149), + [anon_sym_both] = ACTIONS(149), + [anon_sym_79] = ACTIONS(149), + [anon_sym_bracket] = ACTIONS(149), + [anon_sym_80] = ACTIONS(149), + [anon_sym_fork] = ACTIONS(149), + [anon_sym_81] = ACTIONS(149), + [anon_sym_under] = ACTIONS(149), + [anon_sym_82] = ACTIONS(149), + [anon_sym_level] = ACTIONS(149), + [anon_sym_83] = ACTIONS(149), + [anon_sym_fill] = ACTIONS(149), + [anon_sym_84] = ACTIONS(149), + [anon_sym_bind] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_try] = ACTIONS(151), + [anon_sym_85] = ACTIONS(149), + [anon_sym_combinate] = ACTIONS(149), + [anon_sym_86] = ACTIONS(149), + [anon_sym_87] = ACTIONS(153), + [anon_sym_88] = ACTIONS(153), + [anon_sym_89] = ACTIONS(153), + [anon_sym_90] = ACTIONS(153), + [anon_sym_91] = ACTIONS(153), + [anon_sym_92] = ACTIONS(153), + [anon_sym_93] = ACTIONS(153), [sym__whitespace] = ACTIONS(5), [sym__end_of_line] = ACTIONS(5), }, @@ -14558,244 +14478,242 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_deprecated] = STATE(61), [aux_sym_array_repeat1] = STATE(57), [aux_sym_array_repeat2] = STATE(2), - [aux_sym_number_token1] = ACTIONS(116), - [anon_sym_os] = ACTIONS(118), - [anon_sym_Family] = ACTIONS(118), - [anon_sym_Arch] = ACTIONS(118), - [anon_sym_ExeExt] = ACTIONS(118), - [anon_sym_PllExt] = ACTIONS(118), - [anon_sym_Sep] = ACTIONS(118), - [aux_sym_character_token1] = ACTIONS(120), - [sym_string] = ACTIONS(122), - [sym_multiLineString] = ACTIONS(122), + [aux_sym_number_token1] = ACTIONS(111), + [anon_sym_os] = ACTIONS(113), + [anon_sym_Family] = ACTIONS(113), + [anon_sym_Arch] = ACTIONS(113), + [anon_sym_ExeExt] = ACTIONS(113), + [anon_sym_PllExt] = ACTIONS(113), + [anon_sym_Sep] = ACTIONS(113), + [aux_sym_character_token1] = ACTIONS(115), + [sym_string] = ACTIONS(117), + [sym_multiLineString] = ACTIONS(117), [anon_sym_PIPE] = ACTIONS(15), - [sym_identifier] = ACTIONS(126), - [sym_identifier_deprecated] = ACTIONS(126), - [sym_system] = ACTIONS(122), - [sym_comment] = ACTIONS(228), - [sym_openParen] = ACTIONS(130), - [sym_openCurly] = ACTIONS(134), - [sym_closeCurly] = ACTIONS(238), - [sym_openBracket] = ACTIONS(136), - [sym_leftArrow] = ACTIONS(230), - [anon_sym_CARET] = ACTIONS(142), - [anon_sym_eta] = ACTIONS(144), - [anon_sym_] = ACTIONS(146), - [anon_sym_pi] = ACTIONS(146), - [anon_sym_2] = ACTIONS(146), - [anon_sym_tau] = ACTIONS(144), - [anon_sym_3] = ACTIONS(146), - [anon_sym_infinity] = ACTIONS(144), - [anon_sym_4] = ACTIONS(144), - [anon_sym_e] = ACTIONS(146), - [anon_sym_NaN] = ACTIONS(146), - [anon_sym_NumProcs] = ACTIONS(146), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_COMMA] = ACTIONS(148), - [anon_sym_5] = ACTIONS(148), - [anon_sym_SEMI] = ACTIONS(148), - [anon_sym_identity] = ACTIONS(148), - [anon_sym_id] = ACTIONS(150), - [anon_sym_6] = ACTIONS(148), - [anon_sym_not] = ACTIONS(148), - [anon_sym_7] = ACTIONS(148), - [anon_sym_sign] = ACTIONS(148), - [anon_sym_8] = ACTIONS(148), - [anon_sym_BQUOTE] = ACTIONS(148), - [anon_sym_9] = ACTIONS(148), - [anon_sym_absolutevalue] = ACTIONS(148), - [anon_sym_10] = ACTIONS(148), - [anon_sym_sqrt] = ACTIONS(148), - [anon_sym_11] = ACTIONS(148), - [anon_sym_sine] = ACTIONS(148), - [anon_sym_12] = ACTIONS(148), - [anon_sym_floor] = ACTIONS(148), - [anon_sym_13] = ACTIONS(148), - [anon_sym_ceiling] = ACTIONS(148), - [anon_sym_14] = ACTIONS(148), - [anon_sym_round] = ACTIONS(148), - [anon_sym_15] = ACTIONS(148), - [anon_sym_EQ] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_16] = ACTIONS(148), - [anon_sym_LT] = ACTIONS(150), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_17] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_18] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_19] = ACTIONS(148), - [anon_sym_PERCENT] = ACTIONS(148), - [anon_sym_20] = ACTIONS(148), - [anon_sym_modulus] = ACTIONS(148), - [anon_sym_21] = ACTIONS(148), - [anon_sym_power] = ACTIONS(148), - [anon_sym_22] = ACTIONS(148), - [anon_sym_logarithm] = ACTIONS(148), - [anon_sym_23] = ACTIONS(148), - [anon_sym_minimum] = ACTIONS(148), - [anon_sym_24] = ACTIONS(148), - [anon_sym_maximum] = ACTIONS(148), - [anon_sym_25] = ACTIONS(148), - [anon_sym_atangent] = ACTIONS(148), - [anon_sym_26] = ACTIONS(148), - [anon_sym_length] = ACTIONS(148), - [anon_sym_27] = ACTIONS(148), - [anon_sym_shape] = ACTIONS(148), - [anon_sym_28] = ACTIONS(148), - [anon_sym_range] = ACTIONS(148), - [anon_sym_29] = ACTIONS(148), - [anon_sym_first] = ACTIONS(148), - [anon_sym_30] = ACTIONS(148), - [anon_sym_reverse] = ACTIONS(148), - [anon_sym_31] = ACTIONS(148), - [anon_sym_deshape] = ACTIONS(148), - [anon_sym_32] = ACTIONS(148), - [anon_sym_bits] = ACTIONS(148), - [anon_sym_33] = ACTIONS(148), - [anon_sym_transpose] = ACTIONS(148), - [anon_sym_34] = ACTIONS(148), - [anon_sym_rise] = ACTIONS(148), - [anon_sym_35] = ACTIONS(148), - [anon_sym_fall] = ACTIONS(148), - [anon_sym_36] = ACTIONS(148), - [anon_sym_where] = ACTIONS(148), - [anon_sym_37] = ACTIONS(148), - [anon_sym_classify] = ACTIONS(148), - [anon_sym_38] = ACTIONS(148), - [anon_sym_deduplicate] = ACTIONS(148), - [anon_sym_39] = ACTIONS(148), - [anon_sym_box] = ACTIONS(148), - [anon_sym_40] = ACTIONS(148), - [anon_sym_unbox] = ACTIONS(148), - [anon_sym_41] = ACTIONS(148), - [anon_sym_match] = ACTIONS(148), - [anon_sym_42] = ACTIONS(148), - [anon_sym_couple] = ACTIONS(148), - [anon_sym_43] = ACTIONS(148), - [anon_sym_join] = ACTIONS(148), - [anon_sym_44] = ACTIONS(148), - [anon_sym_select] = ACTIONS(148), - [anon_sym_45] = ACTIONS(148), - [anon_sym_pick] = ACTIONS(148), - [anon_sym_46] = ACTIONS(148), - [anon_sym_reshape] = ACTIONS(148), - [anon_sym_47] = ACTIONS(148), - [anon_sym_take] = ACTIONS(148), - [anon_sym_48] = ACTIONS(148), - [anon_sym_drop] = ACTIONS(148), - [anon_sym_49] = ACTIONS(148), - [anon_sym_rotate] = ACTIONS(148), - [anon_sym_50] = ACTIONS(148), - [anon_sym_windows] = ACTIONS(148), - [anon_sym_51] = ACTIONS(148), - [anon_sym_keep] = ACTIONS(148), - [anon_sym_52] = ACTIONS(148), - [anon_sym_find] = ACTIONS(148), - [anon_sym_53] = ACTIONS(148), - [anon_sym_member] = ACTIONS(148), - [anon_sym_54] = ACTIONS(148), - [anon_sym_indexof] = ACTIONS(148), - [anon_sym_55] = ACTIONS(148), - [anon_sym_assert] = ACTIONS(148), - [anon_sym_56] = ACTIONS(148), - [anon_sym_wait] = ACTIONS(148), - [anon_sym_break] = ACTIONS(148), - [anon_sym_57] = ACTIONS(148), - [anon_sym_parse] = ACTIONS(148), - [anon_sym_random] = ACTIONS(148), - [anon_sym_58] = ACTIONS(148), - [anon_sym_gen] = ACTIONS(148), - [anon_sym_deal] = ACTIONS(148), - [anon_sym_tag] = ACTIONS(148), - [anon_sym_now] = ACTIONS(148), - [anon_sym_type] = ACTIONS(148), - [anon_sym_59] = ACTIONS(148), - [anon_sym_dump] = ACTIONS(148), - [anon_sym_regex] = ACTIONS(148), - [anon_sym_utf] = ACTIONS(148), - [anon_sym_rock] = ACTIONS(148), - [anon_sym_60] = ACTIONS(148), - [anon_sym_surface] = ACTIONS(148), - [anon_sym_TILDE] = ACTIONS(148), - [anon_sym_deep] = ACTIONS(148), - [anon_sym_de] = ACTIONS(150), - [anon_sym_61] = ACTIONS(148), - [anon_sym_abyss] = ACTIONS(148), - [anon_sym_ab] = ACTIONS(150), - [anon_sym_62] = ACTIONS(148), - [anon_sym_seabed] = ACTIONS(148), - [anon_sym_se] = ACTIONS(150), - [anon_sym_63] = ACTIONS(148), - [anon_sym_send] = ACTIONS(148), - [anon_sym_recv] = ACTIONS(148), - [anon_sym_tryrecv] = ACTIONS(148), - [anon_sym_reduce] = ACTIONS(152), - [anon_sym_SLASH] = ACTIONS(152), - [anon_sym_scan] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_each] = ACTIONS(152), - [anon_sym_64] = ACTIONS(152), - [anon_sym_rows] = ACTIONS(152), - [anon_sym_65] = ACTIONS(152), - [anon_sym_repeat] = ACTIONS(152), - [anon_sym_66] = ACTIONS(152), - [anon_sym_dip] = ACTIONS(152), - [anon_sym_di] = ACTIONS(154), - [anon_sym_67] = ACTIONS(152), - [anon_sym_gap] = ACTIONS(152), - [anon_sym_ga] = ACTIONS(154), - [anon_sym_68] = ACTIONS(152), - [anon_sym_oust] = ACTIONS(152), - [anon_sym_69] = ACTIONS(152), - [anon_sym_invert] = ACTIONS(152), - [anon_sym_70] = ACTIONS(152), - [anon_sym_spawn] = ACTIONS(152), - [anon_sym_pack] = ACTIONS(152), - [anon_sym_71] = ACTIONS(152), - [anon_sym_tribute] = ACTIONS(152), - [anon_sym_72] = ACTIONS(152), - [anon_sym_fold] = ACTIONS(156), - [anon_sym_73] = ACTIONS(156), - [anon_sym_distribute] = ACTIONS(156), - [anon_sym_74] = ACTIONS(156), - [anon_sym_table] = ACTIONS(156), - [anon_sym_75] = ACTIONS(156), - [anon_sym_cross] = ACTIONS(156), - [anon_sym_76] = ACTIONS(156), - [anon_sym_group] = ACTIONS(156), - [anon_sym_77] = ACTIONS(156), - [anon_sym_partition] = ACTIONS(156), - [anon_sym_78] = ACTIONS(156), - [anon_sym_both] = ACTIONS(156), - [anon_sym_79] = ACTIONS(156), - [anon_sym_bracket] = ACTIONS(156), - [anon_sym_80] = ACTIONS(156), - [anon_sym_fork] = ACTIONS(156), - [anon_sym_81] = ACTIONS(156), - [anon_sym_under] = ACTIONS(156), - [anon_sym_82] = ACTIONS(156), - [anon_sym_level] = ACTIONS(156), - [anon_sym_83] = ACTIONS(156), - [anon_sym_fill] = ACTIONS(156), - [anon_sym_84] = ACTIONS(156), - [anon_sym_bind] = ACTIONS(156), - [anon_sym_SQUOTE] = ACTIONS(156), - [anon_sym_QMARK] = ACTIONS(156), - [anon_sym_try] = ACTIONS(158), - [anon_sym_85] = ACTIONS(156), - [anon_sym_combinate] = ACTIONS(156), - [anon_sym_86] = ACTIONS(156), - [anon_sym_87] = ACTIONS(160), - [anon_sym_88] = ACTIONS(160), - [anon_sym_89] = ACTIONS(160), - [anon_sym_90] = ACTIONS(160), - [anon_sym_91] = ACTIONS(160), - [anon_sym_92] = ACTIONS(160), - [anon_sym_93] = ACTIONS(160), + [sym_identifier] = ACTIONS(121), + [sym_identifier_deprecated] = ACTIONS(121), + [sym_system] = ACTIONS(117), + [sym_comment] = ACTIONS(218), + [sym_openParen] = ACTIONS(125), + [sym_openCurly] = ACTIONS(129), + [sym_closeCurly] = ACTIONS(228), + [sym_openBracket] = ACTIONS(131), + [sym_leftArrow] = ACTIONS(220), + [anon_sym_CARET] = ACTIONS(137), + [anon_sym_eta] = ACTIONS(139), + [anon_sym_] = ACTIONS(141), + [anon_sym_pi] = ACTIONS(141), + [anon_sym_2] = ACTIONS(141), + [anon_sym_tau] = ACTIONS(139), + [anon_sym_3] = ACTIONS(141), + [anon_sym_infinity] = ACTIONS(139), + [anon_sym_4] = ACTIONS(139), + [anon_sym_e] = ACTIONS(141), + [anon_sym_NaN] = ACTIONS(141), + [anon_sym_NumProcs] = ACTIONS(141), + [anon_sym_DOT] = ACTIONS(143), + [anon_sym_COMMA] = ACTIONS(143), + [anon_sym_5] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_identity] = ACTIONS(143), + [anon_sym_id] = ACTIONS(145), + [anon_sym_6] = ACTIONS(143), + [anon_sym_not] = ACTIONS(143), + [anon_sym_7] = ACTIONS(143), + [anon_sym_sign] = ACTIONS(143), + [anon_sym_8] = ACTIONS(143), + [anon_sym_BQUOTE] = ACTIONS(143), + [anon_sym_9] = ACTIONS(143), + [anon_sym_absolutevalue] = ACTIONS(143), + [anon_sym_10] = ACTIONS(143), + [anon_sym_sqrt] = ACTIONS(143), + [anon_sym_11] = ACTIONS(143), + [anon_sym_sine] = ACTIONS(143), + [anon_sym_12] = ACTIONS(143), + [anon_sym_floor] = ACTIONS(143), + [anon_sym_13] = ACTIONS(143), + [anon_sym_ceiling] = ACTIONS(143), + [anon_sym_14] = ACTIONS(143), + [anon_sym_round] = ACTIONS(143), + [anon_sym_15] = ACTIONS(143), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_16] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_17] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_18] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_19] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_20] = ACTIONS(143), + [anon_sym_modulus] = ACTIONS(143), + [anon_sym_21] = ACTIONS(143), + [anon_sym_power] = ACTIONS(143), + [anon_sym_22] = ACTIONS(143), + [anon_sym_logarithm] = ACTIONS(143), + [anon_sym_23] = ACTIONS(143), + [anon_sym_minimum] = ACTIONS(143), + [anon_sym_24] = ACTIONS(143), + [anon_sym_maximum] = ACTIONS(143), + [anon_sym_25] = ACTIONS(143), + [anon_sym_atangent] = ACTIONS(143), + [anon_sym_26] = ACTIONS(143), + [anon_sym_length] = ACTIONS(143), + [anon_sym_27] = ACTIONS(143), + [anon_sym_shape] = ACTIONS(143), + [anon_sym_28] = ACTIONS(143), + [anon_sym_range] = ACTIONS(143), + [anon_sym_29] = ACTIONS(143), + [anon_sym_first] = ACTIONS(143), + [anon_sym_30] = ACTIONS(143), + [anon_sym_reverse] = ACTIONS(143), + [anon_sym_31] = ACTIONS(143), + [anon_sym_deshape] = ACTIONS(143), + [anon_sym_32] = ACTIONS(143), + [anon_sym_bits] = ACTIONS(143), + [anon_sym_33] = ACTIONS(143), + [anon_sym_transpose] = ACTIONS(143), + [anon_sym_34] = ACTIONS(143), + [anon_sym_rise] = ACTIONS(143), + [anon_sym_35] = ACTIONS(143), + [anon_sym_fall] = ACTIONS(143), + [anon_sym_36] = ACTIONS(143), + [anon_sym_where] = ACTIONS(143), + [anon_sym_37] = ACTIONS(143), + [anon_sym_classify] = ACTIONS(143), + [anon_sym_38] = ACTIONS(143), + [anon_sym_deduplicate] = ACTIONS(143), + [anon_sym_39] = ACTIONS(143), + [anon_sym_box] = ACTIONS(143), + [anon_sym_40] = ACTIONS(143), + [anon_sym_unbox] = ACTIONS(143), + [anon_sym_41] = ACTIONS(143), + [anon_sym_match] = ACTIONS(143), + [anon_sym_42] = ACTIONS(143), + [anon_sym_couple] = ACTIONS(143), + [anon_sym_43] = ACTIONS(143), + [anon_sym_join] = ACTIONS(143), + [anon_sym_44] = ACTIONS(143), + [anon_sym_select] = ACTIONS(143), + [anon_sym_45] = ACTIONS(143), + [anon_sym_pick] = ACTIONS(143), + [anon_sym_46] = ACTIONS(143), + [anon_sym_reshape] = ACTIONS(143), + [anon_sym_47] = ACTIONS(143), + [anon_sym_take] = ACTIONS(143), + [anon_sym_48] = ACTIONS(143), + [anon_sym_drop] = ACTIONS(143), + [anon_sym_49] = ACTIONS(143), + [anon_sym_rotate] = ACTIONS(143), + [anon_sym_50] = ACTIONS(143), + [anon_sym_windows] = ACTIONS(143), + [anon_sym_51] = ACTIONS(143), + [anon_sym_keep] = ACTIONS(143), + [anon_sym_52] = ACTIONS(143), + [anon_sym_find] = ACTIONS(143), + [anon_sym_53] = ACTIONS(143), + [anon_sym_member] = ACTIONS(143), + [anon_sym_54] = ACTIONS(143), + [anon_sym_indexof] = ACTIONS(143), + [anon_sym_55] = ACTIONS(143), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_56] = ACTIONS(143), + [anon_sym_wait] = ACTIONS(143), + [anon_sym_break] = ACTIONS(143), + [anon_sym_57] = ACTIONS(143), + [anon_sym_parse] = ACTIONS(143), + [anon_sym_random] = ACTIONS(143), + [anon_sym_58] = ACTIONS(143), + [anon_sym_gen] = ACTIONS(143), + [anon_sym_deal] = ACTIONS(143), + [anon_sym_tag] = ACTIONS(143), + [anon_sym_now] = ACTIONS(143), + [anon_sym_type] = ACTIONS(143), + [anon_sym_59] = ACTIONS(143), + [anon_sym_dump] = ACTIONS(143), + [anon_sym_regex] = ACTIONS(143), + [anon_sym_utf] = ACTIONS(143), + [anon_sym_rock] = ACTIONS(143), + [anon_sym_60] = ACTIONS(143), + [anon_sym_surface] = ACTIONS(143), + [anon_sym_TILDE] = ACTIONS(143), + [anon_sym_deep] = ACTIONS(143), + [anon_sym_de] = ACTIONS(145), + [anon_sym_61] = ACTIONS(143), + [anon_sym_abyss] = ACTIONS(143), + [anon_sym_ab] = ACTIONS(145), + [anon_sym_62] = ACTIONS(143), + [anon_sym_seabed] = ACTIONS(143), + [anon_sym_se] = ACTIONS(145), + [anon_sym_63] = ACTIONS(143), + [anon_sym_send] = ACTIONS(143), + [anon_sym_recv] = ACTIONS(143), + [anon_sym_tryrecv] = ACTIONS(143), + [anon_sym_reduce] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_scan] = ACTIONS(147), + [anon_sym_BSLASH] = ACTIONS(147), + [anon_sym_each] = ACTIONS(147), + [anon_sym_64] = ACTIONS(147), + [anon_sym_rows] = ACTIONS(147), + [anon_sym_65] = ACTIONS(147), + [anon_sym_repeat] = ACTIONS(147), + [anon_sym_66] = ACTIONS(147), + [anon_sym_dip] = ACTIONS(147), + [anon_sym_67] = ACTIONS(147), + [anon_sym_gap] = ACTIONS(147), + [anon_sym_68] = ACTIONS(147), + [anon_sym_69] = ACTIONS(147), + [anon_sym_invert] = ACTIONS(147), + [anon_sym_70] = ACTIONS(147), + [anon_sym_spawn] = ACTIONS(147), + [anon_sym_pack] = ACTIONS(147), + [anon_sym_71] = ACTIONS(147), + [anon_sym_tribute] = ACTIONS(147), + [anon_sym_72] = ACTIONS(147), + [anon_sym_reach] = ACTIONS(147), + [anon_sym_fold] = ACTIONS(149), + [anon_sym_73] = ACTIONS(149), + [anon_sym_distribute] = ACTIONS(149), + [anon_sym_74] = ACTIONS(149), + [anon_sym_table] = ACTIONS(149), + [anon_sym_75] = ACTIONS(149), + [anon_sym_cross] = ACTIONS(149), + [anon_sym_76] = ACTIONS(149), + [anon_sym_group] = ACTIONS(149), + [anon_sym_77] = ACTIONS(149), + [anon_sym_partition] = ACTIONS(149), + [anon_sym_78] = ACTIONS(149), + [anon_sym_both] = ACTIONS(149), + [anon_sym_79] = ACTIONS(149), + [anon_sym_bracket] = ACTIONS(149), + [anon_sym_80] = ACTIONS(149), + [anon_sym_fork] = ACTIONS(149), + [anon_sym_81] = ACTIONS(149), + [anon_sym_under] = ACTIONS(149), + [anon_sym_82] = ACTIONS(149), + [anon_sym_level] = ACTIONS(149), + [anon_sym_83] = ACTIONS(149), + [anon_sym_fill] = ACTIONS(149), + [anon_sym_84] = ACTIONS(149), + [anon_sym_bind] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_try] = ACTIONS(151), + [anon_sym_85] = ACTIONS(149), + [anon_sym_combinate] = ACTIONS(149), + [anon_sym_86] = ACTIONS(149), + [anon_sym_87] = ACTIONS(153), + [anon_sym_88] = ACTIONS(153), + [anon_sym_89] = ACTIONS(153), + [anon_sym_90] = ACTIONS(153), + [anon_sym_91] = ACTIONS(153), + [anon_sym_92] = ACTIONS(153), + [anon_sym_93] = ACTIONS(153), [sym__whitespace] = ACTIONS(5), [sym__end_of_line] = ACTIONS(5), }, @@ -14819,244 +14737,242 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_deprecated] = STATE(61), [aux_sym_array_repeat1] = STATE(57), [aux_sym_array_repeat2] = STATE(2), - [aux_sym_number_token1] = ACTIONS(116), - [anon_sym_os] = ACTIONS(118), - [anon_sym_Family] = ACTIONS(118), - [anon_sym_Arch] = ACTIONS(118), - [anon_sym_ExeExt] = ACTIONS(118), - [anon_sym_PllExt] = ACTIONS(118), - [anon_sym_Sep] = ACTIONS(118), - [aux_sym_character_token1] = ACTIONS(120), - [sym_string] = ACTIONS(122), - [sym_multiLineString] = ACTIONS(122), + [aux_sym_number_token1] = ACTIONS(111), + [anon_sym_os] = ACTIONS(113), + [anon_sym_Family] = ACTIONS(113), + [anon_sym_Arch] = ACTIONS(113), + [anon_sym_ExeExt] = ACTIONS(113), + [anon_sym_PllExt] = ACTIONS(113), + [anon_sym_Sep] = ACTIONS(113), + [aux_sym_character_token1] = ACTIONS(115), + [sym_string] = ACTIONS(117), + [sym_multiLineString] = ACTIONS(117), [anon_sym_PIPE] = ACTIONS(15), - [sym_identifier] = ACTIONS(126), - [sym_identifier_deprecated] = ACTIONS(126), - [sym_system] = ACTIONS(122), - [sym_comment] = ACTIONS(228), - [sym_openParen] = ACTIONS(130), - [sym_openCurly] = ACTIONS(134), - [sym_openBracket] = ACTIONS(136), - [sym_closeBracket] = ACTIONS(252), - [sym_leftArrow] = ACTIONS(230), - [anon_sym_CARET] = ACTIONS(142), - [anon_sym_eta] = ACTIONS(144), - [anon_sym_] = ACTIONS(146), - [anon_sym_pi] = ACTIONS(146), - [anon_sym_2] = ACTIONS(146), - [anon_sym_tau] = ACTIONS(144), - [anon_sym_3] = ACTIONS(146), - [anon_sym_infinity] = ACTIONS(144), - [anon_sym_4] = ACTIONS(144), - [anon_sym_e] = ACTIONS(146), - [anon_sym_NaN] = ACTIONS(146), - [anon_sym_NumProcs] = ACTIONS(146), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_COMMA] = ACTIONS(148), - [anon_sym_5] = ACTIONS(148), - [anon_sym_SEMI] = ACTIONS(148), - [anon_sym_identity] = ACTIONS(148), - [anon_sym_id] = ACTIONS(150), - [anon_sym_6] = ACTIONS(148), - [anon_sym_not] = ACTIONS(148), - [anon_sym_7] = ACTIONS(148), - [anon_sym_sign] = ACTIONS(148), - [anon_sym_8] = ACTIONS(148), - [anon_sym_BQUOTE] = ACTIONS(148), - [anon_sym_9] = ACTIONS(148), - [anon_sym_absolutevalue] = ACTIONS(148), - [anon_sym_10] = ACTIONS(148), - [anon_sym_sqrt] = ACTIONS(148), - [anon_sym_11] = ACTIONS(148), - [anon_sym_sine] = ACTIONS(148), - [anon_sym_12] = ACTIONS(148), - [anon_sym_floor] = ACTIONS(148), - [anon_sym_13] = ACTIONS(148), - [anon_sym_ceiling] = ACTIONS(148), - [anon_sym_14] = ACTIONS(148), - [anon_sym_round] = ACTIONS(148), - [anon_sym_15] = ACTIONS(148), - [anon_sym_EQ] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_16] = ACTIONS(148), - [anon_sym_LT] = ACTIONS(150), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_17] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_18] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_19] = ACTIONS(148), - [anon_sym_PERCENT] = ACTIONS(148), - [anon_sym_20] = ACTIONS(148), - [anon_sym_modulus] = ACTIONS(148), - [anon_sym_21] = ACTIONS(148), - [anon_sym_power] = ACTIONS(148), - [anon_sym_22] = ACTIONS(148), - [anon_sym_logarithm] = ACTIONS(148), - [anon_sym_23] = ACTIONS(148), - [anon_sym_minimum] = ACTIONS(148), - [anon_sym_24] = ACTIONS(148), - [anon_sym_maximum] = ACTIONS(148), - [anon_sym_25] = ACTIONS(148), - [anon_sym_atangent] = ACTIONS(148), - [anon_sym_26] = ACTIONS(148), - [anon_sym_length] = ACTIONS(148), - [anon_sym_27] = ACTIONS(148), - [anon_sym_shape] = ACTIONS(148), - [anon_sym_28] = ACTIONS(148), - [anon_sym_range] = ACTIONS(148), - [anon_sym_29] = ACTIONS(148), - [anon_sym_first] = ACTIONS(148), - [anon_sym_30] = ACTIONS(148), - [anon_sym_reverse] = ACTIONS(148), - [anon_sym_31] = ACTIONS(148), - [anon_sym_deshape] = ACTIONS(148), - [anon_sym_32] = ACTIONS(148), - [anon_sym_bits] = ACTIONS(148), - [anon_sym_33] = ACTIONS(148), - [anon_sym_transpose] = ACTIONS(148), - [anon_sym_34] = ACTIONS(148), - [anon_sym_rise] = ACTIONS(148), - [anon_sym_35] = ACTIONS(148), - [anon_sym_fall] = ACTIONS(148), - [anon_sym_36] = ACTIONS(148), - [anon_sym_where] = ACTIONS(148), - [anon_sym_37] = ACTIONS(148), - [anon_sym_classify] = ACTIONS(148), - [anon_sym_38] = ACTIONS(148), - [anon_sym_deduplicate] = ACTIONS(148), - [anon_sym_39] = ACTIONS(148), - [anon_sym_box] = ACTIONS(148), - [anon_sym_40] = ACTIONS(148), - [anon_sym_unbox] = ACTIONS(148), - [anon_sym_41] = ACTIONS(148), - [anon_sym_match] = ACTIONS(148), - [anon_sym_42] = ACTIONS(148), - [anon_sym_couple] = ACTIONS(148), - [anon_sym_43] = ACTIONS(148), - [anon_sym_join] = ACTIONS(148), - [anon_sym_44] = ACTIONS(148), - [anon_sym_select] = ACTIONS(148), - [anon_sym_45] = ACTIONS(148), - [anon_sym_pick] = ACTIONS(148), - [anon_sym_46] = ACTIONS(148), - [anon_sym_reshape] = ACTIONS(148), - [anon_sym_47] = ACTIONS(148), - [anon_sym_take] = ACTIONS(148), - [anon_sym_48] = ACTIONS(148), - [anon_sym_drop] = ACTIONS(148), - [anon_sym_49] = ACTIONS(148), - [anon_sym_rotate] = ACTIONS(148), - [anon_sym_50] = ACTIONS(148), - [anon_sym_windows] = ACTIONS(148), - [anon_sym_51] = ACTIONS(148), - [anon_sym_keep] = ACTIONS(148), - [anon_sym_52] = ACTIONS(148), - [anon_sym_find] = ACTIONS(148), - [anon_sym_53] = ACTIONS(148), - [anon_sym_member] = ACTIONS(148), - [anon_sym_54] = ACTIONS(148), - [anon_sym_indexof] = ACTIONS(148), - [anon_sym_55] = ACTIONS(148), - [anon_sym_assert] = ACTIONS(148), - [anon_sym_56] = ACTIONS(148), - [anon_sym_wait] = ACTIONS(148), - [anon_sym_break] = ACTIONS(148), - [anon_sym_57] = ACTIONS(148), - [anon_sym_parse] = ACTIONS(148), - [anon_sym_random] = ACTIONS(148), - [anon_sym_58] = ACTIONS(148), - [anon_sym_gen] = ACTIONS(148), - [anon_sym_deal] = ACTIONS(148), - [anon_sym_tag] = ACTIONS(148), - [anon_sym_now] = ACTIONS(148), - [anon_sym_type] = ACTIONS(148), - [anon_sym_59] = ACTIONS(148), - [anon_sym_dump] = ACTIONS(148), - [anon_sym_regex] = ACTIONS(148), - [anon_sym_utf] = ACTIONS(148), - [anon_sym_rock] = ACTIONS(148), - [anon_sym_60] = ACTIONS(148), - [anon_sym_surface] = ACTIONS(148), - [anon_sym_TILDE] = ACTIONS(148), - [anon_sym_deep] = ACTIONS(148), - [anon_sym_de] = ACTIONS(150), - [anon_sym_61] = ACTIONS(148), - [anon_sym_abyss] = ACTIONS(148), - [anon_sym_ab] = ACTIONS(150), - [anon_sym_62] = ACTIONS(148), - [anon_sym_seabed] = ACTIONS(148), - [anon_sym_se] = ACTIONS(150), - [anon_sym_63] = ACTIONS(148), - [anon_sym_send] = ACTIONS(148), - [anon_sym_recv] = ACTIONS(148), - [anon_sym_tryrecv] = ACTIONS(148), - [anon_sym_reduce] = ACTIONS(152), - [anon_sym_SLASH] = ACTIONS(152), - [anon_sym_scan] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_each] = ACTIONS(152), - [anon_sym_64] = ACTIONS(152), - [anon_sym_rows] = ACTIONS(152), - [anon_sym_65] = ACTIONS(152), - [anon_sym_repeat] = ACTIONS(152), - [anon_sym_66] = ACTIONS(152), - [anon_sym_dip] = ACTIONS(152), - [anon_sym_di] = ACTIONS(154), - [anon_sym_67] = ACTIONS(152), - [anon_sym_gap] = ACTIONS(152), - [anon_sym_ga] = ACTIONS(154), - [anon_sym_68] = ACTIONS(152), - [anon_sym_oust] = ACTIONS(152), - [anon_sym_69] = ACTIONS(152), - [anon_sym_invert] = ACTIONS(152), - [anon_sym_70] = ACTIONS(152), - [anon_sym_spawn] = ACTIONS(152), - [anon_sym_pack] = ACTIONS(152), - [anon_sym_71] = ACTIONS(152), - [anon_sym_tribute] = ACTIONS(152), - [anon_sym_72] = ACTIONS(152), - [anon_sym_fold] = ACTIONS(156), - [anon_sym_73] = ACTIONS(156), - [anon_sym_distribute] = ACTIONS(156), - [anon_sym_74] = ACTIONS(156), - [anon_sym_table] = ACTIONS(156), - [anon_sym_75] = ACTIONS(156), - [anon_sym_cross] = ACTIONS(156), - [anon_sym_76] = ACTIONS(156), - [anon_sym_group] = ACTIONS(156), - [anon_sym_77] = ACTIONS(156), - [anon_sym_partition] = ACTIONS(156), - [anon_sym_78] = ACTIONS(156), - [anon_sym_both] = ACTIONS(156), - [anon_sym_79] = ACTIONS(156), - [anon_sym_bracket] = ACTIONS(156), - [anon_sym_80] = ACTIONS(156), - [anon_sym_fork] = ACTIONS(156), - [anon_sym_81] = ACTIONS(156), - [anon_sym_under] = ACTIONS(156), - [anon_sym_82] = ACTIONS(156), - [anon_sym_level] = ACTIONS(156), - [anon_sym_83] = ACTIONS(156), - [anon_sym_fill] = ACTIONS(156), - [anon_sym_84] = ACTIONS(156), - [anon_sym_bind] = ACTIONS(156), - [anon_sym_SQUOTE] = ACTIONS(156), - [anon_sym_QMARK] = ACTIONS(156), - [anon_sym_try] = ACTIONS(158), - [anon_sym_85] = ACTIONS(156), - [anon_sym_combinate] = ACTIONS(156), - [anon_sym_86] = ACTIONS(156), - [anon_sym_87] = ACTIONS(160), - [anon_sym_88] = ACTIONS(160), - [anon_sym_89] = ACTIONS(160), - [anon_sym_90] = ACTIONS(160), - [anon_sym_91] = ACTIONS(160), - [anon_sym_92] = ACTIONS(160), - [anon_sym_93] = ACTIONS(160), + [sym_identifier] = ACTIONS(121), + [sym_identifier_deprecated] = ACTIONS(121), + [sym_system] = ACTIONS(117), + [sym_comment] = ACTIONS(218), + [sym_openParen] = ACTIONS(125), + [sym_openCurly] = ACTIONS(129), + [sym_openBracket] = ACTIONS(131), + [sym_closeBracket] = ACTIONS(242), + [sym_leftArrow] = ACTIONS(220), + [anon_sym_CARET] = ACTIONS(137), + [anon_sym_eta] = ACTIONS(139), + [anon_sym_] = ACTIONS(141), + [anon_sym_pi] = ACTIONS(141), + [anon_sym_2] = ACTIONS(141), + [anon_sym_tau] = ACTIONS(139), + [anon_sym_3] = ACTIONS(141), + [anon_sym_infinity] = ACTIONS(139), + [anon_sym_4] = ACTIONS(139), + [anon_sym_e] = ACTIONS(141), + [anon_sym_NaN] = ACTIONS(141), + [anon_sym_NumProcs] = ACTIONS(141), + [anon_sym_DOT] = ACTIONS(143), + [anon_sym_COMMA] = ACTIONS(143), + [anon_sym_5] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_identity] = ACTIONS(143), + [anon_sym_id] = ACTIONS(145), + [anon_sym_6] = ACTIONS(143), + [anon_sym_not] = ACTIONS(143), + [anon_sym_7] = ACTIONS(143), + [anon_sym_sign] = ACTIONS(143), + [anon_sym_8] = ACTIONS(143), + [anon_sym_BQUOTE] = ACTIONS(143), + [anon_sym_9] = ACTIONS(143), + [anon_sym_absolutevalue] = ACTIONS(143), + [anon_sym_10] = ACTIONS(143), + [anon_sym_sqrt] = ACTIONS(143), + [anon_sym_11] = ACTIONS(143), + [anon_sym_sine] = ACTIONS(143), + [anon_sym_12] = ACTIONS(143), + [anon_sym_floor] = ACTIONS(143), + [anon_sym_13] = ACTIONS(143), + [anon_sym_ceiling] = ACTIONS(143), + [anon_sym_14] = ACTIONS(143), + [anon_sym_round] = ACTIONS(143), + [anon_sym_15] = ACTIONS(143), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_16] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_17] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_18] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_19] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_20] = ACTIONS(143), + [anon_sym_modulus] = ACTIONS(143), + [anon_sym_21] = ACTIONS(143), + [anon_sym_power] = ACTIONS(143), + [anon_sym_22] = ACTIONS(143), + [anon_sym_logarithm] = ACTIONS(143), + [anon_sym_23] = ACTIONS(143), + [anon_sym_minimum] = ACTIONS(143), + [anon_sym_24] = ACTIONS(143), + [anon_sym_maximum] = ACTIONS(143), + [anon_sym_25] = ACTIONS(143), + [anon_sym_atangent] = ACTIONS(143), + [anon_sym_26] = ACTIONS(143), + [anon_sym_length] = ACTIONS(143), + [anon_sym_27] = ACTIONS(143), + [anon_sym_shape] = ACTIONS(143), + [anon_sym_28] = ACTIONS(143), + [anon_sym_range] = ACTIONS(143), + [anon_sym_29] = ACTIONS(143), + [anon_sym_first] = ACTIONS(143), + [anon_sym_30] = ACTIONS(143), + [anon_sym_reverse] = ACTIONS(143), + [anon_sym_31] = ACTIONS(143), + [anon_sym_deshape] = ACTIONS(143), + [anon_sym_32] = ACTIONS(143), + [anon_sym_bits] = ACTIONS(143), + [anon_sym_33] = ACTIONS(143), + [anon_sym_transpose] = ACTIONS(143), + [anon_sym_34] = ACTIONS(143), + [anon_sym_rise] = ACTIONS(143), + [anon_sym_35] = ACTIONS(143), + [anon_sym_fall] = ACTIONS(143), + [anon_sym_36] = ACTIONS(143), + [anon_sym_where] = ACTIONS(143), + [anon_sym_37] = ACTIONS(143), + [anon_sym_classify] = ACTIONS(143), + [anon_sym_38] = ACTIONS(143), + [anon_sym_deduplicate] = ACTIONS(143), + [anon_sym_39] = ACTIONS(143), + [anon_sym_box] = ACTIONS(143), + [anon_sym_40] = ACTIONS(143), + [anon_sym_unbox] = ACTIONS(143), + [anon_sym_41] = ACTIONS(143), + [anon_sym_match] = ACTIONS(143), + [anon_sym_42] = ACTIONS(143), + [anon_sym_couple] = ACTIONS(143), + [anon_sym_43] = ACTIONS(143), + [anon_sym_join] = ACTIONS(143), + [anon_sym_44] = ACTIONS(143), + [anon_sym_select] = ACTIONS(143), + [anon_sym_45] = ACTIONS(143), + [anon_sym_pick] = ACTIONS(143), + [anon_sym_46] = ACTIONS(143), + [anon_sym_reshape] = ACTIONS(143), + [anon_sym_47] = ACTIONS(143), + [anon_sym_take] = ACTIONS(143), + [anon_sym_48] = ACTIONS(143), + [anon_sym_drop] = ACTIONS(143), + [anon_sym_49] = ACTIONS(143), + [anon_sym_rotate] = ACTIONS(143), + [anon_sym_50] = ACTIONS(143), + [anon_sym_windows] = ACTIONS(143), + [anon_sym_51] = ACTIONS(143), + [anon_sym_keep] = ACTIONS(143), + [anon_sym_52] = ACTIONS(143), + [anon_sym_find] = ACTIONS(143), + [anon_sym_53] = ACTIONS(143), + [anon_sym_member] = ACTIONS(143), + [anon_sym_54] = ACTIONS(143), + [anon_sym_indexof] = ACTIONS(143), + [anon_sym_55] = ACTIONS(143), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_56] = ACTIONS(143), + [anon_sym_wait] = ACTIONS(143), + [anon_sym_break] = ACTIONS(143), + [anon_sym_57] = ACTIONS(143), + [anon_sym_parse] = ACTIONS(143), + [anon_sym_random] = ACTIONS(143), + [anon_sym_58] = ACTIONS(143), + [anon_sym_gen] = ACTIONS(143), + [anon_sym_deal] = ACTIONS(143), + [anon_sym_tag] = ACTIONS(143), + [anon_sym_now] = ACTIONS(143), + [anon_sym_type] = ACTIONS(143), + [anon_sym_59] = ACTIONS(143), + [anon_sym_dump] = ACTIONS(143), + [anon_sym_regex] = ACTIONS(143), + [anon_sym_utf] = ACTIONS(143), + [anon_sym_rock] = ACTIONS(143), + [anon_sym_60] = ACTIONS(143), + [anon_sym_surface] = ACTIONS(143), + [anon_sym_TILDE] = ACTIONS(143), + [anon_sym_deep] = ACTIONS(143), + [anon_sym_de] = ACTIONS(145), + [anon_sym_61] = ACTIONS(143), + [anon_sym_abyss] = ACTIONS(143), + [anon_sym_ab] = ACTIONS(145), + [anon_sym_62] = ACTIONS(143), + [anon_sym_seabed] = ACTIONS(143), + [anon_sym_se] = ACTIONS(145), + [anon_sym_63] = ACTIONS(143), + [anon_sym_send] = ACTIONS(143), + [anon_sym_recv] = ACTIONS(143), + [anon_sym_tryrecv] = ACTIONS(143), + [anon_sym_reduce] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_scan] = ACTIONS(147), + [anon_sym_BSLASH] = ACTIONS(147), + [anon_sym_each] = ACTIONS(147), + [anon_sym_64] = ACTIONS(147), + [anon_sym_rows] = ACTIONS(147), + [anon_sym_65] = ACTIONS(147), + [anon_sym_repeat] = ACTIONS(147), + [anon_sym_66] = ACTIONS(147), + [anon_sym_dip] = ACTIONS(147), + [anon_sym_67] = ACTIONS(147), + [anon_sym_gap] = ACTIONS(147), + [anon_sym_68] = ACTIONS(147), + [anon_sym_69] = ACTIONS(147), + [anon_sym_invert] = ACTIONS(147), + [anon_sym_70] = ACTIONS(147), + [anon_sym_spawn] = ACTIONS(147), + [anon_sym_pack] = ACTIONS(147), + [anon_sym_71] = ACTIONS(147), + [anon_sym_tribute] = ACTIONS(147), + [anon_sym_72] = ACTIONS(147), + [anon_sym_reach] = ACTIONS(147), + [anon_sym_fold] = ACTIONS(149), + [anon_sym_73] = ACTIONS(149), + [anon_sym_distribute] = ACTIONS(149), + [anon_sym_74] = ACTIONS(149), + [anon_sym_table] = ACTIONS(149), + [anon_sym_75] = ACTIONS(149), + [anon_sym_cross] = ACTIONS(149), + [anon_sym_76] = ACTIONS(149), + [anon_sym_group] = ACTIONS(149), + [anon_sym_77] = ACTIONS(149), + [anon_sym_partition] = ACTIONS(149), + [anon_sym_78] = ACTIONS(149), + [anon_sym_both] = ACTIONS(149), + [anon_sym_79] = ACTIONS(149), + [anon_sym_bracket] = ACTIONS(149), + [anon_sym_80] = ACTIONS(149), + [anon_sym_fork] = ACTIONS(149), + [anon_sym_81] = ACTIONS(149), + [anon_sym_under] = ACTIONS(149), + [anon_sym_82] = ACTIONS(149), + [anon_sym_level] = ACTIONS(149), + [anon_sym_83] = ACTIONS(149), + [anon_sym_fill] = ACTIONS(149), + [anon_sym_84] = ACTIONS(149), + [anon_sym_bind] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_try] = ACTIONS(151), + [anon_sym_85] = ACTIONS(149), + [anon_sym_combinate] = ACTIONS(149), + [anon_sym_86] = ACTIONS(149), + [anon_sym_87] = ACTIONS(153), + [anon_sym_88] = ACTIONS(153), + [anon_sym_89] = ACTIONS(153), + [anon_sym_90] = ACTIONS(153), + [anon_sym_91] = ACTIONS(153), + [anon_sym_92] = ACTIONS(153), + [anon_sym_93] = ACTIONS(153), [sym__whitespace] = ACTIONS(5), [sym__end_of_line] = ACTIONS(5), }, @@ -15080,246 +14996,244 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_deprecated] = STATE(61), [aux_sym_array_repeat1] = STATE(57), [aux_sym_array_repeat2] = STATE(24), - [aux_sym_number_token1] = ACTIONS(116), - [anon_sym_os] = ACTIONS(118), - [anon_sym_Family] = ACTIONS(118), - [anon_sym_Arch] = ACTIONS(118), - [anon_sym_ExeExt] = ACTIONS(118), - [anon_sym_PllExt] = ACTIONS(118), - [anon_sym_Sep] = ACTIONS(118), - [aux_sym_character_token1] = ACTIONS(120), - [sym_string] = ACTIONS(122), - [sym_multiLineString] = ACTIONS(122), + [aux_sym_number_token1] = ACTIONS(111), + [anon_sym_os] = ACTIONS(113), + [anon_sym_Family] = ACTIONS(113), + [anon_sym_Arch] = ACTIONS(113), + [anon_sym_ExeExt] = ACTIONS(113), + [anon_sym_PllExt] = ACTIONS(113), + [anon_sym_Sep] = ACTIONS(113), + [aux_sym_character_token1] = ACTIONS(115), + [sym_string] = ACTIONS(117), + [sym_multiLineString] = ACTIONS(117), [anon_sym_PIPE] = ACTIONS(15), - [sym_identifier] = ACTIONS(126), - [sym_identifier_deprecated] = ACTIONS(126), - [sym_system] = ACTIONS(122), - [sym_comment] = ACTIONS(228), - [sym_openParen] = ACTIONS(130), - [sym_openCurly] = ACTIONS(134), - [sym_closeCurly] = ACTIONS(254), - [sym_openBracket] = ACTIONS(136), - [sym_leftArrow] = ACTIONS(230), - [anon_sym_CARET] = ACTIONS(142), - [anon_sym_eta] = ACTIONS(144), - [anon_sym_] = ACTIONS(146), - [anon_sym_pi] = ACTIONS(146), - [anon_sym_2] = ACTIONS(146), - [anon_sym_tau] = ACTIONS(144), - [anon_sym_3] = ACTIONS(146), - [anon_sym_infinity] = ACTIONS(144), - [anon_sym_4] = ACTIONS(144), - [anon_sym_e] = ACTIONS(146), - [anon_sym_NaN] = ACTIONS(146), - [anon_sym_NumProcs] = ACTIONS(146), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_COMMA] = ACTIONS(148), - [anon_sym_5] = ACTIONS(148), - [anon_sym_SEMI] = ACTIONS(148), - [anon_sym_identity] = ACTIONS(148), - [anon_sym_id] = ACTIONS(150), - [anon_sym_6] = ACTIONS(148), - [anon_sym_not] = ACTIONS(148), - [anon_sym_7] = ACTIONS(148), - [anon_sym_sign] = ACTIONS(148), - [anon_sym_8] = ACTIONS(148), - [anon_sym_BQUOTE] = ACTIONS(148), - [anon_sym_9] = ACTIONS(148), - [anon_sym_absolutevalue] = ACTIONS(148), - [anon_sym_10] = ACTIONS(148), - [anon_sym_sqrt] = ACTIONS(148), - [anon_sym_11] = ACTIONS(148), - [anon_sym_sine] = ACTIONS(148), - [anon_sym_12] = ACTIONS(148), - [anon_sym_floor] = ACTIONS(148), - [anon_sym_13] = ACTIONS(148), - [anon_sym_ceiling] = ACTIONS(148), - [anon_sym_14] = ACTIONS(148), - [anon_sym_round] = ACTIONS(148), - [anon_sym_15] = ACTIONS(148), - [anon_sym_EQ] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_16] = ACTIONS(148), - [anon_sym_LT] = ACTIONS(150), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_17] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_18] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_19] = ACTIONS(148), - [anon_sym_PERCENT] = ACTIONS(148), - [anon_sym_20] = ACTIONS(148), - [anon_sym_modulus] = ACTIONS(148), - [anon_sym_21] = ACTIONS(148), - [anon_sym_power] = ACTIONS(148), - [anon_sym_22] = ACTIONS(148), - [anon_sym_logarithm] = ACTIONS(148), - [anon_sym_23] = ACTIONS(148), - [anon_sym_minimum] = ACTIONS(148), - [anon_sym_24] = ACTIONS(148), - [anon_sym_maximum] = ACTIONS(148), - [anon_sym_25] = ACTIONS(148), - [anon_sym_atangent] = ACTIONS(148), - [anon_sym_26] = ACTIONS(148), - [anon_sym_length] = ACTIONS(148), - [anon_sym_27] = ACTIONS(148), - [anon_sym_shape] = ACTIONS(148), - [anon_sym_28] = ACTIONS(148), - [anon_sym_range] = ACTIONS(148), - [anon_sym_29] = ACTIONS(148), - [anon_sym_first] = ACTIONS(148), - [anon_sym_30] = ACTIONS(148), - [anon_sym_reverse] = ACTIONS(148), - [anon_sym_31] = ACTIONS(148), - [anon_sym_deshape] = ACTIONS(148), - [anon_sym_32] = ACTIONS(148), - [anon_sym_bits] = ACTIONS(148), - [anon_sym_33] = ACTIONS(148), - [anon_sym_transpose] = ACTIONS(148), - [anon_sym_34] = ACTIONS(148), - [anon_sym_rise] = ACTIONS(148), - [anon_sym_35] = ACTIONS(148), - [anon_sym_fall] = ACTIONS(148), - [anon_sym_36] = ACTIONS(148), - [anon_sym_where] = ACTIONS(148), - [anon_sym_37] = ACTIONS(148), - [anon_sym_classify] = ACTIONS(148), - [anon_sym_38] = ACTIONS(148), - [anon_sym_deduplicate] = ACTIONS(148), - [anon_sym_39] = ACTIONS(148), - [anon_sym_box] = ACTIONS(148), - [anon_sym_40] = ACTIONS(148), - [anon_sym_unbox] = ACTIONS(148), - [anon_sym_41] = ACTIONS(148), - [anon_sym_match] = ACTIONS(148), - [anon_sym_42] = ACTIONS(148), - [anon_sym_couple] = ACTIONS(148), - [anon_sym_43] = ACTIONS(148), - [anon_sym_join] = ACTIONS(148), - [anon_sym_44] = ACTIONS(148), - [anon_sym_select] = ACTIONS(148), - [anon_sym_45] = ACTIONS(148), - [anon_sym_pick] = ACTIONS(148), - [anon_sym_46] = ACTIONS(148), - [anon_sym_reshape] = ACTIONS(148), - [anon_sym_47] = ACTIONS(148), - [anon_sym_take] = ACTIONS(148), - [anon_sym_48] = ACTIONS(148), - [anon_sym_drop] = ACTIONS(148), - [anon_sym_49] = ACTIONS(148), - [anon_sym_rotate] = ACTIONS(148), - [anon_sym_50] = ACTIONS(148), - [anon_sym_windows] = ACTIONS(148), - [anon_sym_51] = ACTIONS(148), - [anon_sym_keep] = ACTIONS(148), - [anon_sym_52] = ACTIONS(148), - [anon_sym_find] = ACTIONS(148), - [anon_sym_53] = ACTIONS(148), - [anon_sym_member] = ACTIONS(148), - [anon_sym_54] = ACTIONS(148), - [anon_sym_indexof] = ACTIONS(148), - [anon_sym_55] = ACTIONS(148), - [anon_sym_assert] = ACTIONS(148), - [anon_sym_56] = ACTIONS(148), - [anon_sym_wait] = ACTIONS(148), - [anon_sym_break] = ACTIONS(148), - [anon_sym_57] = ACTIONS(148), - [anon_sym_parse] = ACTIONS(148), - [anon_sym_random] = ACTIONS(148), - [anon_sym_58] = ACTIONS(148), - [anon_sym_gen] = ACTIONS(148), - [anon_sym_deal] = ACTIONS(148), - [anon_sym_tag] = ACTIONS(148), - [anon_sym_now] = ACTIONS(148), - [anon_sym_type] = ACTIONS(148), - [anon_sym_59] = ACTIONS(148), - [anon_sym_dump] = ACTIONS(148), - [anon_sym_regex] = ACTIONS(148), - [anon_sym_utf] = ACTIONS(148), - [anon_sym_rock] = ACTIONS(148), - [anon_sym_60] = ACTIONS(148), - [anon_sym_surface] = ACTIONS(148), - [anon_sym_TILDE] = ACTIONS(148), - [anon_sym_deep] = ACTIONS(148), - [anon_sym_de] = ACTIONS(150), - [anon_sym_61] = ACTIONS(148), - [anon_sym_abyss] = ACTIONS(148), - [anon_sym_ab] = ACTIONS(150), - [anon_sym_62] = ACTIONS(148), - [anon_sym_seabed] = ACTIONS(148), - [anon_sym_se] = ACTIONS(150), - [anon_sym_63] = ACTIONS(148), - [anon_sym_send] = ACTIONS(148), - [anon_sym_recv] = ACTIONS(148), - [anon_sym_tryrecv] = ACTIONS(148), - [anon_sym_reduce] = ACTIONS(152), - [anon_sym_SLASH] = ACTIONS(152), - [anon_sym_scan] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_each] = ACTIONS(152), - [anon_sym_64] = ACTIONS(152), - [anon_sym_rows] = ACTIONS(152), - [anon_sym_65] = ACTIONS(152), - [anon_sym_repeat] = ACTIONS(152), - [anon_sym_66] = ACTIONS(152), - [anon_sym_dip] = ACTIONS(152), - [anon_sym_di] = ACTIONS(154), - [anon_sym_67] = ACTIONS(152), - [anon_sym_gap] = ACTIONS(152), - [anon_sym_ga] = ACTIONS(154), - [anon_sym_68] = ACTIONS(152), - [anon_sym_oust] = ACTIONS(152), - [anon_sym_69] = ACTIONS(152), - [anon_sym_invert] = ACTIONS(152), - [anon_sym_70] = ACTIONS(152), - [anon_sym_spawn] = ACTIONS(152), - [anon_sym_pack] = ACTIONS(152), - [anon_sym_71] = ACTIONS(152), - [anon_sym_tribute] = ACTIONS(152), - [anon_sym_72] = ACTIONS(152), - [anon_sym_fold] = ACTIONS(156), - [anon_sym_73] = ACTIONS(156), - [anon_sym_distribute] = ACTIONS(156), - [anon_sym_74] = ACTIONS(156), - [anon_sym_table] = ACTIONS(156), - [anon_sym_75] = ACTIONS(156), - [anon_sym_cross] = ACTIONS(156), - [anon_sym_76] = ACTIONS(156), - [anon_sym_group] = ACTIONS(156), - [anon_sym_77] = ACTIONS(156), - [anon_sym_partition] = ACTIONS(156), - [anon_sym_78] = ACTIONS(156), - [anon_sym_both] = ACTIONS(156), - [anon_sym_79] = ACTIONS(156), - [anon_sym_bracket] = ACTIONS(156), - [anon_sym_80] = ACTIONS(156), - [anon_sym_fork] = ACTIONS(156), - [anon_sym_81] = ACTIONS(156), - [anon_sym_under] = ACTIONS(156), - [anon_sym_82] = ACTIONS(156), - [anon_sym_level] = ACTIONS(156), - [anon_sym_83] = ACTIONS(156), - [anon_sym_fill] = ACTIONS(156), - [anon_sym_84] = ACTIONS(156), - [anon_sym_bind] = ACTIONS(156), - [anon_sym_SQUOTE] = ACTIONS(156), - [anon_sym_QMARK] = ACTIONS(156), - [anon_sym_try] = ACTIONS(158), - [anon_sym_85] = ACTIONS(156), - [anon_sym_combinate] = ACTIONS(156), - [anon_sym_86] = ACTIONS(156), - [anon_sym_87] = ACTIONS(160), - [anon_sym_88] = ACTIONS(160), - [anon_sym_89] = ACTIONS(160), - [anon_sym_90] = ACTIONS(160), - [anon_sym_91] = ACTIONS(160), - [anon_sym_92] = ACTIONS(160), - [anon_sym_93] = ACTIONS(160), + [sym_identifier] = ACTIONS(121), + [sym_identifier_deprecated] = ACTIONS(121), + [sym_system] = ACTIONS(117), + [sym_comment] = ACTIONS(218), + [sym_openParen] = ACTIONS(125), + [sym_openCurly] = ACTIONS(129), + [sym_closeCurly] = ACTIONS(244), + [sym_openBracket] = ACTIONS(131), + [sym_leftArrow] = ACTIONS(220), + [anon_sym_CARET] = ACTIONS(137), + [anon_sym_eta] = ACTIONS(139), + [anon_sym_] = ACTIONS(141), + [anon_sym_pi] = ACTIONS(141), + [anon_sym_2] = ACTIONS(141), + [anon_sym_tau] = ACTIONS(139), + [anon_sym_3] = ACTIONS(141), + [anon_sym_infinity] = ACTIONS(139), + [anon_sym_4] = ACTIONS(139), + [anon_sym_e] = ACTIONS(141), + [anon_sym_NaN] = ACTIONS(141), + [anon_sym_NumProcs] = ACTIONS(141), + [anon_sym_DOT] = ACTIONS(143), + [anon_sym_COMMA] = ACTIONS(143), + [anon_sym_5] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_identity] = ACTIONS(143), + [anon_sym_id] = ACTIONS(145), + [anon_sym_6] = ACTIONS(143), + [anon_sym_not] = ACTIONS(143), + [anon_sym_7] = ACTIONS(143), + [anon_sym_sign] = ACTIONS(143), + [anon_sym_8] = ACTIONS(143), + [anon_sym_BQUOTE] = ACTIONS(143), + [anon_sym_9] = ACTIONS(143), + [anon_sym_absolutevalue] = ACTIONS(143), + [anon_sym_10] = ACTIONS(143), + [anon_sym_sqrt] = ACTIONS(143), + [anon_sym_11] = ACTIONS(143), + [anon_sym_sine] = ACTIONS(143), + [anon_sym_12] = ACTIONS(143), + [anon_sym_floor] = ACTIONS(143), + [anon_sym_13] = ACTIONS(143), + [anon_sym_ceiling] = ACTIONS(143), + [anon_sym_14] = ACTIONS(143), + [anon_sym_round] = ACTIONS(143), + [anon_sym_15] = ACTIONS(143), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_16] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_17] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_18] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_19] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_20] = ACTIONS(143), + [anon_sym_modulus] = ACTIONS(143), + [anon_sym_21] = ACTIONS(143), + [anon_sym_power] = ACTIONS(143), + [anon_sym_22] = ACTIONS(143), + [anon_sym_logarithm] = ACTIONS(143), + [anon_sym_23] = ACTIONS(143), + [anon_sym_minimum] = ACTIONS(143), + [anon_sym_24] = ACTIONS(143), + [anon_sym_maximum] = ACTIONS(143), + [anon_sym_25] = ACTIONS(143), + [anon_sym_atangent] = ACTIONS(143), + [anon_sym_26] = ACTIONS(143), + [anon_sym_length] = ACTIONS(143), + [anon_sym_27] = ACTIONS(143), + [anon_sym_shape] = ACTIONS(143), + [anon_sym_28] = ACTIONS(143), + [anon_sym_range] = ACTIONS(143), + [anon_sym_29] = ACTIONS(143), + [anon_sym_first] = ACTIONS(143), + [anon_sym_30] = ACTIONS(143), + [anon_sym_reverse] = ACTIONS(143), + [anon_sym_31] = ACTIONS(143), + [anon_sym_deshape] = ACTIONS(143), + [anon_sym_32] = ACTIONS(143), + [anon_sym_bits] = ACTIONS(143), + [anon_sym_33] = ACTIONS(143), + [anon_sym_transpose] = ACTIONS(143), + [anon_sym_34] = ACTIONS(143), + [anon_sym_rise] = ACTIONS(143), + [anon_sym_35] = ACTIONS(143), + [anon_sym_fall] = ACTIONS(143), + [anon_sym_36] = ACTIONS(143), + [anon_sym_where] = ACTIONS(143), + [anon_sym_37] = ACTIONS(143), + [anon_sym_classify] = ACTIONS(143), + [anon_sym_38] = ACTIONS(143), + [anon_sym_deduplicate] = ACTIONS(143), + [anon_sym_39] = ACTIONS(143), + [anon_sym_box] = ACTIONS(143), + [anon_sym_40] = ACTIONS(143), + [anon_sym_unbox] = ACTIONS(143), + [anon_sym_41] = ACTIONS(143), + [anon_sym_match] = ACTIONS(143), + [anon_sym_42] = ACTIONS(143), + [anon_sym_couple] = ACTIONS(143), + [anon_sym_43] = ACTIONS(143), + [anon_sym_join] = ACTIONS(143), + [anon_sym_44] = ACTIONS(143), + [anon_sym_select] = ACTIONS(143), + [anon_sym_45] = ACTIONS(143), + [anon_sym_pick] = ACTIONS(143), + [anon_sym_46] = ACTIONS(143), + [anon_sym_reshape] = ACTIONS(143), + [anon_sym_47] = ACTIONS(143), + [anon_sym_take] = ACTIONS(143), + [anon_sym_48] = ACTIONS(143), + [anon_sym_drop] = ACTIONS(143), + [anon_sym_49] = ACTIONS(143), + [anon_sym_rotate] = ACTIONS(143), + [anon_sym_50] = ACTIONS(143), + [anon_sym_windows] = ACTIONS(143), + [anon_sym_51] = ACTIONS(143), + [anon_sym_keep] = ACTIONS(143), + [anon_sym_52] = ACTIONS(143), + [anon_sym_find] = ACTIONS(143), + [anon_sym_53] = ACTIONS(143), + [anon_sym_member] = ACTIONS(143), + [anon_sym_54] = ACTIONS(143), + [anon_sym_indexof] = ACTIONS(143), + [anon_sym_55] = ACTIONS(143), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_56] = ACTIONS(143), + [anon_sym_wait] = ACTIONS(143), + [anon_sym_break] = ACTIONS(143), + [anon_sym_57] = ACTIONS(143), + [anon_sym_parse] = ACTIONS(143), + [anon_sym_random] = ACTIONS(143), + [anon_sym_58] = ACTIONS(143), + [anon_sym_gen] = ACTIONS(143), + [anon_sym_deal] = ACTIONS(143), + [anon_sym_tag] = ACTIONS(143), + [anon_sym_now] = ACTIONS(143), + [anon_sym_type] = ACTIONS(143), + [anon_sym_59] = ACTIONS(143), + [anon_sym_dump] = ACTIONS(143), + [anon_sym_regex] = ACTIONS(143), + [anon_sym_utf] = ACTIONS(143), + [anon_sym_rock] = ACTIONS(143), + [anon_sym_60] = ACTIONS(143), + [anon_sym_surface] = ACTIONS(143), + [anon_sym_TILDE] = ACTIONS(143), + [anon_sym_deep] = ACTIONS(143), + [anon_sym_de] = ACTIONS(145), + [anon_sym_61] = ACTIONS(143), + [anon_sym_abyss] = ACTIONS(143), + [anon_sym_ab] = ACTIONS(145), + [anon_sym_62] = ACTIONS(143), + [anon_sym_seabed] = ACTIONS(143), + [anon_sym_se] = ACTIONS(145), + [anon_sym_63] = ACTIONS(143), + [anon_sym_send] = ACTIONS(143), + [anon_sym_recv] = ACTIONS(143), + [anon_sym_tryrecv] = ACTIONS(143), + [anon_sym_reduce] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_scan] = ACTIONS(147), + [anon_sym_BSLASH] = ACTIONS(147), + [anon_sym_each] = ACTIONS(147), + [anon_sym_64] = ACTIONS(147), + [anon_sym_rows] = ACTIONS(147), + [anon_sym_65] = ACTIONS(147), + [anon_sym_repeat] = ACTIONS(147), + [anon_sym_66] = ACTIONS(147), + [anon_sym_dip] = ACTIONS(147), + [anon_sym_67] = ACTIONS(147), + [anon_sym_gap] = ACTIONS(147), + [anon_sym_68] = ACTIONS(147), + [anon_sym_69] = ACTIONS(147), + [anon_sym_invert] = ACTIONS(147), + [anon_sym_70] = ACTIONS(147), + [anon_sym_spawn] = ACTIONS(147), + [anon_sym_pack] = ACTIONS(147), + [anon_sym_71] = ACTIONS(147), + [anon_sym_tribute] = ACTIONS(147), + [anon_sym_72] = ACTIONS(147), + [anon_sym_reach] = ACTIONS(147), + [anon_sym_fold] = ACTIONS(149), + [anon_sym_73] = ACTIONS(149), + [anon_sym_distribute] = ACTIONS(149), + [anon_sym_74] = ACTIONS(149), + [anon_sym_table] = ACTIONS(149), + [anon_sym_75] = ACTIONS(149), + [anon_sym_cross] = ACTIONS(149), + [anon_sym_76] = ACTIONS(149), + [anon_sym_group] = ACTIONS(149), + [anon_sym_77] = ACTIONS(149), + [anon_sym_partition] = ACTIONS(149), + [anon_sym_78] = ACTIONS(149), + [anon_sym_both] = ACTIONS(149), + [anon_sym_79] = ACTIONS(149), + [anon_sym_bracket] = ACTIONS(149), + [anon_sym_80] = ACTIONS(149), + [anon_sym_fork] = ACTIONS(149), + [anon_sym_81] = ACTIONS(149), + [anon_sym_under] = ACTIONS(149), + [anon_sym_82] = ACTIONS(149), + [anon_sym_level] = ACTIONS(149), + [anon_sym_83] = ACTIONS(149), + [anon_sym_fill] = ACTIONS(149), + [anon_sym_84] = ACTIONS(149), + [anon_sym_bind] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_try] = ACTIONS(151), + [anon_sym_85] = ACTIONS(149), + [anon_sym_combinate] = ACTIONS(149), + [anon_sym_86] = ACTIONS(149), + [anon_sym_87] = ACTIONS(153), + [anon_sym_88] = ACTIONS(153), + [anon_sym_89] = ACTIONS(153), + [anon_sym_90] = ACTIONS(153), + [anon_sym_91] = ACTIONS(153), + [anon_sym_92] = ACTIONS(153), + [anon_sym_93] = ACTIONS(153), [sym__whitespace] = ACTIONS(5), - [sym__end_of_line] = ACTIONS(260), + [sym__end_of_line] = ACTIONS(250), }, [34] = { [sym_segment] = STATE(104), @@ -15341,244 +15255,242 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_deprecated] = STATE(61), [aux_sym_array_repeat1] = STATE(57), [aux_sym_array_repeat2] = STATE(13), - [aux_sym_number_token1] = ACTIONS(116), - [anon_sym_os] = ACTIONS(118), - [anon_sym_Family] = ACTIONS(118), - [anon_sym_Arch] = ACTIONS(118), - [anon_sym_ExeExt] = ACTIONS(118), - [anon_sym_PllExt] = ACTIONS(118), - [anon_sym_Sep] = ACTIONS(118), - [aux_sym_character_token1] = ACTIONS(120), - [sym_string] = ACTIONS(122), - [sym_multiLineString] = ACTIONS(122), + [aux_sym_number_token1] = ACTIONS(111), + [anon_sym_os] = ACTIONS(113), + [anon_sym_Family] = ACTIONS(113), + [anon_sym_Arch] = ACTIONS(113), + [anon_sym_ExeExt] = ACTIONS(113), + [anon_sym_PllExt] = ACTIONS(113), + [anon_sym_Sep] = ACTIONS(113), + [aux_sym_character_token1] = ACTIONS(115), + [sym_string] = ACTIONS(117), + [sym_multiLineString] = ACTIONS(117), [anon_sym_PIPE] = ACTIONS(15), - [sym_identifier] = ACTIONS(126), - [sym_identifier_deprecated] = ACTIONS(126), - [sym_system] = ACTIONS(122), - [sym_comment] = ACTIONS(228), - [sym_openParen] = ACTIONS(130), - [sym_openCurly] = ACTIONS(134), - [sym_openBracket] = ACTIONS(136), - [sym_closeBracket] = ACTIONS(238), - [sym_leftArrow] = ACTIONS(230), - [anon_sym_CARET] = ACTIONS(142), - [anon_sym_eta] = ACTIONS(144), - [anon_sym_] = ACTIONS(146), - [anon_sym_pi] = ACTIONS(146), - [anon_sym_2] = ACTIONS(146), - [anon_sym_tau] = ACTIONS(144), - [anon_sym_3] = ACTIONS(146), - [anon_sym_infinity] = ACTIONS(144), - [anon_sym_4] = ACTIONS(144), - [anon_sym_e] = ACTIONS(146), - [anon_sym_NaN] = ACTIONS(146), - [anon_sym_NumProcs] = ACTIONS(146), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_COMMA] = ACTIONS(148), - [anon_sym_5] = ACTIONS(148), - [anon_sym_SEMI] = ACTIONS(148), - [anon_sym_identity] = ACTIONS(148), - [anon_sym_id] = ACTIONS(150), - [anon_sym_6] = ACTIONS(148), - [anon_sym_not] = ACTIONS(148), - [anon_sym_7] = ACTIONS(148), - [anon_sym_sign] = ACTIONS(148), - [anon_sym_8] = ACTIONS(148), - [anon_sym_BQUOTE] = ACTIONS(148), - [anon_sym_9] = ACTIONS(148), - [anon_sym_absolutevalue] = ACTIONS(148), - [anon_sym_10] = ACTIONS(148), - [anon_sym_sqrt] = ACTIONS(148), - [anon_sym_11] = ACTIONS(148), - [anon_sym_sine] = ACTIONS(148), - [anon_sym_12] = ACTIONS(148), - [anon_sym_floor] = ACTIONS(148), - [anon_sym_13] = ACTIONS(148), - [anon_sym_ceiling] = ACTIONS(148), - [anon_sym_14] = ACTIONS(148), - [anon_sym_round] = ACTIONS(148), - [anon_sym_15] = ACTIONS(148), - [anon_sym_EQ] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_16] = ACTIONS(148), - [anon_sym_LT] = ACTIONS(150), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_17] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_18] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_19] = ACTIONS(148), - [anon_sym_PERCENT] = ACTIONS(148), - [anon_sym_20] = ACTIONS(148), - [anon_sym_modulus] = ACTIONS(148), - [anon_sym_21] = ACTIONS(148), - [anon_sym_power] = ACTIONS(148), - [anon_sym_22] = ACTIONS(148), - [anon_sym_logarithm] = ACTIONS(148), - [anon_sym_23] = ACTIONS(148), - [anon_sym_minimum] = ACTIONS(148), - [anon_sym_24] = ACTIONS(148), - [anon_sym_maximum] = ACTIONS(148), - [anon_sym_25] = ACTIONS(148), - [anon_sym_atangent] = ACTIONS(148), - [anon_sym_26] = ACTIONS(148), - [anon_sym_length] = ACTIONS(148), - [anon_sym_27] = ACTIONS(148), - [anon_sym_shape] = ACTIONS(148), - [anon_sym_28] = ACTIONS(148), - [anon_sym_range] = ACTIONS(148), - [anon_sym_29] = ACTIONS(148), - [anon_sym_first] = ACTIONS(148), - [anon_sym_30] = ACTIONS(148), - [anon_sym_reverse] = ACTIONS(148), - [anon_sym_31] = ACTIONS(148), - [anon_sym_deshape] = ACTIONS(148), - [anon_sym_32] = ACTIONS(148), - [anon_sym_bits] = ACTIONS(148), - [anon_sym_33] = ACTIONS(148), - [anon_sym_transpose] = ACTIONS(148), - [anon_sym_34] = ACTIONS(148), - [anon_sym_rise] = ACTIONS(148), - [anon_sym_35] = ACTIONS(148), - [anon_sym_fall] = ACTIONS(148), - [anon_sym_36] = ACTIONS(148), - [anon_sym_where] = ACTIONS(148), - [anon_sym_37] = ACTIONS(148), - [anon_sym_classify] = ACTIONS(148), - [anon_sym_38] = ACTIONS(148), - [anon_sym_deduplicate] = ACTIONS(148), - [anon_sym_39] = ACTIONS(148), - [anon_sym_box] = ACTIONS(148), - [anon_sym_40] = ACTIONS(148), - [anon_sym_unbox] = ACTIONS(148), - [anon_sym_41] = ACTIONS(148), - [anon_sym_match] = ACTIONS(148), - [anon_sym_42] = ACTIONS(148), - [anon_sym_couple] = ACTIONS(148), - [anon_sym_43] = ACTIONS(148), - [anon_sym_join] = ACTIONS(148), - [anon_sym_44] = ACTIONS(148), - [anon_sym_select] = ACTIONS(148), - [anon_sym_45] = ACTIONS(148), - [anon_sym_pick] = ACTIONS(148), - [anon_sym_46] = ACTIONS(148), - [anon_sym_reshape] = ACTIONS(148), - [anon_sym_47] = ACTIONS(148), - [anon_sym_take] = ACTIONS(148), - [anon_sym_48] = ACTIONS(148), - [anon_sym_drop] = ACTIONS(148), - [anon_sym_49] = ACTIONS(148), - [anon_sym_rotate] = ACTIONS(148), - [anon_sym_50] = ACTIONS(148), - [anon_sym_windows] = ACTIONS(148), - [anon_sym_51] = ACTIONS(148), - [anon_sym_keep] = ACTIONS(148), - [anon_sym_52] = ACTIONS(148), - [anon_sym_find] = ACTIONS(148), - [anon_sym_53] = ACTIONS(148), - [anon_sym_member] = ACTIONS(148), - [anon_sym_54] = ACTIONS(148), - [anon_sym_indexof] = ACTIONS(148), - [anon_sym_55] = ACTIONS(148), - [anon_sym_assert] = ACTIONS(148), - [anon_sym_56] = ACTIONS(148), - [anon_sym_wait] = ACTIONS(148), - [anon_sym_break] = ACTIONS(148), - [anon_sym_57] = ACTIONS(148), - [anon_sym_parse] = ACTIONS(148), - [anon_sym_random] = ACTIONS(148), - [anon_sym_58] = ACTIONS(148), - [anon_sym_gen] = ACTIONS(148), - [anon_sym_deal] = ACTIONS(148), - [anon_sym_tag] = ACTIONS(148), - [anon_sym_now] = ACTIONS(148), - [anon_sym_type] = ACTIONS(148), - [anon_sym_59] = ACTIONS(148), - [anon_sym_dump] = ACTIONS(148), - [anon_sym_regex] = ACTIONS(148), - [anon_sym_utf] = ACTIONS(148), - [anon_sym_rock] = ACTIONS(148), - [anon_sym_60] = ACTIONS(148), - [anon_sym_surface] = ACTIONS(148), - [anon_sym_TILDE] = ACTIONS(148), - [anon_sym_deep] = ACTIONS(148), - [anon_sym_de] = ACTIONS(150), - [anon_sym_61] = ACTIONS(148), - [anon_sym_abyss] = ACTIONS(148), - [anon_sym_ab] = ACTIONS(150), - [anon_sym_62] = ACTIONS(148), - [anon_sym_seabed] = ACTIONS(148), - [anon_sym_se] = ACTIONS(150), - [anon_sym_63] = ACTIONS(148), - [anon_sym_send] = ACTIONS(148), - [anon_sym_recv] = ACTIONS(148), - [anon_sym_tryrecv] = ACTIONS(148), - [anon_sym_reduce] = ACTIONS(152), - [anon_sym_SLASH] = ACTIONS(152), - [anon_sym_scan] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_each] = ACTIONS(152), - [anon_sym_64] = ACTIONS(152), - [anon_sym_rows] = ACTIONS(152), - [anon_sym_65] = ACTIONS(152), - [anon_sym_repeat] = ACTIONS(152), - [anon_sym_66] = ACTIONS(152), - [anon_sym_dip] = ACTIONS(152), - [anon_sym_di] = ACTIONS(154), - [anon_sym_67] = ACTIONS(152), - [anon_sym_gap] = ACTIONS(152), - [anon_sym_ga] = ACTIONS(154), - [anon_sym_68] = ACTIONS(152), - [anon_sym_oust] = ACTIONS(152), - [anon_sym_69] = ACTIONS(152), - [anon_sym_invert] = ACTIONS(152), - [anon_sym_70] = ACTIONS(152), - [anon_sym_spawn] = ACTIONS(152), - [anon_sym_pack] = ACTIONS(152), - [anon_sym_71] = ACTIONS(152), - [anon_sym_tribute] = ACTIONS(152), - [anon_sym_72] = ACTIONS(152), - [anon_sym_fold] = ACTIONS(156), - [anon_sym_73] = ACTIONS(156), - [anon_sym_distribute] = ACTIONS(156), - [anon_sym_74] = ACTIONS(156), - [anon_sym_table] = ACTIONS(156), - [anon_sym_75] = ACTIONS(156), - [anon_sym_cross] = ACTIONS(156), - [anon_sym_76] = ACTIONS(156), - [anon_sym_group] = ACTIONS(156), - [anon_sym_77] = ACTIONS(156), - [anon_sym_partition] = ACTIONS(156), - [anon_sym_78] = ACTIONS(156), - [anon_sym_both] = ACTIONS(156), - [anon_sym_79] = ACTIONS(156), - [anon_sym_bracket] = ACTIONS(156), - [anon_sym_80] = ACTIONS(156), - [anon_sym_fork] = ACTIONS(156), - [anon_sym_81] = ACTIONS(156), - [anon_sym_under] = ACTIONS(156), - [anon_sym_82] = ACTIONS(156), - [anon_sym_level] = ACTIONS(156), - [anon_sym_83] = ACTIONS(156), - [anon_sym_fill] = ACTIONS(156), - [anon_sym_84] = ACTIONS(156), - [anon_sym_bind] = ACTIONS(156), - [anon_sym_SQUOTE] = ACTIONS(156), - [anon_sym_QMARK] = ACTIONS(156), - [anon_sym_try] = ACTIONS(158), - [anon_sym_85] = ACTIONS(156), - [anon_sym_combinate] = ACTIONS(156), - [anon_sym_86] = ACTIONS(156), - [anon_sym_87] = ACTIONS(160), - [anon_sym_88] = ACTIONS(160), - [anon_sym_89] = ACTIONS(160), - [anon_sym_90] = ACTIONS(160), - [anon_sym_91] = ACTIONS(160), - [anon_sym_92] = ACTIONS(160), - [anon_sym_93] = ACTIONS(160), + [sym_identifier] = ACTIONS(121), + [sym_identifier_deprecated] = ACTIONS(121), + [sym_system] = ACTIONS(117), + [sym_comment] = ACTIONS(218), + [sym_openParen] = ACTIONS(125), + [sym_openCurly] = ACTIONS(129), + [sym_openBracket] = ACTIONS(131), + [sym_closeBracket] = ACTIONS(228), + [sym_leftArrow] = ACTIONS(220), + [anon_sym_CARET] = ACTIONS(137), + [anon_sym_eta] = ACTIONS(139), + [anon_sym_] = ACTIONS(141), + [anon_sym_pi] = ACTIONS(141), + [anon_sym_2] = ACTIONS(141), + [anon_sym_tau] = ACTIONS(139), + [anon_sym_3] = ACTIONS(141), + [anon_sym_infinity] = ACTIONS(139), + [anon_sym_4] = ACTIONS(139), + [anon_sym_e] = ACTIONS(141), + [anon_sym_NaN] = ACTIONS(141), + [anon_sym_NumProcs] = ACTIONS(141), + [anon_sym_DOT] = ACTIONS(143), + [anon_sym_COMMA] = ACTIONS(143), + [anon_sym_5] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_identity] = ACTIONS(143), + [anon_sym_id] = ACTIONS(145), + [anon_sym_6] = ACTIONS(143), + [anon_sym_not] = ACTIONS(143), + [anon_sym_7] = ACTIONS(143), + [anon_sym_sign] = ACTIONS(143), + [anon_sym_8] = ACTIONS(143), + [anon_sym_BQUOTE] = ACTIONS(143), + [anon_sym_9] = ACTIONS(143), + [anon_sym_absolutevalue] = ACTIONS(143), + [anon_sym_10] = ACTIONS(143), + [anon_sym_sqrt] = ACTIONS(143), + [anon_sym_11] = ACTIONS(143), + [anon_sym_sine] = ACTIONS(143), + [anon_sym_12] = ACTIONS(143), + [anon_sym_floor] = ACTIONS(143), + [anon_sym_13] = ACTIONS(143), + [anon_sym_ceiling] = ACTIONS(143), + [anon_sym_14] = ACTIONS(143), + [anon_sym_round] = ACTIONS(143), + [anon_sym_15] = ACTIONS(143), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_16] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_17] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_18] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_19] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_20] = ACTIONS(143), + [anon_sym_modulus] = ACTIONS(143), + [anon_sym_21] = ACTIONS(143), + [anon_sym_power] = ACTIONS(143), + [anon_sym_22] = ACTIONS(143), + [anon_sym_logarithm] = ACTIONS(143), + [anon_sym_23] = ACTIONS(143), + [anon_sym_minimum] = ACTIONS(143), + [anon_sym_24] = ACTIONS(143), + [anon_sym_maximum] = ACTIONS(143), + [anon_sym_25] = ACTIONS(143), + [anon_sym_atangent] = ACTIONS(143), + [anon_sym_26] = ACTIONS(143), + [anon_sym_length] = ACTIONS(143), + [anon_sym_27] = ACTIONS(143), + [anon_sym_shape] = ACTIONS(143), + [anon_sym_28] = ACTIONS(143), + [anon_sym_range] = ACTIONS(143), + [anon_sym_29] = ACTIONS(143), + [anon_sym_first] = ACTIONS(143), + [anon_sym_30] = ACTIONS(143), + [anon_sym_reverse] = ACTIONS(143), + [anon_sym_31] = ACTIONS(143), + [anon_sym_deshape] = ACTIONS(143), + [anon_sym_32] = ACTIONS(143), + [anon_sym_bits] = ACTIONS(143), + [anon_sym_33] = ACTIONS(143), + [anon_sym_transpose] = ACTIONS(143), + [anon_sym_34] = ACTIONS(143), + [anon_sym_rise] = ACTIONS(143), + [anon_sym_35] = ACTIONS(143), + [anon_sym_fall] = ACTIONS(143), + [anon_sym_36] = ACTIONS(143), + [anon_sym_where] = ACTIONS(143), + [anon_sym_37] = ACTIONS(143), + [anon_sym_classify] = ACTIONS(143), + [anon_sym_38] = ACTIONS(143), + [anon_sym_deduplicate] = ACTIONS(143), + [anon_sym_39] = ACTIONS(143), + [anon_sym_box] = ACTIONS(143), + [anon_sym_40] = ACTIONS(143), + [anon_sym_unbox] = ACTIONS(143), + [anon_sym_41] = ACTIONS(143), + [anon_sym_match] = ACTIONS(143), + [anon_sym_42] = ACTIONS(143), + [anon_sym_couple] = ACTIONS(143), + [anon_sym_43] = ACTIONS(143), + [anon_sym_join] = ACTIONS(143), + [anon_sym_44] = ACTIONS(143), + [anon_sym_select] = ACTIONS(143), + [anon_sym_45] = ACTIONS(143), + [anon_sym_pick] = ACTIONS(143), + [anon_sym_46] = ACTIONS(143), + [anon_sym_reshape] = ACTIONS(143), + [anon_sym_47] = ACTIONS(143), + [anon_sym_take] = ACTIONS(143), + [anon_sym_48] = ACTIONS(143), + [anon_sym_drop] = ACTIONS(143), + [anon_sym_49] = ACTIONS(143), + [anon_sym_rotate] = ACTIONS(143), + [anon_sym_50] = ACTIONS(143), + [anon_sym_windows] = ACTIONS(143), + [anon_sym_51] = ACTIONS(143), + [anon_sym_keep] = ACTIONS(143), + [anon_sym_52] = ACTIONS(143), + [anon_sym_find] = ACTIONS(143), + [anon_sym_53] = ACTIONS(143), + [anon_sym_member] = ACTIONS(143), + [anon_sym_54] = ACTIONS(143), + [anon_sym_indexof] = ACTIONS(143), + [anon_sym_55] = ACTIONS(143), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_56] = ACTIONS(143), + [anon_sym_wait] = ACTIONS(143), + [anon_sym_break] = ACTIONS(143), + [anon_sym_57] = ACTIONS(143), + [anon_sym_parse] = ACTIONS(143), + [anon_sym_random] = ACTIONS(143), + [anon_sym_58] = ACTIONS(143), + [anon_sym_gen] = ACTIONS(143), + [anon_sym_deal] = ACTIONS(143), + [anon_sym_tag] = ACTIONS(143), + [anon_sym_now] = ACTIONS(143), + [anon_sym_type] = ACTIONS(143), + [anon_sym_59] = ACTIONS(143), + [anon_sym_dump] = ACTIONS(143), + [anon_sym_regex] = ACTIONS(143), + [anon_sym_utf] = ACTIONS(143), + [anon_sym_rock] = ACTIONS(143), + [anon_sym_60] = ACTIONS(143), + [anon_sym_surface] = ACTIONS(143), + [anon_sym_TILDE] = ACTIONS(143), + [anon_sym_deep] = ACTIONS(143), + [anon_sym_de] = ACTIONS(145), + [anon_sym_61] = ACTIONS(143), + [anon_sym_abyss] = ACTIONS(143), + [anon_sym_ab] = ACTIONS(145), + [anon_sym_62] = ACTIONS(143), + [anon_sym_seabed] = ACTIONS(143), + [anon_sym_se] = ACTIONS(145), + [anon_sym_63] = ACTIONS(143), + [anon_sym_send] = ACTIONS(143), + [anon_sym_recv] = ACTIONS(143), + [anon_sym_tryrecv] = ACTIONS(143), + [anon_sym_reduce] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_scan] = ACTIONS(147), + [anon_sym_BSLASH] = ACTIONS(147), + [anon_sym_each] = ACTIONS(147), + [anon_sym_64] = ACTIONS(147), + [anon_sym_rows] = ACTIONS(147), + [anon_sym_65] = ACTIONS(147), + [anon_sym_repeat] = ACTIONS(147), + [anon_sym_66] = ACTIONS(147), + [anon_sym_dip] = ACTIONS(147), + [anon_sym_67] = ACTIONS(147), + [anon_sym_gap] = ACTIONS(147), + [anon_sym_68] = ACTIONS(147), + [anon_sym_69] = ACTIONS(147), + [anon_sym_invert] = ACTIONS(147), + [anon_sym_70] = ACTIONS(147), + [anon_sym_spawn] = ACTIONS(147), + [anon_sym_pack] = ACTIONS(147), + [anon_sym_71] = ACTIONS(147), + [anon_sym_tribute] = ACTIONS(147), + [anon_sym_72] = ACTIONS(147), + [anon_sym_reach] = ACTIONS(147), + [anon_sym_fold] = ACTIONS(149), + [anon_sym_73] = ACTIONS(149), + [anon_sym_distribute] = ACTIONS(149), + [anon_sym_74] = ACTIONS(149), + [anon_sym_table] = ACTIONS(149), + [anon_sym_75] = ACTIONS(149), + [anon_sym_cross] = ACTIONS(149), + [anon_sym_76] = ACTIONS(149), + [anon_sym_group] = ACTIONS(149), + [anon_sym_77] = ACTIONS(149), + [anon_sym_partition] = ACTIONS(149), + [anon_sym_78] = ACTIONS(149), + [anon_sym_both] = ACTIONS(149), + [anon_sym_79] = ACTIONS(149), + [anon_sym_bracket] = ACTIONS(149), + [anon_sym_80] = ACTIONS(149), + [anon_sym_fork] = ACTIONS(149), + [anon_sym_81] = ACTIONS(149), + [anon_sym_under] = ACTIONS(149), + [anon_sym_82] = ACTIONS(149), + [anon_sym_level] = ACTIONS(149), + [anon_sym_83] = ACTIONS(149), + [anon_sym_fill] = ACTIONS(149), + [anon_sym_84] = ACTIONS(149), + [anon_sym_bind] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_try] = ACTIONS(151), + [anon_sym_85] = ACTIONS(149), + [anon_sym_combinate] = ACTIONS(149), + [anon_sym_86] = ACTIONS(149), + [anon_sym_87] = ACTIONS(153), + [anon_sym_88] = ACTIONS(153), + [anon_sym_89] = ACTIONS(153), + [anon_sym_90] = ACTIONS(153), + [anon_sym_91] = ACTIONS(153), + [anon_sym_92] = ACTIONS(153), + [anon_sym_93] = ACTIONS(153), [sym__whitespace] = ACTIONS(5), [sym__end_of_line] = ACTIONS(5), }, @@ -15602,244 +15514,242 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_deprecated] = STATE(61), [aux_sym_array_repeat1] = STATE(57), [aux_sym_array_repeat2] = STATE(2), - [aux_sym_number_token1] = ACTIONS(116), - [anon_sym_os] = ACTIONS(118), - [anon_sym_Family] = ACTIONS(118), - [anon_sym_Arch] = ACTIONS(118), - [anon_sym_ExeExt] = ACTIONS(118), - [anon_sym_PllExt] = ACTIONS(118), - [anon_sym_Sep] = ACTIONS(118), - [aux_sym_character_token1] = ACTIONS(120), - [sym_string] = ACTIONS(122), - [sym_multiLineString] = ACTIONS(122), + [aux_sym_number_token1] = ACTIONS(111), + [anon_sym_os] = ACTIONS(113), + [anon_sym_Family] = ACTIONS(113), + [anon_sym_Arch] = ACTIONS(113), + [anon_sym_ExeExt] = ACTIONS(113), + [anon_sym_PllExt] = ACTIONS(113), + [anon_sym_Sep] = ACTIONS(113), + [aux_sym_character_token1] = ACTIONS(115), + [sym_string] = ACTIONS(117), + [sym_multiLineString] = ACTIONS(117), [anon_sym_PIPE] = ACTIONS(15), - [sym_identifier] = ACTIONS(126), - [sym_identifier_deprecated] = ACTIONS(126), - [sym_system] = ACTIONS(122), - [sym_comment] = ACTIONS(228), - [sym_openParen] = ACTIONS(130), - [sym_openCurly] = ACTIONS(134), - [sym_openBracket] = ACTIONS(136), - [sym_closeBracket] = ACTIONS(238), - [sym_leftArrow] = ACTIONS(230), - [anon_sym_CARET] = ACTIONS(142), - [anon_sym_eta] = ACTIONS(144), - [anon_sym_] = ACTIONS(146), - [anon_sym_pi] = ACTIONS(146), - [anon_sym_2] = ACTIONS(146), - [anon_sym_tau] = ACTIONS(144), - [anon_sym_3] = ACTIONS(146), - [anon_sym_infinity] = ACTIONS(144), - [anon_sym_4] = ACTIONS(144), - [anon_sym_e] = ACTIONS(146), - [anon_sym_NaN] = ACTIONS(146), - [anon_sym_NumProcs] = ACTIONS(146), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_COMMA] = ACTIONS(148), - [anon_sym_5] = ACTIONS(148), - [anon_sym_SEMI] = ACTIONS(148), - [anon_sym_identity] = ACTIONS(148), - [anon_sym_id] = ACTIONS(150), - [anon_sym_6] = ACTIONS(148), - [anon_sym_not] = ACTIONS(148), - [anon_sym_7] = ACTIONS(148), - [anon_sym_sign] = ACTIONS(148), - [anon_sym_8] = ACTIONS(148), - [anon_sym_BQUOTE] = ACTIONS(148), - [anon_sym_9] = ACTIONS(148), - [anon_sym_absolutevalue] = ACTIONS(148), - [anon_sym_10] = ACTIONS(148), - [anon_sym_sqrt] = ACTIONS(148), - [anon_sym_11] = ACTIONS(148), - [anon_sym_sine] = ACTIONS(148), - [anon_sym_12] = ACTIONS(148), - [anon_sym_floor] = ACTIONS(148), - [anon_sym_13] = ACTIONS(148), - [anon_sym_ceiling] = ACTIONS(148), - [anon_sym_14] = ACTIONS(148), - [anon_sym_round] = ACTIONS(148), - [anon_sym_15] = ACTIONS(148), - [anon_sym_EQ] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_16] = ACTIONS(148), - [anon_sym_LT] = ACTIONS(150), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_17] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_18] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_19] = ACTIONS(148), - [anon_sym_PERCENT] = ACTIONS(148), - [anon_sym_20] = ACTIONS(148), - [anon_sym_modulus] = ACTIONS(148), - [anon_sym_21] = ACTIONS(148), - [anon_sym_power] = ACTIONS(148), - [anon_sym_22] = ACTIONS(148), - [anon_sym_logarithm] = ACTIONS(148), - [anon_sym_23] = ACTIONS(148), - [anon_sym_minimum] = ACTIONS(148), - [anon_sym_24] = ACTIONS(148), - [anon_sym_maximum] = ACTIONS(148), - [anon_sym_25] = ACTIONS(148), - [anon_sym_atangent] = ACTIONS(148), - [anon_sym_26] = ACTIONS(148), - [anon_sym_length] = ACTIONS(148), - [anon_sym_27] = ACTIONS(148), - [anon_sym_shape] = ACTIONS(148), - [anon_sym_28] = ACTIONS(148), - [anon_sym_range] = ACTIONS(148), - [anon_sym_29] = ACTIONS(148), - [anon_sym_first] = ACTIONS(148), - [anon_sym_30] = ACTIONS(148), - [anon_sym_reverse] = ACTIONS(148), - [anon_sym_31] = ACTIONS(148), - [anon_sym_deshape] = ACTIONS(148), - [anon_sym_32] = ACTIONS(148), - [anon_sym_bits] = ACTIONS(148), - [anon_sym_33] = ACTIONS(148), - [anon_sym_transpose] = ACTIONS(148), - [anon_sym_34] = ACTIONS(148), - [anon_sym_rise] = ACTIONS(148), - [anon_sym_35] = ACTIONS(148), - [anon_sym_fall] = ACTIONS(148), - [anon_sym_36] = ACTIONS(148), - [anon_sym_where] = ACTIONS(148), - [anon_sym_37] = ACTIONS(148), - [anon_sym_classify] = ACTIONS(148), - [anon_sym_38] = ACTIONS(148), - [anon_sym_deduplicate] = ACTIONS(148), - [anon_sym_39] = ACTIONS(148), - [anon_sym_box] = ACTIONS(148), - [anon_sym_40] = ACTIONS(148), - [anon_sym_unbox] = ACTIONS(148), - [anon_sym_41] = ACTIONS(148), - [anon_sym_match] = ACTIONS(148), - [anon_sym_42] = ACTIONS(148), - [anon_sym_couple] = ACTIONS(148), - [anon_sym_43] = ACTIONS(148), - [anon_sym_join] = ACTIONS(148), - [anon_sym_44] = ACTIONS(148), - [anon_sym_select] = ACTIONS(148), - [anon_sym_45] = ACTIONS(148), - [anon_sym_pick] = ACTIONS(148), - [anon_sym_46] = ACTIONS(148), - [anon_sym_reshape] = ACTIONS(148), - [anon_sym_47] = ACTIONS(148), - [anon_sym_take] = ACTIONS(148), - [anon_sym_48] = ACTIONS(148), - [anon_sym_drop] = ACTIONS(148), - [anon_sym_49] = ACTIONS(148), - [anon_sym_rotate] = ACTIONS(148), - [anon_sym_50] = ACTIONS(148), - [anon_sym_windows] = ACTIONS(148), - [anon_sym_51] = ACTIONS(148), - [anon_sym_keep] = ACTIONS(148), - [anon_sym_52] = ACTIONS(148), - [anon_sym_find] = ACTIONS(148), - [anon_sym_53] = ACTIONS(148), - [anon_sym_member] = ACTIONS(148), - [anon_sym_54] = ACTIONS(148), - [anon_sym_indexof] = ACTIONS(148), - [anon_sym_55] = ACTIONS(148), - [anon_sym_assert] = ACTIONS(148), - [anon_sym_56] = ACTIONS(148), - [anon_sym_wait] = ACTIONS(148), - [anon_sym_break] = ACTIONS(148), - [anon_sym_57] = ACTIONS(148), - [anon_sym_parse] = ACTIONS(148), - [anon_sym_random] = ACTIONS(148), - [anon_sym_58] = ACTIONS(148), - [anon_sym_gen] = ACTIONS(148), - [anon_sym_deal] = ACTIONS(148), - [anon_sym_tag] = ACTIONS(148), - [anon_sym_now] = ACTIONS(148), - [anon_sym_type] = ACTIONS(148), - [anon_sym_59] = ACTIONS(148), - [anon_sym_dump] = ACTIONS(148), - [anon_sym_regex] = ACTIONS(148), - [anon_sym_utf] = ACTIONS(148), - [anon_sym_rock] = ACTIONS(148), - [anon_sym_60] = ACTIONS(148), - [anon_sym_surface] = ACTIONS(148), - [anon_sym_TILDE] = ACTIONS(148), - [anon_sym_deep] = ACTIONS(148), - [anon_sym_de] = ACTIONS(150), - [anon_sym_61] = ACTIONS(148), - [anon_sym_abyss] = ACTIONS(148), - [anon_sym_ab] = ACTIONS(150), - [anon_sym_62] = ACTIONS(148), - [anon_sym_seabed] = ACTIONS(148), - [anon_sym_se] = ACTIONS(150), - [anon_sym_63] = ACTIONS(148), - [anon_sym_send] = ACTIONS(148), - [anon_sym_recv] = ACTIONS(148), - [anon_sym_tryrecv] = ACTIONS(148), - [anon_sym_reduce] = ACTIONS(152), - [anon_sym_SLASH] = ACTIONS(152), - [anon_sym_scan] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_each] = ACTIONS(152), - [anon_sym_64] = ACTIONS(152), - [anon_sym_rows] = ACTIONS(152), - [anon_sym_65] = ACTIONS(152), - [anon_sym_repeat] = ACTIONS(152), - [anon_sym_66] = ACTIONS(152), - [anon_sym_dip] = ACTIONS(152), - [anon_sym_di] = ACTIONS(154), - [anon_sym_67] = ACTIONS(152), - [anon_sym_gap] = ACTIONS(152), - [anon_sym_ga] = ACTIONS(154), - [anon_sym_68] = ACTIONS(152), - [anon_sym_oust] = ACTIONS(152), - [anon_sym_69] = ACTIONS(152), - [anon_sym_invert] = ACTIONS(152), - [anon_sym_70] = ACTIONS(152), - [anon_sym_spawn] = ACTIONS(152), - [anon_sym_pack] = ACTIONS(152), - [anon_sym_71] = ACTIONS(152), - [anon_sym_tribute] = ACTIONS(152), - [anon_sym_72] = ACTIONS(152), - [anon_sym_fold] = ACTIONS(156), - [anon_sym_73] = ACTIONS(156), - [anon_sym_distribute] = ACTIONS(156), - [anon_sym_74] = ACTIONS(156), - [anon_sym_table] = ACTIONS(156), - [anon_sym_75] = ACTIONS(156), - [anon_sym_cross] = ACTIONS(156), - [anon_sym_76] = ACTIONS(156), - [anon_sym_group] = ACTIONS(156), - [anon_sym_77] = ACTIONS(156), - [anon_sym_partition] = ACTIONS(156), - [anon_sym_78] = ACTIONS(156), - [anon_sym_both] = ACTIONS(156), - [anon_sym_79] = ACTIONS(156), - [anon_sym_bracket] = ACTIONS(156), - [anon_sym_80] = ACTIONS(156), - [anon_sym_fork] = ACTIONS(156), - [anon_sym_81] = ACTIONS(156), - [anon_sym_under] = ACTIONS(156), - [anon_sym_82] = ACTIONS(156), - [anon_sym_level] = ACTIONS(156), - [anon_sym_83] = ACTIONS(156), - [anon_sym_fill] = ACTIONS(156), - [anon_sym_84] = ACTIONS(156), - [anon_sym_bind] = ACTIONS(156), - [anon_sym_SQUOTE] = ACTIONS(156), - [anon_sym_QMARK] = ACTIONS(156), - [anon_sym_try] = ACTIONS(158), - [anon_sym_85] = ACTIONS(156), - [anon_sym_combinate] = ACTIONS(156), - [anon_sym_86] = ACTIONS(156), - [anon_sym_87] = ACTIONS(160), - [anon_sym_88] = ACTIONS(160), - [anon_sym_89] = ACTIONS(160), - [anon_sym_90] = ACTIONS(160), - [anon_sym_91] = ACTIONS(160), - [anon_sym_92] = ACTIONS(160), - [anon_sym_93] = ACTIONS(160), + [sym_identifier] = ACTIONS(121), + [sym_identifier_deprecated] = ACTIONS(121), + [sym_system] = ACTIONS(117), + [sym_comment] = ACTIONS(218), + [sym_openParen] = ACTIONS(125), + [sym_openCurly] = ACTIONS(129), + [sym_openBracket] = ACTIONS(131), + [sym_closeBracket] = ACTIONS(228), + [sym_leftArrow] = ACTIONS(220), + [anon_sym_CARET] = ACTIONS(137), + [anon_sym_eta] = ACTIONS(139), + [anon_sym_] = ACTIONS(141), + [anon_sym_pi] = ACTIONS(141), + [anon_sym_2] = ACTIONS(141), + [anon_sym_tau] = ACTIONS(139), + [anon_sym_3] = ACTIONS(141), + [anon_sym_infinity] = ACTIONS(139), + [anon_sym_4] = ACTIONS(139), + [anon_sym_e] = ACTIONS(141), + [anon_sym_NaN] = ACTIONS(141), + [anon_sym_NumProcs] = ACTIONS(141), + [anon_sym_DOT] = ACTIONS(143), + [anon_sym_COMMA] = ACTIONS(143), + [anon_sym_5] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_identity] = ACTIONS(143), + [anon_sym_id] = ACTIONS(145), + [anon_sym_6] = ACTIONS(143), + [anon_sym_not] = ACTIONS(143), + [anon_sym_7] = ACTIONS(143), + [anon_sym_sign] = ACTIONS(143), + [anon_sym_8] = ACTIONS(143), + [anon_sym_BQUOTE] = ACTIONS(143), + [anon_sym_9] = ACTIONS(143), + [anon_sym_absolutevalue] = ACTIONS(143), + [anon_sym_10] = ACTIONS(143), + [anon_sym_sqrt] = ACTIONS(143), + [anon_sym_11] = ACTIONS(143), + [anon_sym_sine] = ACTIONS(143), + [anon_sym_12] = ACTIONS(143), + [anon_sym_floor] = ACTIONS(143), + [anon_sym_13] = ACTIONS(143), + [anon_sym_ceiling] = ACTIONS(143), + [anon_sym_14] = ACTIONS(143), + [anon_sym_round] = ACTIONS(143), + [anon_sym_15] = ACTIONS(143), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_16] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_17] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_18] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_19] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_20] = ACTIONS(143), + [anon_sym_modulus] = ACTIONS(143), + [anon_sym_21] = ACTIONS(143), + [anon_sym_power] = ACTIONS(143), + [anon_sym_22] = ACTIONS(143), + [anon_sym_logarithm] = ACTIONS(143), + [anon_sym_23] = ACTIONS(143), + [anon_sym_minimum] = ACTIONS(143), + [anon_sym_24] = ACTIONS(143), + [anon_sym_maximum] = ACTIONS(143), + [anon_sym_25] = ACTIONS(143), + [anon_sym_atangent] = ACTIONS(143), + [anon_sym_26] = ACTIONS(143), + [anon_sym_length] = ACTIONS(143), + [anon_sym_27] = ACTIONS(143), + [anon_sym_shape] = ACTIONS(143), + [anon_sym_28] = ACTIONS(143), + [anon_sym_range] = ACTIONS(143), + [anon_sym_29] = ACTIONS(143), + [anon_sym_first] = ACTIONS(143), + [anon_sym_30] = ACTIONS(143), + [anon_sym_reverse] = ACTIONS(143), + [anon_sym_31] = ACTIONS(143), + [anon_sym_deshape] = ACTIONS(143), + [anon_sym_32] = ACTIONS(143), + [anon_sym_bits] = ACTIONS(143), + [anon_sym_33] = ACTIONS(143), + [anon_sym_transpose] = ACTIONS(143), + [anon_sym_34] = ACTIONS(143), + [anon_sym_rise] = ACTIONS(143), + [anon_sym_35] = ACTIONS(143), + [anon_sym_fall] = ACTIONS(143), + [anon_sym_36] = ACTIONS(143), + [anon_sym_where] = ACTIONS(143), + [anon_sym_37] = ACTIONS(143), + [anon_sym_classify] = ACTIONS(143), + [anon_sym_38] = ACTIONS(143), + [anon_sym_deduplicate] = ACTIONS(143), + [anon_sym_39] = ACTIONS(143), + [anon_sym_box] = ACTIONS(143), + [anon_sym_40] = ACTIONS(143), + [anon_sym_unbox] = ACTIONS(143), + [anon_sym_41] = ACTIONS(143), + [anon_sym_match] = ACTIONS(143), + [anon_sym_42] = ACTIONS(143), + [anon_sym_couple] = ACTIONS(143), + [anon_sym_43] = ACTIONS(143), + [anon_sym_join] = ACTIONS(143), + [anon_sym_44] = ACTIONS(143), + [anon_sym_select] = ACTIONS(143), + [anon_sym_45] = ACTIONS(143), + [anon_sym_pick] = ACTIONS(143), + [anon_sym_46] = ACTIONS(143), + [anon_sym_reshape] = ACTIONS(143), + [anon_sym_47] = ACTIONS(143), + [anon_sym_take] = ACTIONS(143), + [anon_sym_48] = ACTIONS(143), + [anon_sym_drop] = ACTIONS(143), + [anon_sym_49] = ACTIONS(143), + [anon_sym_rotate] = ACTIONS(143), + [anon_sym_50] = ACTIONS(143), + [anon_sym_windows] = ACTIONS(143), + [anon_sym_51] = ACTIONS(143), + [anon_sym_keep] = ACTIONS(143), + [anon_sym_52] = ACTIONS(143), + [anon_sym_find] = ACTIONS(143), + [anon_sym_53] = ACTIONS(143), + [anon_sym_member] = ACTIONS(143), + [anon_sym_54] = ACTIONS(143), + [anon_sym_indexof] = ACTIONS(143), + [anon_sym_55] = ACTIONS(143), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_56] = ACTIONS(143), + [anon_sym_wait] = ACTIONS(143), + [anon_sym_break] = ACTIONS(143), + [anon_sym_57] = ACTIONS(143), + [anon_sym_parse] = ACTIONS(143), + [anon_sym_random] = ACTIONS(143), + [anon_sym_58] = ACTIONS(143), + [anon_sym_gen] = ACTIONS(143), + [anon_sym_deal] = ACTIONS(143), + [anon_sym_tag] = ACTIONS(143), + [anon_sym_now] = ACTIONS(143), + [anon_sym_type] = ACTIONS(143), + [anon_sym_59] = ACTIONS(143), + [anon_sym_dump] = ACTIONS(143), + [anon_sym_regex] = ACTIONS(143), + [anon_sym_utf] = ACTIONS(143), + [anon_sym_rock] = ACTIONS(143), + [anon_sym_60] = ACTIONS(143), + [anon_sym_surface] = ACTIONS(143), + [anon_sym_TILDE] = ACTIONS(143), + [anon_sym_deep] = ACTIONS(143), + [anon_sym_de] = ACTIONS(145), + [anon_sym_61] = ACTIONS(143), + [anon_sym_abyss] = ACTIONS(143), + [anon_sym_ab] = ACTIONS(145), + [anon_sym_62] = ACTIONS(143), + [anon_sym_seabed] = ACTIONS(143), + [anon_sym_se] = ACTIONS(145), + [anon_sym_63] = ACTIONS(143), + [anon_sym_send] = ACTIONS(143), + [anon_sym_recv] = ACTIONS(143), + [anon_sym_tryrecv] = ACTIONS(143), + [anon_sym_reduce] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_scan] = ACTIONS(147), + [anon_sym_BSLASH] = ACTIONS(147), + [anon_sym_each] = ACTIONS(147), + [anon_sym_64] = ACTIONS(147), + [anon_sym_rows] = ACTIONS(147), + [anon_sym_65] = ACTIONS(147), + [anon_sym_repeat] = ACTIONS(147), + [anon_sym_66] = ACTIONS(147), + [anon_sym_dip] = ACTIONS(147), + [anon_sym_67] = ACTIONS(147), + [anon_sym_gap] = ACTIONS(147), + [anon_sym_68] = ACTIONS(147), + [anon_sym_69] = ACTIONS(147), + [anon_sym_invert] = ACTIONS(147), + [anon_sym_70] = ACTIONS(147), + [anon_sym_spawn] = ACTIONS(147), + [anon_sym_pack] = ACTIONS(147), + [anon_sym_71] = ACTIONS(147), + [anon_sym_tribute] = ACTIONS(147), + [anon_sym_72] = ACTIONS(147), + [anon_sym_reach] = ACTIONS(147), + [anon_sym_fold] = ACTIONS(149), + [anon_sym_73] = ACTIONS(149), + [anon_sym_distribute] = ACTIONS(149), + [anon_sym_74] = ACTIONS(149), + [anon_sym_table] = ACTIONS(149), + [anon_sym_75] = ACTIONS(149), + [anon_sym_cross] = ACTIONS(149), + [anon_sym_76] = ACTIONS(149), + [anon_sym_group] = ACTIONS(149), + [anon_sym_77] = ACTIONS(149), + [anon_sym_partition] = ACTIONS(149), + [anon_sym_78] = ACTIONS(149), + [anon_sym_both] = ACTIONS(149), + [anon_sym_79] = ACTIONS(149), + [anon_sym_bracket] = ACTIONS(149), + [anon_sym_80] = ACTIONS(149), + [anon_sym_fork] = ACTIONS(149), + [anon_sym_81] = ACTIONS(149), + [anon_sym_under] = ACTIONS(149), + [anon_sym_82] = ACTIONS(149), + [anon_sym_level] = ACTIONS(149), + [anon_sym_83] = ACTIONS(149), + [anon_sym_fill] = ACTIONS(149), + [anon_sym_84] = ACTIONS(149), + [anon_sym_bind] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_try] = ACTIONS(151), + [anon_sym_85] = ACTIONS(149), + [anon_sym_combinate] = ACTIONS(149), + [anon_sym_86] = ACTIONS(149), + [anon_sym_87] = ACTIONS(153), + [anon_sym_88] = ACTIONS(153), + [anon_sym_89] = ACTIONS(153), + [anon_sym_90] = ACTIONS(153), + [anon_sym_91] = ACTIONS(153), + [anon_sym_92] = ACTIONS(153), + [anon_sym_93] = ACTIONS(153), [sym__whitespace] = ACTIONS(5), [sym__end_of_line] = ACTIONS(5), }, @@ -15863,244 +15773,242 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_deprecated] = STATE(61), [aux_sym_array_repeat1] = STATE(57), [aux_sym_array_repeat2] = STATE(29), - [aux_sym_number_token1] = ACTIONS(116), - [anon_sym_os] = ACTIONS(118), - [anon_sym_Family] = ACTIONS(118), - [anon_sym_Arch] = ACTIONS(118), - [anon_sym_ExeExt] = ACTIONS(118), - [anon_sym_PllExt] = ACTIONS(118), - [anon_sym_Sep] = ACTIONS(118), - [aux_sym_character_token1] = ACTIONS(120), - [sym_string] = ACTIONS(122), - [sym_multiLineString] = ACTIONS(122), + [aux_sym_number_token1] = ACTIONS(111), + [anon_sym_os] = ACTIONS(113), + [anon_sym_Family] = ACTIONS(113), + [anon_sym_Arch] = ACTIONS(113), + [anon_sym_ExeExt] = ACTIONS(113), + [anon_sym_PllExt] = ACTIONS(113), + [anon_sym_Sep] = ACTIONS(113), + [aux_sym_character_token1] = ACTIONS(115), + [sym_string] = ACTIONS(117), + [sym_multiLineString] = ACTIONS(117), [anon_sym_PIPE] = ACTIONS(15), - [sym_identifier] = ACTIONS(126), - [sym_identifier_deprecated] = ACTIONS(126), - [sym_system] = ACTIONS(122), - [sym_comment] = ACTIONS(228), - [sym_openParen] = ACTIONS(130), - [sym_openCurly] = ACTIONS(134), - [sym_openBracket] = ACTIONS(136), - [sym_closeBracket] = ACTIONS(252), - [sym_leftArrow] = ACTIONS(230), - [anon_sym_CARET] = ACTIONS(142), - [anon_sym_eta] = ACTIONS(144), - [anon_sym_] = ACTIONS(146), - [anon_sym_pi] = ACTIONS(146), - [anon_sym_2] = ACTIONS(146), - [anon_sym_tau] = ACTIONS(144), - [anon_sym_3] = ACTIONS(146), - [anon_sym_infinity] = ACTIONS(144), - [anon_sym_4] = ACTIONS(144), - [anon_sym_e] = ACTIONS(146), - [anon_sym_NaN] = ACTIONS(146), - [anon_sym_NumProcs] = ACTIONS(146), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_COMMA] = ACTIONS(148), - [anon_sym_5] = ACTIONS(148), - [anon_sym_SEMI] = ACTIONS(148), - [anon_sym_identity] = ACTIONS(148), - [anon_sym_id] = ACTIONS(150), - [anon_sym_6] = ACTIONS(148), - [anon_sym_not] = ACTIONS(148), - [anon_sym_7] = ACTIONS(148), - [anon_sym_sign] = ACTIONS(148), - [anon_sym_8] = ACTIONS(148), - [anon_sym_BQUOTE] = ACTIONS(148), - [anon_sym_9] = ACTIONS(148), - [anon_sym_absolutevalue] = ACTIONS(148), - [anon_sym_10] = ACTIONS(148), - [anon_sym_sqrt] = ACTIONS(148), - [anon_sym_11] = ACTIONS(148), - [anon_sym_sine] = ACTIONS(148), - [anon_sym_12] = ACTIONS(148), - [anon_sym_floor] = ACTIONS(148), - [anon_sym_13] = ACTIONS(148), - [anon_sym_ceiling] = ACTIONS(148), - [anon_sym_14] = ACTIONS(148), - [anon_sym_round] = ACTIONS(148), - [anon_sym_15] = ACTIONS(148), - [anon_sym_EQ] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_16] = ACTIONS(148), - [anon_sym_LT] = ACTIONS(150), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_17] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_18] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_19] = ACTIONS(148), - [anon_sym_PERCENT] = ACTIONS(148), - [anon_sym_20] = ACTIONS(148), - [anon_sym_modulus] = ACTIONS(148), - [anon_sym_21] = ACTIONS(148), - [anon_sym_power] = ACTIONS(148), - [anon_sym_22] = ACTIONS(148), - [anon_sym_logarithm] = ACTIONS(148), - [anon_sym_23] = ACTIONS(148), - [anon_sym_minimum] = ACTIONS(148), - [anon_sym_24] = ACTIONS(148), - [anon_sym_maximum] = ACTIONS(148), - [anon_sym_25] = ACTIONS(148), - [anon_sym_atangent] = ACTIONS(148), - [anon_sym_26] = ACTIONS(148), - [anon_sym_length] = ACTIONS(148), - [anon_sym_27] = ACTIONS(148), - [anon_sym_shape] = ACTIONS(148), - [anon_sym_28] = ACTIONS(148), - [anon_sym_range] = ACTIONS(148), - [anon_sym_29] = ACTIONS(148), - [anon_sym_first] = ACTIONS(148), - [anon_sym_30] = ACTIONS(148), - [anon_sym_reverse] = ACTIONS(148), - [anon_sym_31] = ACTIONS(148), - [anon_sym_deshape] = ACTIONS(148), - [anon_sym_32] = ACTIONS(148), - [anon_sym_bits] = ACTIONS(148), - [anon_sym_33] = ACTIONS(148), - [anon_sym_transpose] = ACTIONS(148), - [anon_sym_34] = ACTIONS(148), - [anon_sym_rise] = ACTIONS(148), - [anon_sym_35] = ACTIONS(148), - [anon_sym_fall] = ACTIONS(148), - [anon_sym_36] = ACTIONS(148), - [anon_sym_where] = ACTIONS(148), - [anon_sym_37] = ACTIONS(148), - [anon_sym_classify] = ACTIONS(148), - [anon_sym_38] = ACTIONS(148), - [anon_sym_deduplicate] = ACTIONS(148), - [anon_sym_39] = ACTIONS(148), - [anon_sym_box] = ACTIONS(148), - [anon_sym_40] = ACTIONS(148), - [anon_sym_unbox] = ACTIONS(148), - [anon_sym_41] = ACTIONS(148), - [anon_sym_match] = ACTIONS(148), - [anon_sym_42] = ACTIONS(148), - [anon_sym_couple] = ACTIONS(148), - [anon_sym_43] = ACTIONS(148), - [anon_sym_join] = ACTIONS(148), - [anon_sym_44] = ACTIONS(148), - [anon_sym_select] = ACTIONS(148), - [anon_sym_45] = ACTIONS(148), - [anon_sym_pick] = ACTIONS(148), - [anon_sym_46] = ACTIONS(148), - [anon_sym_reshape] = ACTIONS(148), - [anon_sym_47] = ACTIONS(148), - [anon_sym_take] = ACTIONS(148), - [anon_sym_48] = ACTIONS(148), - [anon_sym_drop] = ACTIONS(148), - [anon_sym_49] = ACTIONS(148), - [anon_sym_rotate] = ACTIONS(148), - [anon_sym_50] = ACTIONS(148), - [anon_sym_windows] = ACTIONS(148), - [anon_sym_51] = ACTIONS(148), - [anon_sym_keep] = ACTIONS(148), - [anon_sym_52] = ACTIONS(148), - [anon_sym_find] = ACTIONS(148), - [anon_sym_53] = ACTIONS(148), - [anon_sym_member] = ACTIONS(148), - [anon_sym_54] = ACTIONS(148), - [anon_sym_indexof] = ACTIONS(148), - [anon_sym_55] = ACTIONS(148), - [anon_sym_assert] = ACTIONS(148), - [anon_sym_56] = ACTIONS(148), - [anon_sym_wait] = ACTIONS(148), - [anon_sym_break] = ACTIONS(148), - [anon_sym_57] = ACTIONS(148), - [anon_sym_parse] = ACTIONS(148), - [anon_sym_random] = ACTIONS(148), - [anon_sym_58] = ACTIONS(148), - [anon_sym_gen] = ACTIONS(148), - [anon_sym_deal] = ACTIONS(148), - [anon_sym_tag] = ACTIONS(148), - [anon_sym_now] = ACTIONS(148), - [anon_sym_type] = ACTIONS(148), - [anon_sym_59] = ACTIONS(148), - [anon_sym_dump] = ACTIONS(148), - [anon_sym_regex] = ACTIONS(148), - [anon_sym_utf] = ACTIONS(148), - [anon_sym_rock] = ACTIONS(148), - [anon_sym_60] = ACTIONS(148), - [anon_sym_surface] = ACTIONS(148), - [anon_sym_TILDE] = ACTIONS(148), - [anon_sym_deep] = ACTIONS(148), - [anon_sym_de] = ACTIONS(150), - [anon_sym_61] = ACTIONS(148), - [anon_sym_abyss] = ACTIONS(148), - [anon_sym_ab] = ACTIONS(150), - [anon_sym_62] = ACTIONS(148), - [anon_sym_seabed] = ACTIONS(148), - [anon_sym_se] = ACTIONS(150), - [anon_sym_63] = ACTIONS(148), - [anon_sym_send] = ACTIONS(148), - [anon_sym_recv] = ACTIONS(148), - [anon_sym_tryrecv] = ACTIONS(148), - [anon_sym_reduce] = ACTIONS(152), - [anon_sym_SLASH] = ACTIONS(152), - [anon_sym_scan] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_each] = ACTIONS(152), - [anon_sym_64] = ACTIONS(152), - [anon_sym_rows] = ACTIONS(152), - [anon_sym_65] = ACTIONS(152), - [anon_sym_repeat] = ACTIONS(152), - [anon_sym_66] = ACTIONS(152), - [anon_sym_dip] = ACTIONS(152), - [anon_sym_di] = ACTIONS(154), - [anon_sym_67] = ACTIONS(152), - [anon_sym_gap] = ACTIONS(152), - [anon_sym_ga] = ACTIONS(154), - [anon_sym_68] = ACTIONS(152), - [anon_sym_oust] = ACTIONS(152), - [anon_sym_69] = ACTIONS(152), - [anon_sym_invert] = ACTIONS(152), - [anon_sym_70] = ACTIONS(152), - [anon_sym_spawn] = ACTIONS(152), - [anon_sym_pack] = ACTIONS(152), - [anon_sym_71] = ACTIONS(152), - [anon_sym_tribute] = ACTIONS(152), - [anon_sym_72] = ACTIONS(152), - [anon_sym_fold] = ACTIONS(156), - [anon_sym_73] = ACTIONS(156), - [anon_sym_distribute] = ACTIONS(156), - [anon_sym_74] = ACTIONS(156), - [anon_sym_table] = ACTIONS(156), - [anon_sym_75] = ACTIONS(156), - [anon_sym_cross] = ACTIONS(156), - [anon_sym_76] = ACTIONS(156), - [anon_sym_group] = ACTIONS(156), - [anon_sym_77] = ACTIONS(156), - [anon_sym_partition] = ACTIONS(156), - [anon_sym_78] = ACTIONS(156), - [anon_sym_both] = ACTIONS(156), - [anon_sym_79] = ACTIONS(156), - [anon_sym_bracket] = ACTIONS(156), - [anon_sym_80] = ACTIONS(156), - [anon_sym_fork] = ACTIONS(156), - [anon_sym_81] = ACTIONS(156), - [anon_sym_under] = ACTIONS(156), - [anon_sym_82] = ACTIONS(156), - [anon_sym_level] = ACTIONS(156), - [anon_sym_83] = ACTIONS(156), - [anon_sym_fill] = ACTIONS(156), - [anon_sym_84] = ACTIONS(156), - [anon_sym_bind] = ACTIONS(156), - [anon_sym_SQUOTE] = ACTIONS(156), - [anon_sym_QMARK] = ACTIONS(156), - [anon_sym_try] = ACTIONS(158), - [anon_sym_85] = ACTIONS(156), - [anon_sym_combinate] = ACTIONS(156), - [anon_sym_86] = ACTIONS(156), - [anon_sym_87] = ACTIONS(160), - [anon_sym_88] = ACTIONS(160), - [anon_sym_89] = ACTIONS(160), - [anon_sym_90] = ACTIONS(160), - [anon_sym_91] = ACTIONS(160), - [anon_sym_92] = ACTIONS(160), - [anon_sym_93] = ACTIONS(160), + [sym_identifier] = ACTIONS(121), + [sym_identifier_deprecated] = ACTIONS(121), + [sym_system] = ACTIONS(117), + [sym_comment] = ACTIONS(218), + [sym_openParen] = ACTIONS(125), + [sym_openCurly] = ACTIONS(129), + [sym_openBracket] = ACTIONS(131), + [sym_closeBracket] = ACTIONS(242), + [sym_leftArrow] = ACTIONS(220), + [anon_sym_CARET] = ACTIONS(137), + [anon_sym_eta] = ACTIONS(139), + [anon_sym_] = ACTIONS(141), + [anon_sym_pi] = ACTIONS(141), + [anon_sym_2] = ACTIONS(141), + [anon_sym_tau] = ACTIONS(139), + [anon_sym_3] = ACTIONS(141), + [anon_sym_infinity] = ACTIONS(139), + [anon_sym_4] = ACTIONS(139), + [anon_sym_e] = ACTIONS(141), + [anon_sym_NaN] = ACTIONS(141), + [anon_sym_NumProcs] = ACTIONS(141), + [anon_sym_DOT] = ACTIONS(143), + [anon_sym_COMMA] = ACTIONS(143), + [anon_sym_5] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_identity] = ACTIONS(143), + [anon_sym_id] = ACTIONS(145), + [anon_sym_6] = ACTIONS(143), + [anon_sym_not] = ACTIONS(143), + [anon_sym_7] = ACTIONS(143), + [anon_sym_sign] = ACTIONS(143), + [anon_sym_8] = ACTIONS(143), + [anon_sym_BQUOTE] = ACTIONS(143), + [anon_sym_9] = ACTIONS(143), + [anon_sym_absolutevalue] = ACTIONS(143), + [anon_sym_10] = ACTIONS(143), + [anon_sym_sqrt] = ACTIONS(143), + [anon_sym_11] = ACTIONS(143), + [anon_sym_sine] = ACTIONS(143), + [anon_sym_12] = ACTIONS(143), + [anon_sym_floor] = ACTIONS(143), + [anon_sym_13] = ACTIONS(143), + [anon_sym_ceiling] = ACTIONS(143), + [anon_sym_14] = ACTIONS(143), + [anon_sym_round] = ACTIONS(143), + [anon_sym_15] = ACTIONS(143), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_16] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_17] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_18] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_19] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_20] = ACTIONS(143), + [anon_sym_modulus] = ACTIONS(143), + [anon_sym_21] = ACTIONS(143), + [anon_sym_power] = ACTIONS(143), + [anon_sym_22] = ACTIONS(143), + [anon_sym_logarithm] = ACTIONS(143), + [anon_sym_23] = ACTIONS(143), + [anon_sym_minimum] = ACTIONS(143), + [anon_sym_24] = ACTIONS(143), + [anon_sym_maximum] = ACTIONS(143), + [anon_sym_25] = ACTIONS(143), + [anon_sym_atangent] = ACTIONS(143), + [anon_sym_26] = ACTIONS(143), + [anon_sym_length] = ACTIONS(143), + [anon_sym_27] = ACTIONS(143), + [anon_sym_shape] = ACTIONS(143), + [anon_sym_28] = ACTIONS(143), + [anon_sym_range] = ACTIONS(143), + [anon_sym_29] = ACTIONS(143), + [anon_sym_first] = ACTIONS(143), + [anon_sym_30] = ACTIONS(143), + [anon_sym_reverse] = ACTIONS(143), + [anon_sym_31] = ACTIONS(143), + [anon_sym_deshape] = ACTIONS(143), + [anon_sym_32] = ACTIONS(143), + [anon_sym_bits] = ACTIONS(143), + [anon_sym_33] = ACTIONS(143), + [anon_sym_transpose] = ACTIONS(143), + [anon_sym_34] = ACTIONS(143), + [anon_sym_rise] = ACTIONS(143), + [anon_sym_35] = ACTIONS(143), + [anon_sym_fall] = ACTIONS(143), + [anon_sym_36] = ACTIONS(143), + [anon_sym_where] = ACTIONS(143), + [anon_sym_37] = ACTIONS(143), + [anon_sym_classify] = ACTIONS(143), + [anon_sym_38] = ACTIONS(143), + [anon_sym_deduplicate] = ACTIONS(143), + [anon_sym_39] = ACTIONS(143), + [anon_sym_box] = ACTIONS(143), + [anon_sym_40] = ACTIONS(143), + [anon_sym_unbox] = ACTIONS(143), + [anon_sym_41] = ACTIONS(143), + [anon_sym_match] = ACTIONS(143), + [anon_sym_42] = ACTIONS(143), + [anon_sym_couple] = ACTIONS(143), + [anon_sym_43] = ACTIONS(143), + [anon_sym_join] = ACTIONS(143), + [anon_sym_44] = ACTIONS(143), + [anon_sym_select] = ACTIONS(143), + [anon_sym_45] = ACTIONS(143), + [anon_sym_pick] = ACTIONS(143), + [anon_sym_46] = ACTIONS(143), + [anon_sym_reshape] = ACTIONS(143), + [anon_sym_47] = ACTIONS(143), + [anon_sym_take] = ACTIONS(143), + [anon_sym_48] = ACTIONS(143), + [anon_sym_drop] = ACTIONS(143), + [anon_sym_49] = ACTIONS(143), + [anon_sym_rotate] = ACTIONS(143), + [anon_sym_50] = ACTIONS(143), + [anon_sym_windows] = ACTIONS(143), + [anon_sym_51] = ACTIONS(143), + [anon_sym_keep] = ACTIONS(143), + [anon_sym_52] = ACTIONS(143), + [anon_sym_find] = ACTIONS(143), + [anon_sym_53] = ACTIONS(143), + [anon_sym_member] = ACTIONS(143), + [anon_sym_54] = ACTIONS(143), + [anon_sym_indexof] = ACTIONS(143), + [anon_sym_55] = ACTIONS(143), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_56] = ACTIONS(143), + [anon_sym_wait] = ACTIONS(143), + [anon_sym_break] = ACTIONS(143), + [anon_sym_57] = ACTIONS(143), + [anon_sym_parse] = ACTIONS(143), + [anon_sym_random] = ACTIONS(143), + [anon_sym_58] = ACTIONS(143), + [anon_sym_gen] = ACTIONS(143), + [anon_sym_deal] = ACTIONS(143), + [anon_sym_tag] = ACTIONS(143), + [anon_sym_now] = ACTIONS(143), + [anon_sym_type] = ACTIONS(143), + [anon_sym_59] = ACTIONS(143), + [anon_sym_dump] = ACTIONS(143), + [anon_sym_regex] = ACTIONS(143), + [anon_sym_utf] = ACTIONS(143), + [anon_sym_rock] = ACTIONS(143), + [anon_sym_60] = ACTIONS(143), + [anon_sym_surface] = ACTIONS(143), + [anon_sym_TILDE] = ACTIONS(143), + [anon_sym_deep] = ACTIONS(143), + [anon_sym_de] = ACTIONS(145), + [anon_sym_61] = ACTIONS(143), + [anon_sym_abyss] = ACTIONS(143), + [anon_sym_ab] = ACTIONS(145), + [anon_sym_62] = ACTIONS(143), + [anon_sym_seabed] = ACTIONS(143), + [anon_sym_se] = ACTIONS(145), + [anon_sym_63] = ACTIONS(143), + [anon_sym_send] = ACTIONS(143), + [anon_sym_recv] = ACTIONS(143), + [anon_sym_tryrecv] = ACTIONS(143), + [anon_sym_reduce] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_scan] = ACTIONS(147), + [anon_sym_BSLASH] = ACTIONS(147), + [anon_sym_each] = ACTIONS(147), + [anon_sym_64] = ACTIONS(147), + [anon_sym_rows] = ACTIONS(147), + [anon_sym_65] = ACTIONS(147), + [anon_sym_repeat] = ACTIONS(147), + [anon_sym_66] = ACTIONS(147), + [anon_sym_dip] = ACTIONS(147), + [anon_sym_67] = ACTIONS(147), + [anon_sym_gap] = ACTIONS(147), + [anon_sym_68] = ACTIONS(147), + [anon_sym_69] = ACTIONS(147), + [anon_sym_invert] = ACTIONS(147), + [anon_sym_70] = ACTIONS(147), + [anon_sym_spawn] = ACTIONS(147), + [anon_sym_pack] = ACTIONS(147), + [anon_sym_71] = ACTIONS(147), + [anon_sym_tribute] = ACTIONS(147), + [anon_sym_72] = ACTIONS(147), + [anon_sym_reach] = ACTIONS(147), + [anon_sym_fold] = ACTIONS(149), + [anon_sym_73] = ACTIONS(149), + [anon_sym_distribute] = ACTIONS(149), + [anon_sym_74] = ACTIONS(149), + [anon_sym_table] = ACTIONS(149), + [anon_sym_75] = ACTIONS(149), + [anon_sym_cross] = ACTIONS(149), + [anon_sym_76] = ACTIONS(149), + [anon_sym_group] = ACTIONS(149), + [anon_sym_77] = ACTIONS(149), + [anon_sym_partition] = ACTIONS(149), + [anon_sym_78] = ACTIONS(149), + [anon_sym_both] = ACTIONS(149), + [anon_sym_79] = ACTIONS(149), + [anon_sym_bracket] = ACTIONS(149), + [anon_sym_80] = ACTIONS(149), + [anon_sym_fork] = ACTIONS(149), + [anon_sym_81] = ACTIONS(149), + [anon_sym_under] = ACTIONS(149), + [anon_sym_82] = ACTIONS(149), + [anon_sym_level] = ACTIONS(149), + [anon_sym_83] = ACTIONS(149), + [anon_sym_fill] = ACTIONS(149), + [anon_sym_84] = ACTIONS(149), + [anon_sym_bind] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_try] = ACTIONS(151), + [anon_sym_85] = ACTIONS(149), + [anon_sym_combinate] = ACTIONS(149), + [anon_sym_86] = ACTIONS(149), + [anon_sym_87] = ACTIONS(153), + [anon_sym_88] = ACTIONS(153), + [anon_sym_89] = ACTIONS(153), + [anon_sym_90] = ACTIONS(153), + [anon_sym_91] = ACTIONS(153), + [anon_sym_92] = ACTIONS(153), + [anon_sym_93] = ACTIONS(153), [sym__whitespace] = ACTIONS(5), [sym__end_of_line] = ACTIONS(5), }, @@ -16124,243 +16032,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_deprecated] = STATE(61), [aux_sym_module_repeat1] = STATE(37), [aux_sym_array_repeat1] = STATE(57), - [aux_sym_number_token1] = ACTIONS(262), - [anon_sym_os] = ACTIONS(265), - [anon_sym_Family] = ACTIONS(265), - [anon_sym_Arch] = ACTIONS(265), - [anon_sym_ExeExt] = ACTIONS(265), - [anon_sym_PllExt] = ACTIONS(265), - [anon_sym_Sep] = ACTIONS(265), - [aux_sym_character_token1] = ACTIONS(268), - [sym_string] = ACTIONS(271), - [sym_multiLineString] = ACTIONS(271), - [anon_sym_PIPE] = ACTIONS(274), - [sym_identifier] = ACTIONS(277), - [sym_identifier_deprecated] = ACTIONS(277), - [sym_system] = ACTIONS(271), - [sym_comment] = ACTIONS(280), - [sym_openParen] = ACTIONS(283), - [sym_openCurly] = ACTIONS(286), - [sym_openBracket] = ACTIONS(289), - [sym_leftArrow] = ACTIONS(292), - [anon_sym_CARET] = ACTIONS(295), - [anon_sym_eta] = ACTIONS(298), - [anon_sym_] = ACTIONS(301), - [anon_sym_pi] = ACTIONS(301), - [anon_sym_2] = ACTIONS(301), - [anon_sym_tau] = ACTIONS(298), - [anon_sym_3] = ACTIONS(301), - [anon_sym_infinity] = ACTIONS(298), - [anon_sym_4] = ACTIONS(298), - [anon_sym_e] = ACTIONS(301), - [anon_sym_NaN] = ACTIONS(301), - [anon_sym_NumProcs] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(304), - [anon_sym_COMMA] = ACTIONS(304), - [anon_sym_5] = ACTIONS(304), - [anon_sym_SEMI] = ACTIONS(304), - [anon_sym_identity] = ACTIONS(304), - [anon_sym_id] = ACTIONS(307), - [anon_sym_6] = ACTIONS(304), - [anon_sym_not] = ACTIONS(304), - [anon_sym_7] = ACTIONS(304), - [anon_sym_sign] = ACTIONS(304), - [anon_sym_8] = ACTIONS(304), - [anon_sym_BQUOTE] = ACTIONS(304), - [anon_sym_9] = ACTIONS(304), - [anon_sym_absolutevalue] = ACTIONS(304), - [anon_sym_10] = ACTIONS(304), - [anon_sym_sqrt] = ACTIONS(304), - [anon_sym_11] = ACTIONS(304), - [anon_sym_sine] = ACTIONS(304), - [anon_sym_12] = ACTIONS(304), - [anon_sym_floor] = ACTIONS(304), - [anon_sym_13] = ACTIONS(304), - [anon_sym_ceiling] = ACTIONS(304), - [anon_sym_14] = ACTIONS(304), - [anon_sym_round] = ACTIONS(304), - [anon_sym_15] = ACTIONS(304), - [anon_sym_EQ] = ACTIONS(304), - [anon_sym_BANG_EQ] = ACTIONS(304), - [anon_sym_16] = ACTIONS(304), - [anon_sym_LT] = ACTIONS(307), - [anon_sym_LT_EQ] = ACTIONS(304), - [anon_sym_17] = ACTIONS(304), - [anon_sym_GT] = ACTIONS(307), - [anon_sym_GT_EQ] = ACTIONS(304), - [anon_sym_18] = ACTIONS(304), - [anon_sym_PLUS] = ACTIONS(304), - [anon_sym_DASH] = ACTIONS(304), - [anon_sym_STAR] = ACTIONS(304), - [anon_sym_19] = ACTIONS(304), - [anon_sym_PERCENT] = ACTIONS(304), - [anon_sym_20] = ACTIONS(304), - [anon_sym_modulus] = ACTIONS(304), - [anon_sym_21] = ACTIONS(304), - [anon_sym_power] = ACTIONS(304), - [anon_sym_22] = ACTIONS(304), - [anon_sym_logarithm] = ACTIONS(304), - [anon_sym_23] = ACTIONS(304), - [anon_sym_minimum] = ACTIONS(304), - [anon_sym_24] = ACTIONS(304), - [anon_sym_maximum] = ACTIONS(304), - [anon_sym_25] = ACTIONS(304), - [anon_sym_atangent] = ACTIONS(304), - [anon_sym_26] = ACTIONS(304), - [anon_sym_length] = ACTIONS(304), - [anon_sym_27] = ACTIONS(304), - [anon_sym_shape] = ACTIONS(304), - [anon_sym_28] = ACTIONS(304), - [anon_sym_range] = ACTIONS(304), - [anon_sym_29] = ACTIONS(304), - [anon_sym_first] = ACTIONS(304), - [anon_sym_30] = ACTIONS(304), - [anon_sym_reverse] = ACTIONS(304), - [anon_sym_31] = ACTIONS(304), - [anon_sym_deshape] = ACTIONS(304), - [anon_sym_32] = ACTIONS(304), - [anon_sym_bits] = ACTIONS(304), - [anon_sym_33] = ACTIONS(304), - [anon_sym_transpose] = ACTIONS(304), - [anon_sym_34] = ACTIONS(304), - [anon_sym_rise] = ACTIONS(304), - [anon_sym_35] = ACTIONS(304), - [anon_sym_fall] = ACTIONS(304), - [anon_sym_36] = ACTIONS(304), - [anon_sym_where] = ACTIONS(304), - [anon_sym_37] = ACTIONS(304), - [anon_sym_classify] = ACTIONS(304), - [anon_sym_38] = ACTIONS(304), - [anon_sym_deduplicate] = ACTIONS(304), - [anon_sym_39] = ACTIONS(304), - [anon_sym_box] = ACTIONS(304), - [anon_sym_40] = ACTIONS(304), - [anon_sym_unbox] = ACTIONS(304), - [anon_sym_41] = ACTIONS(304), - [anon_sym_match] = ACTIONS(304), - [anon_sym_42] = ACTIONS(304), - [anon_sym_couple] = ACTIONS(304), - [anon_sym_43] = ACTIONS(304), - [anon_sym_join] = ACTIONS(304), - [anon_sym_44] = ACTIONS(304), - [anon_sym_select] = ACTIONS(304), - [anon_sym_45] = ACTIONS(304), - [anon_sym_pick] = ACTIONS(304), - [anon_sym_46] = ACTIONS(304), - [anon_sym_reshape] = ACTIONS(304), - [anon_sym_47] = ACTIONS(304), - [anon_sym_take] = ACTIONS(304), - [anon_sym_48] = ACTIONS(304), - [anon_sym_drop] = ACTIONS(304), - [anon_sym_49] = ACTIONS(304), - [anon_sym_rotate] = ACTIONS(304), - [anon_sym_50] = ACTIONS(304), - [anon_sym_windows] = ACTIONS(304), - [anon_sym_51] = ACTIONS(304), - [anon_sym_keep] = ACTIONS(304), - [anon_sym_52] = ACTIONS(304), - [anon_sym_find] = ACTIONS(304), - [anon_sym_53] = ACTIONS(304), - [anon_sym_member] = ACTIONS(304), - [anon_sym_54] = ACTIONS(304), - [anon_sym_indexof] = ACTIONS(304), - [anon_sym_55] = ACTIONS(304), - [anon_sym_assert] = ACTIONS(304), - [anon_sym_56] = ACTIONS(304), - [anon_sym_wait] = ACTIONS(304), - [anon_sym_break] = ACTIONS(304), - [anon_sym_57] = ACTIONS(304), - [anon_sym_parse] = ACTIONS(304), - [anon_sym_random] = ACTIONS(304), - [anon_sym_58] = ACTIONS(304), - [anon_sym_gen] = ACTIONS(304), - [anon_sym_deal] = ACTIONS(304), - [anon_sym_tag] = ACTIONS(304), - [anon_sym_now] = ACTIONS(304), - [anon_sym_type] = ACTIONS(304), - [anon_sym_59] = ACTIONS(304), - [anon_sym_dump] = ACTIONS(304), - [anon_sym_regex] = ACTIONS(304), - [anon_sym_utf] = ACTIONS(304), - [anon_sym_rock] = ACTIONS(304), - [anon_sym_60] = ACTIONS(304), - [anon_sym_surface] = ACTIONS(304), - [anon_sym_TILDE] = ACTIONS(304), - [anon_sym_deep] = ACTIONS(304), - [anon_sym_de] = ACTIONS(307), - [anon_sym_61] = ACTIONS(304), - [anon_sym_abyss] = ACTIONS(304), - [anon_sym_ab] = ACTIONS(307), - [anon_sym_62] = ACTIONS(304), - [anon_sym_seabed] = ACTIONS(304), - [anon_sym_se] = ACTIONS(307), - [anon_sym_63] = ACTIONS(304), - [anon_sym_send] = ACTIONS(304), - [anon_sym_recv] = ACTIONS(304), - [anon_sym_tryrecv] = ACTIONS(304), - [anon_sym_reduce] = ACTIONS(310), - [anon_sym_SLASH] = ACTIONS(310), - [anon_sym_scan] = ACTIONS(310), - [anon_sym_BSLASH] = ACTIONS(310), - [anon_sym_each] = ACTIONS(310), - [anon_sym_64] = ACTIONS(310), - [anon_sym_rows] = ACTIONS(310), - [anon_sym_65] = ACTIONS(310), - [anon_sym_repeat] = ACTIONS(310), - [anon_sym_66] = ACTIONS(310), - [anon_sym_dip] = ACTIONS(310), - [anon_sym_di] = ACTIONS(313), - [anon_sym_67] = ACTIONS(310), - [anon_sym_gap] = ACTIONS(310), - [anon_sym_ga] = ACTIONS(313), - [anon_sym_68] = ACTIONS(310), - [anon_sym_oust] = ACTIONS(310), - [anon_sym_69] = ACTIONS(310), - [anon_sym_invert] = ACTIONS(310), - [anon_sym_70] = ACTIONS(310), - [anon_sym_spawn] = ACTIONS(310), - [anon_sym_pack] = ACTIONS(310), - [anon_sym_71] = ACTIONS(310), - [anon_sym_tribute] = ACTIONS(310), - [anon_sym_72] = ACTIONS(310), - [anon_sym_fold] = ACTIONS(316), - [anon_sym_73] = ACTIONS(316), - [anon_sym_distribute] = ACTIONS(316), - [anon_sym_74] = ACTIONS(316), - [anon_sym_table] = ACTIONS(316), - [anon_sym_75] = ACTIONS(316), - [anon_sym_cross] = ACTIONS(316), - [anon_sym_76] = ACTIONS(316), - [anon_sym_group] = ACTIONS(316), - [anon_sym_77] = ACTIONS(316), - [anon_sym_partition] = ACTIONS(316), - [anon_sym_78] = ACTIONS(316), - [anon_sym_both] = ACTIONS(316), - [anon_sym_79] = ACTIONS(316), - [anon_sym_bracket] = ACTIONS(316), - [anon_sym_80] = ACTIONS(316), - [anon_sym_fork] = ACTIONS(316), - [anon_sym_81] = ACTIONS(316), - [anon_sym_under] = ACTIONS(316), - [anon_sym_82] = ACTIONS(316), - [anon_sym_level] = ACTIONS(316), - [anon_sym_83] = ACTIONS(316), - [anon_sym_fill] = ACTIONS(316), - [anon_sym_84] = ACTIONS(316), - [anon_sym_bind] = ACTIONS(316), - [anon_sym_SQUOTE] = ACTIONS(316), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_try] = ACTIONS(319), - [anon_sym_85] = ACTIONS(316), - [anon_sym_combinate] = ACTIONS(316), - [anon_sym_86] = ACTIONS(316), - [anon_sym_87] = ACTIONS(322), - [anon_sym_88] = ACTIONS(322), - [anon_sym_89] = ACTIONS(322), - [anon_sym_90] = ACTIONS(322), - [anon_sym_91] = ACTIONS(322), - [anon_sym_92] = ACTIONS(322), - [anon_sym_93] = ACTIONS(322), + [aux_sym_number_token1] = ACTIONS(252), + [anon_sym_os] = ACTIONS(255), + [anon_sym_Family] = ACTIONS(255), + [anon_sym_Arch] = ACTIONS(255), + [anon_sym_ExeExt] = ACTIONS(255), + [anon_sym_PllExt] = ACTIONS(255), + [anon_sym_Sep] = ACTIONS(255), + [aux_sym_character_token1] = ACTIONS(258), + [sym_string] = ACTIONS(261), + [sym_multiLineString] = ACTIONS(261), + [anon_sym_PIPE] = ACTIONS(264), + [sym_identifier] = ACTIONS(267), + [sym_identifier_deprecated] = ACTIONS(267), + [sym_system] = ACTIONS(261), + [sym_comment] = ACTIONS(270), + [sym_openParen] = ACTIONS(273), + [sym_openCurly] = ACTIONS(276), + [sym_openBracket] = ACTIONS(279), + [sym_leftArrow] = ACTIONS(282), + [anon_sym_CARET] = ACTIONS(285), + [anon_sym_eta] = ACTIONS(288), + [anon_sym_] = ACTIONS(291), + [anon_sym_pi] = ACTIONS(291), + [anon_sym_2] = ACTIONS(291), + [anon_sym_tau] = ACTIONS(288), + [anon_sym_3] = ACTIONS(291), + [anon_sym_infinity] = ACTIONS(288), + [anon_sym_4] = ACTIONS(288), + [anon_sym_e] = ACTIONS(291), + [anon_sym_NaN] = ACTIONS(291), + [anon_sym_NumProcs] = ACTIONS(291), + [anon_sym_DOT] = ACTIONS(294), + [anon_sym_COMMA] = ACTIONS(294), + [anon_sym_5] = ACTIONS(294), + [anon_sym_SEMI] = ACTIONS(294), + [anon_sym_identity] = ACTIONS(294), + [anon_sym_id] = ACTIONS(297), + [anon_sym_6] = ACTIONS(294), + [anon_sym_not] = ACTIONS(294), + [anon_sym_7] = ACTIONS(294), + [anon_sym_sign] = ACTIONS(294), + [anon_sym_8] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(294), + [anon_sym_9] = ACTIONS(294), + [anon_sym_absolutevalue] = ACTIONS(294), + [anon_sym_10] = ACTIONS(294), + [anon_sym_sqrt] = ACTIONS(294), + [anon_sym_11] = ACTIONS(294), + [anon_sym_sine] = ACTIONS(294), + [anon_sym_12] = ACTIONS(294), + [anon_sym_floor] = ACTIONS(294), + [anon_sym_13] = ACTIONS(294), + [anon_sym_ceiling] = ACTIONS(294), + [anon_sym_14] = ACTIONS(294), + [anon_sym_round] = ACTIONS(294), + [anon_sym_15] = ACTIONS(294), + [anon_sym_EQ] = ACTIONS(294), + [anon_sym_BANG_EQ] = ACTIONS(294), + [anon_sym_16] = ACTIONS(294), + [anon_sym_LT] = ACTIONS(297), + [anon_sym_LT_EQ] = ACTIONS(294), + [anon_sym_17] = ACTIONS(294), + [anon_sym_GT] = ACTIONS(297), + [anon_sym_GT_EQ] = ACTIONS(294), + [anon_sym_18] = ACTIONS(294), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_STAR] = ACTIONS(294), + [anon_sym_19] = ACTIONS(294), + [anon_sym_PERCENT] = ACTIONS(294), + [anon_sym_20] = ACTIONS(294), + [anon_sym_modulus] = ACTIONS(294), + [anon_sym_21] = ACTIONS(294), + [anon_sym_power] = ACTIONS(294), + [anon_sym_22] = ACTIONS(294), + [anon_sym_logarithm] = ACTIONS(294), + [anon_sym_23] = ACTIONS(294), + [anon_sym_minimum] = ACTIONS(294), + [anon_sym_24] = ACTIONS(294), + [anon_sym_maximum] = ACTIONS(294), + [anon_sym_25] = ACTIONS(294), + [anon_sym_atangent] = ACTIONS(294), + [anon_sym_26] = ACTIONS(294), + [anon_sym_length] = ACTIONS(294), + [anon_sym_27] = ACTIONS(294), + [anon_sym_shape] = ACTIONS(294), + [anon_sym_28] = ACTIONS(294), + [anon_sym_range] = ACTIONS(294), + [anon_sym_29] = ACTIONS(294), + [anon_sym_first] = ACTIONS(294), + [anon_sym_30] = ACTIONS(294), + [anon_sym_reverse] = ACTIONS(294), + [anon_sym_31] = ACTIONS(294), + [anon_sym_deshape] = ACTIONS(294), + [anon_sym_32] = ACTIONS(294), + [anon_sym_bits] = ACTIONS(294), + [anon_sym_33] = ACTIONS(294), + [anon_sym_transpose] = ACTIONS(294), + [anon_sym_34] = ACTIONS(294), + [anon_sym_rise] = ACTIONS(294), + [anon_sym_35] = ACTIONS(294), + [anon_sym_fall] = ACTIONS(294), + [anon_sym_36] = ACTIONS(294), + [anon_sym_where] = ACTIONS(294), + [anon_sym_37] = ACTIONS(294), + [anon_sym_classify] = ACTIONS(294), + [anon_sym_38] = ACTIONS(294), + [anon_sym_deduplicate] = ACTIONS(294), + [anon_sym_39] = ACTIONS(294), + [anon_sym_box] = ACTIONS(294), + [anon_sym_40] = ACTIONS(294), + [anon_sym_unbox] = ACTIONS(294), + [anon_sym_41] = ACTIONS(294), + [anon_sym_match] = ACTIONS(294), + [anon_sym_42] = ACTIONS(294), + [anon_sym_couple] = ACTIONS(294), + [anon_sym_43] = ACTIONS(294), + [anon_sym_join] = ACTIONS(294), + [anon_sym_44] = ACTIONS(294), + [anon_sym_select] = ACTIONS(294), + [anon_sym_45] = ACTIONS(294), + [anon_sym_pick] = ACTIONS(294), + [anon_sym_46] = ACTIONS(294), + [anon_sym_reshape] = ACTIONS(294), + [anon_sym_47] = ACTIONS(294), + [anon_sym_take] = ACTIONS(294), + [anon_sym_48] = ACTIONS(294), + [anon_sym_drop] = ACTIONS(294), + [anon_sym_49] = ACTIONS(294), + [anon_sym_rotate] = ACTIONS(294), + [anon_sym_50] = ACTIONS(294), + [anon_sym_windows] = ACTIONS(294), + [anon_sym_51] = ACTIONS(294), + [anon_sym_keep] = ACTIONS(294), + [anon_sym_52] = ACTIONS(294), + [anon_sym_find] = ACTIONS(294), + [anon_sym_53] = ACTIONS(294), + [anon_sym_member] = ACTIONS(294), + [anon_sym_54] = ACTIONS(294), + [anon_sym_indexof] = ACTIONS(294), + [anon_sym_55] = ACTIONS(294), + [anon_sym_assert] = ACTIONS(294), + [anon_sym_56] = ACTIONS(294), + [anon_sym_wait] = ACTIONS(294), + [anon_sym_break] = ACTIONS(294), + [anon_sym_57] = ACTIONS(294), + [anon_sym_parse] = ACTIONS(294), + [anon_sym_random] = ACTIONS(294), + [anon_sym_58] = ACTIONS(294), + [anon_sym_gen] = ACTIONS(294), + [anon_sym_deal] = ACTIONS(294), + [anon_sym_tag] = ACTIONS(294), + [anon_sym_now] = ACTIONS(294), + [anon_sym_type] = ACTIONS(294), + [anon_sym_59] = ACTIONS(294), + [anon_sym_dump] = ACTIONS(294), + [anon_sym_regex] = ACTIONS(294), + [anon_sym_utf] = ACTIONS(294), + [anon_sym_rock] = ACTIONS(294), + [anon_sym_60] = ACTIONS(294), + [anon_sym_surface] = ACTIONS(294), + [anon_sym_TILDE] = ACTIONS(294), + [anon_sym_deep] = ACTIONS(294), + [anon_sym_de] = ACTIONS(297), + [anon_sym_61] = ACTIONS(294), + [anon_sym_abyss] = ACTIONS(294), + [anon_sym_ab] = ACTIONS(297), + [anon_sym_62] = ACTIONS(294), + [anon_sym_seabed] = ACTIONS(294), + [anon_sym_se] = ACTIONS(297), + [anon_sym_63] = ACTIONS(294), + [anon_sym_send] = ACTIONS(294), + [anon_sym_recv] = ACTIONS(294), + [anon_sym_tryrecv] = ACTIONS(294), + [anon_sym_reduce] = ACTIONS(300), + [anon_sym_SLASH] = ACTIONS(300), + [anon_sym_scan] = ACTIONS(300), + [anon_sym_BSLASH] = ACTIONS(300), + [anon_sym_each] = ACTIONS(300), + [anon_sym_64] = ACTIONS(300), + [anon_sym_rows] = ACTIONS(300), + [anon_sym_65] = ACTIONS(300), + [anon_sym_repeat] = ACTIONS(300), + [anon_sym_66] = ACTIONS(300), + [anon_sym_dip] = ACTIONS(300), + [anon_sym_67] = ACTIONS(300), + [anon_sym_gap] = ACTIONS(300), + [anon_sym_68] = ACTIONS(300), + [anon_sym_69] = ACTIONS(300), + [anon_sym_invert] = ACTIONS(300), + [anon_sym_70] = ACTIONS(300), + [anon_sym_spawn] = ACTIONS(300), + [anon_sym_pack] = ACTIONS(300), + [anon_sym_71] = ACTIONS(300), + [anon_sym_tribute] = ACTIONS(300), + [anon_sym_72] = ACTIONS(300), + [anon_sym_reach] = ACTIONS(300), + [anon_sym_fold] = ACTIONS(303), + [anon_sym_73] = ACTIONS(303), + [anon_sym_distribute] = ACTIONS(303), + [anon_sym_74] = ACTIONS(303), + [anon_sym_table] = ACTIONS(303), + [anon_sym_75] = ACTIONS(303), + [anon_sym_cross] = ACTIONS(303), + [anon_sym_76] = ACTIONS(303), + [anon_sym_group] = ACTIONS(303), + [anon_sym_77] = ACTIONS(303), + [anon_sym_partition] = ACTIONS(303), + [anon_sym_78] = ACTIONS(303), + [anon_sym_both] = ACTIONS(303), + [anon_sym_79] = ACTIONS(303), + [anon_sym_bracket] = ACTIONS(303), + [anon_sym_80] = ACTIONS(303), + [anon_sym_fork] = ACTIONS(303), + [anon_sym_81] = ACTIONS(303), + [anon_sym_under] = ACTIONS(303), + [anon_sym_82] = ACTIONS(303), + [anon_sym_level] = ACTIONS(303), + [anon_sym_83] = ACTIONS(303), + [anon_sym_fill] = ACTIONS(303), + [anon_sym_84] = ACTIONS(303), + [anon_sym_bind] = ACTIONS(303), + [anon_sym_SQUOTE] = ACTIONS(303), + [anon_sym_QMARK] = ACTIONS(303), + [anon_sym_try] = ACTIONS(306), + [anon_sym_85] = ACTIONS(303), + [anon_sym_combinate] = ACTIONS(303), + [anon_sym_86] = ACTIONS(303), + [anon_sym_87] = ACTIONS(309), + [anon_sym_88] = ACTIONS(309), + [anon_sym_89] = ACTIONS(309), + [anon_sym_90] = ACTIONS(309), + [anon_sym_91] = ACTIONS(309), + [anon_sym_92] = ACTIONS(309), + [anon_sym_93] = ACTIONS(309), [sym__whitespace] = ACTIONS(5), [sym__end_of_line] = ACTIONS(5), }, @@ -16383,246 +16289,244 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_modifier2] = STATE(59), [sym_deprecated] = STATE(61), [aux_sym_array_repeat1] = STATE(57), - [aux_sym_number_token1] = ACTIONS(116), - [anon_sym_os] = ACTIONS(118), - [anon_sym_Family] = ACTIONS(118), - [anon_sym_Arch] = ACTIONS(118), - [anon_sym_ExeExt] = ACTIONS(118), - [anon_sym_PllExt] = ACTIONS(118), - [anon_sym_Sep] = ACTIONS(118), - [aux_sym_character_token1] = ACTIONS(120), - [sym_string] = ACTIONS(122), - [sym_multiLineString] = ACTIONS(122), + [aux_sym_number_token1] = ACTIONS(111), + [anon_sym_os] = ACTIONS(113), + [anon_sym_Family] = ACTIONS(113), + [anon_sym_Arch] = ACTIONS(113), + [anon_sym_ExeExt] = ACTIONS(113), + [anon_sym_PllExt] = ACTIONS(113), + [anon_sym_Sep] = ACTIONS(113), + [aux_sym_character_token1] = ACTIONS(115), + [sym_string] = ACTIONS(117), + [sym_multiLineString] = ACTIONS(117), [anon_sym_PIPE] = ACTIONS(15), - [sym_identifier] = ACTIONS(126), - [sym_identifier_deprecated] = ACTIONS(126), - [sym_system] = ACTIONS(122), - [sym_comment] = ACTIONS(128), - [sym_openParen] = ACTIONS(130), - [sym_closeParen] = ACTIONS(132), - [sym_openCurly] = ACTIONS(134), - [sym_openBracket] = ACTIONS(136), - [sym_leftArrow] = ACTIONS(140), - [anon_sym_CARET] = ACTIONS(142), - [anon_sym_eta] = ACTIONS(144), - [anon_sym_] = ACTIONS(146), - [anon_sym_pi] = ACTIONS(146), - [anon_sym_2] = ACTIONS(146), - [anon_sym_tau] = ACTIONS(144), - [anon_sym_3] = ACTIONS(146), - [anon_sym_infinity] = ACTIONS(144), - [anon_sym_4] = ACTIONS(144), - [anon_sym_e] = ACTIONS(146), - [anon_sym_NaN] = ACTIONS(146), - [anon_sym_NumProcs] = ACTIONS(146), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_COMMA] = ACTIONS(148), - [anon_sym_5] = ACTIONS(148), - [anon_sym_SEMI] = ACTIONS(148), - [anon_sym_identity] = ACTIONS(148), - [anon_sym_id] = ACTIONS(150), - [anon_sym_6] = ACTIONS(148), - [anon_sym_not] = ACTIONS(148), - [anon_sym_7] = ACTIONS(148), - [anon_sym_sign] = ACTIONS(148), - [anon_sym_8] = ACTIONS(148), - [anon_sym_BQUOTE] = ACTIONS(148), - [anon_sym_9] = ACTIONS(148), - [anon_sym_absolutevalue] = ACTIONS(148), - [anon_sym_10] = ACTIONS(148), - [anon_sym_sqrt] = ACTIONS(148), - [anon_sym_11] = ACTIONS(148), - [anon_sym_sine] = ACTIONS(148), - [anon_sym_12] = ACTIONS(148), - [anon_sym_floor] = ACTIONS(148), - [anon_sym_13] = ACTIONS(148), - [anon_sym_ceiling] = ACTIONS(148), - [anon_sym_14] = ACTIONS(148), - [anon_sym_round] = ACTIONS(148), - [anon_sym_15] = ACTIONS(148), - [anon_sym_EQ] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_16] = ACTIONS(148), - [anon_sym_LT] = ACTIONS(150), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_17] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_18] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_19] = ACTIONS(148), - [anon_sym_PERCENT] = ACTIONS(148), - [anon_sym_20] = ACTIONS(148), - [anon_sym_modulus] = ACTIONS(148), - [anon_sym_21] = ACTIONS(148), - [anon_sym_power] = ACTIONS(148), - [anon_sym_22] = ACTIONS(148), - [anon_sym_logarithm] = ACTIONS(148), - [anon_sym_23] = ACTIONS(148), - [anon_sym_minimum] = ACTIONS(148), - [anon_sym_24] = ACTIONS(148), - [anon_sym_maximum] = ACTIONS(148), - [anon_sym_25] = ACTIONS(148), - [anon_sym_atangent] = ACTIONS(148), - [anon_sym_26] = ACTIONS(148), - [anon_sym_length] = ACTIONS(148), - [anon_sym_27] = ACTIONS(148), - [anon_sym_shape] = ACTIONS(148), - [anon_sym_28] = ACTIONS(148), - [anon_sym_range] = ACTIONS(148), - [anon_sym_29] = ACTIONS(148), - [anon_sym_first] = ACTIONS(148), - [anon_sym_30] = ACTIONS(148), - [anon_sym_reverse] = ACTIONS(148), - [anon_sym_31] = ACTIONS(148), - [anon_sym_deshape] = ACTIONS(148), - [anon_sym_32] = ACTIONS(148), - [anon_sym_bits] = ACTIONS(148), - [anon_sym_33] = ACTIONS(148), - [anon_sym_transpose] = ACTIONS(148), - [anon_sym_34] = ACTIONS(148), - [anon_sym_rise] = ACTIONS(148), - [anon_sym_35] = ACTIONS(148), - [anon_sym_fall] = ACTIONS(148), - [anon_sym_36] = ACTIONS(148), - [anon_sym_where] = ACTIONS(148), - [anon_sym_37] = ACTIONS(148), - [anon_sym_classify] = ACTIONS(148), - [anon_sym_38] = ACTIONS(148), - [anon_sym_deduplicate] = ACTIONS(148), - [anon_sym_39] = ACTIONS(148), - [anon_sym_box] = ACTIONS(148), - [anon_sym_40] = ACTIONS(148), - [anon_sym_unbox] = ACTIONS(148), - [anon_sym_41] = ACTIONS(148), - [anon_sym_match] = ACTIONS(148), - [anon_sym_42] = ACTIONS(148), - [anon_sym_couple] = ACTIONS(148), - [anon_sym_43] = ACTIONS(148), - [anon_sym_join] = ACTIONS(148), - [anon_sym_44] = ACTIONS(148), - [anon_sym_select] = ACTIONS(148), - [anon_sym_45] = ACTIONS(148), - [anon_sym_pick] = ACTIONS(148), - [anon_sym_46] = ACTIONS(148), - [anon_sym_reshape] = ACTIONS(148), - [anon_sym_47] = ACTIONS(148), - [anon_sym_take] = ACTIONS(148), - [anon_sym_48] = ACTIONS(148), - [anon_sym_drop] = ACTIONS(148), - [anon_sym_49] = ACTIONS(148), - [anon_sym_rotate] = ACTIONS(148), - [anon_sym_50] = ACTIONS(148), - [anon_sym_windows] = ACTIONS(148), - [anon_sym_51] = ACTIONS(148), - [anon_sym_keep] = ACTIONS(148), - [anon_sym_52] = ACTIONS(148), - [anon_sym_find] = ACTIONS(148), - [anon_sym_53] = ACTIONS(148), - [anon_sym_member] = ACTIONS(148), - [anon_sym_54] = ACTIONS(148), - [anon_sym_indexof] = ACTIONS(148), - [anon_sym_55] = ACTIONS(148), - [anon_sym_assert] = ACTIONS(148), - [anon_sym_56] = ACTIONS(148), - [anon_sym_wait] = ACTIONS(148), - [anon_sym_break] = ACTIONS(148), - [anon_sym_57] = ACTIONS(148), - [anon_sym_parse] = ACTIONS(148), - [anon_sym_random] = ACTIONS(148), - [anon_sym_58] = ACTIONS(148), - [anon_sym_gen] = ACTIONS(148), - [anon_sym_deal] = ACTIONS(148), - [anon_sym_tag] = ACTIONS(148), - [anon_sym_now] = ACTIONS(148), - [anon_sym_type] = ACTIONS(148), - [anon_sym_59] = ACTIONS(148), - [anon_sym_dump] = ACTIONS(148), - [anon_sym_regex] = ACTIONS(148), - [anon_sym_utf] = ACTIONS(148), - [anon_sym_rock] = ACTIONS(148), - [anon_sym_60] = ACTIONS(148), - [anon_sym_surface] = ACTIONS(148), - [anon_sym_TILDE] = ACTIONS(148), - [anon_sym_deep] = ACTIONS(148), - [anon_sym_de] = ACTIONS(150), - [anon_sym_61] = ACTIONS(148), - [anon_sym_abyss] = ACTIONS(148), - [anon_sym_ab] = ACTIONS(150), - [anon_sym_62] = ACTIONS(148), - [anon_sym_seabed] = ACTIONS(148), - [anon_sym_se] = ACTIONS(150), - [anon_sym_63] = ACTIONS(148), - [anon_sym_send] = ACTIONS(148), - [anon_sym_recv] = ACTIONS(148), - [anon_sym_tryrecv] = ACTIONS(148), - [anon_sym_reduce] = ACTIONS(152), - [anon_sym_SLASH] = ACTIONS(152), - [anon_sym_scan] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_each] = ACTIONS(152), - [anon_sym_64] = ACTIONS(152), - [anon_sym_rows] = ACTIONS(152), - [anon_sym_65] = ACTIONS(152), - [anon_sym_repeat] = ACTIONS(152), - [anon_sym_66] = ACTIONS(152), - [anon_sym_dip] = ACTIONS(152), - [anon_sym_di] = ACTIONS(154), - [anon_sym_67] = ACTIONS(152), - [anon_sym_gap] = ACTIONS(152), - [anon_sym_ga] = ACTIONS(154), - [anon_sym_68] = ACTIONS(152), - [anon_sym_oust] = ACTIONS(152), - [anon_sym_69] = ACTIONS(152), - [anon_sym_invert] = ACTIONS(152), - [anon_sym_70] = ACTIONS(152), - [anon_sym_spawn] = ACTIONS(152), - [anon_sym_pack] = ACTIONS(152), - [anon_sym_71] = ACTIONS(152), - [anon_sym_tribute] = ACTIONS(152), - [anon_sym_72] = ACTIONS(152), - [anon_sym_fold] = ACTIONS(156), - [anon_sym_73] = ACTIONS(156), - [anon_sym_distribute] = ACTIONS(156), - [anon_sym_74] = ACTIONS(156), - [anon_sym_table] = ACTIONS(156), - [anon_sym_75] = ACTIONS(156), - [anon_sym_cross] = ACTIONS(156), - [anon_sym_76] = ACTIONS(156), - [anon_sym_group] = ACTIONS(156), - [anon_sym_77] = ACTIONS(156), - [anon_sym_partition] = ACTIONS(156), - [anon_sym_78] = ACTIONS(156), - [anon_sym_both] = ACTIONS(156), - [anon_sym_79] = ACTIONS(156), - [anon_sym_bracket] = ACTIONS(156), - [anon_sym_80] = ACTIONS(156), - [anon_sym_fork] = ACTIONS(156), - [anon_sym_81] = ACTIONS(156), - [anon_sym_under] = ACTIONS(156), - [anon_sym_82] = ACTIONS(156), - [anon_sym_level] = ACTIONS(156), - [anon_sym_83] = ACTIONS(156), - [anon_sym_fill] = ACTIONS(156), - [anon_sym_84] = ACTIONS(156), - [anon_sym_bind] = ACTIONS(156), - [anon_sym_SQUOTE] = ACTIONS(156), - [anon_sym_QMARK] = ACTIONS(156), - [anon_sym_try] = ACTIONS(158), - [anon_sym_85] = ACTIONS(156), - [anon_sym_combinate] = ACTIONS(156), - [anon_sym_86] = ACTIONS(156), - [anon_sym_87] = ACTIONS(160), - [anon_sym_88] = ACTIONS(160), - [anon_sym_89] = ACTIONS(160), - [anon_sym_90] = ACTIONS(160), - [anon_sym_91] = ACTIONS(160), - [anon_sym_92] = ACTIONS(160), - [anon_sym_93] = ACTIONS(160), + [sym_identifier] = ACTIONS(121), + [sym_identifier_deprecated] = ACTIONS(121), + [sym_system] = ACTIONS(117), + [sym_comment] = ACTIONS(123), + [sym_openParen] = ACTIONS(125), + [sym_closeParen] = ACTIONS(127), + [sym_openCurly] = ACTIONS(129), + [sym_openBracket] = ACTIONS(131), + [sym_leftArrow] = ACTIONS(135), + [anon_sym_CARET] = ACTIONS(137), + [anon_sym_eta] = ACTIONS(139), + [anon_sym_] = ACTIONS(141), + [anon_sym_pi] = ACTIONS(141), + [anon_sym_2] = ACTIONS(141), + [anon_sym_tau] = ACTIONS(139), + [anon_sym_3] = ACTIONS(141), + [anon_sym_infinity] = ACTIONS(139), + [anon_sym_4] = ACTIONS(139), + [anon_sym_e] = ACTIONS(141), + [anon_sym_NaN] = ACTIONS(141), + [anon_sym_NumProcs] = ACTIONS(141), + [anon_sym_DOT] = ACTIONS(143), + [anon_sym_COMMA] = ACTIONS(143), + [anon_sym_5] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_identity] = ACTIONS(143), + [anon_sym_id] = ACTIONS(145), + [anon_sym_6] = ACTIONS(143), + [anon_sym_not] = ACTIONS(143), + [anon_sym_7] = ACTIONS(143), + [anon_sym_sign] = ACTIONS(143), + [anon_sym_8] = ACTIONS(143), + [anon_sym_BQUOTE] = ACTIONS(143), + [anon_sym_9] = ACTIONS(143), + [anon_sym_absolutevalue] = ACTIONS(143), + [anon_sym_10] = ACTIONS(143), + [anon_sym_sqrt] = ACTIONS(143), + [anon_sym_11] = ACTIONS(143), + [anon_sym_sine] = ACTIONS(143), + [anon_sym_12] = ACTIONS(143), + [anon_sym_floor] = ACTIONS(143), + [anon_sym_13] = ACTIONS(143), + [anon_sym_ceiling] = ACTIONS(143), + [anon_sym_14] = ACTIONS(143), + [anon_sym_round] = ACTIONS(143), + [anon_sym_15] = ACTIONS(143), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_16] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_17] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_18] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_19] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_20] = ACTIONS(143), + [anon_sym_modulus] = ACTIONS(143), + [anon_sym_21] = ACTIONS(143), + [anon_sym_power] = ACTIONS(143), + [anon_sym_22] = ACTIONS(143), + [anon_sym_logarithm] = ACTIONS(143), + [anon_sym_23] = ACTIONS(143), + [anon_sym_minimum] = ACTIONS(143), + [anon_sym_24] = ACTIONS(143), + [anon_sym_maximum] = ACTIONS(143), + [anon_sym_25] = ACTIONS(143), + [anon_sym_atangent] = ACTIONS(143), + [anon_sym_26] = ACTIONS(143), + [anon_sym_length] = ACTIONS(143), + [anon_sym_27] = ACTIONS(143), + [anon_sym_shape] = ACTIONS(143), + [anon_sym_28] = ACTIONS(143), + [anon_sym_range] = ACTIONS(143), + [anon_sym_29] = ACTIONS(143), + [anon_sym_first] = ACTIONS(143), + [anon_sym_30] = ACTIONS(143), + [anon_sym_reverse] = ACTIONS(143), + [anon_sym_31] = ACTIONS(143), + [anon_sym_deshape] = ACTIONS(143), + [anon_sym_32] = ACTIONS(143), + [anon_sym_bits] = ACTIONS(143), + [anon_sym_33] = ACTIONS(143), + [anon_sym_transpose] = ACTIONS(143), + [anon_sym_34] = ACTIONS(143), + [anon_sym_rise] = ACTIONS(143), + [anon_sym_35] = ACTIONS(143), + [anon_sym_fall] = ACTIONS(143), + [anon_sym_36] = ACTIONS(143), + [anon_sym_where] = ACTIONS(143), + [anon_sym_37] = ACTIONS(143), + [anon_sym_classify] = ACTIONS(143), + [anon_sym_38] = ACTIONS(143), + [anon_sym_deduplicate] = ACTIONS(143), + [anon_sym_39] = ACTIONS(143), + [anon_sym_box] = ACTIONS(143), + [anon_sym_40] = ACTIONS(143), + [anon_sym_unbox] = ACTIONS(143), + [anon_sym_41] = ACTIONS(143), + [anon_sym_match] = ACTIONS(143), + [anon_sym_42] = ACTIONS(143), + [anon_sym_couple] = ACTIONS(143), + [anon_sym_43] = ACTIONS(143), + [anon_sym_join] = ACTIONS(143), + [anon_sym_44] = ACTIONS(143), + [anon_sym_select] = ACTIONS(143), + [anon_sym_45] = ACTIONS(143), + [anon_sym_pick] = ACTIONS(143), + [anon_sym_46] = ACTIONS(143), + [anon_sym_reshape] = ACTIONS(143), + [anon_sym_47] = ACTIONS(143), + [anon_sym_take] = ACTIONS(143), + [anon_sym_48] = ACTIONS(143), + [anon_sym_drop] = ACTIONS(143), + [anon_sym_49] = ACTIONS(143), + [anon_sym_rotate] = ACTIONS(143), + [anon_sym_50] = ACTIONS(143), + [anon_sym_windows] = ACTIONS(143), + [anon_sym_51] = ACTIONS(143), + [anon_sym_keep] = ACTIONS(143), + [anon_sym_52] = ACTIONS(143), + [anon_sym_find] = ACTIONS(143), + [anon_sym_53] = ACTIONS(143), + [anon_sym_member] = ACTIONS(143), + [anon_sym_54] = ACTIONS(143), + [anon_sym_indexof] = ACTIONS(143), + [anon_sym_55] = ACTIONS(143), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_56] = ACTIONS(143), + [anon_sym_wait] = ACTIONS(143), + [anon_sym_break] = ACTIONS(143), + [anon_sym_57] = ACTIONS(143), + [anon_sym_parse] = ACTIONS(143), + [anon_sym_random] = ACTIONS(143), + [anon_sym_58] = ACTIONS(143), + [anon_sym_gen] = ACTIONS(143), + [anon_sym_deal] = ACTIONS(143), + [anon_sym_tag] = ACTIONS(143), + [anon_sym_now] = ACTIONS(143), + [anon_sym_type] = ACTIONS(143), + [anon_sym_59] = ACTIONS(143), + [anon_sym_dump] = ACTIONS(143), + [anon_sym_regex] = ACTIONS(143), + [anon_sym_utf] = ACTIONS(143), + [anon_sym_rock] = ACTIONS(143), + [anon_sym_60] = ACTIONS(143), + [anon_sym_surface] = ACTIONS(143), + [anon_sym_TILDE] = ACTIONS(143), + [anon_sym_deep] = ACTIONS(143), + [anon_sym_de] = ACTIONS(145), + [anon_sym_61] = ACTIONS(143), + [anon_sym_abyss] = ACTIONS(143), + [anon_sym_ab] = ACTIONS(145), + [anon_sym_62] = ACTIONS(143), + [anon_sym_seabed] = ACTIONS(143), + [anon_sym_se] = ACTIONS(145), + [anon_sym_63] = ACTIONS(143), + [anon_sym_send] = ACTIONS(143), + [anon_sym_recv] = ACTIONS(143), + [anon_sym_tryrecv] = ACTIONS(143), + [anon_sym_reduce] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_scan] = ACTIONS(147), + [anon_sym_BSLASH] = ACTIONS(147), + [anon_sym_each] = ACTIONS(147), + [anon_sym_64] = ACTIONS(147), + [anon_sym_rows] = ACTIONS(147), + [anon_sym_65] = ACTIONS(147), + [anon_sym_repeat] = ACTIONS(147), + [anon_sym_66] = ACTIONS(147), + [anon_sym_dip] = ACTIONS(147), + [anon_sym_67] = ACTIONS(147), + [anon_sym_gap] = ACTIONS(147), + [anon_sym_68] = ACTIONS(147), + [anon_sym_69] = ACTIONS(147), + [anon_sym_invert] = ACTIONS(147), + [anon_sym_70] = ACTIONS(147), + [anon_sym_spawn] = ACTIONS(147), + [anon_sym_pack] = ACTIONS(147), + [anon_sym_71] = ACTIONS(147), + [anon_sym_tribute] = ACTIONS(147), + [anon_sym_72] = ACTIONS(147), + [anon_sym_reach] = ACTIONS(147), + [anon_sym_fold] = ACTIONS(149), + [anon_sym_73] = ACTIONS(149), + [anon_sym_distribute] = ACTIONS(149), + [anon_sym_74] = ACTIONS(149), + [anon_sym_table] = ACTIONS(149), + [anon_sym_75] = ACTIONS(149), + [anon_sym_cross] = ACTIONS(149), + [anon_sym_76] = ACTIONS(149), + [anon_sym_group] = ACTIONS(149), + [anon_sym_77] = ACTIONS(149), + [anon_sym_partition] = ACTIONS(149), + [anon_sym_78] = ACTIONS(149), + [anon_sym_both] = ACTIONS(149), + [anon_sym_79] = ACTIONS(149), + [anon_sym_bracket] = ACTIONS(149), + [anon_sym_80] = ACTIONS(149), + [anon_sym_fork] = ACTIONS(149), + [anon_sym_81] = ACTIONS(149), + [anon_sym_under] = ACTIONS(149), + [anon_sym_82] = ACTIONS(149), + [anon_sym_level] = ACTIONS(149), + [anon_sym_83] = ACTIONS(149), + [anon_sym_fill] = ACTIONS(149), + [anon_sym_84] = ACTIONS(149), + [anon_sym_bind] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_try] = ACTIONS(151), + [anon_sym_85] = ACTIONS(149), + [anon_sym_combinate] = ACTIONS(149), + [anon_sym_86] = ACTIONS(149), + [anon_sym_87] = ACTIONS(153), + [anon_sym_88] = ACTIONS(153), + [anon_sym_89] = ACTIONS(153), + [anon_sym_90] = ACTIONS(153), + [anon_sym_91] = ACTIONS(153), + [anon_sym_92] = ACTIONS(153), + [anon_sym_93] = ACTIONS(153), [sym__whitespace] = ACTIONS(5), - [sym__end_of_line] = ACTIONS(132), + [sym__end_of_line] = ACTIONS(127), }, [39] = { [sym_segment] = STATE(173), @@ -16644,243 +16548,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_deprecated] = STATE(61), [aux_sym_module_repeat1] = STATE(37), [aux_sym_array_repeat1] = STATE(57), - [aux_sym_number_token1] = ACTIONS(116), - [anon_sym_os] = ACTIONS(118), - [anon_sym_Family] = ACTIONS(118), - [anon_sym_Arch] = ACTIONS(118), - [anon_sym_ExeExt] = ACTIONS(118), - [anon_sym_PllExt] = ACTIONS(118), - [anon_sym_Sep] = ACTIONS(118), - [aux_sym_character_token1] = ACTIONS(120), - [sym_string] = ACTIONS(122), - [sym_multiLineString] = ACTIONS(122), + [aux_sym_number_token1] = ACTIONS(111), + [anon_sym_os] = ACTIONS(113), + [anon_sym_Family] = ACTIONS(113), + [anon_sym_Arch] = ACTIONS(113), + [anon_sym_ExeExt] = ACTIONS(113), + [anon_sym_PllExt] = ACTIONS(113), + [anon_sym_Sep] = ACTIONS(113), + [aux_sym_character_token1] = ACTIONS(115), + [sym_string] = ACTIONS(117), + [sym_multiLineString] = ACTIONS(117), [anon_sym_PIPE] = ACTIONS(15), - [sym_identifier] = ACTIONS(126), - [sym_identifier_deprecated] = ACTIONS(126), - [sym_system] = ACTIONS(122), - [sym_comment] = ACTIONS(128), - [sym_openParen] = ACTIONS(130), - [sym_openCurly] = ACTIONS(134), - [sym_openBracket] = ACTIONS(136), - [sym_leftArrow] = ACTIONS(140), - [anon_sym_CARET] = ACTIONS(142), - [anon_sym_eta] = ACTIONS(144), - [anon_sym_] = ACTIONS(146), - [anon_sym_pi] = ACTIONS(146), - [anon_sym_2] = ACTIONS(146), - [anon_sym_tau] = ACTIONS(144), - [anon_sym_3] = ACTIONS(146), - [anon_sym_infinity] = ACTIONS(144), - [anon_sym_4] = ACTIONS(144), - [anon_sym_e] = ACTIONS(146), - [anon_sym_NaN] = ACTIONS(146), - [anon_sym_NumProcs] = ACTIONS(146), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_COMMA] = ACTIONS(148), - [anon_sym_5] = ACTIONS(148), - [anon_sym_SEMI] = ACTIONS(148), - [anon_sym_identity] = ACTIONS(148), - [anon_sym_id] = ACTIONS(150), - [anon_sym_6] = ACTIONS(148), - [anon_sym_not] = ACTIONS(148), - [anon_sym_7] = ACTIONS(148), - [anon_sym_sign] = ACTIONS(148), - [anon_sym_8] = ACTIONS(148), - [anon_sym_BQUOTE] = ACTIONS(148), - [anon_sym_9] = ACTIONS(148), - [anon_sym_absolutevalue] = ACTIONS(148), - [anon_sym_10] = ACTIONS(148), - [anon_sym_sqrt] = ACTIONS(148), - [anon_sym_11] = ACTIONS(148), - [anon_sym_sine] = ACTIONS(148), - [anon_sym_12] = ACTIONS(148), - [anon_sym_floor] = ACTIONS(148), - [anon_sym_13] = ACTIONS(148), - [anon_sym_ceiling] = ACTIONS(148), - [anon_sym_14] = ACTIONS(148), - [anon_sym_round] = ACTIONS(148), - [anon_sym_15] = ACTIONS(148), - [anon_sym_EQ] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_16] = ACTIONS(148), - [anon_sym_LT] = ACTIONS(150), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_17] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_18] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_19] = ACTIONS(148), - [anon_sym_PERCENT] = ACTIONS(148), - [anon_sym_20] = ACTIONS(148), - [anon_sym_modulus] = ACTIONS(148), - [anon_sym_21] = ACTIONS(148), - [anon_sym_power] = ACTIONS(148), - [anon_sym_22] = ACTIONS(148), - [anon_sym_logarithm] = ACTIONS(148), - [anon_sym_23] = ACTIONS(148), - [anon_sym_minimum] = ACTIONS(148), - [anon_sym_24] = ACTIONS(148), - [anon_sym_maximum] = ACTIONS(148), - [anon_sym_25] = ACTIONS(148), - [anon_sym_atangent] = ACTIONS(148), - [anon_sym_26] = ACTIONS(148), - [anon_sym_length] = ACTIONS(148), - [anon_sym_27] = ACTIONS(148), - [anon_sym_shape] = ACTIONS(148), - [anon_sym_28] = ACTIONS(148), - [anon_sym_range] = ACTIONS(148), - [anon_sym_29] = ACTIONS(148), - [anon_sym_first] = ACTIONS(148), - [anon_sym_30] = ACTIONS(148), - [anon_sym_reverse] = ACTIONS(148), - [anon_sym_31] = ACTIONS(148), - [anon_sym_deshape] = ACTIONS(148), - [anon_sym_32] = ACTIONS(148), - [anon_sym_bits] = ACTIONS(148), - [anon_sym_33] = ACTIONS(148), - [anon_sym_transpose] = ACTIONS(148), - [anon_sym_34] = ACTIONS(148), - [anon_sym_rise] = ACTIONS(148), - [anon_sym_35] = ACTIONS(148), - [anon_sym_fall] = ACTIONS(148), - [anon_sym_36] = ACTIONS(148), - [anon_sym_where] = ACTIONS(148), - [anon_sym_37] = ACTIONS(148), - [anon_sym_classify] = ACTIONS(148), - [anon_sym_38] = ACTIONS(148), - [anon_sym_deduplicate] = ACTIONS(148), - [anon_sym_39] = ACTIONS(148), - [anon_sym_box] = ACTIONS(148), - [anon_sym_40] = ACTIONS(148), - [anon_sym_unbox] = ACTIONS(148), - [anon_sym_41] = ACTIONS(148), - [anon_sym_match] = ACTIONS(148), - [anon_sym_42] = ACTIONS(148), - [anon_sym_couple] = ACTIONS(148), - [anon_sym_43] = ACTIONS(148), - [anon_sym_join] = ACTIONS(148), - [anon_sym_44] = ACTIONS(148), - [anon_sym_select] = ACTIONS(148), - [anon_sym_45] = ACTIONS(148), - [anon_sym_pick] = ACTIONS(148), - [anon_sym_46] = ACTIONS(148), - [anon_sym_reshape] = ACTIONS(148), - [anon_sym_47] = ACTIONS(148), - [anon_sym_take] = ACTIONS(148), - [anon_sym_48] = ACTIONS(148), - [anon_sym_drop] = ACTIONS(148), - [anon_sym_49] = ACTIONS(148), - [anon_sym_rotate] = ACTIONS(148), - [anon_sym_50] = ACTIONS(148), - [anon_sym_windows] = ACTIONS(148), - [anon_sym_51] = ACTIONS(148), - [anon_sym_keep] = ACTIONS(148), - [anon_sym_52] = ACTIONS(148), - [anon_sym_find] = ACTIONS(148), - [anon_sym_53] = ACTIONS(148), - [anon_sym_member] = ACTIONS(148), - [anon_sym_54] = ACTIONS(148), - [anon_sym_indexof] = ACTIONS(148), - [anon_sym_55] = ACTIONS(148), - [anon_sym_assert] = ACTIONS(148), - [anon_sym_56] = ACTIONS(148), - [anon_sym_wait] = ACTIONS(148), - [anon_sym_break] = ACTIONS(148), - [anon_sym_57] = ACTIONS(148), - [anon_sym_parse] = ACTIONS(148), - [anon_sym_random] = ACTIONS(148), - [anon_sym_58] = ACTIONS(148), - [anon_sym_gen] = ACTIONS(148), - [anon_sym_deal] = ACTIONS(148), - [anon_sym_tag] = ACTIONS(148), - [anon_sym_now] = ACTIONS(148), - [anon_sym_type] = ACTIONS(148), - [anon_sym_59] = ACTIONS(148), - [anon_sym_dump] = ACTIONS(148), - [anon_sym_regex] = ACTIONS(148), - [anon_sym_utf] = ACTIONS(148), - [anon_sym_rock] = ACTIONS(148), - [anon_sym_60] = ACTIONS(148), - [anon_sym_surface] = ACTIONS(148), - [anon_sym_TILDE] = ACTIONS(148), - [anon_sym_deep] = ACTIONS(148), - [anon_sym_de] = ACTIONS(150), - [anon_sym_61] = ACTIONS(148), - [anon_sym_abyss] = ACTIONS(148), - [anon_sym_ab] = ACTIONS(150), - [anon_sym_62] = ACTIONS(148), - [anon_sym_seabed] = ACTIONS(148), - [anon_sym_se] = ACTIONS(150), - [anon_sym_63] = ACTIONS(148), - [anon_sym_send] = ACTIONS(148), - [anon_sym_recv] = ACTIONS(148), - [anon_sym_tryrecv] = ACTIONS(148), - [anon_sym_reduce] = ACTIONS(152), - [anon_sym_SLASH] = ACTIONS(152), - [anon_sym_scan] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_each] = ACTIONS(152), - [anon_sym_64] = ACTIONS(152), - [anon_sym_rows] = ACTIONS(152), - [anon_sym_65] = ACTIONS(152), - [anon_sym_repeat] = ACTIONS(152), - [anon_sym_66] = ACTIONS(152), - [anon_sym_dip] = ACTIONS(152), - [anon_sym_di] = ACTIONS(154), - [anon_sym_67] = ACTIONS(152), - [anon_sym_gap] = ACTIONS(152), - [anon_sym_ga] = ACTIONS(154), - [anon_sym_68] = ACTIONS(152), - [anon_sym_oust] = ACTIONS(152), - [anon_sym_69] = ACTIONS(152), - [anon_sym_invert] = ACTIONS(152), - [anon_sym_70] = ACTIONS(152), - [anon_sym_spawn] = ACTIONS(152), - [anon_sym_pack] = ACTIONS(152), - [anon_sym_71] = ACTIONS(152), - [anon_sym_tribute] = ACTIONS(152), - [anon_sym_72] = ACTIONS(152), - [anon_sym_fold] = ACTIONS(156), - [anon_sym_73] = ACTIONS(156), - [anon_sym_distribute] = ACTIONS(156), - [anon_sym_74] = ACTIONS(156), - [anon_sym_table] = ACTIONS(156), - [anon_sym_75] = ACTIONS(156), - [anon_sym_cross] = ACTIONS(156), - [anon_sym_76] = ACTIONS(156), - [anon_sym_group] = ACTIONS(156), - [anon_sym_77] = ACTIONS(156), - [anon_sym_partition] = ACTIONS(156), - [anon_sym_78] = ACTIONS(156), - [anon_sym_both] = ACTIONS(156), - [anon_sym_79] = ACTIONS(156), - [anon_sym_bracket] = ACTIONS(156), - [anon_sym_80] = ACTIONS(156), - [anon_sym_fork] = ACTIONS(156), - [anon_sym_81] = ACTIONS(156), - [anon_sym_under] = ACTIONS(156), - [anon_sym_82] = ACTIONS(156), - [anon_sym_level] = ACTIONS(156), - [anon_sym_83] = ACTIONS(156), - [anon_sym_fill] = ACTIONS(156), - [anon_sym_84] = ACTIONS(156), - [anon_sym_bind] = ACTIONS(156), - [anon_sym_SQUOTE] = ACTIONS(156), - [anon_sym_QMARK] = ACTIONS(156), - [anon_sym_try] = ACTIONS(158), - [anon_sym_85] = ACTIONS(156), - [anon_sym_combinate] = ACTIONS(156), - [anon_sym_86] = ACTIONS(156), - [anon_sym_87] = ACTIONS(160), - [anon_sym_88] = ACTIONS(160), - [anon_sym_89] = ACTIONS(160), - [anon_sym_90] = ACTIONS(160), - [anon_sym_91] = ACTIONS(160), - [anon_sym_92] = ACTIONS(160), - [anon_sym_93] = ACTIONS(160), + [sym_identifier] = ACTIONS(121), + [sym_identifier_deprecated] = ACTIONS(121), + [sym_system] = ACTIONS(117), + [sym_comment] = ACTIONS(123), + [sym_openParen] = ACTIONS(125), + [sym_openCurly] = ACTIONS(129), + [sym_openBracket] = ACTIONS(131), + [sym_leftArrow] = ACTIONS(135), + [anon_sym_CARET] = ACTIONS(137), + [anon_sym_eta] = ACTIONS(139), + [anon_sym_] = ACTIONS(141), + [anon_sym_pi] = ACTIONS(141), + [anon_sym_2] = ACTIONS(141), + [anon_sym_tau] = ACTIONS(139), + [anon_sym_3] = ACTIONS(141), + [anon_sym_infinity] = ACTIONS(139), + [anon_sym_4] = ACTIONS(139), + [anon_sym_e] = ACTIONS(141), + [anon_sym_NaN] = ACTIONS(141), + [anon_sym_NumProcs] = ACTIONS(141), + [anon_sym_DOT] = ACTIONS(143), + [anon_sym_COMMA] = ACTIONS(143), + [anon_sym_5] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_identity] = ACTIONS(143), + [anon_sym_id] = ACTIONS(145), + [anon_sym_6] = ACTIONS(143), + [anon_sym_not] = ACTIONS(143), + [anon_sym_7] = ACTIONS(143), + [anon_sym_sign] = ACTIONS(143), + [anon_sym_8] = ACTIONS(143), + [anon_sym_BQUOTE] = ACTIONS(143), + [anon_sym_9] = ACTIONS(143), + [anon_sym_absolutevalue] = ACTIONS(143), + [anon_sym_10] = ACTIONS(143), + [anon_sym_sqrt] = ACTIONS(143), + [anon_sym_11] = ACTIONS(143), + [anon_sym_sine] = ACTIONS(143), + [anon_sym_12] = ACTIONS(143), + [anon_sym_floor] = ACTIONS(143), + [anon_sym_13] = ACTIONS(143), + [anon_sym_ceiling] = ACTIONS(143), + [anon_sym_14] = ACTIONS(143), + [anon_sym_round] = ACTIONS(143), + [anon_sym_15] = ACTIONS(143), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_16] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_17] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_18] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_19] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_20] = ACTIONS(143), + [anon_sym_modulus] = ACTIONS(143), + [anon_sym_21] = ACTIONS(143), + [anon_sym_power] = ACTIONS(143), + [anon_sym_22] = ACTIONS(143), + [anon_sym_logarithm] = ACTIONS(143), + [anon_sym_23] = ACTIONS(143), + [anon_sym_minimum] = ACTIONS(143), + [anon_sym_24] = ACTIONS(143), + [anon_sym_maximum] = ACTIONS(143), + [anon_sym_25] = ACTIONS(143), + [anon_sym_atangent] = ACTIONS(143), + [anon_sym_26] = ACTIONS(143), + [anon_sym_length] = ACTIONS(143), + [anon_sym_27] = ACTIONS(143), + [anon_sym_shape] = ACTIONS(143), + [anon_sym_28] = ACTIONS(143), + [anon_sym_range] = ACTIONS(143), + [anon_sym_29] = ACTIONS(143), + [anon_sym_first] = ACTIONS(143), + [anon_sym_30] = ACTIONS(143), + [anon_sym_reverse] = ACTIONS(143), + [anon_sym_31] = ACTIONS(143), + [anon_sym_deshape] = ACTIONS(143), + [anon_sym_32] = ACTIONS(143), + [anon_sym_bits] = ACTIONS(143), + [anon_sym_33] = ACTIONS(143), + [anon_sym_transpose] = ACTIONS(143), + [anon_sym_34] = ACTIONS(143), + [anon_sym_rise] = ACTIONS(143), + [anon_sym_35] = ACTIONS(143), + [anon_sym_fall] = ACTIONS(143), + [anon_sym_36] = ACTIONS(143), + [anon_sym_where] = ACTIONS(143), + [anon_sym_37] = ACTIONS(143), + [anon_sym_classify] = ACTIONS(143), + [anon_sym_38] = ACTIONS(143), + [anon_sym_deduplicate] = ACTIONS(143), + [anon_sym_39] = ACTIONS(143), + [anon_sym_box] = ACTIONS(143), + [anon_sym_40] = ACTIONS(143), + [anon_sym_unbox] = ACTIONS(143), + [anon_sym_41] = ACTIONS(143), + [anon_sym_match] = ACTIONS(143), + [anon_sym_42] = ACTIONS(143), + [anon_sym_couple] = ACTIONS(143), + [anon_sym_43] = ACTIONS(143), + [anon_sym_join] = ACTIONS(143), + [anon_sym_44] = ACTIONS(143), + [anon_sym_select] = ACTIONS(143), + [anon_sym_45] = ACTIONS(143), + [anon_sym_pick] = ACTIONS(143), + [anon_sym_46] = ACTIONS(143), + [anon_sym_reshape] = ACTIONS(143), + [anon_sym_47] = ACTIONS(143), + [anon_sym_take] = ACTIONS(143), + [anon_sym_48] = ACTIONS(143), + [anon_sym_drop] = ACTIONS(143), + [anon_sym_49] = ACTIONS(143), + [anon_sym_rotate] = ACTIONS(143), + [anon_sym_50] = ACTIONS(143), + [anon_sym_windows] = ACTIONS(143), + [anon_sym_51] = ACTIONS(143), + [anon_sym_keep] = ACTIONS(143), + [anon_sym_52] = ACTIONS(143), + [anon_sym_find] = ACTIONS(143), + [anon_sym_53] = ACTIONS(143), + [anon_sym_member] = ACTIONS(143), + [anon_sym_54] = ACTIONS(143), + [anon_sym_indexof] = ACTIONS(143), + [anon_sym_55] = ACTIONS(143), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_56] = ACTIONS(143), + [anon_sym_wait] = ACTIONS(143), + [anon_sym_break] = ACTIONS(143), + [anon_sym_57] = ACTIONS(143), + [anon_sym_parse] = ACTIONS(143), + [anon_sym_random] = ACTIONS(143), + [anon_sym_58] = ACTIONS(143), + [anon_sym_gen] = ACTIONS(143), + [anon_sym_deal] = ACTIONS(143), + [anon_sym_tag] = ACTIONS(143), + [anon_sym_now] = ACTIONS(143), + [anon_sym_type] = ACTIONS(143), + [anon_sym_59] = ACTIONS(143), + [anon_sym_dump] = ACTIONS(143), + [anon_sym_regex] = ACTIONS(143), + [anon_sym_utf] = ACTIONS(143), + [anon_sym_rock] = ACTIONS(143), + [anon_sym_60] = ACTIONS(143), + [anon_sym_surface] = ACTIONS(143), + [anon_sym_TILDE] = ACTIONS(143), + [anon_sym_deep] = ACTIONS(143), + [anon_sym_de] = ACTIONS(145), + [anon_sym_61] = ACTIONS(143), + [anon_sym_abyss] = ACTIONS(143), + [anon_sym_ab] = ACTIONS(145), + [anon_sym_62] = ACTIONS(143), + [anon_sym_seabed] = ACTIONS(143), + [anon_sym_se] = ACTIONS(145), + [anon_sym_63] = ACTIONS(143), + [anon_sym_send] = ACTIONS(143), + [anon_sym_recv] = ACTIONS(143), + [anon_sym_tryrecv] = ACTIONS(143), + [anon_sym_reduce] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_scan] = ACTIONS(147), + [anon_sym_BSLASH] = ACTIONS(147), + [anon_sym_each] = ACTIONS(147), + [anon_sym_64] = ACTIONS(147), + [anon_sym_rows] = ACTIONS(147), + [anon_sym_65] = ACTIONS(147), + [anon_sym_repeat] = ACTIONS(147), + [anon_sym_66] = ACTIONS(147), + [anon_sym_dip] = ACTIONS(147), + [anon_sym_67] = ACTIONS(147), + [anon_sym_gap] = ACTIONS(147), + [anon_sym_68] = ACTIONS(147), + [anon_sym_69] = ACTIONS(147), + [anon_sym_invert] = ACTIONS(147), + [anon_sym_70] = ACTIONS(147), + [anon_sym_spawn] = ACTIONS(147), + [anon_sym_pack] = ACTIONS(147), + [anon_sym_71] = ACTIONS(147), + [anon_sym_tribute] = ACTIONS(147), + [anon_sym_72] = ACTIONS(147), + [anon_sym_reach] = ACTIONS(147), + [anon_sym_fold] = ACTIONS(149), + [anon_sym_73] = ACTIONS(149), + [anon_sym_distribute] = ACTIONS(149), + [anon_sym_74] = ACTIONS(149), + [anon_sym_table] = ACTIONS(149), + [anon_sym_75] = ACTIONS(149), + [anon_sym_cross] = ACTIONS(149), + [anon_sym_76] = ACTIONS(149), + [anon_sym_group] = ACTIONS(149), + [anon_sym_77] = ACTIONS(149), + [anon_sym_partition] = ACTIONS(149), + [anon_sym_78] = ACTIONS(149), + [anon_sym_both] = ACTIONS(149), + [anon_sym_79] = ACTIONS(149), + [anon_sym_bracket] = ACTIONS(149), + [anon_sym_80] = ACTIONS(149), + [anon_sym_fork] = ACTIONS(149), + [anon_sym_81] = ACTIONS(149), + [anon_sym_under] = ACTIONS(149), + [anon_sym_82] = ACTIONS(149), + [anon_sym_level] = ACTIONS(149), + [anon_sym_83] = ACTIONS(149), + [anon_sym_fill] = ACTIONS(149), + [anon_sym_84] = ACTIONS(149), + [anon_sym_bind] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_try] = ACTIONS(151), + [anon_sym_85] = ACTIONS(149), + [anon_sym_combinate] = ACTIONS(149), + [anon_sym_86] = ACTIONS(149), + [anon_sym_87] = ACTIONS(153), + [anon_sym_88] = ACTIONS(153), + [anon_sym_89] = ACTIONS(153), + [anon_sym_90] = ACTIONS(153), + [anon_sym_91] = ACTIONS(153), + [anon_sym_92] = ACTIONS(153), + [anon_sym_93] = ACTIONS(153), [sym__whitespace] = ACTIONS(5), [sym__end_of_line] = ACTIONS(5), }, @@ -16904,243 +16806,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_deprecated] = STATE(61), [aux_sym_module_repeat1] = STATE(37), [aux_sym_array_repeat1] = STATE(57), - [aux_sym_number_token1] = ACTIONS(116), - [anon_sym_os] = ACTIONS(118), - [anon_sym_Family] = ACTIONS(118), - [anon_sym_Arch] = ACTIONS(118), - [anon_sym_ExeExt] = ACTIONS(118), - [anon_sym_PllExt] = ACTIONS(118), - [anon_sym_Sep] = ACTIONS(118), - [aux_sym_character_token1] = ACTIONS(120), - [sym_string] = ACTIONS(122), - [sym_multiLineString] = ACTIONS(122), + [aux_sym_number_token1] = ACTIONS(111), + [anon_sym_os] = ACTIONS(113), + [anon_sym_Family] = ACTIONS(113), + [anon_sym_Arch] = ACTIONS(113), + [anon_sym_ExeExt] = ACTIONS(113), + [anon_sym_PllExt] = ACTIONS(113), + [anon_sym_Sep] = ACTIONS(113), + [aux_sym_character_token1] = ACTIONS(115), + [sym_string] = ACTIONS(117), + [sym_multiLineString] = ACTIONS(117), [anon_sym_PIPE] = ACTIONS(15), - [sym_identifier] = ACTIONS(126), - [sym_identifier_deprecated] = ACTIONS(126), - [sym_system] = ACTIONS(122), - [sym_comment] = ACTIONS(128), - [sym_openParen] = ACTIONS(130), - [sym_openCurly] = ACTIONS(134), - [sym_openBracket] = ACTIONS(136), - [sym_leftArrow] = ACTIONS(140), - [anon_sym_CARET] = ACTIONS(142), - [anon_sym_eta] = ACTIONS(144), - [anon_sym_] = ACTIONS(146), - [anon_sym_pi] = ACTIONS(146), - [anon_sym_2] = ACTIONS(146), - [anon_sym_tau] = ACTIONS(144), - [anon_sym_3] = ACTIONS(146), - [anon_sym_infinity] = ACTIONS(144), - [anon_sym_4] = ACTIONS(144), - [anon_sym_e] = ACTIONS(146), - [anon_sym_NaN] = ACTIONS(146), - [anon_sym_NumProcs] = ACTIONS(146), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_COMMA] = ACTIONS(148), - [anon_sym_5] = ACTIONS(148), - [anon_sym_SEMI] = ACTIONS(148), - [anon_sym_identity] = ACTIONS(148), - [anon_sym_id] = ACTIONS(150), - [anon_sym_6] = ACTIONS(148), - [anon_sym_not] = ACTIONS(148), - [anon_sym_7] = ACTIONS(148), - [anon_sym_sign] = ACTIONS(148), - [anon_sym_8] = ACTIONS(148), - [anon_sym_BQUOTE] = ACTIONS(148), - [anon_sym_9] = ACTIONS(148), - [anon_sym_absolutevalue] = ACTIONS(148), - [anon_sym_10] = ACTIONS(148), - [anon_sym_sqrt] = ACTIONS(148), - [anon_sym_11] = ACTIONS(148), - [anon_sym_sine] = ACTIONS(148), - [anon_sym_12] = ACTIONS(148), - [anon_sym_floor] = ACTIONS(148), - [anon_sym_13] = ACTIONS(148), - [anon_sym_ceiling] = ACTIONS(148), - [anon_sym_14] = ACTIONS(148), - [anon_sym_round] = ACTIONS(148), - [anon_sym_15] = ACTIONS(148), - [anon_sym_EQ] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_16] = ACTIONS(148), - [anon_sym_LT] = ACTIONS(150), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_17] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_18] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_19] = ACTIONS(148), - [anon_sym_PERCENT] = ACTIONS(148), - [anon_sym_20] = ACTIONS(148), - [anon_sym_modulus] = ACTIONS(148), - [anon_sym_21] = ACTIONS(148), - [anon_sym_power] = ACTIONS(148), - [anon_sym_22] = ACTIONS(148), - [anon_sym_logarithm] = ACTIONS(148), - [anon_sym_23] = ACTIONS(148), - [anon_sym_minimum] = ACTIONS(148), - [anon_sym_24] = ACTIONS(148), - [anon_sym_maximum] = ACTIONS(148), - [anon_sym_25] = ACTIONS(148), - [anon_sym_atangent] = ACTIONS(148), - [anon_sym_26] = ACTIONS(148), - [anon_sym_length] = ACTIONS(148), - [anon_sym_27] = ACTIONS(148), - [anon_sym_shape] = ACTIONS(148), - [anon_sym_28] = ACTIONS(148), - [anon_sym_range] = ACTIONS(148), - [anon_sym_29] = ACTIONS(148), - [anon_sym_first] = ACTIONS(148), - [anon_sym_30] = ACTIONS(148), - [anon_sym_reverse] = ACTIONS(148), - [anon_sym_31] = ACTIONS(148), - [anon_sym_deshape] = ACTIONS(148), - [anon_sym_32] = ACTIONS(148), - [anon_sym_bits] = ACTIONS(148), - [anon_sym_33] = ACTIONS(148), - [anon_sym_transpose] = ACTIONS(148), - [anon_sym_34] = ACTIONS(148), - [anon_sym_rise] = ACTIONS(148), - [anon_sym_35] = ACTIONS(148), - [anon_sym_fall] = ACTIONS(148), - [anon_sym_36] = ACTIONS(148), - [anon_sym_where] = ACTIONS(148), - [anon_sym_37] = ACTIONS(148), - [anon_sym_classify] = ACTIONS(148), - [anon_sym_38] = ACTIONS(148), - [anon_sym_deduplicate] = ACTIONS(148), - [anon_sym_39] = ACTIONS(148), - [anon_sym_box] = ACTIONS(148), - [anon_sym_40] = ACTIONS(148), - [anon_sym_unbox] = ACTIONS(148), - [anon_sym_41] = ACTIONS(148), - [anon_sym_match] = ACTIONS(148), - [anon_sym_42] = ACTIONS(148), - [anon_sym_couple] = ACTIONS(148), - [anon_sym_43] = ACTIONS(148), - [anon_sym_join] = ACTIONS(148), - [anon_sym_44] = ACTIONS(148), - [anon_sym_select] = ACTIONS(148), - [anon_sym_45] = ACTIONS(148), - [anon_sym_pick] = ACTIONS(148), - [anon_sym_46] = ACTIONS(148), - [anon_sym_reshape] = ACTIONS(148), - [anon_sym_47] = ACTIONS(148), - [anon_sym_take] = ACTIONS(148), - [anon_sym_48] = ACTIONS(148), - [anon_sym_drop] = ACTIONS(148), - [anon_sym_49] = ACTIONS(148), - [anon_sym_rotate] = ACTIONS(148), - [anon_sym_50] = ACTIONS(148), - [anon_sym_windows] = ACTIONS(148), - [anon_sym_51] = ACTIONS(148), - [anon_sym_keep] = ACTIONS(148), - [anon_sym_52] = ACTIONS(148), - [anon_sym_find] = ACTIONS(148), - [anon_sym_53] = ACTIONS(148), - [anon_sym_member] = ACTIONS(148), - [anon_sym_54] = ACTIONS(148), - [anon_sym_indexof] = ACTIONS(148), - [anon_sym_55] = ACTIONS(148), - [anon_sym_assert] = ACTIONS(148), - [anon_sym_56] = ACTIONS(148), - [anon_sym_wait] = ACTIONS(148), - [anon_sym_break] = ACTIONS(148), - [anon_sym_57] = ACTIONS(148), - [anon_sym_parse] = ACTIONS(148), - [anon_sym_random] = ACTIONS(148), - [anon_sym_58] = ACTIONS(148), - [anon_sym_gen] = ACTIONS(148), - [anon_sym_deal] = ACTIONS(148), - [anon_sym_tag] = ACTIONS(148), - [anon_sym_now] = ACTIONS(148), - [anon_sym_type] = ACTIONS(148), - [anon_sym_59] = ACTIONS(148), - [anon_sym_dump] = ACTIONS(148), - [anon_sym_regex] = ACTIONS(148), - [anon_sym_utf] = ACTIONS(148), - [anon_sym_rock] = ACTIONS(148), - [anon_sym_60] = ACTIONS(148), - [anon_sym_surface] = ACTIONS(148), - [anon_sym_TILDE] = ACTIONS(148), - [anon_sym_deep] = ACTIONS(148), - [anon_sym_de] = ACTIONS(150), - [anon_sym_61] = ACTIONS(148), - [anon_sym_abyss] = ACTIONS(148), - [anon_sym_ab] = ACTIONS(150), - [anon_sym_62] = ACTIONS(148), - [anon_sym_seabed] = ACTIONS(148), - [anon_sym_se] = ACTIONS(150), - [anon_sym_63] = ACTIONS(148), - [anon_sym_send] = ACTIONS(148), - [anon_sym_recv] = ACTIONS(148), - [anon_sym_tryrecv] = ACTIONS(148), - [anon_sym_reduce] = ACTIONS(152), - [anon_sym_SLASH] = ACTIONS(152), - [anon_sym_scan] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_each] = ACTIONS(152), - [anon_sym_64] = ACTIONS(152), - [anon_sym_rows] = ACTIONS(152), - [anon_sym_65] = ACTIONS(152), - [anon_sym_repeat] = ACTIONS(152), - [anon_sym_66] = ACTIONS(152), - [anon_sym_dip] = ACTIONS(152), - [anon_sym_di] = ACTIONS(154), - [anon_sym_67] = ACTIONS(152), - [anon_sym_gap] = ACTIONS(152), - [anon_sym_ga] = ACTIONS(154), - [anon_sym_68] = ACTIONS(152), - [anon_sym_oust] = ACTIONS(152), - [anon_sym_69] = ACTIONS(152), - [anon_sym_invert] = ACTIONS(152), - [anon_sym_70] = ACTIONS(152), - [anon_sym_spawn] = ACTIONS(152), - [anon_sym_pack] = ACTIONS(152), - [anon_sym_71] = ACTIONS(152), - [anon_sym_tribute] = ACTIONS(152), - [anon_sym_72] = ACTIONS(152), - [anon_sym_fold] = ACTIONS(156), - [anon_sym_73] = ACTIONS(156), - [anon_sym_distribute] = ACTIONS(156), - [anon_sym_74] = ACTIONS(156), - [anon_sym_table] = ACTIONS(156), - [anon_sym_75] = ACTIONS(156), - [anon_sym_cross] = ACTIONS(156), - [anon_sym_76] = ACTIONS(156), - [anon_sym_group] = ACTIONS(156), - [anon_sym_77] = ACTIONS(156), - [anon_sym_partition] = ACTIONS(156), - [anon_sym_78] = ACTIONS(156), - [anon_sym_both] = ACTIONS(156), - [anon_sym_79] = ACTIONS(156), - [anon_sym_bracket] = ACTIONS(156), - [anon_sym_80] = ACTIONS(156), - [anon_sym_fork] = ACTIONS(156), - [anon_sym_81] = ACTIONS(156), - [anon_sym_under] = ACTIONS(156), - [anon_sym_82] = ACTIONS(156), - [anon_sym_level] = ACTIONS(156), - [anon_sym_83] = ACTIONS(156), - [anon_sym_fill] = ACTIONS(156), - [anon_sym_84] = ACTIONS(156), - [anon_sym_bind] = ACTIONS(156), - [anon_sym_SQUOTE] = ACTIONS(156), - [anon_sym_QMARK] = ACTIONS(156), - [anon_sym_try] = ACTIONS(158), - [anon_sym_85] = ACTIONS(156), - [anon_sym_combinate] = ACTIONS(156), - [anon_sym_86] = ACTIONS(156), - [anon_sym_87] = ACTIONS(160), - [anon_sym_88] = ACTIONS(160), - [anon_sym_89] = ACTIONS(160), - [anon_sym_90] = ACTIONS(160), - [anon_sym_91] = ACTIONS(160), - [anon_sym_92] = ACTIONS(160), - [anon_sym_93] = ACTIONS(160), + [sym_identifier] = ACTIONS(121), + [sym_identifier_deprecated] = ACTIONS(121), + [sym_system] = ACTIONS(117), + [sym_comment] = ACTIONS(123), + [sym_openParen] = ACTIONS(125), + [sym_openCurly] = ACTIONS(129), + [sym_openBracket] = ACTIONS(131), + [sym_leftArrow] = ACTIONS(135), + [anon_sym_CARET] = ACTIONS(137), + [anon_sym_eta] = ACTIONS(139), + [anon_sym_] = ACTIONS(141), + [anon_sym_pi] = ACTIONS(141), + [anon_sym_2] = ACTIONS(141), + [anon_sym_tau] = ACTIONS(139), + [anon_sym_3] = ACTIONS(141), + [anon_sym_infinity] = ACTIONS(139), + [anon_sym_4] = ACTIONS(139), + [anon_sym_e] = ACTIONS(141), + [anon_sym_NaN] = ACTIONS(141), + [anon_sym_NumProcs] = ACTIONS(141), + [anon_sym_DOT] = ACTIONS(143), + [anon_sym_COMMA] = ACTIONS(143), + [anon_sym_5] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_identity] = ACTIONS(143), + [anon_sym_id] = ACTIONS(145), + [anon_sym_6] = ACTIONS(143), + [anon_sym_not] = ACTIONS(143), + [anon_sym_7] = ACTIONS(143), + [anon_sym_sign] = ACTIONS(143), + [anon_sym_8] = ACTIONS(143), + [anon_sym_BQUOTE] = ACTIONS(143), + [anon_sym_9] = ACTIONS(143), + [anon_sym_absolutevalue] = ACTIONS(143), + [anon_sym_10] = ACTIONS(143), + [anon_sym_sqrt] = ACTIONS(143), + [anon_sym_11] = ACTIONS(143), + [anon_sym_sine] = ACTIONS(143), + [anon_sym_12] = ACTIONS(143), + [anon_sym_floor] = ACTIONS(143), + [anon_sym_13] = ACTIONS(143), + [anon_sym_ceiling] = ACTIONS(143), + [anon_sym_14] = ACTIONS(143), + [anon_sym_round] = ACTIONS(143), + [anon_sym_15] = ACTIONS(143), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_16] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_17] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_18] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_19] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_20] = ACTIONS(143), + [anon_sym_modulus] = ACTIONS(143), + [anon_sym_21] = ACTIONS(143), + [anon_sym_power] = ACTIONS(143), + [anon_sym_22] = ACTIONS(143), + [anon_sym_logarithm] = ACTIONS(143), + [anon_sym_23] = ACTIONS(143), + [anon_sym_minimum] = ACTIONS(143), + [anon_sym_24] = ACTIONS(143), + [anon_sym_maximum] = ACTIONS(143), + [anon_sym_25] = ACTIONS(143), + [anon_sym_atangent] = ACTIONS(143), + [anon_sym_26] = ACTIONS(143), + [anon_sym_length] = ACTIONS(143), + [anon_sym_27] = ACTIONS(143), + [anon_sym_shape] = ACTIONS(143), + [anon_sym_28] = ACTIONS(143), + [anon_sym_range] = ACTIONS(143), + [anon_sym_29] = ACTIONS(143), + [anon_sym_first] = ACTIONS(143), + [anon_sym_30] = ACTIONS(143), + [anon_sym_reverse] = ACTIONS(143), + [anon_sym_31] = ACTIONS(143), + [anon_sym_deshape] = ACTIONS(143), + [anon_sym_32] = ACTIONS(143), + [anon_sym_bits] = ACTIONS(143), + [anon_sym_33] = ACTIONS(143), + [anon_sym_transpose] = ACTIONS(143), + [anon_sym_34] = ACTIONS(143), + [anon_sym_rise] = ACTIONS(143), + [anon_sym_35] = ACTIONS(143), + [anon_sym_fall] = ACTIONS(143), + [anon_sym_36] = ACTIONS(143), + [anon_sym_where] = ACTIONS(143), + [anon_sym_37] = ACTIONS(143), + [anon_sym_classify] = ACTIONS(143), + [anon_sym_38] = ACTIONS(143), + [anon_sym_deduplicate] = ACTIONS(143), + [anon_sym_39] = ACTIONS(143), + [anon_sym_box] = ACTIONS(143), + [anon_sym_40] = ACTIONS(143), + [anon_sym_unbox] = ACTIONS(143), + [anon_sym_41] = ACTIONS(143), + [anon_sym_match] = ACTIONS(143), + [anon_sym_42] = ACTIONS(143), + [anon_sym_couple] = ACTIONS(143), + [anon_sym_43] = ACTIONS(143), + [anon_sym_join] = ACTIONS(143), + [anon_sym_44] = ACTIONS(143), + [anon_sym_select] = ACTIONS(143), + [anon_sym_45] = ACTIONS(143), + [anon_sym_pick] = ACTIONS(143), + [anon_sym_46] = ACTIONS(143), + [anon_sym_reshape] = ACTIONS(143), + [anon_sym_47] = ACTIONS(143), + [anon_sym_take] = ACTIONS(143), + [anon_sym_48] = ACTIONS(143), + [anon_sym_drop] = ACTIONS(143), + [anon_sym_49] = ACTIONS(143), + [anon_sym_rotate] = ACTIONS(143), + [anon_sym_50] = ACTIONS(143), + [anon_sym_windows] = ACTIONS(143), + [anon_sym_51] = ACTIONS(143), + [anon_sym_keep] = ACTIONS(143), + [anon_sym_52] = ACTIONS(143), + [anon_sym_find] = ACTIONS(143), + [anon_sym_53] = ACTIONS(143), + [anon_sym_member] = ACTIONS(143), + [anon_sym_54] = ACTIONS(143), + [anon_sym_indexof] = ACTIONS(143), + [anon_sym_55] = ACTIONS(143), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_56] = ACTIONS(143), + [anon_sym_wait] = ACTIONS(143), + [anon_sym_break] = ACTIONS(143), + [anon_sym_57] = ACTIONS(143), + [anon_sym_parse] = ACTIONS(143), + [anon_sym_random] = ACTIONS(143), + [anon_sym_58] = ACTIONS(143), + [anon_sym_gen] = ACTIONS(143), + [anon_sym_deal] = ACTIONS(143), + [anon_sym_tag] = ACTIONS(143), + [anon_sym_now] = ACTIONS(143), + [anon_sym_type] = ACTIONS(143), + [anon_sym_59] = ACTIONS(143), + [anon_sym_dump] = ACTIONS(143), + [anon_sym_regex] = ACTIONS(143), + [anon_sym_utf] = ACTIONS(143), + [anon_sym_rock] = ACTIONS(143), + [anon_sym_60] = ACTIONS(143), + [anon_sym_surface] = ACTIONS(143), + [anon_sym_TILDE] = ACTIONS(143), + [anon_sym_deep] = ACTIONS(143), + [anon_sym_de] = ACTIONS(145), + [anon_sym_61] = ACTIONS(143), + [anon_sym_abyss] = ACTIONS(143), + [anon_sym_ab] = ACTIONS(145), + [anon_sym_62] = ACTIONS(143), + [anon_sym_seabed] = ACTIONS(143), + [anon_sym_se] = ACTIONS(145), + [anon_sym_63] = ACTIONS(143), + [anon_sym_send] = ACTIONS(143), + [anon_sym_recv] = ACTIONS(143), + [anon_sym_tryrecv] = ACTIONS(143), + [anon_sym_reduce] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_scan] = ACTIONS(147), + [anon_sym_BSLASH] = ACTIONS(147), + [anon_sym_each] = ACTIONS(147), + [anon_sym_64] = ACTIONS(147), + [anon_sym_rows] = ACTIONS(147), + [anon_sym_65] = ACTIONS(147), + [anon_sym_repeat] = ACTIONS(147), + [anon_sym_66] = ACTIONS(147), + [anon_sym_dip] = ACTIONS(147), + [anon_sym_67] = ACTIONS(147), + [anon_sym_gap] = ACTIONS(147), + [anon_sym_68] = ACTIONS(147), + [anon_sym_69] = ACTIONS(147), + [anon_sym_invert] = ACTIONS(147), + [anon_sym_70] = ACTIONS(147), + [anon_sym_spawn] = ACTIONS(147), + [anon_sym_pack] = ACTIONS(147), + [anon_sym_71] = ACTIONS(147), + [anon_sym_tribute] = ACTIONS(147), + [anon_sym_72] = ACTIONS(147), + [anon_sym_reach] = ACTIONS(147), + [anon_sym_fold] = ACTIONS(149), + [anon_sym_73] = ACTIONS(149), + [anon_sym_distribute] = ACTIONS(149), + [anon_sym_74] = ACTIONS(149), + [anon_sym_table] = ACTIONS(149), + [anon_sym_75] = ACTIONS(149), + [anon_sym_cross] = ACTIONS(149), + [anon_sym_76] = ACTIONS(149), + [anon_sym_group] = ACTIONS(149), + [anon_sym_77] = ACTIONS(149), + [anon_sym_partition] = ACTIONS(149), + [anon_sym_78] = ACTIONS(149), + [anon_sym_both] = ACTIONS(149), + [anon_sym_79] = ACTIONS(149), + [anon_sym_bracket] = ACTIONS(149), + [anon_sym_80] = ACTIONS(149), + [anon_sym_fork] = ACTIONS(149), + [anon_sym_81] = ACTIONS(149), + [anon_sym_under] = ACTIONS(149), + [anon_sym_82] = ACTIONS(149), + [anon_sym_level] = ACTIONS(149), + [anon_sym_83] = ACTIONS(149), + [anon_sym_fill] = ACTIONS(149), + [anon_sym_84] = ACTIONS(149), + [anon_sym_bind] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_try] = ACTIONS(151), + [anon_sym_85] = ACTIONS(149), + [anon_sym_combinate] = ACTIONS(149), + [anon_sym_86] = ACTIONS(149), + [anon_sym_87] = ACTIONS(153), + [anon_sym_88] = ACTIONS(153), + [anon_sym_89] = ACTIONS(153), + [anon_sym_90] = ACTIONS(153), + [anon_sym_91] = ACTIONS(153), + [anon_sym_92] = ACTIONS(153), + [anon_sym_93] = ACTIONS(153), [sym__whitespace] = ACTIONS(5), [sym__end_of_line] = ACTIONS(5), }, @@ -17164,243 +17064,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_deprecated] = STATE(61), [aux_sym_module_repeat1] = STATE(39), [aux_sym_array_repeat1] = STATE(57), - [aux_sym_number_token1] = ACTIONS(116), - [anon_sym_os] = ACTIONS(118), - [anon_sym_Family] = ACTIONS(118), - [anon_sym_Arch] = ACTIONS(118), - [anon_sym_ExeExt] = ACTIONS(118), - [anon_sym_PllExt] = ACTIONS(118), - [anon_sym_Sep] = ACTIONS(118), - [aux_sym_character_token1] = ACTIONS(120), - [sym_string] = ACTIONS(122), - [sym_multiLineString] = ACTIONS(122), + [aux_sym_number_token1] = ACTIONS(111), + [anon_sym_os] = ACTIONS(113), + [anon_sym_Family] = ACTIONS(113), + [anon_sym_Arch] = ACTIONS(113), + [anon_sym_ExeExt] = ACTIONS(113), + [anon_sym_PllExt] = ACTIONS(113), + [anon_sym_Sep] = ACTIONS(113), + [aux_sym_character_token1] = ACTIONS(115), + [sym_string] = ACTIONS(117), + [sym_multiLineString] = ACTIONS(117), [anon_sym_PIPE] = ACTIONS(15), - [sym_identifier] = ACTIONS(126), - [sym_identifier_deprecated] = ACTIONS(126), - [sym_system] = ACTIONS(122), - [sym_comment] = ACTIONS(128), - [sym_openParen] = ACTIONS(130), - [sym_openCurly] = ACTIONS(134), - [sym_openBracket] = ACTIONS(136), - [sym_leftArrow] = ACTIONS(140), - [anon_sym_CARET] = ACTIONS(142), - [anon_sym_eta] = ACTIONS(144), - [anon_sym_] = ACTIONS(146), - [anon_sym_pi] = ACTIONS(146), - [anon_sym_2] = ACTIONS(146), - [anon_sym_tau] = ACTIONS(144), - [anon_sym_3] = ACTIONS(146), - [anon_sym_infinity] = ACTIONS(144), - [anon_sym_4] = ACTIONS(144), - [anon_sym_e] = ACTIONS(146), - [anon_sym_NaN] = ACTIONS(146), - [anon_sym_NumProcs] = ACTIONS(146), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_COMMA] = ACTIONS(148), - [anon_sym_5] = ACTIONS(148), - [anon_sym_SEMI] = ACTIONS(148), - [anon_sym_identity] = ACTIONS(148), - [anon_sym_id] = ACTIONS(150), - [anon_sym_6] = ACTIONS(148), - [anon_sym_not] = ACTIONS(148), - [anon_sym_7] = ACTIONS(148), - [anon_sym_sign] = ACTIONS(148), - [anon_sym_8] = ACTIONS(148), - [anon_sym_BQUOTE] = ACTIONS(148), - [anon_sym_9] = ACTIONS(148), - [anon_sym_absolutevalue] = ACTIONS(148), - [anon_sym_10] = ACTIONS(148), - [anon_sym_sqrt] = ACTIONS(148), - [anon_sym_11] = ACTIONS(148), - [anon_sym_sine] = ACTIONS(148), - [anon_sym_12] = ACTIONS(148), - [anon_sym_floor] = ACTIONS(148), - [anon_sym_13] = ACTIONS(148), - [anon_sym_ceiling] = ACTIONS(148), - [anon_sym_14] = ACTIONS(148), - [anon_sym_round] = ACTIONS(148), - [anon_sym_15] = ACTIONS(148), - [anon_sym_EQ] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_16] = ACTIONS(148), - [anon_sym_LT] = ACTIONS(150), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_17] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_18] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_19] = ACTIONS(148), - [anon_sym_PERCENT] = ACTIONS(148), - [anon_sym_20] = ACTIONS(148), - [anon_sym_modulus] = ACTIONS(148), - [anon_sym_21] = ACTIONS(148), - [anon_sym_power] = ACTIONS(148), - [anon_sym_22] = ACTIONS(148), - [anon_sym_logarithm] = ACTIONS(148), - [anon_sym_23] = ACTIONS(148), - [anon_sym_minimum] = ACTIONS(148), - [anon_sym_24] = ACTIONS(148), - [anon_sym_maximum] = ACTIONS(148), - [anon_sym_25] = ACTIONS(148), - [anon_sym_atangent] = ACTIONS(148), - [anon_sym_26] = ACTIONS(148), - [anon_sym_length] = ACTIONS(148), - [anon_sym_27] = ACTIONS(148), - [anon_sym_shape] = ACTIONS(148), - [anon_sym_28] = ACTIONS(148), - [anon_sym_range] = ACTIONS(148), - [anon_sym_29] = ACTIONS(148), - [anon_sym_first] = ACTIONS(148), - [anon_sym_30] = ACTIONS(148), - [anon_sym_reverse] = ACTIONS(148), - [anon_sym_31] = ACTIONS(148), - [anon_sym_deshape] = ACTIONS(148), - [anon_sym_32] = ACTIONS(148), - [anon_sym_bits] = ACTIONS(148), - [anon_sym_33] = ACTIONS(148), - [anon_sym_transpose] = ACTIONS(148), - [anon_sym_34] = ACTIONS(148), - [anon_sym_rise] = ACTIONS(148), - [anon_sym_35] = ACTIONS(148), - [anon_sym_fall] = ACTIONS(148), - [anon_sym_36] = ACTIONS(148), - [anon_sym_where] = ACTIONS(148), - [anon_sym_37] = ACTIONS(148), - [anon_sym_classify] = ACTIONS(148), - [anon_sym_38] = ACTIONS(148), - [anon_sym_deduplicate] = ACTIONS(148), - [anon_sym_39] = ACTIONS(148), - [anon_sym_box] = ACTIONS(148), - [anon_sym_40] = ACTIONS(148), - [anon_sym_unbox] = ACTIONS(148), - [anon_sym_41] = ACTIONS(148), - [anon_sym_match] = ACTIONS(148), - [anon_sym_42] = ACTIONS(148), - [anon_sym_couple] = ACTIONS(148), - [anon_sym_43] = ACTIONS(148), - [anon_sym_join] = ACTIONS(148), - [anon_sym_44] = ACTIONS(148), - [anon_sym_select] = ACTIONS(148), - [anon_sym_45] = ACTIONS(148), - [anon_sym_pick] = ACTIONS(148), - [anon_sym_46] = ACTIONS(148), - [anon_sym_reshape] = ACTIONS(148), - [anon_sym_47] = ACTIONS(148), - [anon_sym_take] = ACTIONS(148), - [anon_sym_48] = ACTIONS(148), - [anon_sym_drop] = ACTIONS(148), - [anon_sym_49] = ACTIONS(148), - [anon_sym_rotate] = ACTIONS(148), - [anon_sym_50] = ACTIONS(148), - [anon_sym_windows] = ACTIONS(148), - [anon_sym_51] = ACTIONS(148), - [anon_sym_keep] = ACTIONS(148), - [anon_sym_52] = ACTIONS(148), - [anon_sym_find] = ACTIONS(148), - [anon_sym_53] = ACTIONS(148), - [anon_sym_member] = ACTIONS(148), - [anon_sym_54] = ACTIONS(148), - [anon_sym_indexof] = ACTIONS(148), - [anon_sym_55] = ACTIONS(148), - [anon_sym_assert] = ACTIONS(148), - [anon_sym_56] = ACTIONS(148), - [anon_sym_wait] = ACTIONS(148), - [anon_sym_break] = ACTIONS(148), - [anon_sym_57] = ACTIONS(148), - [anon_sym_parse] = ACTIONS(148), - [anon_sym_random] = ACTIONS(148), - [anon_sym_58] = ACTIONS(148), - [anon_sym_gen] = ACTIONS(148), - [anon_sym_deal] = ACTIONS(148), - [anon_sym_tag] = ACTIONS(148), - [anon_sym_now] = ACTIONS(148), - [anon_sym_type] = ACTIONS(148), - [anon_sym_59] = ACTIONS(148), - [anon_sym_dump] = ACTIONS(148), - [anon_sym_regex] = ACTIONS(148), - [anon_sym_utf] = ACTIONS(148), - [anon_sym_rock] = ACTIONS(148), - [anon_sym_60] = ACTIONS(148), - [anon_sym_surface] = ACTIONS(148), - [anon_sym_TILDE] = ACTIONS(148), - [anon_sym_deep] = ACTIONS(148), - [anon_sym_de] = ACTIONS(150), - [anon_sym_61] = ACTIONS(148), - [anon_sym_abyss] = ACTIONS(148), - [anon_sym_ab] = ACTIONS(150), - [anon_sym_62] = ACTIONS(148), - [anon_sym_seabed] = ACTIONS(148), - [anon_sym_se] = ACTIONS(150), - [anon_sym_63] = ACTIONS(148), - [anon_sym_send] = ACTIONS(148), - [anon_sym_recv] = ACTIONS(148), - [anon_sym_tryrecv] = ACTIONS(148), - [anon_sym_reduce] = ACTIONS(152), - [anon_sym_SLASH] = ACTIONS(152), - [anon_sym_scan] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_each] = ACTIONS(152), - [anon_sym_64] = ACTIONS(152), - [anon_sym_rows] = ACTIONS(152), - [anon_sym_65] = ACTIONS(152), - [anon_sym_repeat] = ACTIONS(152), - [anon_sym_66] = ACTIONS(152), - [anon_sym_dip] = ACTIONS(152), - [anon_sym_di] = ACTIONS(154), - [anon_sym_67] = ACTIONS(152), - [anon_sym_gap] = ACTIONS(152), - [anon_sym_ga] = ACTIONS(154), - [anon_sym_68] = ACTIONS(152), - [anon_sym_oust] = ACTIONS(152), - [anon_sym_69] = ACTIONS(152), - [anon_sym_invert] = ACTIONS(152), - [anon_sym_70] = ACTIONS(152), - [anon_sym_spawn] = ACTIONS(152), - [anon_sym_pack] = ACTIONS(152), - [anon_sym_71] = ACTIONS(152), - [anon_sym_tribute] = ACTIONS(152), - [anon_sym_72] = ACTIONS(152), - [anon_sym_fold] = ACTIONS(156), - [anon_sym_73] = ACTIONS(156), - [anon_sym_distribute] = ACTIONS(156), - [anon_sym_74] = ACTIONS(156), - [anon_sym_table] = ACTIONS(156), - [anon_sym_75] = ACTIONS(156), - [anon_sym_cross] = ACTIONS(156), - [anon_sym_76] = ACTIONS(156), - [anon_sym_group] = ACTIONS(156), - [anon_sym_77] = ACTIONS(156), - [anon_sym_partition] = ACTIONS(156), - [anon_sym_78] = ACTIONS(156), - [anon_sym_both] = ACTIONS(156), - [anon_sym_79] = ACTIONS(156), - [anon_sym_bracket] = ACTIONS(156), - [anon_sym_80] = ACTIONS(156), - [anon_sym_fork] = ACTIONS(156), - [anon_sym_81] = ACTIONS(156), - [anon_sym_under] = ACTIONS(156), - [anon_sym_82] = ACTIONS(156), - [anon_sym_level] = ACTIONS(156), - [anon_sym_83] = ACTIONS(156), - [anon_sym_fill] = ACTIONS(156), - [anon_sym_84] = ACTIONS(156), - [anon_sym_bind] = ACTIONS(156), - [anon_sym_SQUOTE] = ACTIONS(156), - [anon_sym_QMARK] = ACTIONS(156), - [anon_sym_try] = ACTIONS(158), - [anon_sym_85] = ACTIONS(156), - [anon_sym_combinate] = ACTIONS(156), - [anon_sym_86] = ACTIONS(156), - [anon_sym_87] = ACTIONS(160), - [anon_sym_88] = ACTIONS(160), - [anon_sym_89] = ACTIONS(160), - [anon_sym_90] = ACTIONS(160), - [anon_sym_91] = ACTIONS(160), - [anon_sym_92] = ACTIONS(160), - [anon_sym_93] = ACTIONS(160), + [sym_identifier] = ACTIONS(121), + [sym_identifier_deprecated] = ACTIONS(121), + [sym_system] = ACTIONS(117), + [sym_comment] = ACTIONS(123), + [sym_openParen] = ACTIONS(125), + [sym_openCurly] = ACTIONS(129), + [sym_openBracket] = ACTIONS(131), + [sym_leftArrow] = ACTIONS(135), + [anon_sym_CARET] = ACTIONS(137), + [anon_sym_eta] = ACTIONS(139), + [anon_sym_] = ACTIONS(141), + [anon_sym_pi] = ACTIONS(141), + [anon_sym_2] = ACTIONS(141), + [anon_sym_tau] = ACTIONS(139), + [anon_sym_3] = ACTIONS(141), + [anon_sym_infinity] = ACTIONS(139), + [anon_sym_4] = ACTIONS(139), + [anon_sym_e] = ACTIONS(141), + [anon_sym_NaN] = ACTIONS(141), + [anon_sym_NumProcs] = ACTIONS(141), + [anon_sym_DOT] = ACTIONS(143), + [anon_sym_COMMA] = ACTIONS(143), + [anon_sym_5] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_identity] = ACTIONS(143), + [anon_sym_id] = ACTIONS(145), + [anon_sym_6] = ACTIONS(143), + [anon_sym_not] = ACTIONS(143), + [anon_sym_7] = ACTIONS(143), + [anon_sym_sign] = ACTIONS(143), + [anon_sym_8] = ACTIONS(143), + [anon_sym_BQUOTE] = ACTIONS(143), + [anon_sym_9] = ACTIONS(143), + [anon_sym_absolutevalue] = ACTIONS(143), + [anon_sym_10] = ACTIONS(143), + [anon_sym_sqrt] = ACTIONS(143), + [anon_sym_11] = ACTIONS(143), + [anon_sym_sine] = ACTIONS(143), + [anon_sym_12] = ACTIONS(143), + [anon_sym_floor] = ACTIONS(143), + [anon_sym_13] = ACTIONS(143), + [anon_sym_ceiling] = ACTIONS(143), + [anon_sym_14] = ACTIONS(143), + [anon_sym_round] = ACTIONS(143), + [anon_sym_15] = ACTIONS(143), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_16] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_17] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_18] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_19] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_20] = ACTIONS(143), + [anon_sym_modulus] = ACTIONS(143), + [anon_sym_21] = ACTIONS(143), + [anon_sym_power] = ACTIONS(143), + [anon_sym_22] = ACTIONS(143), + [anon_sym_logarithm] = ACTIONS(143), + [anon_sym_23] = ACTIONS(143), + [anon_sym_minimum] = ACTIONS(143), + [anon_sym_24] = ACTIONS(143), + [anon_sym_maximum] = ACTIONS(143), + [anon_sym_25] = ACTIONS(143), + [anon_sym_atangent] = ACTIONS(143), + [anon_sym_26] = ACTIONS(143), + [anon_sym_length] = ACTIONS(143), + [anon_sym_27] = ACTIONS(143), + [anon_sym_shape] = ACTIONS(143), + [anon_sym_28] = ACTIONS(143), + [anon_sym_range] = ACTIONS(143), + [anon_sym_29] = ACTIONS(143), + [anon_sym_first] = ACTIONS(143), + [anon_sym_30] = ACTIONS(143), + [anon_sym_reverse] = ACTIONS(143), + [anon_sym_31] = ACTIONS(143), + [anon_sym_deshape] = ACTIONS(143), + [anon_sym_32] = ACTIONS(143), + [anon_sym_bits] = ACTIONS(143), + [anon_sym_33] = ACTIONS(143), + [anon_sym_transpose] = ACTIONS(143), + [anon_sym_34] = ACTIONS(143), + [anon_sym_rise] = ACTIONS(143), + [anon_sym_35] = ACTIONS(143), + [anon_sym_fall] = ACTIONS(143), + [anon_sym_36] = ACTIONS(143), + [anon_sym_where] = ACTIONS(143), + [anon_sym_37] = ACTIONS(143), + [anon_sym_classify] = ACTIONS(143), + [anon_sym_38] = ACTIONS(143), + [anon_sym_deduplicate] = ACTIONS(143), + [anon_sym_39] = ACTIONS(143), + [anon_sym_box] = ACTIONS(143), + [anon_sym_40] = ACTIONS(143), + [anon_sym_unbox] = ACTIONS(143), + [anon_sym_41] = ACTIONS(143), + [anon_sym_match] = ACTIONS(143), + [anon_sym_42] = ACTIONS(143), + [anon_sym_couple] = ACTIONS(143), + [anon_sym_43] = ACTIONS(143), + [anon_sym_join] = ACTIONS(143), + [anon_sym_44] = ACTIONS(143), + [anon_sym_select] = ACTIONS(143), + [anon_sym_45] = ACTIONS(143), + [anon_sym_pick] = ACTIONS(143), + [anon_sym_46] = ACTIONS(143), + [anon_sym_reshape] = ACTIONS(143), + [anon_sym_47] = ACTIONS(143), + [anon_sym_take] = ACTIONS(143), + [anon_sym_48] = ACTIONS(143), + [anon_sym_drop] = ACTIONS(143), + [anon_sym_49] = ACTIONS(143), + [anon_sym_rotate] = ACTIONS(143), + [anon_sym_50] = ACTIONS(143), + [anon_sym_windows] = ACTIONS(143), + [anon_sym_51] = ACTIONS(143), + [anon_sym_keep] = ACTIONS(143), + [anon_sym_52] = ACTIONS(143), + [anon_sym_find] = ACTIONS(143), + [anon_sym_53] = ACTIONS(143), + [anon_sym_member] = ACTIONS(143), + [anon_sym_54] = ACTIONS(143), + [anon_sym_indexof] = ACTIONS(143), + [anon_sym_55] = ACTIONS(143), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_56] = ACTIONS(143), + [anon_sym_wait] = ACTIONS(143), + [anon_sym_break] = ACTIONS(143), + [anon_sym_57] = ACTIONS(143), + [anon_sym_parse] = ACTIONS(143), + [anon_sym_random] = ACTIONS(143), + [anon_sym_58] = ACTIONS(143), + [anon_sym_gen] = ACTIONS(143), + [anon_sym_deal] = ACTIONS(143), + [anon_sym_tag] = ACTIONS(143), + [anon_sym_now] = ACTIONS(143), + [anon_sym_type] = ACTIONS(143), + [anon_sym_59] = ACTIONS(143), + [anon_sym_dump] = ACTIONS(143), + [anon_sym_regex] = ACTIONS(143), + [anon_sym_utf] = ACTIONS(143), + [anon_sym_rock] = ACTIONS(143), + [anon_sym_60] = ACTIONS(143), + [anon_sym_surface] = ACTIONS(143), + [anon_sym_TILDE] = ACTIONS(143), + [anon_sym_deep] = ACTIONS(143), + [anon_sym_de] = ACTIONS(145), + [anon_sym_61] = ACTIONS(143), + [anon_sym_abyss] = ACTIONS(143), + [anon_sym_ab] = ACTIONS(145), + [anon_sym_62] = ACTIONS(143), + [anon_sym_seabed] = ACTIONS(143), + [anon_sym_se] = ACTIONS(145), + [anon_sym_63] = ACTIONS(143), + [anon_sym_send] = ACTIONS(143), + [anon_sym_recv] = ACTIONS(143), + [anon_sym_tryrecv] = ACTIONS(143), + [anon_sym_reduce] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_scan] = ACTIONS(147), + [anon_sym_BSLASH] = ACTIONS(147), + [anon_sym_each] = ACTIONS(147), + [anon_sym_64] = ACTIONS(147), + [anon_sym_rows] = ACTIONS(147), + [anon_sym_65] = ACTIONS(147), + [anon_sym_repeat] = ACTIONS(147), + [anon_sym_66] = ACTIONS(147), + [anon_sym_dip] = ACTIONS(147), + [anon_sym_67] = ACTIONS(147), + [anon_sym_gap] = ACTIONS(147), + [anon_sym_68] = ACTIONS(147), + [anon_sym_69] = ACTIONS(147), + [anon_sym_invert] = ACTIONS(147), + [anon_sym_70] = ACTIONS(147), + [anon_sym_spawn] = ACTIONS(147), + [anon_sym_pack] = ACTIONS(147), + [anon_sym_71] = ACTIONS(147), + [anon_sym_tribute] = ACTIONS(147), + [anon_sym_72] = ACTIONS(147), + [anon_sym_reach] = ACTIONS(147), + [anon_sym_fold] = ACTIONS(149), + [anon_sym_73] = ACTIONS(149), + [anon_sym_distribute] = ACTIONS(149), + [anon_sym_74] = ACTIONS(149), + [anon_sym_table] = ACTIONS(149), + [anon_sym_75] = ACTIONS(149), + [anon_sym_cross] = ACTIONS(149), + [anon_sym_76] = ACTIONS(149), + [anon_sym_group] = ACTIONS(149), + [anon_sym_77] = ACTIONS(149), + [anon_sym_partition] = ACTIONS(149), + [anon_sym_78] = ACTIONS(149), + [anon_sym_both] = ACTIONS(149), + [anon_sym_79] = ACTIONS(149), + [anon_sym_bracket] = ACTIONS(149), + [anon_sym_80] = ACTIONS(149), + [anon_sym_fork] = ACTIONS(149), + [anon_sym_81] = ACTIONS(149), + [anon_sym_under] = ACTIONS(149), + [anon_sym_82] = ACTIONS(149), + [anon_sym_level] = ACTIONS(149), + [anon_sym_83] = ACTIONS(149), + [anon_sym_fill] = ACTIONS(149), + [anon_sym_84] = ACTIONS(149), + [anon_sym_bind] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_try] = ACTIONS(151), + [anon_sym_85] = ACTIONS(149), + [anon_sym_combinate] = ACTIONS(149), + [anon_sym_86] = ACTIONS(149), + [anon_sym_87] = ACTIONS(153), + [anon_sym_88] = ACTIONS(153), + [anon_sym_89] = ACTIONS(153), + [anon_sym_90] = ACTIONS(153), + [anon_sym_91] = ACTIONS(153), + [anon_sym_92] = ACTIONS(153), + [anon_sym_93] = ACTIONS(153), [sym__whitespace] = ACTIONS(5), [sym__end_of_line] = ACTIONS(5), }, @@ -17424,243 +17322,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_deprecated] = STATE(61), [aux_sym_module_repeat1] = STATE(37), [aux_sym_array_repeat1] = STATE(57), - [aux_sym_number_token1] = ACTIONS(116), - [anon_sym_os] = ACTIONS(118), - [anon_sym_Family] = ACTIONS(118), - [anon_sym_Arch] = ACTIONS(118), - [anon_sym_ExeExt] = ACTIONS(118), - [anon_sym_PllExt] = ACTIONS(118), - [anon_sym_Sep] = ACTIONS(118), - [aux_sym_character_token1] = ACTIONS(120), - [sym_string] = ACTIONS(122), - [sym_multiLineString] = ACTIONS(122), + [aux_sym_number_token1] = ACTIONS(111), + [anon_sym_os] = ACTIONS(113), + [anon_sym_Family] = ACTIONS(113), + [anon_sym_Arch] = ACTIONS(113), + [anon_sym_ExeExt] = ACTIONS(113), + [anon_sym_PllExt] = ACTIONS(113), + [anon_sym_Sep] = ACTIONS(113), + [aux_sym_character_token1] = ACTIONS(115), + [sym_string] = ACTIONS(117), + [sym_multiLineString] = ACTIONS(117), [anon_sym_PIPE] = ACTIONS(15), - [sym_identifier] = ACTIONS(126), - [sym_identifier_deprecated] = ACTIONS(126), - [sym_system] = ACTIONS(122), - [sym_comment] = ACTIONS(128), - [sym_openParen] = ACTIONS(130), - [sym_openCurly] = ACTIONS(134), - [sym_openBracket] = ACTIONS(136), - [sym_leftArrow] = ACTIONS(140), - [anon_sym_CARET] = ACTIONS(142), - [anon_sym_eta] = ACTIONS(144), - [anon_sym_] = ACTIONS(146), - [anon_sym_pi] = ACTIONS(146), - [anon_sym_2] = ACTIONS(146), - [anon_sym_tau] = ACTIONS(144), - [anon_sym_3] = ACTIONS(146), - [anon_sym_infinity] = ACTIONS(144), - [anon_sym_4] = ACTIONS(144), - [anon_sym_e] = ACTIONS(146), - [anon_sym_NaN] = ACTIONS(146), - [anon_sym_NumProcs] = ACTIONS(146), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_COMMA] = ACTIONS(148), - [anon_sym_5] = ACTIONS(148), - [anon_sym_SEMI] = ACTIONS(148), - [anon_sym_identity] = ACTIONS(148), - [anon_sym_id] = ACTIONS(150), - [anon_sym_6] = ACTIONS(148), - [anon_sym_not] = ACTIONS(148), - [anon_sym_7] = ACTIONS(148), - [anon_sym_sign] = ACTIONS(148), - [anon_sym_8] = ACTIONS(148), - [anon_sym_BQUOTE] = ACTIONS(148), - [anon_sym_9] = ACTIONS(148), - [anon_sym_absolutevalue] = ACTIONS(148), - [anon_sym_10] = ACTIONS(148), - [anon_sym_sqrt] = ACTIONS(148), - [anon_sym_11] = ACTIONS(148), - [anon_sym_sine] = ACTIONS(148), - [anon_sym_12] = ACTIONS(148), - [anon_sym_floor] = ACTIONS(148), - [anon_sym_13] = ACTIONS(148), - [anon_sym_ceiling] = ACTIONS(148), - [anon_sym_14] = ACTIONS(148), - [anon_sym_round] = ACTIONS(148), - [anon_sym_15] = ACTIONS(148), - [anon_sym_EQ] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_16] = ACTIONS(148), - [anon_sym_LT] = ACTIONS(150), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_17] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_18] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_19] = ACTIONS(148), - [anon_sym_PERCENT] = ACTIONS(148), - [anon_sym_20] = ACTIONS(148), - [anon_sym_modulus] = ACTIONS(148), - [anon_sym_21] = ACTIONS(148), - [anon_sym_power] = ACTIONS(148), - [anon_sym_22] = ACTIONS(148), - [anon_sym_logarithm] = ACTIONS(148), - [anon_sym_23] = ACTIONS(148), - [anon_sym_minimum] = ACTIONS(148), - [anon_sym_24] = ACTIONS(148), - [anon_sym_maximum] = ACTIONS(148), - [anon_sym_25] = ACTIONS(148), - [anon_sym_atangent] = ACTIONS(148), - [anon_sym_26] = ACTIONS(148), - [anon_sym_length] = ACTIONS(148), - [anon_sym_27] = ACTIONS(148), - [anon_sym_shape] = ACTIONS(148), - [anon_sym_28] = ACTIONS(148), - [anon_sym_range] = ACTIONS(148), - [anon_sym_29] = ACTIONS(148), - [anon_sym_first] = ACTIONS(148), - [anon_sym_30] = ACTIONS(148), - [anon_sym_reverse] = ACTIONS(148), - [anon_sym_31] = ACTIONS(148), - [anon_sym_deshape] = ACTIONS(148), - [anon_sym_32] = ACTIONS(148), - [anon_sym_bits] = ACTIONS(148), - [anon_sym_33] = ACTIONS(148), - [anon_sym_transpose] = ACTIONS(148), - [anon_sym_34] = ACTIONS(148), - [anon_sym_rise] = ACTIONS(148), - [anon_sym_35] = ACTIONS(148), - [anon_sym_fall] = ACTIONS(148), - [anon_sym_36] = ACTIONS(148), - [anon_sym_where] = ACTIONS(148), - [anon_sym_37] = ACTIONS(148), - [anon_sym_classify] = ACTIONS(148), - [anon_sym_38] = ACTIONS(148), - [anon_sym_deduplicate] = ACTIONS(148), - [anon_sym_39] = ACTIONS(148), - [anon_sym_box] = ACTIONS(148), - [anon_sym_40] = ACTIONS(148), - [anon_sym_unbox] = ACTIONS(148), - [anon_sym_41] = ACTIONS(148), - [anon_sym_match] = ACTIONS(148), - [anon_sym_42] = ACTIONS(148), - [anon_sym_couple] = ACTIONS(148), - [anon_sym_43] = ACTIONS(148), - [anon_sym_join] = ACTIONS(148), - [anon_sym_44] = ACTIONS(148), - [anon_sym_select] = ACTIONS(148), - [anon_sym_45] = ACTIONS(148), - [anon_sym_pick] = ACTIONS(148), - [anon_sym_46] = ACTIONS(148), - [anon_sym_reshape] = ACTIONS(148), - [anon_sym_47] = ACTIONS(148), - [anon_sym_take] = ACTIONS(148), - [anon_sym_48] = ACTIONS(148), - [anon_sym_drop] = ACTIONS(148), - [anon_sym_49] = ACTIONS(148), - [anon_sym_rotate] = ACTIONS(148), - [anon_sym_50] = ACTIONS(148), - [anon_sym_windows] = ACTIONS(148), - [anon_sym_51] = ACTIONS(148), - [anon_sym_keep] = ACTIONS(148), - [anon_sym_52] = ACTIONS(148), - [anon_sym_find] = ACTIONS(148), - [anon_sym_53] = ACTIONS(148), - [anon_sym_member] = ACTIONS(148), - [anon_sym_54] = ACTIONS(148), - [anon_sym_indexof] = ACTIONS(148), - [anon_sym_55] = ACTIONS(148), - [anon_sym_assert] = ACTIONS(148), - [anon_sym_56] = ACTIONS(148), - [anon_sym_wait] = ACTIONS(148), - [anon_sym_break] = ACTIONS(148), - [anon_sym_57] = ACTIONS(148), - [anon_sym_parse] = ACTIONS(148), - [anon_sym_random] = ACTIONS(148), - [anon_sym_58] = ACTIONS(148), - [anon_sym_gen] = ACTIONS(148), - [anon_sym_deal] = ACTIONS(148), - [anon_sym_tag] = ACTIONS(148), - [anon_sym_now] = ACTIONS(148), - [anon_sym_type] = ACTIONS(148), - [anon_sym_59] = ACTIONS(148), - [anon_sym_dump] = ACTIONS(148), - [anon_sym_regex] = ACTIONS(148), - [anon_sym_utf] = ACTIONS(148), - [anon_sym_rock] = ACTIONS(148), - [anon_sym_60] = ACTIONS(148), - [anon_sym_surface] = ACTIONS(148), - [anon_sym_TILDE] = ACTIONS(148), - [anon_sym_deep] = ACTIONS(148), - [anon_sym_de] = ACTIONS(150), - [anon_sym_61] = ACTIONS(148), - [anon_sym_abyss] = ACTIONS(148), - [anon_sym_ab] = ACTIONS(150), - [anon_sym_62] = ACTIONS(148), - [anon_sym_seabed] = ACTIONS(148), - [anon_sym_se] = ACTIONS(150), - [anon_sym_63] = ACTIONS(148), - [anon_sym_send] = ACTIONS(148), - [anon_sym_recv] = ACTIONS(148), - [anon_sym_tryrecv] = ACTIONS(148), - [anon_sym_reduce] = ACTIONS(152), - [anon_sym_SLASH] = ACTIONS(152), - [anon_sym_scan] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_each] = ACTIONS(152), - [anon_sym_64] = ACTIONS(152), - [anon_sym_rows] = ACTIONS(152), - [anon_sym_65] = ACTIONS(152), - [anon_sym_repeat] = ACTIONS(152), - [anon_sym_66] = ACTIONS(152), - [anon_sym_dip] = ACTIONS(152), - [anon_sym_di] = ACTIONS(154), - [anon_sym_67] = ACTIONS(152), - [anon_sym_gap] = ACTIONS(152), - [anon_sym_ga] = ACTIONS(154), - [anon_sym_68] = ACTIONS(152), - [anon_sym_oust] = ACTIONS(152), - [anon_sym_69] = ACTIONS(152), - [anon_sym_invert] = ACTIONS(152), - [anon_sym_70] = ACTIONS(152), - [anon_sym_spawn] = ACTIONS(152), - [anon_sym_pack] = ACTIONS(152), - [anon_sym_71] = ACTIONS(152), - [anon_sym_tribute] = ACTIONS(152), - [anon_sym_72] = ACTIONS(152), - [anon_sym_fold] = ACTIONS(156), - [anon_sym_73] = ACTIONS(156), - [anon_sym_distribute] = ACTIONS(156), - [anon_sym_74] = ACTIONS(156), - [anon_sym_table] = ACTIONS(156), - [anon_sym_75] = ACTIONS(156), - [anon_sym_cross] = ACTIONS(156), - [anon_sym_76] = ACTIONS(156), - [anon_sym_group] = ACTIONS(156), - [anon_sym_77] = ACTIONS(156), - [anon_sym_partition] = ACTIONS(156), - [anon_sym_78] = ACTIONS(156), - [anon_sym_both] = ACTIONS(156), - [anon_sym_79] = ACTIONS(156), - [anon_sym_bracket] = ACTIONS(156), - [anon_sym_80] = ACTIONS(156), - [anon_sym_fork] = ACTIONS(156), - [anon_sym_81] = ACTIONS(156), - [anon_sym_under] = ACTIONS(156), - [anon_sym_82] = ACTIONS(156), - [anon_sym_level] = ACTIONS(156), - [anon_sym_83] = ACTIONS(156), - [anon_sym_fill] = ACTIONS(156), - [anon_sym_84] = ACTIONS(156), - [anon_sym_bind] = ACTIONS(156), - [anon_sym_SQUOTE] = ACTIONS(156), - [anon_sym_QMARK] = ACTIONS(156), - [anon_sym_try] = ACTIONS(158), - [anon_sym_85] = ACTIONS(156), - [anon_sym_combinate] = ACTIONS(156), - [anon_sym_86] = ACTIONS(156), - [anon_sym_87] = ACTIONS(160), - [anon_sym_88] = ACTIONS(160), - [anon_sym_89] = ACTIONS(160), - [anon_sym_90] = ACTIONS(160), - [anon_sym_91] = ACTIONS(160), - [anon_sym_92] = ACTIONS(160), - [anon_sym_93] = ACTIONS(160), + [sym_identifier] = ACTIONS(121), + [sym_identifier_deprecated] = ACTIONS(121), + [sym_system] = ACTIONS(117), + [sym_comment] = ACTIONS(123), + [sym_openParen] = ACTIONS(125), + [sym_openCurly] = ACTIONS(129), + [sym_openBracket] = ACTIONS(131), + [sym_leftArrow] = ACTIONS(135), + [anon_sym_CARET] = ACTIONS(137), + [anon_sym_eta] = ACTIONS(139), + [anon_sym_] = ACTIONS(141), + [anon_sym_pi] = ACTIONS(141), + [anon_sym_2] = ACTIONS(141), + [anon_sym_tau] = ACTIONS(139), + [anon_sym_3] = ACTIONS(141), + [anon_sym_infinity] = ACTIONS(139), + [anon_sym_4] = ACTIONS(139), + [anon_sym_e] = ACTIONS(141), + [anon_sym_NaN] = ACTIONS(141), + [anon_sym_NumProcs] = ACTIONS(141), + [anon_sym_DOT] = ACTIONS(143), + [anon_sym_COMMA] = ACTIONS(143), + [anon_sym_5] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_identity] = ACTIONS(143), + [anon_sym_id] = ACTIONS(145), + [anon_sym_6] = ACTIONS(143), + [anon_sym_not] = ACTIONS(143), + [anon_sym_7] = ACTIONS(143), + [anon_sym_sign] = ACTIONS(143), + [anon_sym_8] = ACTIONS(143), + [anon_sym_BQUOTE] = ACTIONS(143), + [anon_sym_9] = ACTIONS(143), + [anon_sym_absolutevalue] = ACTIONS(143), + [anon_sym_10] = ACTIONS(143), + [anon_sym_sqrt] = ACTIONS(143), + [anon_sym_11] = ACTIONS(143), + [anon_sym_sine] = ACTIONS(143), + [anon_sym_12] = ACTIONS(143), + [anon_sym_floor] = ACTIONS(143), + [anon_sym_13] = ACTIONS(143), + [anon_sym_ceiling] = ACTIONS(143), + [anon_sym_14] = ACTIONS(143), + [anon_sym_round] = ACTIONS(143), + [anon_sym_15] = ACTIONS(143), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_16] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_17] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_18] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_19] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_20] = ACTIONS(143), + [anon_sym_modulus] = ACTIONS(143), + [anon_sym_21] = ACTIONS(143), + [anon_sym_power] = ACTIONS(143), + [anon_sym_22] = ACTIONS(143), + [anon_sym_logarithm] = ACTIONS(143), + [anon_sym_23] = ACTIONS(143), + [anon_sym_minimum] = ACTIONS(143), + [anon_sym_24] = ACTIONS(143), + [anon_sym_maximum] = ACTIONS(143), + [anon_sym_25] = ACTIONS(143), + [anon_sym_atangent] = ACTIONS(143), + [anon_sym_26] = ACTIONS(143), + [anon_sym_length] = ACTIONS(143), + [anon_sym_27] = ACTIONS(143), + [anon_sym_shape] = ACTIONS(143), + [anon_sym_28] = ACTIONS(143), + [anon_sym_range] = ACTIONS(143), + [anon_sym_29] = ACTIONS(143), + [anon_sym_first] = ACTIONS(143), + [anon_sym_30] = ACTIONS(143), + [anon_sym_reverse] = ACTIONS(143), + [anon_sym_31] = ACTIONS(143), + [anon_sym_deshape] = ACTIONS(143), + [anon_sym_32] = ACTIONS(143), + [anon_sym_bits] = ACTIONS(143), + [anon_sym_33] = ACTIONS(143), + [anon_sym_transpose] = ACTIONS(143), + [anon_sym_34] = ACTIONS(143), + [anon_sym_rise] = ACTIONS(143), + [anon_sym_35] = ACTIONS(143), + [anon_sym_fall] = ACTIONS(143), + [anon_sym_36] = ACTIONS(143), + [anon_sym_where] = ACTIONS(143), + [anon_sym_37] = ACTIONS(143), + [anon_sym_classify] = ACTIONS(143), + [anon_sym_38] = ACTIONS(143), + [anon_sym_deduplicate] = ACTIONS(143), + [anon_sym_39] = ACTIONS(143), + [anon_sym_box] = ACTIONS(143), + [anon_sym_40] = ACTIONS(143), + [anon_sym_unbox] = ACTIONS(143), + [anon_sym_41] = ACTIONS(143), + [anon_sym_match] = ACTIONS(143), + [anon_sym_42] = ACTIONS(143), + [anon_sym_couple] = ACTIONS(143), + [anon_sym_43] = ACTIONS(143), + [anon_sym_join] = ACTIONS(143), + [anon_sym_44] = ACTIONS(143), + [anon_sym_select] = ACTIONS(143), + [anon_sym_45] = ACTIONS(143), + [anon_sym_pick] = ACTIONS(143), + [anon_sym_46] = ACTIONS(143), + [anon_sym_reshape] = ACTIONS(143), + [anon_sym_47] = ACTIONS(143), + [anon_sym_take] = ACTIONS(143), + [anon_sym_48] = ACTIONS(143), + [anon_sym_drop] = ACTIONS(143), + [anon_sym_49] = ACTIONS(143), + [anon_sym_rotate] = ACTIONS(143), + [anon_sym_50] = ACTIONS(143), + [anon_sym_windows] = ACTIONS(143), + [anon_sym_51] = ACTIONS(143), + [anon_sym_keep] = ACTIONS(143), + [anon_sym_52] = ACTIONS(143), + [anon_sym_find] = ACTIONS(143), + [anon_sym_53] = ACTIONS(143), + [anon_sym_member] = ACTIONS(143), + [anon_sym_54] = ACTIONS(143), + [anon_sym_indexof] = ACTIONS(143), + [anon_sym_55] = ACTIONS(143), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_56] = ACTIONS(143), + [anon_sym_wait] = ACTIONS(143), + [anon_sym_break] = ACTIONS(143), + [anon_sym_57] = ACTIONS(143), + [anon_sym_parse] = ACTIONS(143), + [anon_sym_random] = ACTIONS(143), + [anon_sym_58] = ACTIONS(143), + [anon_sym_gen] = ACTIONS(143), + [anon_sym_deal] = ACTIONS(143), + [anon_sym_tag] = ACTIONS(143), + [anon_sym_now] = ACTIONS(143), + [anon_sym_type] = ACTIONS(143), + [anon_sym_59] = ACTIONS(143), + [anon_sym_dump] = ACTIONS(143), + [anon_sym_regex] = ACTIONS(143), + [anon_sym_utf] = ACTIONS(143), + [anon_sym_rock] = ACTIONS(143), + [anon_sym_60] = ACTIONS(143), + [anon_sym_surface] = ACTIONS(143), + [anon_sym_TILDE] = ACTIONS(143), + [anon_sym_deep] = ACTIONS(143), + [anon_sym_de] = ACTIONS(145), + [anon_sym_61] = ACTIONS(143), + [anon_sym_abyss] = ACTIONS(143), + [anon_sym_ab] = ACTIONS(145), + [anon_sym_62] = ACTIONS(143), + [anon_sym_seabed] = ACTIONS(143), + [anon_sym_se] = ACTIONS(145), + [anon_sym_63] = ACTIONS(143), + [anon_sym_send] = ACTIONS(143), + [anon_sym_recv] = ACTIONS(143), + [anon_sym_tryrecv] = ACTIONS(143), + [anon_sym_reduce] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_scan] = ACTIONS(147), + [anon_sym_BSLASH] = ACTIONS(147), + [anon_sym_each] = ACTIONS(147), + [anon_sym_64] = ACTIONS(147), + [anon_sym_rows] = ACTIONS(147), + [anon_sym_65] = ACTIONS(147), + [anon_sym_repeat] = ACTIONS(147), + [anon_sym_66] = ACTIONS(147), + [anon_sym_dip] = ACTIONS(147), + [anon_sym_67] = ACTIONS(147), + [anon_sym_gap] = ACTIONS(147), + [anon_sym_68] = ACTIONS(147), + [anon_sym_69] = ACTIONS(147), + [anon_sym_invert] = ACTIONS(147), + [anon_sym_70] = ACTIONS(147), + [anon_sym_spawn] = ACTIONS(147), + [anon_sym_pack] = ACTIONS(147), + [anon_sym_71] = ACTIONS(147), + [anon_sym_tribute] = ACTIONS(147), + [anon_sym_72] = ACTIONS(147), + [anon_sym_reach] = ACTIONS(147), + [anon_sym_fold] = ACTIONS(149), + [anon_sym_73] = ACTIONS(149), + [anon_sym_distribute] = ACTIONS(149), + [anon_sym_74] = ACTIONS(149), + [anon_sym_table] = ACTIONS(149), + [anon_sym_75] = ACTIONS(149), + [anon_sym_cross] = ACTIONS(149), + [anon_sym_76] = ACTIONS(149), + [anon_sym_group] = ACTIONS(149), + [anon_sym_77] = ACTIONS(149), + [anon_sym_partition] = ACTIONS(149), + [anon_sym_78] = ACTIONS(149), + [anon_sym_both] = ACTIONS(149), + [anon_sym_79] = ACTIONS(149), + [anon_sym_bracket] = ACTIONS(149), + [anon_sym_80] = ACTIONS(149), + [anon_sym_fork] = ACTIONS(149), + [anon_sym_81] = ACTIONS(149), + [anon_sym_under] = ACTIONS(149), + [anon_sym_82] = ACTIONS(149), + [anon_sym_level] = ACTIONS(149), + [anon_sym_83] = ACTIONS(149), + [anon_sym_fill] = ACTIONS(149), + [anon_sym_84] = ACTIONS(149), + [anon_sym_bind] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_try] = ACTIONS(151), + [anon_sym_85] = ACTIONS(149), + [anon_sym_combinate] = ACTIONS(149), + [anon_sym_86] = ACTIONS(149), + [anon_sym_87] = ACTIONS(153), + [anon_sym_88] = ACTIONS(153), + [anon_sym_89] = ACTIONS(153), + [anon_sym_90] = ACTIONS(153), + [anon_sym_91] = ACTIONS(153), + [anon_sym_92] = ACTIONS(153), + [anon_sym_93] = ACTIONS(153), [sym__whitespace] = ACTIONS(5), [sym__end_of_line] = ACTIONS(5), }, @@ -17684,243 +17580,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_deprecated] = STATE(61), [aux_sym_module_repeat1] = STATE(37), [aux_sym_array_repeat1] = STATE(57), - [aux_sym_number_token1] = ACTIONS(116), - [anon_sym_os] = ACTIONS(118), - [anon_sym_Family] = ACTIONS(118), - [anon_sym_Arch] = ACTIONS(118), - [anon_sym_ExeExt] = ACTIONS(118), - [anon_sym_PllExt] = ACTIONS(118), - [anon_sym_Sep] = ACTIONS(118), - [aux_sym_character_token1] = ACTIONS(120), - [sym_string] = ACTIONS(122), - [sym_multiLineString] = ACTIONS(122), + [aux_sym_number_token1] = ACTIONS(111), + [anon_sym_os] = ACTIONS(113), + [anon_sym_Family] = ACTIONS(113), + [anon_sym_Arch] = ACTIONS(113), + [anon_sym_ExeExt] = ACTIONS(113), + [anon_sym_PllExt] = ACTIONS(113), + [anon_sym_Sep] = ACTIONS(113), + [aux_sym_character_token1] = ACTIONS(115), + [sym_string] = ACTIONS(117), + [sym_multiLineString] = ACTIONS(117), [anon_sym_PIPE] = ACTIONS(15), - [sym_identifier] = ACTIONS(126), - [sym_identifier_deprecated] = ACTIONS(126), - [sym_system] = ACTIONS(122), - [sym_comment] = ACTIONS(128), - [sym_openParen] = ACTIONS(130), - [sym_openCurly] = ACTIONS(134), - [sym_openBracket] = ACTIONS(136), - [sym_leftArrow] = ACTIONS(140), - [anon_sym_CARET] = ACTIONS(142), - [anon_sym_eta] = ACTIONS(144), - [anon_sym_] = ACTIONS(146), - [anon_sym_pi] = ACTIONS(146), - [anon_sym_2] = ACTIONS(146), - [anon_sym_tau] = ACTIONS(144), - [anon_sym_3] = ACTIONS(146), - [anon_sym_infinity] = ACTIONS(144), - [anon_sym_4] = ACTIONS(144), - [anon_sym_e] = ACTIONS(146), - [anon_sym_NaN] = ACTIONS(146), - [anon_sym_NumProcs] = ACTIONS(146), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_COMMA] = ACTIONS(148), - [anon_sym_5] = ACTIONS(148), - [anon_sym_SEMI] = ACTIONS(148), - [anon_sym_identity] = ACTIONS(148), - [anon_sym_id] = ACTIONS(150), - [anon_sym_6] = ACTIONS(148), - [anon_sym_not] = ACTIONS(148), - [anon_sym_7] = ACTIONS(148), - [anon_sym_sign] = ACTIONS(148), - [anon_sym_8] = ACTIONS(148), - [anon_sym_BQUOTE] = ACTIONS(148), - [anon_sym_9] = ACTIONS(148), - [anon_sym_absolutevalue] = ACTIONS(148), - [anon_sym_10] = ACTIONS(148), - [anon_sym_sqrt] = ACTIONS(148), - [anon_sym_11] = ACTIONS(148), - [anon_sym_sine] = ACTIONS(148), - [anon_sym_12] = ACTIONS(148), - [anon_sym_floor] = ACTIONS(148), - [anon_sym_13] = ACTIONS(148), - [anon_sym_ceiling] = ACTIONS(148), - [anon_sym_14] = ACTIONS(148), - [anon_sym_round] = ACTIONS(148), - [anon_sym_15] = ACTIONS(148), - [anon_sym_EQ] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_16] = ACTIONS(148), - [anon_sym_LT] = ACTIONS(150), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_17] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_18] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_19] = ACTIONS(148), - [anon_sym_PERCENT] = ACTIONS(148), - [anon_sym_20] = ACTIONS(148), - [anon_sym_modulus] = ACTIONS(148), - [anon_sym_21] = ACTIONS(148), - [anon_sym_power] = ACTIONS(148), - [anon_sym_22] = ACTIONS(148), - [anon_sym_logarithm] = ACTIONS(148), - [anon_sym_23] = ACTIONS(148), - [anon_sym_minimum] = ACTIONS(148), - [anon_sym_24] = ACTIONS(148), - [anon_sym_maximum] = ACTIONS(148), - [anon_sym_25] = ACTIONS(148), - [anon_sym_atangent] = ACTIONS(148), - [anon_sym_26] = ACTIONS(148), - [anon_sym_length] = ACTIONS(148), - [anon_sym_27] = ACTIONS(148), - [anon_sym_shape] = ACTIONS(148), - [anon_sym_28] = ACTIONS(148), - [anon_sym_range] = ACTIONS(148), - [anon_sym_29] = ACTIONS(148), - [anon_sym_first] = ACTIONS(148), - [anon_sym_30] = ACTIONS(148), - [anon_sym_reverse] = ACTIONS(148), - [anon_sym_31] = ACTIONS(148), - [anon_sym_deshape] = ACTIONS(148), - [anon_sym_32] = ACTIONS(148), - [anon_sym_bits] = ACTIONS(148), - [anon_sym_33] = ACTIONS(148), - [anon_sym_transpose] = ACTIONS(148), - [anon_sym_34] = ACTIONS(148), - [anon_sym_rise] = ACTIONS(148), - [anon_sym_35] = ACTIONS(148), - [anon_sym_fall] = ACTIONS(148), - [anon_sym_36] = ACTIONS(148), - [anon_sym_where] = ACTIONS(148), - [anon_sym_37] = ACTIONS(148), - [anon_sym_classify] = ACTIONS(148), - [anon_sym_38] = ACTIONS(148), - [anon_sym_deduplicate] = ACTIONS(148), - [anon_sym_39] = ACTIONS(148), - [anon_sym_box] = ACTIONS(148), - [anon_sym_40] = ACTIONS(148), - [anon_sym_unbox] = ACTIONS(148), - [anon_sym_41] = ACTIONS(148), - [anon_sym_match] = ACTIONS(148), - [anon_sym_42] = ACTIONS(148), - [anon_sym_couple] = ACTIONS(148), - [anon_sym_43] = ACTIONS(148), - [anon_sym_join] = ACTIONS(148), - [anon_sym_44] = ACTIONS(148), - [anon_sym_select] = ACTIONS(148), - [anon_sym_45] = ACTIONS(148), - [anon_sym_pick] = ACTIONS(148), - [anon_sym_46] = ACTIONS(148), - [anon_sym_reshape] = ACTIONS(148), - [anon_sym_47] = ACTIONS(148), - [anon_sym_take] = ACTIONS(148), - [anon_sym_48] = ACTIONS(148), - [anon_sym_drop] = ACTIONS(148), - [anon_sym_49] = ACTIONS(148), - [anon_sym_rotate] = ACTIONS(148), - [anon_sym_50] = ACTIONS(148), - [anon_sym_windows] = ACTIONS(148), - [anon_sym_51] = ACTIONS(148), - [anon_sym_keep] = ACTIONS(148), - [anon_sym_52] = ACTIONS(148), - [anon_sym_find] = ACTIONS(148), - [anon_sym_53] = ACTIONS(148), - [anon_sym_member] = ACTIONS(148), - [anon_sym_54] = ACTIONS(148), - [anon_sym_indexof] = ACTIONS(148), - [anon_sym_55] = ACTIONS(148), - [anon_sym_assert] = ACTIONS(148), - [anon_sym_56] = ACTIONS(148), - [anon_sym_wait] = ACTIONS(148), - [anon_sym_break] = ACTIONS(148), - [anon_sym_57] = ACTIONS(148), - [anon_sym_parse] = ACTIONS(148), - [anon_sym_random] = ACTIONS(148), - [anon_sym_58] = ACTIONS(148), - [anon_sym_gen] = ACTIONS(148), - [anon_sym_deal] = ACTIONS(148), - [anon_sym_tag] = ACTIONS(148), - [anon_sym_now] = ACTIONS(148), - [anon_sym_type] = ACTIONS(148), - [anon_sym_59] = ACTIONS(148), - [anon_sym_dump] = ACTIONS(148), - [anon_sym_regex] = ACTIONS(148), - [anon_sym_utf] = ACTIONS(148), - [anon_sym_rock] = ACTIONS(148), - [anon_sym_60] = ACTIONS(148), - [anon_sym_surface] = ACTIONS(148), - [anon_sym_TILDE] = ACTIONS(148), - [anon_sym_deep] = ACTIONS(148), - [anon_sym_de] = ACTIONS(150), - [anon_sym_61] = ACTIONS(148), - [anon_sym_abyss] = ACTIONS(148), - [anon_sym_ab] = ACTIONS(150), - [anon_sym_62] = ACTIONS(148), - [anon_sym_seabed] = ACTIONS(148), - [anon_sym_se] = ACTIONS(150), - [anon_sym_63] = ACTIONS(148), - [anon_sym_send] = ACTIONS(148), - [anon_sym_recv] = ACTIONS(148), - [anon_sym_tryrecv] = ACTIONS(148), - [anon_sym_reduce] = ACTIONS(152), - [anon_sym_SLASH] = ACTIONS(152), - [anon_sym_scan] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_each] = ACTIONS(152), - [anon_sym_64] = ACTIONS(152), - [anon_sym_rows] = ACTIONS(152), - [anon_sym_65] = ACTIONS(152), - [anon_sym_repeat] = ACTIONS(152), - [anon_sym_66] = ACTIONS(152), - [anon_sym_dip] = ACTIONS(152), - [anon_sym_di] = ACTIONS(154), - [anon_sym_67] = ACTIONS(152), - [anon_sym_gap] = ACTIONS(152), - [anon_sym_ga] = ACTIONS(154), - [anon_sym_68] = ACTIONS(152), - [anon_sym_oust] = ACTIONS(152), - [anon_sym_69] = ACTIONS(152), - [anon_sym_invert] = ACTIONS(152), - [anon_sym_70] = ACTIONS(152), - [anon_sym_spawn] = ACTIONS(152), - [anon_sym_pack] = ACTIONS(152), - [anon_sym_71] = ACTIONS(152), - [anon_sym_tribute] = ACTIONS(152), - [anon_sym_72] = ACTIONS(152), - [anon_sym_fold] = ACTIONS(156), - [anon_sym_73] = ACTIONS(156), - [anon_sym_distribute] = ACTIONS(156), - [anon_sym_74] = ACTIONS(156), - [anon_sym_table] = ACTIONS(156), - [anon_sym_75] = ACTIONS(156), - [anon_sym_cross] = ACTIONS(156), - [anon_sym_76] = ACTIONS(156), - [anon_sym_group] = ACTIONS(156), - [anon_sym_77] = ACTIONS(156), - [anon_sym_partition] = ACTIONS(156), - [anon_sym_78] = ACTIONS(156), - [anon_sym_both] = ACTIONS(156), - [anon_sym_79] = ACTIONS(156), - [anon_sym_bracket] = ACTIONS(156), - [anon_sym_80] = ACTIONS(156), - [anon_sym_fork] = ACTIONS(156), - [anon_sym_81] = ACTIONS(156), - [anon_sym_under] = ACTIONS(156), - [anon_sym_82] = ACTIONS(156), - [anon_sym_level] = ACTIONS(156), - [anon_sym_83] = ACTIONS(156), - [anon_sym_fill] = ACTIONS(156), - [anon_sym_84] = ACTIONS(156), - [anon_sym_bind] = ACTIONS(156), - [anon_sym_SQUOTE] = ACTIONS(156), - [anon_sym_QMARK] = ACTIONS(156), - [anon_sym_try] = ACTIONS(158), - [anon_sym_85] = ACTIONS(156), - [anon_sym_combinate] = ACTIONS(156), - [anon_sym_86] = ACTIONS(156), - [anon_sym_87] = ACTIONS(160), - [anon_sym_88] = ACTIONS(160), - [anon_sym_89] = ACTIONS(160), - [anon_sym_90] = ACTIONS(160), - [anon_sym_91] = ACTIONS(160), - [anon_sym_92] = ACTIONS(160), - [anon_sym_93] = ACTIONS(160), + [sym_identifier] = ACTIONS(121), + [sym_identifier_deprecated] = ACTIONS(121), + [sym_system] = ACTIONS(117), + [sym_comment] = ACTIONS(123), + [sym_openParen] = ACTIONS(125), + [sym_openCurly] = ACTIONS(129), + [sym_openBracket] = ACTIONS(131), + [sym_leftArrow] = ACTIONS(135), + [anon_sym_CARET] = ACTIONS(137), + [anon_sym_eta] = ACTIONS(139), + [anon_sym_] = ACTIONS(141), + [anon_sym_pi] = ACTIONS(141), + [anon_sym_2] = ACTIONS(141), + [anon_sym_tau] = ACTIONS(139), + [anon_sym_3] = ACTIONS(141), + [anon_sym_infinity] = ACTIONS(139), + [anon_sym_4] = ACTIONS(139), + [anon_sym_e] = ACTIONS(141), + [anon_sym_NaN] = ACTIONS(141), + [anon_sym_NumProcs] = ACTIONS(141), + [anon_sym_DOT] = ACTIONS(143), + [anon_sym_COMMA] = ACTIONS(143), + [anon_sym_5] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_identity] = ACTIONS(143), + [anon_sym_id] = ACTIONS(145), + [anon_sym_6] = ACTIONS(143), + [anon_sym_not] = ACTIONS(143), + [anon_sym_7] = ACTIONS(143), + [anon_sym_sign] = ACTIONS(143), + [anon_sym_8] = ACTIONS(143), + [anon_sym_BQUOTE] = ACTIONS(143), + [anon_sym_9] = ACTIONS(143), + [anon_sym_absolutevalue] = ACTIONS(143), + [anon_sym_10] = ACTIONS(143), + [anon_sym_sqrt] = ACTIONS(143), + [anon_sym_11] = ACTIONS(143), + [anon_sym_sine] = ACTIONS(143), + [anon_sym_12] = ACTIONS(143), + [anon_sym_floor] = ACTIONS(143), + [anon_sym_13] = ACTIONS(143), + [anon_sym_ceiling] = ACTIONS(143), + [anon_sym_14] = ACTIONS(143), + [anon_sym_round] = ACTIONS(143), + [anon_sym_15] = ACTIONS(143), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_16] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_17] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_18] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_19] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_20] = ACTIONS(143), + [anon_sym_modulus] = ACTIONS(143), + [anon_sym_21] = ACTIONS(143), + [anon_sym_power] = ACTIONS(143), + [anon_sym_22] = ACTIONS(143), + [anon_sym_logarithm] = ACTIONS(143), + [anon_sym_23] = ACTIONS(143), + [anon_sym_minimum] = ACTIONS(143), + [anon_sym_24] = ACTIONS(143), + [anon_sym_maximum] = ACTIONS(143), + [anon_sym_25] = ACTIONS(143), + [anon_sym_atangent] = ACTIONS(143), + [anon_sym_26] = ACTIONS(143), + [anon_sym_length] = ACTIONS(143), + [anon_sym_27] = ACTIONS(143), + [anon_sym_shape] = ACTIONS(143), + [anon_sym_28] = ACTIONS(143), + [anon_sym_range] = ACTIONS(143), + [anon_sym_29] = ACTIONS(143), + [anon_sym_first] = ACTIONS(143), + [anon_sym_30] = ACTIONS(143), + [anon_sym_reverse] = ACTIONS(143), + [anon_sym_31] = ACTIONS(143), + [anon_sym_deshape] = ACTIONS(143), + [anon_sym_32] = ACTIONS(143), + [anon_sym_bits] = ACTIONS(143), + [anon_sym_33] = ACTIONS(143), + [anon_sym_transpose] = ACTIONS(143), + [anon_sym_34] = ACTIONS(143), + [anon_sym_rise] = ACTIONS(143), + [anon_sym_35] = ACTIONS(143), + [anon_sym_fall] = ACTIONS(143), + [anon_sym_36] = ACTIONS(143), + [anon_sym_where] = ACTIONS(143), + [anon_sym_37] = ACTIONS(143), + [anon_sym_classify] = ACTIONS(143), + [anon_sym_38] = ACTIONS(143), + [anon_sym_deduplicate] = ACTIONS(143), + [anon_sym_39] = ACTIONS(143), + [anon_sym_box] = ACTIONS(143), + [anon_sym_40] = ACTIONS(143), + [anon_sym_unbox] = ACTIONS(143), + [anon_sym_41] = ACTIONS(143), + [anon_sym_match] = ACTIONS(143), + [anon_sym_42] = ACTIONS(143), + [anon_sym_couple] = ACTIONS(143), + [anon_sym_43] = ACTIONS(143), + [anon_sym_join] = ACTIONS(143), + [anon_sym_44] = ACTIONS(143), + [anon_sym_select] = ACTIONS(143), + [anon_sym_45] = ACTIONS(143), + [anon_sym_pick] = ACTIONS(143), + [anon_sym_46] = ACTIONS(143), + [anon_sym_reshape] = ACTIONS(143), + [anon_sym_47] = ACTIONS(143), + [anon_sym_take] = ACTIONS(143), + [anon_sym_48] = ACTIONS(143), + [anon_sym_drop] = ACTIONS(143), + [anon_sym_49] = ACTIONS(143), + [anon_sym_rotate] = ACTIONS(143), + [anon_sym_50] = ACTIONS(143), + [anon_sym_windows] = ACTIONS(143), + [anon_sym_51] = ACTIONS(143), + [anon_sym_keep] = ACTIONS(143), + [anon_sym_52] = ACTIONS(143), + [anon_sym_find] = ACTIONS(143), + [anon_sym_53] = ACTIONS(143), + [anon_sym_member] = ACTIONS(143), + [anon_sym_54] = ACTIONS(143), + [anon_sym_indexof] = ACTIONS(143), + [anon_sym_55] = ACTIONS(143), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_56] = ACTIONS(143), + [anon_sym_wait] = ACTIONS(143), + [anon_sym_break] = ACTIONS(143), + [anon_sym_57] = ACTIONS(143), + [anon_sym_parse] = ACTIONS(143), + [anon_sym_random] = ACTIONS(143), + [anon_sym_58] = ACTIONS(143), + [anon_sym_gen] = ACTIONS(143), + [anon_sym_deal] = ACTIONS(143), + [anon_sym_tag] = ACTIONS(143), + [anon_sym_now] = ACTIONS(143), + [anon_sym_type] = ACTIONS(143), + [anon_sym_59] = ACTIONS(143), + [anon_sym_dump] = ACTIONS(143), + [anon_sym_regex] = ACTIONS(143), + [anon_sym_utf] = ACTIONS(143), + [anon_sym_rock] = ACTIONS(143), + [anon_sym_60] = ACTIONS(143), + [anon_sym_surface] = ACTIONS(143), + [anon_sym_TILDE] = ACTIONS(143), + [anon_sym_deep] = ACTIONS(143), + [anon_sym_de] = ACTIONS(145), + [anon_sym_61] = ACTIONS(143), + [anon_sym_abyss] = ACTIONS(143), + [anon_sym_ab] = ACTIONS(145), + [anon_sym_62] = ACTIONS(143), + [anon_sym_seabed] = ACTIONS(143), + [anon_sym_se] = ACTIONS(145), + [anon_sym_63] = ACTIONS(143), + [anon_sym_send] = ACTIONS(143), + [anon_sym_recv] = ACTIONS(143), + [anon_sym_tryrecv] = ACTIONS(143), + [anon_sym_reduce] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_scan] = ACTIONS(147), + [anon_sym_BSLASH] = ACTIONS(147), + [anon_sym_each] = ACTIONS(147), + [anon_sym_64] = ACTIONS(147), + [anon_sym_rows] = ACTIONS(147), + [anon_sym_65] = ACTIONS(147), + [anon_sym_repeat] = ACTIONS(147), + [anon_sym_66] = ACTIONS(147), + [anon_sym_dip] = ACTIONS(147), + [anon_sym_67] = ACTIONS(147), + [anon_sym_gap] = ACTIONS(147), + [anon_sym_68] = ACTIONS(147), + [anon_sym_69] = ACTIONS(147), + [anon_sym_invert] = ACTIONS(147), + [anon_sym_70] = ACTIONS(147), + [anon_sym_spawn] = ACTIONS(147), + [anon_sym_pack] = ACTIONS(147), + [anon_sym_71] = ACTIONS(147), + [anon_sym_tribute] = ACTIONS(147), + [anon_sym_72] = ACTIONS(147), + [anon_sym_reach] = ACTIONS(147), + [anon_sym_fold] = ACTIONS(149), + [anon_sym_73] = ACTIONS(149), + [anon_sym_distribute] = ACTIONS(149), + [anon_sym_74] = ACTIONS(149), + [anon_sym_table] = ACTIONS(149), + [anon_sym_75] = ACTIONS(149), + [anon_sym_cross] = ACTIONS(149), + [anon_sym_76] = ACTIONS(149), + [anon_sym_group] = ACTIONS(149), + [anon_sym_77] = ACTIONS(149), + [anon_sym_partition] = ACTIONS(149), + [anon_sym_78] = ACTIONS(149), + [anon_sym_both] = ACTIONS(149), + [anon_sym_79] = ACTIONS(149), + [anon_sym_bracket] = ACTIONS(149), + [anon_sym_80] = ACTIONS(149), + [anon_sym_fork] = ACTIONS(149), + [anon_sym_81] = ACTIONS(149), + [anon_sym_under] = ACTIONS(149), + [anon_sym_82] = ACTIONS(149), + [anon_sym_level] = ACTIONS(149), + [anon_sym_83] = ACTIONS(149), + [anon_sym_fill] = ACTIONS(149), + [anon_sym_84] = ACTIONS(149), + [anon_sym_bind] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_try] = ACTIONS(151), + [anon_sym_85] = ACTIONS(149), + [anon_sym_combinate] = ACTIONS(149), + [anon_sym_86] = ACTIONS(149), + [anon_sym_87] = ACTIONS(153), + [anon_sym_88] = ACTIONS(153), + [anon_sym_89] = ACTIONS(153), + [anon_sym_90] = ACTIONS(153), + [anon_sym_91] = ACTIONS(153), + [anon_sym_92] = ACTIONS(153), + [anon_sym_93] = ACTIONS(153), [sym__whitespace] = ACTIONS(5), [sym__end_of_line] = ACTIONS(5), }, @@ -17943,7 +17837,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_modifier2] = STATE(83), [sym_deprecated] = STATE(94), [aux_sym_array_repeat1] = STATE(55), - [ts_builtin_sym_end] = ACTIONS(132), + [ts_builtin_sym_end] = ACTIONS(127), [aux_sym_number_token1] = ACTIONS(7), [anon_sym_os] = ACTIONS(9), [anon_sym_Family] = ACTIONS(9), @@ -18129,12 +18023,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_repeat] = ACTIONS(41), [anon_sym_66] = ACTIONS(41), [anon_sym_dip] = ACTIONS(41), - [anon_sym_di] = ACTIONS(43), [anon_sym_67] = ACTIONS(41), [anon_sym_gap] = ACTIONS(41), - [anon_sym_ga] = ACTIONS(43), [anon_sym_68] = ACTIONS(41), - [anon_sym_oust] = ACTIONS(41), [anon_sym_69] = ACTIONS(41), [anon_sym_invert] = ACTIONS(41), [anon_sym_70] = ACTIONS(41), @@ -18143,46 +18034,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_71] = ACTIONS(41), [anon_sym_tribute] = ACTIONS(41), [anon_sym_72] = ACTIONS(41), - [anon_sym_fold] = ACTIONS(45), - [anon_sym_73] = ACTIONS(45), - [anon_sym_distribute] = ACTIONS(45), - [anon_sym_74] = ACTIONS(45), - [anon_sym_table] = ACTIONS(45), - [anon_sym_75] = ACTIONS(45), - [anon_sym_cross] = ACTIONS(45), - [anon_sym_76] = ACTIONS(45), - [anon_sym_group] = ACTIONS(45), - [anon_sym_77] = ACTIONS(45), - [anon_sym_partition] = ACTIONS(45), - [anon_sym_78] = ACTIONS(45), - [anon_sym_both] = ACTIONS(45), - [anon_sym_79] = ACTIONS(45), - [anon_sym_bracket] = ACTIONS(45), - [anon_sym_80] = ACTIONS(45), - [anon_sym_fork] = ACTIONS(45), - [anon_sym_81] = ACTIONS(45), - [anon_sym_under] = ACTIONS(45), - [anon_sym_82] = ACTIONS(45), - [anon_sym_level] = ACTIONS(45), - [anon_sym_83] = ACTIONS(45), - [anon_sym_fill] = ACTIONS(45), - [anon_sym_84] = ACTIONS(45), - [anon_sym_bind] = ACTIONS(45), - [anon_sym_SQUOTE] = ACTIONS(45), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_try] = ACTIONS(47), - [anon_sym_85] = ACTIONS(45), - [anon_sym_combinate] = ACTIONS(45), - [anon_sym_86] = ACTIONS(45), - [anon_sym_87] = ACTIONS(49), - [anon_sym_88] = ACTIONS(49), - [anon_sym_89] = ACTIONS(49), - [anon_sym_90] = ACTIONS(49), - [anon_sym_91] = ACTIONS(49), - [anon_sym_92] = ACTIONS(49), - [anon_sym_93] = ACTIONS(49), + [anon_sym_reach] = ACTIONS(41), + [anon_sym_fold] = ACTIONS(43), + [anon_sym_73] = ACTIONS(43), + [anon_sym_distribute] = ACTIONS(43), + [anon_sym_74] = ACTIONS(43), + [anon_sym_table] = ACTIONS(43), + [anon_sym_75] = ACTIONS(43), + [anon_sym_cross] = ACTIONS(43), + [anon_sym_76] = ACTIONS(43), + [anon_sym_group] = ACTIONS(43), + [anon_sym_77] = ACTIONS(43), + [anon_sym_partition] = ACTIONS(43), + [anon_sym_78] = ACTIONS(43), + [anon_sym_both] = ACTIONS(43), + [anon_sym_79] = ACTIONS(43), + [anon_sym_bracket] = ACTIONS(43), + [anon_sym_80] = ACTIONS(43), + [anon_sym_fork] = ACTIONS(43), + [anon_sym_81] = ACTIONS(43), + [anon_sym_under] = ACTIONS(43), + [anon_sym_82] = ACTIONS(43), + [anon_sym_level] = ACTIONS(43), + [anon_sym_83] = ACTIONS(43), + [anon_sym_fill] = ACTIONS(43), + [anon_sym_84] = ACTIONS(43), + [anon_sym_bind] = ACTIONS(43), + [anon_sym_SQUOTE] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_85] = ACTIONS(43), + [anon_sym_combinate] = ACTIONS(43), + [anon_sym_86] = ACTIONS(43), + [anon_sym_87] = ACTIONS(47), + [anon_sym_88] = ACTIONS(47), + [anon_sym_89] = ACTIONS(47), + [anon_sym_90] = ACTIONS(47), + [anon_sym_91] = ACTIONS(47), + [anon_sym_92] = ACTIONS(47), + [anon_sym_93] = ACTIONS(47), [sym__whitespace] = ACTIONS(5), - [sym__end_of_line] = ACTIONS(132), + [sym__end_of_line] = ACTIONS(127), }, [45] = { [sym_term] = STATE(132), @@ -18203,242 +18095,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_deprecated] = STATE(147), [aux_sym_switchFunctions_repeat1] = STATE(48), [aux_sym_array_repeat1] = STATE(52), - [aux_sym_number_token1] = ACTIONS(325), - [anon_sym_os] = ACTIONS(327), - [anon_sym_Family] = ACTIONS(327), - [anon_sym_Arch] = ACTIONS(327), - [anon_sym_ExeExt] = ACTIONS(327), - [anon_sym_PllExt] = ACTIONS(327), - [anon_sym_Sep] = ACTIONS(327), - [aux_sym_character_token1] = ACTIONS(329), - [sym_string] = ACTIONS(331), - [sym_multiLineString] = ACTIONS(331), + [aux_sym_number_token1] = ACTIONS(312), + [anon_sym_os] = ACTIONS(314), + [anon_sym_Family] = ACTIONS(314), + [anon_sym_Arch] = ACTIONS(314), + [anon_sym_ExeExt] = ACTIONS(314), + [anon_sym_PllExt] = ACTIONS(314), + [anon_sym_Sep] = ACTIONS(314), + [aux_sym_character_token1] = ACTIONS(316), + [sym_string] = ACTIONS(318), + [sym_multiLineString] = ACTIONS(318), [anon_sym_PIPE] = ACTIONS(15), - [sym_identifier] = ACTIONS(333), - [sym_identifier_deprecated] = ACTIONS(333), - [sym_system] = ACTIONS(331), + [sym_identifier] = ACTIONS(320), + [sym_identifier_deprecated] = ACTIONS(320), + [sym_system] = ACTIONS(318), [sym_comment] = ACTIONS(3), - [sym_openParen] = ACTIONS(335), - [sym_openCurly] = ACTIONS(337), - [sym_openBracket] = ACTIONS(339), - [anon_sym_CARET] = ACTIONS(341), - [anon_sym_eta] = ACTIONS(343), - [anon_sym_] = ACTIONS(345), - [anon_sym_pi] = ACTIONS(345), - [anon_sym_2] = ACTIONS(345), - [anon_sym_tau] = ACTIONS(343), - [anon_sym_3] = ACTIONS(345), - [anon_sym_infinity] = ACTIONS(343), - [anon_sym_4] = ACTIONS(343), - [anon_sym_e] = ACTIONS(345), - [anon_sym_NaN] = ACTIONS(345), - [anon_sym_NumProcs] = ACTIONS(345), - [anon_sym_DOT] = ACTIONS(347), - [anon_sym_COMMA] = ACTIONS(347), - [anon_sym_5] = ACTIONS(347), - [anon_sym_SEMI] = ACTIONS(347), - [anon_sym_identity] = ACTIONS(347), - [anon_sym_id] = ACTIONS(349), - [anon_sym_6] = ACTIONS(347), - [anon_sym_not] = ACTIONS(347), - [anon_sym_7] = ACTIONS(347), - [anon_sym_sign] = ACTIONS(347), - [anon_sym_8] = ACTIONS(347), - [anon_sym_BQUOTE] = ACTIONS(347), - [anon_sym_9] = ACTIONS(347), - [anon_sym_absolutevalue] = ACTIONS(347), - [anon_sym_10] = ACTIONS(347), - [anon_sym_sqrt] = ACTIONS(347), - [anon_sym_11] = ACTIONS(347), - [anon_sym_sine] = ACTIONS(347), - [anon_sym_12] = ACTIONS(347), - [anon_sym_floor] = ACTIONS(347), - [anon_sym_13] = ACTIONS(347), - [anon_sym_ceiling] = ACTIONS(347), - [anon_sym_14] = ACTIONS(347), - [anon_sym_round] = ACTIONS(347), - [anon_sym_15] = ACTIONS(347), - [anon_sym_EQ] = ACTIONS(347), - [anon_sym_BANG_EQ] = ACTIONS(347), - [anon_sym_16] = ACTIONS(347), - [anon_sym_LT] = ACTIONS(349), - [anon_sym_LT_EQ] = ACTIONS(347), - [anon_sym_17] = ACTIONS(347), - [anon_sym_GT] = ACTIONS(349), - [anon_sym_GT_EQ] = ACTIONS(347), - [anon_sym_18] = ACTIONS(347), - [anon_sym_PLUS] = ACTIONS(347), - [anon_sym_DASH] = ACTIONS(347), - [anon_sym_STAR] = ACTIONS(347), - [anon_sym_19] = ACTIONS(347), - [anon_sym_PERCENT] = ACTIONS(347), - [anon_sym_20] = ACTIONS(347), - [anon_sym_modulus] = ACTIONS(347), - [anon_sym_21] = ACTIONS(347), - [anon_sym_power] = ACTIONS(347), - [anon_sym_22] = ACTIONS(347), - [anon_sym_logarithm] = ACTIONS(347), - [anon_sym_23] = ACTIONS(347), - [anon_sym_minimum] = ACTIONS(347), - [anon_sym_24] = ACTIONS(347), - [anon_sym_maximum] = ACTIONS(347), - [anon_sym_25] = ACTIONS(347), - [anon_sym_atangent] = ACTIONS(347), - [anon_sym_26] = ACTIONS(347), - [anon_sym_length] = ACTIONS(347), - [anon_sym_27] = ACTIONS(347), - [anon_sym_shape] = ACTIONS(347), - [anon_sym_28] = ACTIONS(347), - [anon_sym_range] = ACTIONS(347), - [anon_sym_29] = ACTIONS(347), - [anon_sym_first] = ACTIONS(347), - [anon_sym_30] = ACTIONS(347), - [anon_sym_reverse] = ACTIONS(347), - [anon_sym_31] = ACTIONS(347), - [anon_sym_deshape] = ACTIONS(347), - [anon_sym_32] = ACTIONS(347), - [anon_sym_bits] = ACTIONS(347), - [anon_sym_33] = ACTIONS(347), - [anon_sym_transpose] = ACTIONS(347), - [anon_sym_34] = ACTIONS(347), - [anon_sym_rise] = ACTIONS(347), - [anon_sym_35] = ACTIONS(347), - [anon_sym_fall] = ACTIONS(347), - [anon_sym_36] = ACTIONS(347), - [anon_sym_where] = ACTIONS(347), - [anon_sym_37] = ACTIONS(347), - [anon_sym_classify] = ACTIONS(347), - [anon_sym_38] = ACTIONS(347), - [anon_sym_deduplicate] = ACTIONS(347), - [anon_sym_39] = ACTIONS(347), - [anon_sym_box] = ACTIONS(347), - [anon_sym_40] = ACTIONS(347), - [anon_sym_unbox] = ACTIONS(347), - [anon_sym_41] = ACTIONS(347), - [anon_sym_match] = ACTIONS(347), - [anon_sym_42] = ACTIONS(347), - [anon_sym_couple] = ACTIONS(347), - [anon_sym_43] = ACTIONS(347), - [anon_sym_join] = ACTIONS(347), - [anon_sym_44] = ACTIONS(347), - [anon_sym_select] = ACTIONS(347), - [anon_sym_45] = ACTIONS(347), - [anon_sym_pick] = ACTIONS(347), - [anon_sym_46] = ACTIONS(347), - [anon_sym_reshape] = ACTIONS(347), - [anon_sym_47] = ACTIONS(347), - [anon_sym_take] = ACTIONS(347), - [anon_sym_48] = ACTIONS(347), - [anon_sym_drop] = ACTIONS(347), - [anon_sym_49] = ACTIONS(347), - [anon_sym_rotate] = ACTIONS(347), - [anon_sym_50] = ACTIONS(347), - [anon_sym_windows] = ACTIONS(347), - [anon_sym_51] = ACTIONS(347), - [anon_sym_keep] = ACTIONS(347), - [anon_sym_52] = ACTIONS(347), - [anon_sym_find] = ACTIONS(347), - [anon_sym_53] = ACTIONS(347), - [anon_sym_member] = ACTIONS(347), - [anon_sym_54] = ACTIONS(347), - [anon_sym_indexof] = ACTIONS(347), - [anon_sym_55] = ACTIONS(347), - [anon_sym_assert] = ACTIONS(347), - [anon_sym_56] = ACTIONS(347), - [anon_sym_wait] = ACTIONS(347), - [anon_sym_break] = ACTIONS(347), - [anon_sym_57] = ACTIONS(347), - [anon_sym_parse] = ACTIONS(347), - [anon_sym_random] = ACTIONS(347), - [anon_sym_58] = ACTIONS(347), - [anon_sym_gen] = ACTIONS(347), - [anon_sym_deal] = ACTIONS(347), - [anon_sym_tag] = ACTIONS(347), - [anon_sym_now] = ACTIONS(347), - [anon_sym_type] = ACTIONS(347), - [anon_sym_59] = ACTIONS(347), - [anon_sym_dump] = ACTIONS(347), - [anon_sym_regex] = ACTIONS(347), - [anon_sym_utf] = ACTIONS(347), - [anon_sym_rock] = ACTIONS(347), - [anon_sym_60] = ACTIONS(347), - [anon_sym_surface] = ACTIONS(347), - [anon_sym_TILDE] = ACTIONS(347), - [anon_sym_deep] = ACTIONS(347), - [anon_sym_de] = ACTIONS(349), - [anon_sym_61] = ACTIONS(347), - [anon_sym_abyss] = ACTIONS(347), - [anon_sym_ab] = ACTIONS(349), - [anon_sym_62] = ACTIONS(347), - [anon_sym_seabed] = ACTIONS(347), - [anon_sym_se] = ACTIONS(349), - [anon_sym_63] = ACTIONS(347), - [anon_sym_send] = ACTIONS(347), - [anon_sym_recv] = ACTIONS(347), - [anon_sym_tryrecv] = ACTIONS(347), - [anon_sym_reduce] = ACTIONS(351), - [anon_sym_SLASH] = ACTIONS(351), - [anon_sym_scan] = ACTIONS(351), - [anon_sym_BSLASH] = ACTIONS(351), - [anon_sym_each] = ACTIONS(351), - [anon_sym_64] = ACTIONS(351), - [anon_sym_rows] = ACTIONS(351), - [anon_sym_65] = ACTIONS(351), - [anon_sym_repeat] = ACTIONS(351), - [anon_sym_66] = ACTIONS(351), - [anon_sym_dip] = ACTIONS(351), - [anon_sym_di] = ACTIONS(353), - [anon_sym_67] = ACTIONS(351), - [anon_sym_gap] = ACTIONS(351), - [anon_sym_ga] = ACTIONS(353), - [anon_sym_68] = ACTIONS(351), - [anon_sym_oust] = ACTIONS(351), - [anon_sym_69] = ACTIONS(351), - [anon_sym_invert] = ACTIONS(351), - [anon_sym_70] = ACTIONS(351), - [anon_sym_spawn] = ACTIONS(351), - [anon_sym_pack] = ACTIONS(351), - [anon_sym_71] = ACTIONS(351), - [anon_sym_tribute] = ACTIONS(351), - [anon_sym_72] = ACTIONS(351), - [anon_sym_fold] = ACTIONS(355), - [anon_sym_73] = ACTIONS(355), - [anon_sym_distribute] = ACTIONS(355), - [anon_sym_74] = ACTIONS(355), - [anon_sym_table] = ACTIONS(355), - [anon_sym_75] = ACTIONS(355), - [anon_sym_cross] = ACTIONS(355), - [anon_sym_76] = ACTIONS(355), - [anon_sym_group] = ACTIONS(355), - [anon_sym_77] = ACTIONS(355), - [anon_sym_partition] = ACTIONS(355), - [anon_sym_78] = ACTIONS(355), - [anon_sym_both] = ACTIONS(355), - [anon_sym_79] = ACTIONS(355), - [anon_sym_bracket] = ACTIONS(355), - [anon_sym_80] = ACTIONS(355), - [anon_sym_fork] = ACTIONS(355), - [anon_sym_81] = ACTIONS(355), - [anon_sym_under] = ACTIONS(355), - [anon_sym_82] = ACTIONS(355), - [anon_sym_level] = ACTIONS(355), - [anon_sym_83] = ACTIONS(355), - [anon_sym_fill] = ACTIONS(355), - [anon_sym_84] = ACTIONS(355), - [anon_sym_bind] = ACTIONS(355), - [anon_sym_SQUOTE] = ACTIONS(355), - [anon_sym_QMARK] = ACTIONS(355), - [anon_sym_try] = ACTIONS(357), - [anon_sym_85] = ACTIONS(355), - [anon_sym_combinate] = ACTIONS(355), - [anon_sym_86] = ACTIONS(355), - [anon_sym_87] = ACTIONS(359), - [anon_sym_88] = ACTIONS(359), - [anon_sym_89] = ACTIONS(359), - [anon_sym_90] = ACTIONS(359), - [anon_sym_91] = ACTIONS(359), - [anon_sym_92] = ACTIONS(359), - [anon_sym_93] = ACTIONS(359), + [sym_openParen] = ACTIONS(322), + [sym_openCurly] = ACTIONS(324), + [sym_openBracket] = ACTIONS(326), + [anon_sym_CARET] = ACTIONS(328), + [anon_sym_eta] = ACTIONS(330), + [anon_sym_] = ACTIONS(332), + [anon_sym_pi] = ACTIONS(332), + [anon_sym_2] = ACTIONS(332), + [anon_sym_tau] = ACTIONS(330), + [anon_sym_3] = ACTIONS(332), + [anon_sym_infinity] = ACTIONS(330), + [anon_sym_4] = ACTIONS(330), + [anon_sym_e] = ACTIONS(332), + [anon_sym_NaN] = ACTIONS(332), + [anon_sym_NumProcs] = ACTIONS(332), + [anon_sym_DOT] = ACTIONS(334), + [anon_sym_COMMA] = ACTIONS(334), + [anon_sym_5] = ACTIONS(334), + [anon_sym_SEMI] = ACTIONS(334), + [anon_sym_identity] = ACTIONS(334), + [anon_sym_id] = ACTIONS(336), + [anon_sym_6] = ACTIONS(334), + [anon_sym_not] = ACTIONS(334), + [anon_sym_7] = ACTIONS(334), + [anon_sym_sign] = ACTIONS(334), + [anon_sym_8] = ACTIONS(334), + [anon_sym_BQUOTE] = ACTIONS(334), + [anon_sym_9] = ACTIONS(334), + [anon_sym_absolutevalue] = ACTIONS(334), + [anon_sym_10] = ACTIONS(334), + [anon_sym_sqrt] = ACTIONS(334), + [anon_sym_11] = ACTIONS(334), + [anon_sym_sine] = ACTIONS(334), + [anon_sym_12] = ACTIONS(334), + [anon_sym_floor] = ACTIONS(334), + [anon_sym_13] = ACTIONS(334), + [anon_sym_ceiling] = ACTIONS(334), + [anon_sym_14] = ACTIONS(334), + [anon_sym_round] = ACTIONS(334), + [anon_sym_15] = ACTIONS(334), + [anon_sym_EQ] = ACTIONS(334), + [anon_sym_BANG_EQ] = ACTIONS(334), + [anon_sym_16] = ACTIONS(334), + [anon_sym_LT] = ACTIONS(336), + [anon_sym_LT_EQ] = ACTIONS(334), + [anon_sym_17] = ACTIONS(334), + [anon_sym_GT] = ACTIONS(336), + [anon_sym_GT_EQ] = ACTIONS(334), + [anon_sym_18] = ACTIONS(334), + [anon_sym_PLUS] = ACTIONS(334), + [anon_sym_DASH] = ACTIONS(334), + [anon_sym_STAR] = ACTIONS(334), + [anon_sym_19] = ACTIONS(334), + [anon_sym_PERCENT] = ACTIONS(334), + [anon_sym_20] = ACTIONS(334), + [anon_sym_modulus] = ACTIONS(334), + [anon_sym_21] = ACTIONS(334), + [anon_sym_power] = ACTIONS(334), + [anon_sym_22] = ACTIONS(334), + [anon_sym_logarithm] = ACTIONS(334), + [anon_sym_23] = ACTIONS(334), + [anon_sym_minimum] = ACTIONS(334), + [anon_sym_24] = ACTIONS(334), + [anon_sym_maximum] = ACTIONS(334), + [anon_sym_25] = ACTIONS(334), + [anon_sym_atangent] = ACTIONS(334), + [anon_sym_26] = ACTIONS(334), + [anon_sym_length] = ACTIONS(334), + [anon_sym_27] = ACTIONS(334), + [anon_sym_shape] = ACTIONS(334), + [anon_sym_28] = ACTIONS(334), + [anon_sym_range] = ACTIONS(334), + [anon_sym_29] = ACTIONS(334), + [anon_sym_first] = ACTIONS(334), + [anon_sym_30] = ACTIONS(334), + [anon_sym_reverse] = ACTIONS(334), + [anon_sym_31] = ACTIONS(334), + [anon_sym_deshape] = ACTIONS(334), + [anon_sym_32] = ACTIONS(334), + [anon_sym_bits] = ACTIONS(334), + [anon_sym_33] = ACTIONS(334), + [anon_sym_transpose] = ACTIONS(334), + [anon_sym_34] = ACTIONS(334), + [anon_sym_rise] = ACTIONS(334), + [anon_sym_35] = ACTIONS(334), + [anon_sym_fall] = ACTIONS(334), + [anon_sym_36] = ACTIONS(334), + [anon_sym_where] = ACTIONS(334), + [anon_sym_37] = ACTIONS(334), + [anon_sym_classify] = ACTIONS(334), + [anon_sym_38] = ACTIONS(334), + [anon_sym_deduplicate] = ACTIONS(334), + [anon_sym_39] = ACTIONS(334), + [anon_sym_box] = ACTIONS(334), + [anon_sym_40] = ACTIONS(334), + [anon_sym_unbox] = ACTIONS(334), + [anon_sym_41] = ACTIONS(334), + [anon_sym_match] = ACTIONS(334), + [anon_sym_42] = ACTIONS(334), + [anon_sym_couple] = ACTIONS(334), + [anon_sym_43] = ACTIONS(334), + [anon_sym_join] = ACTIONS(334), + [anon_sym_44] = ACTIONS(334), + [anon_sym_select] = ACTIONS(334), + [anon_sym_45] = ACTIONS(334), + [anon_sym_pick] = ACTIONS(334), + [anon_sym_46] = ACTIONS(334), + [anon_sym_reshape] = ACTIONS(334), + [anon_sym_47] = ACTIONS(334), + [anon_sym_take] = ACTIONS(334), + [anon_sym_48] = ACTIONS(334), + [anon_sym_drop] = ACTIONS(334), + [anon_sym_49] = ACTIONS(334), + [anon_sym_rotate] = ACTIONS(334), + [anon_sym_50] = ACTIONS(334), + [anon_sym_windows] = ACTIONS(334), + [anon_sym_51] = ACTIONS(334), + [anon_sym_keep] = ACTIONS(334), + [anon_sym_52] = ACTIONS(334), + [anon_sym_find] = ACTIONS(334), + [anon_sym_53] = ACTIONS(334), + [anon_sym_member] = ACTIONS(334), + [anon_sym_54] = ACTIONS(334), + [anon_sym_indexof] = ACTIONS(334), + [anon_sym_55] = ACTIONS(334), + [anon_sym_assert] = ACTIONS(334), + [anon_sym_56] = ACTIONS(334), + [anon_sym_wait] = ACTIONS(334), + [anon_sym_break] = ACTIONS(334), + [anon_sym_57] = ACTIONS(334), + [anon_sym_parse] = ACTIONS(334), + [anon_sym_random] = ACTIONS(334), + [anon_sym_58] = ACTIONS(334), + [anon_sym_gen] = ACTIONS(334), + [anon_sym_deal] = ACTIONS(334), + [anon_sym_tag] = ACTIONS(334), + [anon_sym_now] = ACTIONS(334), + [anon_sym_type] = ACTIONS(334), + [anon_sym_59] = ACTIONS(334), + [anon_sym_dump] = ACTIONS(334), + [anon_sym_regex] = ACTIONS(334), + [anon_sym_utf] = ACTIONS(334), + [anon_sym_rock] = ACTIONS(334), + [anon_sym_60] = ACTIONS(334), + [anon_sym_surface] = ACTIONS(334), + [anon_sym_TILDE] = ACTIONS(334), + [anon_sym_deep] = ACTIONS(334), + [anon_sym_de] = ACTIONS(336), + [anon_sym_61] = ACTIONS(334), + [anon_sym_abyss] = ACTIONS(334), + [anon_sym_ab] = ACTIONS(336), + [anon_sym_62] = ACTIONS(334), + [anon_sym_seabed] = ACTIONS(334), + [anon_sym_se] = ACTIONS(336), + [anon_sym_63] = ACTIONS(334), + [anon_sym_send] = ACTIONS(334), + [anon_sym_recv] = ACTIONS(334), + [anon_sym_tryrecv] = ACTIONS(334), + [anon_sym_reduce] = ACTIONS(338), + [anon_sym_SLASH] = ACTIONS(338), + [anon_sym_scan] = ACTIONS(338), + [anon_sym_BSLASH] = ACTIONS(338), + [anon_sym_each] = ACTIONS(338), + [anon_sym_64] = ACTIONS(338), + [anon_sym_rows] = ACTIONS(338), + [anon_sym_65] = ACTIONS(338), + [anon_sym_repeat] = ACTIONS(338), + [anon_sym_66] = ACTIONS(338), + [anon_sym_dip] = ACTIONS(338), + [anon_sym_67] = ACTIONS(338), + [anon_sym_gap] = ACTIONS(338), + [anon_sym_68] = ACTIONS(338), + [anon_sym_69] = ACTIONS(338), + [anon_sym_invert] = ACTIONS(338), + [anon_sym_70] = ACTIONS(338), + [anon_sym_spawn] = ACTIONS(338), + [anon_sym_pack] = ACTIONS(338), + [anon_sym_71] = ACTIONS(338), + [anon_sym_tribute] = ACTIONS(338), + [anon_sym_72] = ACTIONS(338), + [anon_sym_reach] = ACTIONS(338), + [anon_sym_fold] = ACTIONS(340), + [anon_sym_73] = ACTIONS(340), + [anon_sym_distribute] = ACTIONS(340), + [anon_sym_74] = ACTIONS(340), + [anon_sym_table] = ACTIONS(340), + [anon_sym_75] = ACTIONS(340), + [anon_sym_cross] = ACTIONS(340), + [anon_sym_76] = ACTIONS(340), + [anon_sym_group] = ACTIONS(340), + [anon_sym_77] = ACTIONS(340), + [anon_sym_partition] = ACTIONS(340), + [anon_sym_78] = ACTIONS(340), + [anon_sym_both] = ACTIONS(340), + [anon_sym_79] = ACTIONS(340), + [anon_sym_bracket] = ACTIONS(340), + [anon_sym_80] = ACTIONS(340), + [anon_sym_fork] = ACTIONS(340), + [anon_sym_81] = ACTIONS(340), + [anon_sym_under] = ACTIONS(340), + [anon_sym_82] = ACTIONS(340), + [anon_sym_level] = ACTIONS(340), + [anon_sym_83] = ACTIONS(340), + [anon_sym_fill] = ACTIONS(340), + [anon_sym_84] = ACTIONS(340), + [anon_sym_bind] = ACTIONS(340), + [anon_sym_SQUOTE] = ACTIONS(340), + [anon_sym_QMARK] = ACTIONS(340), + [anon_sym_try] = ACTIONS(342), + [anon_sym_85] = ACTIONS(340), + [anon_sym_combinate] = ACTIONS(340), + [anon_sym_86] = ACTIONS(340), + [anon_sym_87] = ACTIONS(344), + [anon_sym_88] = ACTIONS(344), + [anon_sym_89] = ACTIONS(344), + [anon_sym_90] = ACTIONS(344), + [anon_sym_91] = ACTIONS(344), + [anon_sym_92] = ACTIONS(344), + [anon_sym_93] = ACTIONS(344), [sym__whitespace] = ACTIONS(5), [sym__end_of_line] = ACTIONS(5), }, @@ -18461,242 +18351,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_deprecated] = STATE(147), [aux_sym_switchFunctions_repeat1] = STATE(48), [aux_sym_array_repeat1] = STATE(52), - [aux_sym_number_token1] = ACTIONS(325), - [anon_sym_os] = ACTIONS(327), - [anon_sym_Family] = ACTIONS(327), - [anon_sym_Arch] = ACTIONS(327), - [anon_sym_ExeExt] = ACTIONS(327), - [anon_sym_PllExt] = ACTIONS(327), - [anon_sym_Sep] = ACTIONS(327), - [aux_sym_character_token1] = ACTIONS(329), - [sym_string] = ACTIONS(331), - [sym_multiLineString] = ACTIONS(331), + [aux_sym_number_token1] = ACTIONS(312), + [anon_sym_os] = ACTIONS(314), + [anon_sym_Family] = ACTIONS(314), + [anon_sym_Arch] = ACTIONS(314), + [anon_sym_ExeExt] = ACTIONS(314), + [anon_sym_PllExt] = ACTIONS(314), + [anon_sym_Sep] = ACTIONS(314), + [aux_sym_character_token1] = ACTIONS(316), + [sym_string] = ACTIONS(318), + [sym_multiLineString] = ACTIONS(318), [anon_sym_PIPE] = ACTIONS(15), - [sym_identifier] = ACTIONS(333), - [sym_identifier_deprecated] = ACTIONS(333), - [sym_system] = ACTIONS(331), + [sym_identifier] = ACTIONS(320), + [sym_identifier_deprecated] = ACTIONS(320), + [sym_system] = ACTIONS(318), [sym_comment] = ACTIONS(3), - [sym_openParen] = ACTIONS(335), - [sym_openCurly] = ACTIONS(337), - [sym_openBracket] = ACTIONS(339), - [anon_sym_CARET] = ACTIONS(341), - [anon_sym_eta] = ACTIONS(343), - [anon_sym_] = ACTIONS(345), - [anon_sym_pi] = ACTIONS(345), - [anon_sym_2] = ACTIONS(345), - [anon_sym_tau] = ACTIONS(343), - [anon_sym_3] = ACTIONS(345), - [anon_sym_infinity] = ACTIONS(343), - [anon_sym_4] = ACTIONS(343), - [anon_sym_e] = ACTIONS(345), - [anon_sym_NaN] = ACTIONS(345), - [anon_sym_NumProcs] = ACTIONS(345), - [anon_sym_DOT] = ACTIONS(347), - [anon_sym_COMMA] = ACTIONS(347), - [anon_sym_5] = ACTIONS(347), - [anon_sym_SEMI] = ACTIONS(347), - [anon_sym_identity] = ACTIONS(347), - [anon_sym_id] = ACTIONS(349), - [anon_sym_6] = ACTIONS(347), - [anon_sym_not] = ACTIONS(347), - [anon_sym_7] = ACTIONS(347), - [anon_sym_sign] = ACTIONS(347), - [anon_sym_8] = ACTIONS(347), - [anon_sym_BQUOTE] = ACTIONS(347), - [anon_sym_9] = ACTIONS(347), - [anon_sym_absolutevalue] = ACTIONS(347), - [anon_sym_10] = ACTIONS(347), - [anon_sym_sqrt] = ACTIONS(347), - [anon_sym_11] = ACTIONS(347), - [anon_sym_sine] = ACTIONS(347), - [anon_sym_12] = ACTIONS(347), - [anon_sym_floor] = ACTIONS(347), - [anon_sym_13] = ACTIONS(347), - [anon_sym_ceiling] = ACTIONS(347), - [anon_sym_14] = ACTIONS(347), - [anon_sym_round] = ACTIONS(347), - [anon_sym_15] = ACTIONS(347), - [anon_sym_EQ] = ACTIONS(347), - [anon_sym_BANG_EQ] = ACTIONS(347), - [anon_sym_16] = ACTIONS(347), - [anon_sym_LT] = ACTIONS(349), - [anon_sym_LT_EQ] = ACTIONS(347), - [anon_sym_17] = ACTIONS(347), - [anon_sym_GT] = ACTIONS(349), - [anon_sym_GT_EQ] = ACTIONS(347), - [anon_sym_18] = ACTIONS(347), - [anon_sym_PLUS] = ACTIONS(347), - [anon_sym_DASH] = ACTIONS(347), - [anon_sym_STAR] = ACTIONS(347), - [anon_sym_19] = ACTIONS(347), - [anon_sym_PERCENT] = ACTIONS(347), - [anon_sym_20] = ACTIONS(347), - [anon_sym_modulus] = ACTIONS(347), - [anon_sym_21] = ACTIONS(347), - [anon_sym_power] = ACTIONS(347), - [anon_sym_22] = ACTIONS(347), - [anon_sym_logarithm] = ACTIONS(347), - [anon_sym_23] = ACTIONS(347), - [anon_sym_minimum] = ACTIONS(347), - [anon_sym_24] = ACTIONS(347), - [anon_sym_maximum] = ACTIONS(347), - [anon_sym_25] = ACTIONS(347), - [anon_sym_atangent] = ACTIONS(347), - [anon_sym_26] = ACTIONS(347), - [anon_sym_length] = ACTIONS(347), - [anon_sym_27] = ACTIONS(347), - [anon_sym_shape] = ACTIONS(347), - [anon_sym_28] = ACTIONS(347), - [anon_sym_range] = ACTIONS(347), - [anon_sym_29] = ACTIONS(347), - [anon_sym_first] = ACTIONS(347), - [anon_sym_30] = ACTIONS(347), - [anon_sym_reverse] = ACTIONS(347), - [anon_sym_31] = ACTIONS(347), - [anon_sym_deshape] = ACTIONS(347), - [anon_sym_32] = ACTIONS(347), - [anon_sym_bits] = ACTIONS(347), - [anon_sym_33] = ACTIONS(347), - [anon_sym_transpose] = ACTIONS(347), - [anon_sym_34] = ACTIONS(347), - [anon_sym_rise] = ACTIONS(347), - [anon_sym_35] = ACTIONS(347), - [anon_sym_fall] = ACTIONS(347), - [anon_sym_36] = ACTIONS(347), - [anon_sym_where] = ACTIONS(347), - [anon_sym_37] = ACTIONS(347), - [anon_sym_classify] = ACTIONS(347), - [anon_sym_38] = ACTIONS(347), - [anon_sym_deduplicate] = ACTIONS(347), - [anon_sym_39] = ACTIONS(347), - [anon_sym_box] = ACTIONS(347), - [anon_sym_40] = ACTIONS(347), - [anon_sym_unbox] = ACTIONS(347), - [anon_sym_41] = ACTIONS(347), - [anon_sym_match] = ACTIONS(347), - [anon_sym_42] = ACTIONS(347), - [anon_sym_couple] = ACTIONS(347), - [anon_sym_43] = ACTIONS(347), - [anon_sym_join] = ACTIONS(347), - [anon_sym_44] = ACTIONS(347), - [anon_sym_select] = ACTIONS(347), - [anon_sym_45] = ACTIONS(347), - [anon_sym_pick] = ACTIONS(347), - [anon_sym_46] = ACTIONS(347), - [anon_sym_reshape] = ACTIONS(347), - [anon_sym_47] = ACTIONS(347), - [anon_sym_take] = ACTIONS(347), - [anon_sym_48] = ACTIONS(347), - [anon_sym_drop] = ACTIONS(347), - [anon_sym_49] = ACTIONS(347), - [anon_sym_rotate] = ACTIONS(347), - [anon_sym_50] = ACTIONS(347), - [anon_sym_windows] = ACTIONS(347), - [anon_sym_51] = ACTIONS(347), - [anon_sym_keep] = ACTIONS(347), - [anon_sym_52] = ACTIONS(347), - [anon_sym_find] = ACTIONS(347), - [anon_sym_53] = ACTIONS(347), - [anon_sym_member] = ACTIONS(347), - [anon_sym_54] = ACTIONS(347), - [anon_sym_indexof] = ACTIONS(347), - [anon_sym_55] = ACTIONS(347), - [anon_sym_assert] = ACTIONS(347), - [anon_sym_56] = ACTIONS(347), - [anon_sym_wait] = ACTIONS(347), - [anon_sym_break] = ACTIONS(347), - [anon_sym_57] = ACTIONS(347), - [anon_sym_parse] = ACTIONS(347), - [anon_sym_random] = ACTIONS(347), - [anon_sym_58] = ACTIONS(347), - [anon_sym_gen] = ACTIONS(347), - [anon_sym_deal] = ACTIONS(347), - [anon_sym_tag] = ACTIONS(347), - [anon_sym_now] = ACTIONS(347), - [anon_sym_type] = ACTIONS(347), - [anon_sym_59] = ACTIONS(347), - [anon_sym_dump] = ACTIONS(347), - [anon_sym_regex] = ACTIONS(347), - [anon_sym_utf] = ACTIONS(347), - [anon_sym_rock] = ACTIONS(347), - [anon_sym_60] = ACTIONS(347), - [anon_sym_surface] = ACTIONS(347), - [anon_sym_TILDE] = ACTIONS(347), - [anon_sym_deep] = ACTIONS(347), - [anon_sym_de] = ACTIONS(349), - [anon_sym_61] = ACTIONS(347), - [anon_sym_abyss] = ACTIONS(347), - [anon_sym_ab] = ACTIONS(349), - [anon_sym_62] = ACTIONS(347), - [anon_sym_seabed] = ACTIONS(347), - [anon_sym_se] = ACTIONS(349), - [anon_sym_63] = ACTIONS(347), - [anon_sym_send] = ACTIONS(347), - [anon_sym_recv] = ACTIONS(347), - [anon_sym_tryrecv] = ACTIONS(347), - [anon_sym_reduce] = ACTIONS(351), - [anon_sym_SLASH] = ACTIONS(351), - [anon_sym_scan] = ACTIONS(351), - [anon_sym_BSLASH] = ACTIONS(351), - [anon_sym_each] = ACTIONS(351), - [anon_sym_64] = ACTIONS(351), - [anon_sym_rows] = ACTIONS(351), - [anon_sym_65] = ACTIONS(351), - [anon_sym_repeat] = ACTIONS(351), - [anon_sym_66] = ACTIONS(351), - [anon_sym_dip] = ACTIONS(351), - [anon_sym_di] = ACTIONS(353), - [anon_sym_67] = ACTIONS(351), - [anon_sym_gap] = ACTIONS(351), - [anon_sym_ga] = ACTIONS(353), - [anon_sym_68] = ACTIONS(351), - [anon_sym_oust] = ACTIONS(351), - [anon_sym_69] = ACTIONS(351), - [anon_sym_invert] = ACTIONS(351), - [anon_sym_70] = ACTIONS(351), - [anon_sym_spawn] = ACTIONS(351), - [anon_sym_pack] = ACTIONS(351), - [anon_sym_71] = ACTIONS(351), - [anon_sym_tribute] = ACTIONS(351), - [anon_sym_72] = ACTIONS(351), - [anon_sym_fold] = ACTIONS(355), - [anon_sym_73] = ACTIONS(355), - [anon_sym_distribute] = ACTIONS(355), - [anon_sym_74] = ACTIONS(355), - [anon_sym_table] = ACTIONS(355), - [anon_sym_75] = ACTIONS(355), - [anon_sym_cross] = ACTIONS(355), - [anon_sym_76] = ACTIONS(355), - [anon_sym_group] = ACTIONS(355), - [anon_sym_77] = ACTIONS(355), - [anon_sym_partition] = ACTIONS(355), - [anon_sym_78] = ACTIONS(355), - [anon_sym_both] = ACTIONS(355), - [anon_sym_79] = ACTIONS(355), - [anon_sym_bracket] = ACTIONS(355), - [anon_sym_80] = ACTIONS(355), - [anon_sym_fork] = ACTIONS(355), - [anon_sym_81] = ACTIONS(355), - [anon_sym_under] = ACTIONS(355), - [anon_sym_82] = ACTIONS(355), - [anon_sym_level] = ACTIONS(355), - [anon_sym_83] = ACTIONS(355), - [anon_sym_fill] = ACTIONS(355), - [anon_sym_84] = ACTIONS(355), - [anon_sym_bind] = ACTIONS(355), - [anon_sym_SQUOTE] = ACTIONS(355), - [anon_sym_QMARK] = ACTIONS(355), - [anon_sym_try] = ACTIONS(357), - [anon_sym_85] = ACTIONS(355), - [anon_sym_combinate] = ACTIONS(355), - [anon_sym_86] = ACTIONS(355), - [anon_sym_87] = ACTIONS(359), - [anon_sym_88] = ACTIONS(359), - [anon_sym_89] = ACTIONS(359), - [anon_sym_90] = ACTIONS(359), - [anon_sym_91] = ACTIONS(359), - [anon_sym_92] = ACTIONS(359), - [anon_sym_93] = ACTIONS(359), + [sym_openParen] = ACTIONS(322), + [sym_openCurly] = ACTIONS(324), + [sym_openBracket] = ACTIONS(326), + [anon_sym_CARET] = ACTIONS(328), + [anon_sym_eta] = ACTIONS(330), + [anon_sym_] = ACTIONS(332), + [anon_sym_pi] = ACTIONS(332), + [anon_sym_2] = ACTIONS(332), + [anon_sym_tau] = ACTIONS(330), + [anon_sym_3] = ACTIONS(332), + [anon_sym_infinity] = ACTIONS(330), + [anon_sym_4] = ACTIONS(330), + [anon_sym_e] = ACTIONS(332), + [anon_sym_NaN] = ACTIONS(332), + [anon_sym_NumProcs] = ACTIONS(332), + [anon_sym_DOT] = ACTIONS(334), + [anon_sym_COMMA] = ACTIONS(334), + [anon_sym_5] = ACTIONS(334), + [anon_sym_SEMI] = ACTIONS(334), + [anon_sym_identity] = ACTIONS(334), + [anon_sym_id] = ACTIONS(336), + [anon_sym_6] = ACTIONS(334), + [anon_sym_not] = ACTIONS(334), + [anon_sym_7] = ACTIONS(334), + [anon_sym_sign] = ACTIONS(334), + [anon_sym_8] = ACTIONS(334), + [anon_sym_BQUOTE] = ACTIONS(334), + [anon_sym_9] = ACTIONS(334), + [anon_sym_absolutevalue] = ACTIONS(334), + [anon_sym_10] = ACTIONS(334), + [anon_sym_sqrt] = ACTIONS(334), + [anon_sym_11] = ACTIONS(334), + [anon_sym_sine] = ACTIONS(334), + [anon_sym_12] = ACTIONS(334), + [anon_sym_floor] = ACTIONS(334), + [anon_sym_13] = ACTIONS(334), + [anon_sym_ceiling] = ACTIONS(334), + [anon_sym_14] = ACTIONS(334), + [anon_sym_round] = ACTIONS(334), + [anon_sym_15] = ACTIONS(334), + [anon_sym_EQ] = ACTIONS(334), + [anon_sym_BANG_EQ] = ACTIONS(334), + [anon_sym_16] = ACTIONS(334), + [anon_sym_LT] = ACTIONS(336), + [anon_sym_LT_EQ] = ACTIONS(334), + [anon_sym_17] = ACTIONS(334), + [anon_sym_GT] = ACTIONS(336), + [anon_sym_GT_EQ] = ACTIONS(334), + [anon_sym_18] = ACTIONS(334), + [anon_sym_PLUS] = ACTIONS(334), + [anon_sym_DASH] = ACTIONS(334), + [anon_sym_STAR] = ACTIONS(334), + [anon_sym_19] = ACTIONS(334), + [anon_sym_PERCENT] = ACTIONS(334), + [anon_sym_20] = ACTIONS(334), + [anon_sym_modulus] = ACTIONS(334), + [anon_sym_21] = ACTIONS(334), + [anon_sym_power] = ACTIONS(334), + [anon_sym_22] = ACTIONS(334), + [anon_sym_logarithm] = ACTIONS(334), + [anon_sym_23] = ACTIONS(334), + [anon_sym_minimum] = ACTIONS(334), + [anon_sym_24] = ACTIONS(334), + [anon_sym_maximum] = ACTIONS(334), + [anon_sym_25] = ACTIONS(334), + [anon_sym_atangent] = ACTIONS(334), + [anon_sym_26] = ACTIONS(334), + [anon_sym_length] = ACTIONS(334), + [anon_sym_27] = ACTIONS(334), + [anon_sym_shape] = ACTIONS(334), + [anon_sym_28] = ACTIONS(334), + [anon_sym_range] = ACTIONS(334), + [anon_sym_29] = ACTIONS(334), + [anon_sym_first] = ACTIONS(334), + [anon_sym_30] = ACTIONS(334), + [anon_sym_reverse] = ACTIONS(334), + [anon_sym_31] = ACTIONS(334), + [anon_sym_deshape] = ACTIONS(334), + [anon_sym_32] = ACTIONS(334), + [anon_sym_bits] = ACTIONS(334), + [anon_sym_33] = ACTIONS(334), + [anon_sym_transpose] = ACTIONS(334), + [anon_sym_34] = ACTIONS(334), + [anon_sym_rise] = ACTIONS(334), + [anon_sym_35] = ACTIONS(334), + [anon_sym_fall] = ACTIONS(334), + [anon_sym_36] = ACTIONS(334), + [anon_sym_where] = ACTIONS(334), + [anon_sym_37] = ACTIONS(334), + [anon_sym_classify] = ACTIONS(334), + [anon_sym_38] = ACTIONS(334), + [anon_sym_deduplicate] = ACTIONS(334), + [anon_sym_39] = ACTIONS(334), + [anon_sym_box] = ACTIONS(334), + [anon_sym_40] = ACTIONS(334), + [anon_sym_unbox] = ACTIONS(334), + [anon_sym_41] = ACTIONS(334), + [anon_sym_match] = ACTIONS(334), + [anon_sym_42] = ACTIONS(334), + [anon_sym_couple] = ACTIONS(334), + [anon_sym_43] = ACTIONS(334), + [anon_sym_join] = ACTIONS(334), + [anon_sym_44] = ACTIONS(334), + [anon_sym_select] = ACTIONS(334), + [anon_sym_45] = ACTIONS(334), + [anon_sym_pick] = ACTIONS(334), + [anon_sym_46] = ACTIONS(334), + [anon_sym_reshape] = ACTIONS(334), + [anon_sym_47] = ACTIONS(334), + [anon_sym_take] = ACTIONS(334), + [anon_sym_48] = ACTIONS(334), + [anon_sym_drop] = ACTIONS(334), + [anon_sym_49] = ACTIONS(334), + [anon_sym_rotate] = ACTIONS(334), + [anon_sym_50] = ACTIONS(334), + [anon_sym_windows] = ACTIONS(334), + [anon_sym_51] = ACTIONS(334), + [anon_sym_keep] = ACTIONS(334), + [anon_sym_52] = ACTIONS(334), + [anon_sym_find] = ACTIONS(334), + [anon_sym_53] = ACTIONS(334), + [anon_sym_member] = ACTIONS(334), + [anon_sym_54] = ACTIONS(334), + [anon_sym_indexof] = ACTIONS(334), + [anon_sym_55] = ACTIONS(334), + [anon_sym_assert] = ACTIONS(334), + [anon_sym_56] = ACTIONS(334), + [anon_sym_wait] = ACTIONS(334), + [anon_sym_break] = ACTIONS(334), + [anon_sym_57] = ACTIONS(334), + [anon_sym_parse] = ACTIONS(334), + [anon_sym_random] = ACTIONS(334), + [anon_sym_58] = ACTIONS(334), + [anon_sym_gen] = ACTIONS(334), + [anon_sym_deal] = ACTIONS(334), + [anon_sym_tag] = ACTIONS(334), + [anon_sym_now] = ACTIONS(334), + [anon_sym_type] = ACTIONS(334), + [anon_sym_59] = ACTIONS(334), + [anon_sym_dump] = ACTIONS(334), + [anon_sym_regex] = ACTIONS(334), + [anon_sym_utf] = ACTIONS(334), + [anon_sym_rock] = ACTIONS(334), + [anon_sym_60] = ACTIONS(334), + [anon_sym_surface] = ACTIONS(334), + [anon_sym_TILDE] = ACTIONS(334), + [anon_sym_deep] = ACTIONS(334), + [anon_sym_de] = ACTIONS(336), + [anon_sym_61] = ACTIONS(334), + [anon_sym_abyss] = ACTIONS(334), + [anon_sym_ab] = ACTIONS(336), + [anon_sym_62] = ACTIONS(334), + [anon_sym_seabed] = ACTIONS(334), + [anon_sym_se] = ACTIONS(336), + [anon_sym_63] = ACTIONS(334), + [anon_sym_send] = ACTIONS(334), + [anon_sym_recv] = ACTIONS(334), + [anon_sym_tryrecv] = ACTIONS(334), + [anon_sym_reduce] = ACTIONS(338), + [anon_sym_SLASH] = ACTIONS(338), + [anon_sym_scan] = ACTIONS(338), + [anon_sym_BSLASH] = ACTIONS(338), + [anon_sym_each] = ACTIONS(338), + [anon_sym_64] = ACTIONS(338), + [anon_sym_rows] = ACTIONS(338), + [anon_sym_65] = ACTIONS(338), + [anon_sym_repeat] = ACTIONS(338), + [anon_sym_66] = ACTIONS(338), + [anon_sym_dip] = ACTIONS(338), + [anon_sym_67] = ACTIONS(338), + [anon_sym_gap] = ACTIONS(338), + [anon_sym_68] = ACTIONS(338), + [anon_sym_69] = ACTIONS(338), + [anon_sym_invert] = ACTIONS(338), + [anon_sym_70] = ACTIONS(338), + [anon_sym_spawn] = ACTIONS(338), + [anon_sym_pack] = ACTIONS(338), + [anon_sym_71] = ACTIONS(338), + [anon_sym_tribute] = ACTIONS(338), + [anon_sym_72] = ACTIONS(338), + [anon_sym_reach] = ACTIONS(338), + [anon_sym_fold] = ACTIONS(340), + [anon_sym_73] = ACTIONS(340), + [anon_sym_distribute] = ACTIONS(340), + [anon_sym_74] = ACTIONS(340), + [anon_sym_table] = ACTIONS(340), + [anon_sym_75] = ACTIONS(340), + [anon_sym_cross] = ACTIONS(340), + [anon_sym_76] = ACTIONS(340), + [anon_sym_group] = ACTIONS(340), + [anon_sym_77] = ACTIONS(340), + [anon_sym_partition] = ACTIONS(340), + [anon_sym_78] = ACTIONS(340), + [anon_sym_both] = ACTIONS(340), + [anon_sym_79] = ACTIONS(340), + [anon_sym_bracket] = ACTIONS(340), + [anon_sym_80] = ACTIONS(340), + [anon_sym_fork] = ACTIONS(340), + [anon_sym_81] = ACTIONS(340), + [anon_sym_under] = ACTIONS(340), + [anon_sym_82] = ACTIONS(340), + [anon_sym_level] = ACTIONS(340), + [anon_sym_83] = ACTIONS(340), + [anon_sym_fill] = ACTIONS(340), + [anon_sym_84] = ACTIONS(340), + [anon_sym_bind] = ACTIONS(340), + [anon_sym_SQUOTE] = ACTIONS(340), + [anon_sym_QMARK] = ACTIONS(340), + [anon_sym_try] = ACTIONS(342), + [anon_sym_85] = ACTIONS(340), + [anon_sym_combinate] = ACTIONS(340), + [anon_sym_86] = ACTIONS(340), + [anon_sym_87] = ACTIONS(344), + [anon_sym_88] = ACTIONS(344), + [anon_sym_89] = ACTIONS(344), + [anon_sym_90] = ACTIONS(344), + [anon_sym_91] = ACTIONS(344), + [anon_sym_92] = ACTIONS(344), + [anon_sym_93] = ACTIONS(344), [sym__whitespace] = ACTIONS(5), [sym__end_of_line] = ACTIONS(5), }, @@ -18719,242 +18607,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_deprecated] = STATE(147), [aux_sym_switchFunctions_repeat1] = STATE(48), [aux_sym_array_repeat1] = STATE(52), - [aux_sym_number_token1] = ACTIONS(325), - [anon_sym_os] = ACTIONS(327), - [anon_sym_Family] = ACTIONS(327), - [anon_sym_Arch] = ACTIONS(327), - [anon_sym_ExeExt] = ACTIONS(327), - [anon_sym_PllExt] = ACTIONS(327), - [anon_sym_Sep] = ACTIONS(327), - [aux_sym_character_token1] = ACTIONS(329), - [sym_string] = ACTIONS(331), - [sym_multiLineString] = ACTIONS(331), + [aux_sym_number_token1] = ACTIONS(312), + [anon_sym_os] = ACTIONS(314), + [anon_sym_Family] = ACTIONS(314), + [anon_sym_Arch] = ACTIONS(314), + [anon_sym_ExeExt] = ACTIONS(314), + [anon_sym_PllExt] = ACTIONS(314), + [anon_sym_Sep] = ACTIONS(314), + [aux_sym_character_token1] = ACTIONS(316), + [sym_string] = ACTIONS(318), + [sym_multiLineString] = ACTIONS(318), [anon_sym_PIPE] = ACTIONS(15), - [sym_identifier] = ACTIONS(333), - [sym_identifier_deprecated] = ACTIONS(333), - [sym_system] = ACTIONS(331), + [sym_identifier] = ACTIONS(320), + [sym_identifier_deprecated] = ACTIONS(320), + [sym_system] = ACTIONS(318), [sym_comment] = ACTIONS(3), - [sym_openParen] = ACTIONS(335), - [sym_openCurly] = ACTIONS(337), - [sym_openBracket] = ACTIONS(339), - [anon_sym_CARET] = ACTIONS(341), - [anon_sym_eta] = ACTIONS(343), - [anon_sym_] = ACTIONS(345), - [anon_sym_pi] = ACTIONS(345), - [anon_sym_2] = ACTIONS(345), - [anon_sym_tau] = ACTIONS(343), - [anon_sym_3] = ACTIONS(345), - [anon_sym_infinity] = ACTIONS(343), - [anon_sym_4] = ACTIONS(343), - [anon_sym_e] = ACTIONS(345), - [anon_sym_NaN] = ACTIONS(345), - [anon_sym_NumProcs] = ACTIONS(345), - [anon_sym_DOT] = ACTIONS(347), - [anon_sym_COMMA] = ACTIONS(347), - [anon_sym_5] = ACTIONS(347), - [anon_sym_SEMI] = ACTIONS(347), - [anon_sym_identity] = ACTIONS(347), - [anon_sym_id] = ACTIONS(349), - [anon_sym_6] = ACTIONS(347), - [anon_sym_not] = ACTIONS(347), - [anon_sym_7] = ACTIONS(347), - [anon_sym_sign] = ACTIONS(347), - [anon_sym_8] = ACTIONS(347), - [anon_sym_BQUOTE] = ACTIONS(347), - [anon_sym_9] = ACTIONS(347), - [anon_sym_absolutevalue] = ACTIONS(347), - [anon_sym_10] = ACTIONS(347), - [anon_sym_sqrt] = ACTIONS(347), - [anon_sym_11] = ACTIONS(347), - [anon_sym_sine] = ACTIONS(347), - [anon_sym_12] = ACTIONS(347), - [anon_sym_floor] = ACTIONS(347), - [anon_sym_13] = ACTIONS(347), - [anon_sym_ceiling] = ACTIONS(347), - [anon_sym_14] = ACTIONS(347), - [anon_sym_round] = ACTIONS(347), - [anon_sym_15] = ACTIONS(347), - [anon_sym_EQ] = ACTIONS(347), - [anon_sym_BANG_EQ] = ACTIONS(347), - [anon_sym_16] = ACTIONS(347), - [anon_sym_LT] = ACTIONS(349), - [anon_sym_LT_EQ] = ACTIONS(347), - [anon_sym_17] = ACTIONS(347), - [anon_sym_GT] = ACTIONS(349), - [anon_sym_GT_EQ] = ACTIONS(347), - [anon_sym_18] = ACTIONS(347), - [anon_sym_PLUS] = ACTIONS(347), - [anon_sym_DASH] = ACTIONS(347), - [anon_sym_STAR] = ACTIONS(347), - [anon_sym_19] = ACTIONS(347), - [anon_sym_PERCENT] = ACTIONS(347), - [anon_sym_20] = ACTIONS(347), - [anon_sym_modulus] = ACTIONS(347), - [anon_sym_21] = ACTIONS(347), - [anon_sym_power] = ACTIONS(347), - [anon_sym_22] = ACTIONS(347), - [anon_sym_logarithm] = ACTIONS(347), - [anon_sym_23] = ACTIONS(347), - [anon_sym_minimum] = ACTIONS(347), - [anon_sym_24] = ACTIONS(347), - [anon_sym_maximum] = ACTIONS(347), - [anon_sym_25] = ACTIONS(347), - [anon_sym_atangent] = ACTIONS(347), - [anon_sym_26] = ACTIONS(347), - [anon_sym_length] = ACTIONS(347), - [anon_sym_27] = ACTIONS(347), - [anon_sym_shape] = ACTIONS(347), - [anon_sym_28] = ACTIONS(347), - [anon_sym_range] = ACTIONS(347), - [anon_sym_29] = ACTIONS(347), - [anon_sym_first] = ACTIONS(347), - [anon_sym_30] = ACTIONS(347), - [anon_sym_reverse] = ACTIONS(347), - [anon_sym_31] = ACTIONS(347), - [anon_sym_deshape] = ACTIONS(347), - [anon_sym_32] = ACTIONS(347), - [anon_sym_bits] = ACTIONS(347), - [anon_sym_33] = ACTIONS(347), - [anon_sym_transpose] = ACTIONS(347), - [anon_sym_34] = ACTIONS(347), - [anon_sym_rise] = ACTIONS(347), - [anon_sym_35] = ACTIONS(347), - [anon_sym_fall] = ACTIONS(347), - [anon_sym_36] = ACTIONS(347), - [anon_sym_where] = ACTIONS(347), - [anon_sym_37] = ACTIONS(347), - [anon_sym_classify] = ACTIONS(347), - [anon_sym_38] = ACTIONS(347), - [anon_sym_deduplicate] = ACTIONS(347), - [anon_sym_39] = ACTIONS(347), - [anon_sym_box] = ACTIONS(347), - [anon_sym_40] = ACTIONS(347), - [anon_sym_unbox] = ACTIONS(347), - [anon_sym_41] = ACTIONS(347), - [anon_sym_match] = ACTIONS(347), - [anon_sym_42] = ACTIONS(347), - [anon_sym_couple] = ACTIONS(347), - [anon_sym_43] = ACTIONS(347), - [anon_sym_join] = ACTIONS(347), - [anon_sym_44] = ACTIONS(347), - [anon_sym_select] = ACTIONS(347), - [anon_sym_45] = ACTIONS(347), - [anon_sym_pick] = ACTIONS(347), - [anon_sym_46] = ACTIONS(347), - [anon_sym_reshape] = ACTIONS(347), - [anon_sym_47] = ACTIONS(347), - [anon_sym_take] = ACTIONS(347), - [anon_sym_48] = ACTIONS(347), - [anon_sym_drop] = ACTIONS(347), - [anon_sym_49] = ACTIONS(347), - [anon_sym_rotate] = ACTIONS(347), - [anon_sym_50] = ACTIONS(347), - [anon_sym_windows] = ACTIONS(347), - [anon_sym_51] = ACTIONS(347), - [anon_sym_keep] = ACTIONS(347), - [anon_sym_52] = ACTIONS(347), - [anon_sym_find] = ACTIONS(347), - [anon_sym_53] = ACTIONS(347), - [anon_sym_member] = ACTIONS(347), - [anon_sym_54] = ACTIONS(347), - [anon_sym_indexof] = ACTIONS(347), - [anon_sym_55] = ACTIONS(347), - [anon_sym_assert] = ACTIONS(347), - [anon_sym_56] = ACTIONS(347), - [anon_sym_wait] = ACTIONS(347), - [anon_sym_break] = ACTIONS(347), - [anon_sym_57] = ACTIONS(347), - [anon_sym_parse] = ACTIONS(347), - [anon_sym_random] = ACTIONS(347), - [anon_sym_58] = ACTIONS(347), - [anon_sym_gen] = ACTIONS(347), - [anon_sym_deal] = ACTIONS(347), - [anon_sym_tag] = ACTIONS(347), - [anon_sym_now] = ACTIONS(347), - [anon_sym_type] = ACTIONS(347), - [anon_sym_59] = ACTIONS(347), - [anon_sym_dump] = ACTIONS(347), - [anon_sym_regex] = ACTIONS(347), - [anon_sym_utf] = ACTIONS(347), - [anon_sym_rock] = ACTIONS(347), - [anon_sym_60] = ACTIONS(347), - [anon_sym_surface] = ACTIONS(347), - [anon_sym_TILDE] = ACTIONS(347), - [anon_sym_deep] = ACTIONS(347), - [anon_sym_de] = ACTIONS(349), - [anon_sym_61] = ACTIONS(347), - [anon_sym_abyss] = ACTIONS(347), - [anon_sym_ab] = ACTIONS(349), - [anon_sym_62] = ACTIONS(347), - [anon_sym_seabed] = ACTIONS(347), - [anon_sym_se] = ACTIONS(349), - [anon_sym_63] = ACTIONS(347), - [anon_sym_send] = ACTIONS(347), - [anon_sym_recv] = ACTIONS(347), - [anon_sym_tryrecv] = ACTIONS(347), - [anon_sym_reduce] = ACTIONS(351), - [anon_sym_SLASH] = ACTIONS(351), - [anon_sym_scan] = ACTIONS(351), - [anon_sym_BSLASH] = ACTIONS(351), - [anon_sym_each] = ACTIONS(351), - [anon_sym_64] = ACTIONS(351), - [anon_sym_rows] = ACTIONS(351), - [anon_sym_65] = ACTIONS(351), - [anon_sym_repeat] = ACTIONS(351), - [anon_sym_66] = ACTIONS(351), - [anon_sym_dip] = ACTIONS(351), - [anon_sym_di] = ACTIONS(353), - [anon_sym_67] = ACTIONS(351), - [anon_sym_gap] = ACTIONS(351), - [anon_sym_ga] = ACTIONS(353), - [anon_sym_68] = ACTIONS(351), - [anon_sym_oust] = ACTIONS(351), - [anon_sym_69] = ACTIONS(351), - [anon_sym_invert] = ACTIONS(351), - [anon_sym_70] = ACTIONS(351), - [anon_sym_spawn] = ACTIONS(351), - [anon_sym_pack] = ACTIONS(351), - [anon_sym_71] = ACTIONS(351), - [anon_sym_tribute] = ACTIONS(351), - [anon_sym_72] = ACTIONS(351), - [anon_sym_fold] = ACTIONS(355), - [anon_sym_73] = ACTIONS(355), - [anon_sym_distribute] = ACTIONS(355), - [anon_sym_74] = ACTIONS(355), - [anon_sym_table] = ACTIONS(355), - [anon_sym_75] = ACTIONS(355), - [anon_sym_cross] = ACTIONS(355), - [anon_sym_76] = ACTIONS(355), - [anon_sym_group] = ACTIONS(355), - [anon_sym_77] = ACTIONS(355), - [anon_sym_partition] = ACTIONS(355), - [anon_sym_78] = ACTIONS(355), - [anon_sym_both] = ACTIONS(355), - [anon_sym_79] = ACTIONS(355), - [anon_sym_bracket] = ACTIONS(355), - [anon_sym_80] = ACTIONS(355), - [anon_sym_fork] = ACTIONS(355), - [anon_sym_81] = ACTIONS(355), - [anon_sym_under] = ACTIONS(355), - [anon_sym_82] = ACTIONS(355), - [anon_sym_level] = ACTIONS(355), - [anon_sym_83] = ACTIONS(355), - [anon_sym_fill] = ACTIONS(355), - [anon_sym_84] = ACTIONS(355), - [anon_sym_bind] = ACTIONS(355), - [anon_sym_SQUOTE] = ACTIONS(355), - [anon_sym_QMARK] = ACTIONS(355), - [anon_sym_try] = ACTIONS(357), - [anon_sym_85] = ACTIONS(355), - [anon_sym_combinate] = ACTIONS(355), - [anon_sym_86] = ACTIONS(355), - [anon_sym_87] = ACTIONS(359), - [anon_sym_88] = ACTIONS(359), - [anon_sym_89] = ACTIONS(359), - [anon_sym_90] = ACTIONS(359), - [anon_sym_91] = ACTIONS(359), - [anon_sym_92] = ACTIONS(359), - [anon_sym_93] = ACTIONS(359), + [sym_openParen] = ACTIONS(322), + [sym_openCurly] = ACTIONS(324), + [sym_openBracket] = ACTIONS(326), + [anon_sym_CARET] = ACTIONS(328), + [anon_sym_eta] = ACTIONS(330), + [anon_sym_] = ACTIONS(332), + [anon_sym_pi] = ACTIONS(332), + [anon_sym_2] = ACTIONS(332), + [anon_sym_tau] = ACTIONS(330), + [anon_sym_3] = ACTIONS(332), + [anon_sym_infinity] = ACTIONS(330), + [anon_sym_4] = ACTIONS(330), + [anon_sym_e] = ACTIONS(332), + [anon_sym_NaN] = ACTIONS(332), + [anon_sym_NumProcs] = ACTIONS(332), + [anon_sym_DOT] = ACTIONS(334), + [anon_sym_COMMA] = ACTIONS(334), + [anon_sym_5] = ACTIONS(334), + [anon_sym_SEMI] = ACTIONS(334), + [anon_sym_identity] = ACTIONS(334), + [anon_sym_id] = ACTIONS(336), + [anon_sym_6] = ACTIONS(334), + [anon_sym_not] = ACTIONS(334), + [anon_sym_7] = ACTIONS(334), + [anon_sym_sign] = ACTIONS(334), + [anon_sym_8] = ACTIONS(334), + [anon_sym_BQUOTE] = ACTIONS(334), + [anon_sym_9] = ACTIONS(334), + [anon_sym_absolutevalue] = ACTIONS(334), + [anon_sym_10] = ACTIONS(334), + [anon_sym_sqrt] = ACTIONS(334), + [anon_sym_11] = ACTIONS(334), + [anon_sym_sine] = ACTIONS(334), + [anon_sym_12] = ACTIONS(334), + [anon_sym_floor] = ACTIONS(334), + [anon_sym_13] = ACTIONS(334), + [anon_sym_ceiling] = ACTIONS(334), + [anon_sym_14] = ACTIONS(334), + [anon_sym_round] = ACTIONS(334), + [anon_sym_15] = ACTIONS(334), + [anon_sym_EQ] = ACTIONS(334), + [anon_sym_BANG_EQ] = ACTIONS(334), + [anon_sym_16] = ACTIONS(334), + [anon_sym_LT] = ACTIONS(336), + [anon_sym_LT_EQ] = ACTIONS(334), + [anon_sym_17] = ACTIONS(334), + [anon_sym_GT] = ACTIONS(336), + [anon_sym_GT_EQ] = ACTIONS(334), + [anon_sym_18] = ACTIONS(334), + [anon_sym_PLUS] = ACTIONS(334), + [anon_sym_DASH] = ACTIONS(334), + [anon_sym_STAR] = ACTIONS(334), + [anon_sym_19] = ACTIONS(334), + [anon_sym_PERCENT] = ACTIONS(334), + [anon_sym_20] = ACTIONS(334), + [anon_sym_modulus] = ACTIONS(334), + [anon_sym_21] = ACTIONS(334), + [anon_sym_power] = ACTIONS(334), + [anon_sym_22] = ACTIONS(334), + [anon_sym_logarithm] = ACTIONS(334), + [anon_sym_23] = ACTIONS(334), + [anon_sym_minimum] = ACTIONS(334), + [anon_sym_24] = ACTIONS(334), + [anon_sym_maximum] = ACTIONS(334), + [anon_sym_25] = ACTIONS(334), + [anon_sym_atangent] = ACTIONS(334), + [anon_sym_26] = ACTIONS(334), + [anon_sym_length] = ACTIONS(334), + [anon_sym_27] = ACTIONS(334), + [anon_sym_shape] = ACTIONS(334), + [anon_sym_28] = ACTIONS(334), + [anon_sym_range] = ACTIONS(334), + [anon_sym_29] = ACTIONS(334), + [anon_sym_first] = ACTIONS(334), + [anon_sym_30] = ACTIONS(334), + [anon_sym_reverse] = ACTIONS(334), + [anon_sym_31] = ACTIONS(334), + [anon_sym_deshape] = ACTIONS(334), + [anon_sym_32] = ACTIONS(334), + [anon_sym_bits] = ACTIONS(334), + [anon_sym_33] = ACTIONS(334), + [anon_sym_transpose] = ACTIONS(334), + [anon_sym_34] = ACTIONS(334), + [anon_sym_rise] = ACTIONS(334), + [anon_sym_35] = ACTIONS(334), + [anon_sym_fall] = ACTIONS(334), + [anon_sym_36] = ACTIONS(334), + [anon_sym_where] = ACTIONS(334), + [anon_sym_37] = ACTIONS(334), + [anon_sym_classify] = ACTIONS(334), + [anon_sym_38] = ACTIONS(334), + [anon_sym_deduplicate] = ACTIONS(334), + [anon_sym_39] = ACTIONS(334), + [anon_sym_box] = ACTIONS(334), + [anon_sym_40] = ACTIONS(334), + [anon_sym_unbox] = ACTIONS(334), + [anon_sym_41] = ACTIONS(334), + [anon_sym_match] = ACTIONS(334), + [anon_sym_42] = ACTIONS(334), + [anon_sym_couple] = ACTIONS(334), + [anon_sym_43] = ACTIONS(334), + [anon_sym_join] = ACTIONS(334), + [anon_sym_44] = ACTIONS(334), + [anon_sym_select] = ACTIONS(334), + [anon_sym_45] = ACTIONS(334), + [anon_sym_pick] = ACTIONS(334), + [anon_sym_46] = ACTIONS(334), + [anon_sym_reshape] = ACTIONS(334), + [anon_sym_47] = ACTIONS(334), + [anon_sym_take] = ACTIONS(334), + [anon_sym_48] = ACTIONS(334), + [anon_sym_drop] = ACTIONS(334), + [anon_sym_49] = ACTIONS(334), + [anon_sym_rotate] = ACTIONS(334), + [anon_sym_50] = ACTIONS(334), + [anon_sym_windows] = ACTIONS(334), + [anon_sym_51] = ACTIONS(334), + [anon_sym_keep] = ACTIONS(334), + [anon_sym_52] = ACTIONS(334), + [anon_sym_find] = ACTIONS(334), + [anon_sym_53] = ACTIONS(334), + [anon_sym_member] = ACTIONS(334), + [anon_sym_54] = ACTIONS(334), + [anon_sym_indexof] = ACTIONS(334), + [anon_sym_55] = ACTIONS(334), + [anon_sym_assert] = ACTIONS(334), + [anon_sym_56] = ACTIONS(334), + [anon_sym_wait] = ACTIONS(334), + [anon_sym_break] = ACTIONS(334), + [anon_sym_57] = ACTIONS(334), + [anon_sym_parse] = ACTIONS(334), + [anon_sym_random] = ACTIONS(334), + [anon_sym_58] = ACTIONS(334), + [anon_sym_gen] = ACTIONS(334), + [anon_sym_deal] = ACTIONS(334), + [anon_sym_tag] = ACTIONS(334), + [anon_sym_now] = ACTIONS(334), + [anon_sym_type] = ACTIONS(334), + [anon_sym_59] = ACTIONS(334), + [anon_sym_dump] = ACTIONS(334), + [anon_sym_regex] = ACTIONS(334), + [anon_sym_utf] = ACTIONS(334), + [anon_sym_rock] = ACTIONS(334), + [anon_sym_60] = ACTIONS(334), + [anon_sym_surface] = ACTIONS(334), + [anon_sym_TILDE] = ACTIONS(334), + [anon_sym_deep] = ACTIONS(334), + [anon_sym_de] = ACTIONS(336), + [anon_sym_61] = ACTIONS(334), + [anon_sym_abyss] = ACTIONS(334), + [anon_sym_ab] = ACTIONS(336), + [anon_sym_62] = ACTIONS(334), + [anon_sym_seabed] = ACTIONS(334), + [anon_sym_se] = ACTIONS(336), + [anon_sym_63] = ACTIONS(334), + [anon_sym_send] = ACTIONS(334), + [anon_sym_recv] = ACTIONS(334), + [anon_sym_tryrecv] = ACTIONS(334), + [anon_sym_reduce] = ACTIONS(338), + [anon_sym_SLASH] = ACTIONS(338), + [anon_sym_scan] = ACTIONS(338), + [anon_sym_BSLASH] = ACTIONS(338), + [anon_sym_each] = ACTIONS(338), + [anon_sym_64] = ACTIONS(338), + [anon_sym_rows] = ACTIONS(338), + [anon_sym_65] = ACTIONS(338), + [anon_sym_repeat] = ACTIONS(338), + [anon_sym_66] = ACTIONS(338), + [anon_sym_dip] = ACTIONS(338), + [anon_sym_67] = ACTIONS(338), + [anon_sym_gap] = ACTIONS(338), + [anon_sym_68] = ACTIONS(338), + [anon_sym_69] = ACTIONS(338), + [anon_sym_invert] = ACTIONS(338), + [anon_sym_70] = ACTIONS(338), + [anon_sym_spawn] = ACTIONS(338), + [anon_sym_pack] = ACTIONS(338), + [anon_sym_71] = ACTIONS(338), + [anon_sym_tribute] = ACTIONS(338), + [anon_sym_72] = ACTIONS(338), + [anon_sym_reach] = ACTIONS(338), + [anon_sym_fold] = ACTIONS(340), + [anon_sym_73] = ACTIONS(340), + [anon_sym_distribute] = ACTIONS(340), + [anon_sym_74] = ACTIONS(340), + [anon_sym_table] = ACTIONS(340), + [anon_sym_75] = ACTIONS(340), + [anon_sym_cross] = ACTIONS(340), + [anon_sym_76] = ACTIONS(340), + [anon_sym_group] = ACTIONS(340), + [anon_sym_77] = ACTIONS(340), + [anon_sym_partition] = ACTIONS(340), + [anon_sym_78] = ACTIONS(340), + [anon_sym_both] = ACTIONS(340), + [anon_sym_79] = ACTIONS(340), + [anon_sym_bracket] = ACTIONS(340), + [anon_sym_80] = ACTIONS(340), + [anon_sym_fork] = ACTIONS(340), + [anon_sym_81] = ACTIONS(340), + [anon_sym_under] = ACTIONS(340), + [anon_sym_82] = ACTIONS(340), + [anon_sym_level] = ACTIONS(340), + [anon_sym_83] = ACTIONS(340), + [anon_sym_fill] = ACTIONS(340), + [anon_sym_84] = ACTIONS(340), + [anon_sym_bind] = ACTIONS(340), + [anon_sym_SQUOTE] = ACTIONS(340), + [anon_sym_QMARK] = ACTIONS(340), + [anon_sym_try] = ACTIONS(342), + [anon_sym_85] = ACTIONS(340), + [anon_sym_combinate] = ACTIONS(340), + [anon_sym_86] = ACTIONS(340), + [anon_sym_87] = ACTIONS(344), + [anon_sym_88] = ACTIONS(344), + [anon_sym_89] = ACTIONS(344), + [anon_sym_90] = ACTIONS(344), + [anon_sym_91] = ACTIONS(344), + [anon_sym_92] = ACTIONS(344), + [anon_sym_93] = ACTIONS(344), [sym__whitespace] = ACTIONS(5), [sym__end_of_line] = ACTIONS(5), }, @@ -18977,242 +18863,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_deprecated] = STATE(147), [aux_sym_switchFunctions_repeat1] = STATE(48), [aux_sym_array_repeat1] = STATE(52), - [aux_sym_number_token1] = ACTIONS(361), - [anon_sym_os] = ACTIONS(364), - [anon_sym_Family] = ACTIONS(364), - [anon_sym_Arch] = ACTIONS(364), - [anon_sym_ExeExt] = ACTIONS(364), - [anon_sym_PllExt] = ACTIONS(364), - [anon_sym_Sep] = ACTIONS(364), - [aux_sym_character_token1] = ACTIONS(367), - [sym_string] = ACTIONS(370), - [sym_multiLineString] = ACTIONS(370), - [anon_sym_PIPE] = ACTIONS(373), - [sym_identifier] = ACTIONS(376), - [sym_identifier_deprecated] = ACTIONS(376), - [sym_system] = ACTIONS(370), + [aux_sym_number_token1] = ACTIONS(346), + [anon_sym_os] = ACTIONS(349), + [anon_sym_Family] = ACTIONS(349), + [anon_sym_Arch] = ACTIONS(349), + [anon_sym_ExeExt] = ACTIONS(349), + [anon_sym_PllExt] = ACTIONS(349), + [anon_sym_Sep] = ACTIONS(349), + [aux_sym_character_token1] = ACTIONS(352), + [sym_string] = ACTIONS(355), + [sym_multiLineString] = ACTIONS(355), + [anon_sym_PIPE] = ACTIONS(358), + [sym_identifier] = ACTIONS(361), + [sym_identifier_deprecated] = ACTIONS(361), + [sym_system] = ACTIONS(355), [sym_comment] = ACTIONS(3), - [sym_openParen] = ACTIONS(379), - [sym_openCurly] = ACTIONS(382), - [sym_openBracket] = ACTIONS(385), - [anon_sym_CARET] = ACTIONS(388), - [anon_sym_eta] = ACTIONS(391), - [anon_sym_] = ACTIONS(394), - [anon_sym_pi] = ACTIONS(394), - [anon_sym_2] = ACTIONS(394), - [anon_sym_tau] = ACTIONS(391), - [anon_sym_3] = ACTIONS(394), - [anon_sym_infinity] = ACTIONS(391), - [anon_sym_4] = ACTIONS(391), - [anon_sym_e] = ACTIONS(394), - [anon_sym_NaN] = ACTIONS(394), - [anon_sym_NumProcs] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(397), - [anon_sym_5] = ACTIONS(397), - [anon_sym_SEMI] = ACTIONS(397), - [anon_sym_identity] = ACTIONS(397), - [anon_sym_id] = ACTIONS(400), - [anon_sym_6] = ACTIONS(397), - [anon_sym_not] = ACTIONS(397), - [anon_sym_7] = ACTIONS(397), - [anon_sym_sign] = ACTIONS(397), - [anon_sym_8] = ACTIONS(397), - [anon_sym_BQUOTE] = ACTIONS(397), - [anon_sym_9] = ACTIONS(397), - [anon_sym_absolutevalue] = ACTIONS(397), - [anon_sym_10] = ACTIONS(397), - [anon_sym_sqrt] = ACTIONS(397), - [anon_sym_11] = ACTIONS(397), - [anon_sym_sine] = ACTIONS(397), - [anon_sym_12] = ACTIONS(397), - [anon_sym_floor] = ACTIONS(397), - [anon_sym_13] = ACTIONS(397), - [anon_sym_ceiling] = ACTIONS(397), - [anon_sym_14] = ACTIONS(397), - [anon_sym_round] = ACTIONS(397), - [anon_sym_15] = ACTIONS(397), - [anon_sym_EQ] = ACTIONS(397), - [anon_sym_BANG_EQ] = ACTIONS(397), - [anon_sym_16] = ACTIONS(397), - [anon_sym_LT] = ACTIONS(400), - [anon_sym_LT_EQ] = ACTIONS(397), - [anon_sym_17] = ACTIONS(397), - [anon_sym_GT] = ACTIONS(400), - [anon_sym_GT_EQ] = ACTIONS(397), - [anon_sym_18] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(397), - [anon_sym_19] = ACTIONS(397), - [anon_sym_PERCENT] = ACTIONS(397), - [anon_sym_20] = ACTIONS(397), - [anon_sym_modulus] = ACTIONS(397), - [anon_sym_21] = ACTIONS(397), - [anon_sym_power] = ACTIONS(397), - [anon_sym_22] = ACTIONS(397), - [anon_sym_logarithm] = ACTIONS(397), - [anon_sym_23] = ACTIONS(397), - [anon_sym_minimum] = ACTIONS(397), - [anon_sym_24] = ACTIONS(397), - [anon_sym_maximum] = ACTIONS(397), - [anon_sym_25] = ACTIONS(397), - [anon_sym_atangent] = ACTIONS(397), - [anon_sym_26] = ACTIONS(397), - [anon_sym_length] = ACTIONS(397), - [anon_sym_27] = ACTIONS(397), - [anon_sym_shape] = ACTIONS(397), - [anon_sym_28] = ACTIONS(397), - [anon_sym_range] = ACTIONS(397), - [anon_sym_29] = ACTIONS(397), - [anon_sym_first] = ACTIONS(397), - [anon_sym_30] = ACTIONS(397), - [anon_sym_reverse] = ACTIONS(397), - [anon_sym_31] = ACTIONS(397), - [anon_sym_deshape] = ACTIONS(397), - [anon_sym_32] = ACTIONS(397), - [anon_sym_bits] = ACTIONS(397), - [anon_sym_33] = ACTIONS(397), - [anon_sym_transpose] = ACTIONS(397), - [anon_sym_34] = ACTIONS(397), - [anon_sym_rise] = ACTIONS(397), - [anon_sym_35] = ACTIONS(397), - [anon_sym_fall] = ACTIONS(397), - [anon_sym_36] = ACTIONS(397), - [anon_sym_where] = ACTIONS(397), - [anon_sym_37] = ACTIONS(397), - [anon_sym_classify] = ACTIONS(397), - [anon_sym_38] = ACTIONS(397), - [anon_sym_deduplicate] = ACTIONS(397), - [anon_sym_39] = ACTIONS(397), - [anon_sym_box] = ACTIONS(397), - [anon_sym_40] = ACTIONS(397), - [anon_sym_unbox] = ACTIONS(397), - [anon_sym_41] = ACTIONS(397), - [anon_sym_match] = ACTIONS(397), - [anon_sym_42] = ACTIONS(397), - [anon_sym_couple] = ACTIONS(397), - [anon_sym_43] = ACTIONS(397), - [anon_sym_join] = ACTIONS(397), - [anon_sym_44] = ACTIONS(397), - [anon_sym_select] = ACTIONS(397), - [anon_sym_45] = ACTIONS(397), - [anon_sym_pick] = ACTIONS(397), - [anon_sym_46] = ACTIONS(397), - [anon_sym_reshape] = ACTIONS(397), - [anon_sym_47] = ACTIONS(397), - [anon_sym_take] = ACTIONS(397), - [anon_sym_48] = ACTIONS(397), - [anon_sym_drop] = ACTIONS(397), - [anon_sym_49] = ACTIONS(397), - [anon_sym_rotate] = ACTIONS(397), - [anon_sym_50] = ACTIONS(397), - [anon_sym_windows] = ACTIONS(397), - [anon_sym_51] = ACTIONS(397), - [anon_sym_keep] = ACTIONS(397), - [anon_sym_52] = ACTIONS(397), - [anon_sym_find] = ACTIONS(397), - [anon_sym_53] = ACTIONS(397), - [anon_sym_member] = ACTIONS(397), - [anon_sym_54] = ACTIONS(397), - [anon_sym_indexof] = ACTIONS(397), - [anon_sym_55] = ACTIONS(397), - [anon_sym_assert] = ACTIONS(397), - [anon_sym_56] = ACTIONS(397), - [anon_sym_wait] = ACTIONS(397), - [anon_sym_break] = ACTIONS(397), - [anon_sym_57] = ACTIONS(397), - [anon_sym_parse] = ACTIONS(397), - [anon_sym_random] = ACTIONS(397), - [anon_sym_58] = ACTIONS(397), - [anon_sym_gen] = ACTIONS(397), - [anon_sym_deal] = ACTIONS(397), - [anon_sym_tag] = ACTIONS(397), - [anon_sym_now] = ACTIONS(397), - [anon_sym_type] = ACTIONS(397), - [anon_sym_59] = ACTIONS(397), - [anon_sym_dump] = ACTIONS(397), - [anon_sym_regex] = ACTIONS(397), - [anon_sym_utf] = ACTIONS(397), - [anon_sym_rock] = ACTIONS(397), - [anon_sym_60] = ACTIONS(397), - [anon_sym_surface] = ACTIONS(397), - [anon_sym_TILDE] = ACTIONS(397), - [anon_sym_deep] = ACTIONS(397), - [anon_sym_de] = ACTIONS(400), - [anon_sym_61] = ACTIONS(397), - [anon_sym_abyss] = ACTIONS(397), - [anon_sym_ab] = ACTIONS(400), - [anon_sym_62] = ACTIONS(397), - [anon_sym_seabed] = ACTIONS(397), - [anon_sym_se] = ACTIONS(400), - [anon_sym_63] = ACTIONS(397), - [anon_sym_send] = ACTIONS(397), - [anon_sym_recv] = ACTIONS(397), - [anon_sym_tryrecv] = ACTIONS(397), - [anon_sym_reduce] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(403), - [anon_sym_scan] = ACTIONS(403), - [anon_sym_BSLASH] = ACTIONS(403), - [anon_sym_each] = ACTIONS(403), - [anon_sym_64] = ACTIONS(403), - [anon_sym_rows] = ACTIONS(403), - [anon_sym_65] = ACTIONS(403), - [anon_sym_repeat] = ACTIONS(403), - [anon_sym_66] = ACTIONS(403), - [anon_sym_dip] = ACTIONS(403), - [anon_sym_di] = ACTIONS(406), - [anon_sym_67] = ACTIONS(403), - [anon_sym_gap] = ACTIONS(403), - [anon_sym_ga] = ACTIONS(406), - [anon_sym_68] = ACTIONS(403), - [anon_sym_oust] = ACTIONS(403), - [anon_sym_69] = ACTIONS(403), - [anon_sym_invert] = ACTIONS(403), - [anon_sym_70] = ACTIONS(403), - [anon_sym_spawn] = ACTIONS(403), - [anon_sym_pack] = ACTIONS(403), - [anon_sym_71] = ACTIONS(403), - [anon_sym_tribute] = ACTIONS(403), - [anon_sym_72] = ACTIONS(403), - [anon_sym_fold] = ACTIONS(409), - [anon_sym_73] = ACTIONS(409), - [anon_sym_distribute] = ACTIONS(409), - [anon_sym_74] = ACTIONS(409), - [anon_sym_table] = ACTIONS(409), - [anon_sym_75] = ACTIONS(409), - [anon_sym_cross] = ACTIONS(409), - [anon_sym_76] = ACTIONS(409), - [anon_sym_group] = ACTIONS(409), - [anon_sym_77] = ACTIONS(409), - [anon_sym_partition] = ACTIONS(409), - [anon_sym_78] = ACTIONS(409), - [anon_sym_both] = ACTIONS(409), - [anon_sym_79] = ACTIONS(409), - [anon_sym_bracket] = ACTIONS(409), - [anon_sym_80] = ACTIONS(409), - [anon_sym_fork] = ACTIONS(409), - [anon_sym_81] = ACTIONS(409), - [anon_sym_under] = ACTIONS(409), - [anon_sym_82] = ACTIONS(409), - [anon_sym_level] = ACTIONS(409), - [anon_sym_83] = ACTIONS(409), - [anon_sym_fill] = ACTIONS(409), - [anon_sym_84] = ACTIONS(409), - [anon_sym_bind] = ACTIONS(409), - [anon_sym_SQUOTE] = ACTIONS(409), - [anon_sym_QMARK] = ACTIONS(409), - [anon_sym_try] = ACTIONS(412), - [anon_sym_85] = ACTIONS(409), - [anon_sym_combinate] = ACTIONS(409), - [anon_sym_86] = ACTIONS(409), - [anon_sym_87] = ACTIONS(415), - [anon_sym_88] = ACTIONS(415), - [anon_sym_89] = ACTIONS(415), - [anon_sym_90] = ACTIONS(415), - [anon_sym_91] = ACTIONS(415), - [anon_sym_92] = ACTIONS(415), - [anon_sym_93] = ACTIONS(415), + [sym_openParen] = ACTIONS(364), + [sym_openCurly] = ACTIONS(367), + [sym_openBracket] = ACTIONS(370), + [anon_sym_CARET] = ACTIONS(373), + [anon_sym_eta] = ACTIONS(376), + [anon_sym_] = ACTIONS(379), + [anon_sym_pi] = ACTIONS(379), + [anon_sym_2] = ACTIONS(379), + [anon_sym_tau] = ACTIONS(376), + [anon_sym_3] = ACTIONS(379), + [anon_sym_infinity] = ACTIONS(376), + [anon_sym_4] = ACTIONS(376), + [anon_sym_e] = ACTIONS(379), + [anon_sym_NaN] = ACTIONS(379), + [anon_sym_NumProcs] = ACTIONS(379), + [anon_sym_DOT] = ACTIONS(382), + [anon_sym_COMMA] = ACTIONS(382), + [anon_sym_5] = ACTIONS(382), + [anon_sym_SEMI] = ACTIONS(382), + [anon_sym_identity] = ACTIONS(382), + [anon_sym_id] = ACTIONS(385), + [anon_sym_6] = ACTIONS(382), + [anon_sym_not] = ACTIONS(382), + [anon_sym_7] = ACTIONS(382), + [anon_sym_sign] = ACTIONS(382), + [anon_sym_8] = ACTIONS(382), + [anon_sym_BQUOTE] = ACTIONS(382), + [anon_sym_9] = ACTIONS(382), + [anon_sym_absolutevalue] = ACTIONS(382), + [anon_sym_10] = ACTIONS(382), + [anon_sym_sqrt] = ACTIONS(382), + [anon_sym_11] = ACTIONS(382), + [anon_sym_sine] = ACTIONS(382), + [anon_sym_12] = ACTIONS(382), + [anon_sym_floor] = ACTIONS(382), + [anon_sym_13] = ACTIONS(382), + [anon_sym_ceiling] = ACTIONS(382), + [anon_sym_14] = ACTIONS(382), + [anon_sym_round] = ACTIONS(382), + [anon_sym_15] = ACTIONS(382), + [anon_sym_EQ] = ACTIONS(382), + [anon_sym_BANG_EQ] = ACTIONS(382), + [anon_sym_16] = ACTIONS(382), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_LT_EQ] = ACTIONS(382), + [anon_sym_17] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(385), + [anon_sym_GT_EQ] = ACTIONS(382), + [anon_sym_18] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(382), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_19] = ACTIONS(382), + [anon_sym_PERCENT] = ACTIONS(382), + [anon_sym_20] = ACTIONS(382), + [anon_sym_modulus] = ACTIONS(382), + [anon_sym_21] = ACTIONS(382), + [anon_sym_power] = ACTIONS(382), + [anon_sym_22] = ACTIONS(382), + [anon_sym_logarithm] = ACTIONS(382), + [anon_sym_23] = ACTIONS(382), + [anon_sym_minimum] = ACTIONS(382), + [anon_sym_24] = ACTIONS(382), + [anon_sym_maximum] = ACTIONS(382), + [anon_sym_25] = ACTIONS(382), + [anon_sym_atangent] = ACTIONS(382), + [anon_sym_26] = ACTIONS(382), + [anon_sym_length] = ACTIONS(382), + [anon_sym_27] = ACTIONS(382), + [anon_sym_shape] = ACTIONS(382), + [anon_sym_28] = ACTIONS(382), + [anon_sym_range] = ACTIONS(382), + [anon_sym_29] = ACTIONS(382), + [anon_sym_first] = ACTIONS(382), + [anon_sym_30] = ACTIONS(382), + [anon_sym_reverse] = ACTIONS(382), + [anon_sym_31] = ACTIONS(382), + [anon_sym_deshape] = ACTIONS(382), + [anon_sym_32] = ACTIONS(382), + [anon_sym_bits] = ACTIONS(382), + [anon_sym_33] = ACTIONS(382), + [anon_sym_transpose] = ACTIONS(382), + [anon_sym_34] = ACTIONS(382), + [anon_sym_rise] = ACTIONS(382), + [anon_sym_35] = ACTIONS(382), + [anon_sym_fall] = ACTIONS(382), + [anon_sym_36] = ACTIONS(382), + [anon_sym_where] = ACTIONS(382), + [anon_sym_37] = ACTIONS(382), + [anon_sym_classify] = ACTIONS(382), + [anon_sym_38] = ACTIONS(382), + [anon_sym_deduplicate] = ACTIONS(382), + [anon_sym_39] = ACTIONS(382), + [anon_sym_box] = ACTIONS(382), + [anon_sym_40] = ACTIONS(382), + [anon_sym_unbox] = ACTIONS(382), + [anon_sym_41] = ACTIONS(382), + [anon_sym_match] = ACTIONS(382), + [anon_sym_42] = ACTIONS(382), + [anon_sym_couple] = ACTIONS(382), + [anon_sym_43] = ACTIONS(382), + [anon_sym_join] = ACTIONS(382), + [anon_sym_44] = ACTIONS(382), + [anon_sym_select] = ACTIONS(382), + [anon_sym_45] = ACTIONS(382), + [anon_sym_pick] = ACTIONS(382), + [anon_sym_46] = ACTIONS(382), + [anon_sym_reshape] = ACTIONS(382), + [anon_sym_47] = ACTIONS(382), + [anon_sym_take] = ACTIONS(382), + [anon_sym_48] = ACTIONS(382), + [anon_sym_drop] = ACTIONS(382), + [anon_sym_49] = ACTIONS(382), + [anon_sym_rotate] = ACTIONS(382), + [anon_sym_50] = ACTIONS(382), + [anon_sym_windows] = ACTIONS(382), + [anon_sym_51] = ACTIONS(382), + [anon_sym_keep] = ACTIONS(382), + [anon_sym_52] = ACTIONS(382), + [anon_sym_find] = ACTIONS(382), + [anon_sym_53] = ACTIONS(382), + [anon_sym_member] = ACTIONS(382), + [anon_sym_54] = ACTIONS(382), + [anon_sym_indexof] = ACTIONS(382), + [anon_sym_55] = ACTIONS(382), + [anon_sym_assert] = ACTIONS(382), + [anon_sym_56] = ACTIONS(382), + [anon_sym_wait] = ACTIONS(382), + [anon_sym_break] = ACTIONS(382), + [anon_sym_57] = ACTIONS(382), + [anon_sym_parse] = ACTIONS(382), + [anon_sym_random] = ACTIONS(382), + [anon_sym_58] = ACTIONS(382), + [anon_sym_gen] = ACTIONS(382), + [anon_sym_deal] = ACTIONS(382), + [anon_sym_tag] = ACTIONS(382), + [anon_sym_now] = ACTIONS(382), + [anon_sym_type] = ACTIONS(382), + [anon_sym_59] = ACTIONS(382), + [anon_sym_dump] = ACTIONS(382), + [anon_sym_regex] = ACTIONS(382), + [anon_sym_utf] = ACTIONS(382), + [anon_sym_rock] = ACTIONS(382), + [anon_sym_60] = ACTIONS(382), + [anon_sym_surface] = ACTIONS(382), + [anon_sym_TILDE] = ACTIONS(382), + [anon_sym_deep] = ACTIONS(382), + [anon_sym_de] = ACTIONS(385), + [anon_sym_61] = ACTIONS(382), + [anon_sym_abyss] = ACTIONS(382), + [anon_sym_ab] = ACTIONS(385), + [anon_sym_62] = ACTIONS(382), + [anon_sym_seabed] = ACTIONS(382), + [anon_sym_se] = ACTIONS(385), + [anon_sym_63] = ACTIONS(382), + [anon_sym_send] = ACTIONS(382), + [anon_sym_recv] = ACTIONS(382), + [anon_sym_tryrecv] = ACTIONS(382), + [anon_sym_reduce] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(388), + [anon_sym_scan] = ACTIONS(388), + [anon_sym_BSLASH] = ACTIONS(388), + [anon_sym_each] = ACTIONS(388), + [anon_sym_64] = ACTIONS(388), + [anon_sym_rows] = ACTIONS(388), + [anon_sym_65] = ACTIONS(388), + [anon_sym_repeat] = ACTIONS(388), + [anon_sym_66] = ACTIONS(388), + [anon_sym_dip] = ACTIONS(388), + [anon_sym_67] = ACTIONS(388), + [anon_sym_gap] = ACTIONS(388), + [anon_sym_68] = ACTIONS(388), + [anon_sym_69] = ACTIONS(388), + [anon_sym_invert] = ACTIONS(388), + [anon_sym_70] = ACTIONS(388), + [anon_sym_spawn] = ACTIONS(388), + [anon_sym_pack] = ACTIONS(388), + [anon_sym_71] = ACTIONS(388), + [anon_sym_tribute] = ACTIONS(388), + [anon_sym_72] = ACTIONS(388), + [anon_sym_reach] = ACTIONS(388), + [anon_sym_fold] = ACTIONS(391), + [anon_sym_73] = ACTIONS(391), + [anon_sym_distribute] = ACTIONS(391), + [anon_sym_74] = ACTIONS(391), + [anon_sym_table] = ACTIONS(391), + [anon_sym_75] = ACTIONS(391), + [anon_sym_cross] = ACTIONS(391), + [anon_sym_76] = ACTIONS(391), + [anon_sym_group] = ACTIONS(391), + [anon_sym_77] = ACTIONS(391), + [anon_sym_partition] = ACTIONS(391), + [anon_sym_78] = ACTIONS(391), + [anon_sym_both] = ACTIONS(391), + [anon_sym_79] = ACTIONS(391), + [anon_sym_bracket] = ACTIONS(391), + [anon_sym_80] = ACTIONS(391), + [anon_sym_fork] = ACTIONS(391), + [anon_sym_81] = ACTIONS(391), + [anon_sym_under] = ACTIONS(391), + [anon_sym_82] = ACTIONS(391), + [anon_sym_level] = ACTIONS(391), + [anon_sym_83] = ACTIONS(391), + [anon_sym_fill] = ACTIONS(391), + [anon_sym_84] = ACTIONS(391), + [anon_sym_bind] = ACTIONS(391), + [anon_sym_SQUOTE] = ACTIONS(391), + [anon_sym_QMARK] = ACTIONS(391), + [anon_sym_try] = ACTIONS(394), + [anon_sym_85] = ACTIONS(391), + [anon_sym_combinate] = ACTIONS(391), + [anon_sym_86] = ACTIONS(391), + [anon_sym_87] = ACTIONS(397), + [anon_sym_88] = ACTIONS(397), + [anon_sym_89] = ACTIONS(397), + [anon_sym_90] = ACTIONS(397), + [anon_sym_91] = ACTIONS(397), + [anon_sym_92] = ACTIONS(397), + [anon_sym_93] = ACTIONS(397), [sym__whitespace] = ACTIONS(5), [sym__end_of_line] = ACTIONS(5), }, @@ -19234,242 +19118,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_modifier2] = STATE(128), [sym_deprecated] = STATE(147), [aux_sym_array_repeat1] = STATE(49), - [aux_sym_number_token1] = ACTIONS(325), - [anon_sym_os] = ACTIONS(327), - [anon_sym_Family] = ACTIONS(327), - [anon_sym_Arch] = ACTIONS(327), - [anon_sym_ExeExt] = ACTIONS(327), - [anon_sym_PllExt] = ACTIONS(327), - [anon_sym_Sep] = ACTIONS(327), - [aux_sym_character_token1] = ACTIONS(329), - [sym_string] = ACTIONS(331), - [sym_multiLineString] = ACTIONS(331), + [aux_sym_number_token1] = ACTIONS(312), + [anon_sym_os] = ACTIONS(314), + [anon_sym_Family] = ACTIONS(314), + [anon_sym_Arch] = ACTIONS(314), + [anon_sym_ExeExt] = ACTIONS(314), + [anon_sym_PllExt] = ACTIONS(314), + [anon_sym_Sep] = ACTIONS(314), + [aux_sym_character_token1] = ACTIONS(316), + [sym_string] = ACTIONS(318), + [sym_multiLineString] = ACTIONS(318), [anon_sym_PIPE] = ACTIONS(15), - [sym_identifier] = ACTIONS(333), - [sym_identifier_deprecated] = ACTIONS(333), - [sym_system] = ACTIONS(331), + [sym_identifier] = ACTIONS(320), + [sym_identifier_deprecated] = ACTIONS(320), + [sym_system] = ACTIONS(318), [sym_comment] = ACTIONS(3), - [sym_openParen] = ACTIONS(335), - [sym_openCurly] = ACTIONS(337), - [sym_openBracket] = ACTIONS(339), - [anon_sym_CARET] = ACTIONS(341), - [anon_sym_eta] = ACTIONS(343), - [anon_sym_] = ACTIONS(345), - [anon_sym_pi] = ACTIONS(345), - [anon_sym_2] = ACTIONS(345), - [anon_sym_tau] = ACTIONS(343), - [anon_sym_3] = ACTIONS(345), - [anon_sym_infinity] = ACTIONS(343), - [anon_sym_4] = ACTIONS(343), - [anon_sym_e] = ACTIONS(345), - [anon_sym_NaN] = ACTIONS(345), - [anon_sym_NumProcs] = ACTIONS(345), - [anon_sym_DOT] = ACTIONS(347), - [anon_sym_COMMA] = ACTIONS(347), - [anon_sym_5] = ACTIONS(347), - [anon_sym_SEMI] = ACTIONS(347), - [anon_sym_identity] = ACTIONS(347), - [anon_sym_id] = ACTIONS(349), - [anon_sym_6] = ACTIONS(347), - [anon_sym_not] = ACTIONS(347), - [anon_sym_7] = ACTIONS(347), - [anon_sym_sign] = ACTIONS(347), - [anon_sym_8] = ACTIONS(347), - [anon_sym_BQUOTE] = ACTIONS(347), - [anon_sym_9] = ACTIONS(347), - [anon_sym_absolutevalue] = ACTIONS(347), - [anon_sym_10] = ACTIONS(347), - [anon_sym_sqrt] = ACTIONS(347), - [anon_sym_11] = ACTIONS(347), - [anon_sym_sine] = ACTIONS(347), - [anon_sym_12] = ACTIONS(347), - [anon_sym_floor] = ACTIONS(347), - [anon_sym_13] = ACTIONS(347), - [anon_sym_ceiling] = ACTIONS(347), - [anon_sym_14] = ACTIONS(347), - [anon_sym_round] = ACTIONS(347), - [anon_sym_15] = ACTIONS(347), - [anon_sym_EQ] = ACTIONS(347), - [anon_sym_BANG_EQ] = ACTIONS(347), - [anon_sym_16] = ACTIONS(347), - [anon_sym_LT] = ACTIONS(349), - [anon_sym_LT_EQ] = ACTIONS(347), - [anon_sym_17] = ACTIONS(347), - [anon_sym_GT] = ACTIONS(349), - [anon_sym_GT_EQ] = ACTIONS(347), - [anon_sym_18] = ACTIONS(347), - [anon_sym_PLUS] = ACTIONS(347), - [anon_sym_DASH] = ACTIONS(347), - [anon_sym_STAR] = ACTIONS(347), - [anon_sym_19] = ACTIONS(347), - [anon_sym_PERCENT] = ACTIONS(347), - [anon_sym_20] = ACTIONS(347), - [anon_sym_modulus] = ACTIONS(347), - [anon_sym_21] = ACTIONS(347), - [anon_sym_power] = ACTIONS(347), - [anon_sym_22] = ACTIONS(347), - [anon_sym_logarithm] = ACTIONS(347), - [anon_sym_23] = ACTIONS(347), - [anon_sym_minimum] = ACTIONS(347), - [anon_sym_24] = ACTIONS(347), - [anon_sym_maximum] = ACTIONS(347), - [anon_sym_25] = ACTIONS(347), - [anon_sym_atangent] = ACTIONS(347), - [anon_sym_26] = ACTIONS(347), - [anon_sym_length] = ACTIONS(347), - [anon_sym_27] = ACTIONS(347), - [anon_sym_shape] = ACTIONS(347), - [anon_sym_28] = ACTIONS(347), - [anon_sym_range] = ACTIONS(347), - [anon_sym_29] = ACTIONS(347), - [anon_sym_first] = ACTIONS(347), - [anon_sym_30] = ACTIONS(347), - [anon_sym_reverse] = ACTIONS(347), - [anon_sym_31] = ACTIONS(347), - [anon_sym_deshape] = ACTIONS(347), - [anon_sym_32] = ACTIONS(347), - [anon_sym_bits] = ACTIONS(347), - [anon_sym_33] = ACTIONS(347), - [anon_sym_transpose] = ACTIONS(347), - [anon_sym_34] = ACTIONS(347), - [anon_sym_rise] = ACTIONS(347), - [anon_sym_35] = ACTIONS(347), - [anon_sym_fall] = ACTIONS(347), - [anon_sym_36] = ACTIONS(347), - [anon_sym_where] = ACTIONS(347), - [anon_sym_37] = ACTIONS(347), - [anon_sym_classify] = ACTIONS(347), - [anon_sym_38] = ACTIONS(347), - [anon_sym_deduplicate] = ACTIONS(347), - [anon_sym_39] = ACTIONS(347), - [anon_sym_box] = ACTIONS(347), - [anon_sym_40] = ACTIONS(347), - [anon_sym_unbox] = ACTIONS(347), - [anon_sym_41] = ACTIONS(347), - [anon_sym_match] = ACTIONS(347), - [anon_sym_42] = ACTIONS(347), - [anon_sym_couple] = ACTIONS(347), - [anon_sym_43] = ACTIONS(347), - [anon_sym_join] = ACTIONS(347), - [anon_sym_44] = ACTIONS(347), - [anon_sym_select] = ACTIONS(347), - [anon_sym_45] = ACTIONS(347), - [anon_sym_pick] = ACTIONS(347), - [anon_sym_46] = ACTIONS(347), - [anon_sym_reshape] = ACTIONS(347), - [anon_sym_47] = ACTIONS(347), - [anon_sym_take] = ACTIONS(347), - [anon_sym_48] = ACTIONS(347), - [anon_sym_drop] = ACTIONS(347), - [anon_sym_49] = ACTIONS(347), - [anon_sym_rotate] = ACTIONS(347), - [anon_sym_50] = ACTIONS(347), - [anon_sym_windows] = ACTIONS(347), - [anon_sym_51] = ACTIONS(347), - [anon_sym_keep] = ACTIONS(347), - [anon_sym_52] = ACTIONS(347), - [anon_sym_find] = ACTIONS(347), - [anon_sym_53] = ACTIONS(347), - [anon_sym_member] = ACTIONS(347), - [anon_sym_54] = ACTIONS(347), - [anon_sym_indexof] = ACTIONS(347), - [anon_sym_55] = ACTIONS(347), - [anon_sym_assert] = ACTIONS(347), - [anon_sym_56] = ACTIONS(347), - [anon_sym_wait] = ACTIONS(347), - [anon_sym_break] = ACTIONS(347), - [anon_sym_57] = ACTIONS(347), - [anon_sym_parse] = ACTIONS(347), - [anon_sym_random] = ACTIONS(347), - [anon_sym_58] = ACTIONS(347), - [anon_sym_gen] = ACTIONS(347), - [anon_sym_deal] = ACTIONS(347), - [anon_sym_tag] = ACTIONS(347), - [anon_sym_now] = ACTIONS(347), - [anon_sym_type] = ACTIONS(347), - [anon_sym_59] = ACTIONS(347), - [anon_sym_dump] = ACTIONS(347), - [anon_sym_regex] = ACTIONS(347), - [anon_sym_utf] = ACTIONS(347), - [anon_sym_rock] = ACTIONS(347), - [anon_sym_60] = ACTIONS(347), - [anon_sym_surface] = ACTIONS(347), - [anon_sym_TILDE] = ACTIONS(347), - [anon_sym_deep] = ACTIONS(347), - [anon_sym_de] = ACTIONS(349), - [anon_sym_61] = ACTIONS(347), - [anon_sym_abyss] = ACTIONS(347), - [anon_sym_ab] = ACTIONS(349), - [anon_sym_62] = ACTIONS(347), - [anon_sym_seabed] = ACTIONS(347), - [anon_sym_se] = ACTIONS(349), - [anon_sym_63] = ACTIONS(347), - [anon_sym_send] = ACTIONS(347), - [anon_sym_recv] = ACTIONS(347), - [anon_sym_tryrecv] = ACTIONS(347), - [anon_sym_reduce] = ACTIONS(351), - [anon_sym_SLASH] = ACTIONS(351), - [anon_sym_scan] = ACTIONS(351), - [anon_sym_BSLASH] = ACTIONS(351), - [anon_sym_each] = ACTIONS(351), - [anon_sym_64] = ACTIONS(351), - [anon_sym_rows] = ACTIONS(351), - [anon_sym_65] = ACTIONS(351), - [anon_sym_repeat] = ACTIONS(351), - [anon_sym_66] = ACTIONS(351), - [anon_sym_dip] = ACTIONS(351), - [anon_sym_di] = ACTIONS(353), - [anon_sym_67] = ACTIONS(351), - [anon_sym_gap] = ACTIONS(351), - [anon_sym_ga] = ACTIONS(353), - [anon_sym_68] = ACTIONS(351), - [anon_sym_oust] = ACTIONS(351), - [anon_sym_69] = ACTIONS(351), - [anon_sym_invert] = ACTIONS(351), - [anon_sym_70] = ACTIONS(351), - [anon_sym_spawn] = ACTIONS(351), - [anon_sym_pack] = ACTIONS(351), - [anon_sym_71] = ACTIONS(351), - [anon_sym_tribute] = ACTIONS(351), - [anon_sym_72] = ACTIONS(351), - [anon_sym_fold] = ACTIONS(355), - [anon_sym_73] = ACTIONS(355), - [anon_sym_distribute] = ACTIONS(355), - [anon_sym_74] = ACTIONS(355), - [anon_sym_table] = ACTIONS(355), - [anon_sym_75] = ACTIONS(355), - [anon_sym_cross] = ACTIONS(355), - [anon_sym_76] = ACTIONS(355), - [anon_sym_group] = ACTIONS(355), - [anon_sym_77] = ACTIONS(355), - [anon_sym_partition] = ACTIONS(355), - [anon_sym_78] = ACTIONS(355), - [anon_sym_both] = ACTIONS(355), - [anon_sym_79] = ACTIONS(355), - [anon_sym_bracket] = ACTIONS(355), - [anon_sym_80] = ACTIONS(355), - [anon_sym_fork] = ACTIONS(355), - [anon_sym_81] = ACTIONS(355), - [anon_sym_under] = ACTIONS(355), - [anon_sym_82] = ACTIONS(355), - [anon_sym_level] = ACTIONS(355), - [anon_sym_83] = ACTIONS(355), - [anon_sym_fill] = ACTIONS(355), - [anon_sym_84] = ACTIONS(355), - [anon_sym_bind] = ACTIONS(355), - [anon_sym_SQUOTE] = ACTIONS(355), - [anon_sym_QMARK] = ACTIONS(355), - [anon_sym_try] = ACTIONS(357), - [anon_sym_85] = ACTIONS(355), - [anon_sym_combinate] = ACTIONS(355), - [anon_sym_86] = ACTIONS(355), - [anon_sym_87] = ACTIONS(359), - [anon_sym_88] = ACTIONS(359), - [anon_sym_89] = ACTIONS(359), - [anon_sym_90] = ACTIONS(359), - [anon_sym_91] = ACTIONS(359), - [anon_sym_92] = ACTIONS(359), - [anon_sym_93] = ACTIONS(359), + [sym_openParen] = ACTIONS(322), + [sym_openCurly] = ACTIONS(324), + [sym_openBracket] = ACTIONS(326), + [anon_sym_CARET] = ACTIONS(328), + [anon_sym_eta] = ACTIONS(330), + [anon_sym_] = ACTIONS(332), + [anon_sym_pi] = ACTIONS(332), + [anon_sym_2] = ACTIONS(332), + [anon_sym_tau] = ACTIONS(330), + [anon_sym_3] = ACTIONS(332), + [anon_sym_infinity] = ACTIONS(330), + [anon_sym_4] = ACTIONS(330), + [anon_sym_e] = ACTIONS(332), + [anon_sym_NaN] = ACTIONS(332), + [anon_sym_NumProcs] = ACTIONS(332), + [anon_sym_DOT] = ACTIONS(334), + [anon_sym_COMMA] = ACTIONS(334), + [anon_sym_5] = ACTIONS(334), + [anon_sym_SEMI] = ACTIONS(334), + [anon_sym_identity] = ACTIONS(334), + [anon_sym_id] = ACTIONS(336), + [anon_sym_6] = ACTIONS(334), + [anon_sym_not] = ACTIONS(334), + [anon_sym_7] = ACTIONS(334), + [anon_sym_sign] = ACTIONS(334), + [anon_sym_8] = ACTIONS(334), + [anon_sym_BQUOTE] = ACTIONS(334), + [anon_sym_9] = ACTIONS(334), + [anon_sym_absolutevalue] = ACTIONS(334), + [anon_sym_10] = ACTIONS(334), + [anon_sym_sqrt] = ACTIONS(334), + [anon_sym_11] = ACTIONS(334), + [anon_sym_sine] = ACTIONS(334), + [anon_sym_12] = ACTIONS(334), + [anon_sym_floor] = ACTIONS(334), + [anon_sym_13] = ACTIONS(334), + [anon_sym_ceiling] = ACTIONS(334), + [anon_sym_14] = ACTIONS(334), + [anon_sym_round] = ACTIONS(334), + [anon_sym_15] = ACTIONS(334), + [anon_sym_EQ] = ACTIONS(334), + [anon_sym_BANG_EQ] = ACTIONS(334), + [anon_sym_16] = ACTIONS(334), + [anon_sym_LT] = ACTIONS(336), + [anon_sym_LT_EQ] = ACTIONS(334), + [anon_sym_17] = ACTIONS(334), + [anon_sym_GT] = ACTIONS(336), + [anon_sym_GT_EQ] = ACTIONS(334), + [anon_sym_18] = ACTIONS(334), + [anon_sym_PLUS] = ACTIONS(334), + [anon_sym_DASH] = ACTIONS(334), + [anon_sym_STAR] = ACTIONS(334), + [anon_sym_19] = ACTIONS(334), + [anon_sym_PERCENT] = ACTIONS(334), + [anon_sym_20] = ACTIONS(334), + [anon_sym_modulus] = ACTIONS(334), + [anon_sym_21] = ACTIONS(334), + [anon_sym_power] = ACTIONS(334), + [anon_sym_22] = ACTIONS(334), + [anon_sym_logarithm] = ACTIONS(334), + [anon_sym_23] = ACTIONS(334), + [anon_sym_minimum] = ACTIONS(334), + [anon_sym_24] = ACTIONS(334), + [anon_sym_maximum] = ACTIONS(334), + [anon_sym_25] = ACTIONS(334), + [anon_sym_atangent] = ACTIONS(334), + [anon_sym_26] = ACTIONS(334), + [anon_sym_length] = ACTIONS(334), + [anon_sym_27] = ACTIONS(334), + [anon_sym_shape] = ACTIONS(334), + [anon_sym_28] = ACTIONS(334), + [anon_sym_range] = ACTIONS(334), + [anon_sym_29] = ACTIONS(334), + [anon_sym_first] = ACTIONS(334), + [anon_sym_30] = ACTIONS(334), + [anon_sym_reverse] = ACTIONS(334), + [anon_sym_31] = ACTIONS(334), + [anon_sym_deshape] = ACTIONS(334), + [anon_sym_32] = ACTIONS(334), + [anon_sym_bits] = ACTIONS(334), + [anon_sym_33] = ACTIONS(334), + [anon_sym_transpose] = ACTIONS(334), + [anon_sym_34] = ACTIONS(334), + [anon_sym_rise] = ACTIONS(334), + [anon_sym_35] = ACTIONS(334), + [anon_sym_fall] = ACTIONS(334), + [anon_sym_36] = ACTIONS(334), + [anon_sym_where] = ACTIONS(334), + [anon_sym_37] = ACTIONS(334), + [anon_sym_classify] = ACTIONS(334), + [anon_sym_38] = ACTIONS(334), + [anon_sym_deduplicate] = ACTIONS(334), + [anon_sym_39] = ACTIONS(334), + [anon_sym_box] = ACTIONS(334), + [anon_sym_40] = ACTIONS(334), + [anon_sym_unbox] = ACTIONS(334), + [anon_sym_41] = ACTIONS(334), + [anon_sym_match] = ACTIONS(334), + [anon_sym_42] = ACTIONS(334), + [anon_sym_couple] = ACTIONS(334), + [anon_sym_43] = ACTIONS(334), + [anon_sym_join] = ACTIONS(334), + [anon_sym_44] = ACTIONS(334), + [anon_sym_select] = ACTIONS(334), + [anon_sym_45] = ACTIONS(334), + [anon_sym_pick] = ACTIONS(334), + [anon_sym_46] = ACTIONS(334), + [anon_sym_reshape] = ACTIONS(334), + [anon_sym_47] = ACTIONS(334), + [anon_sym_take] = ACTIONS(334), + [anon_sym_48] = ACTIONS(334), + [anon_sym_drop] = ACTIONS(334), + [anon_sym_49] = ACTIONS(334), + [anon_sym_rotate] = ACTIONS(334), + [anon_sym_50] = ACTIONS(334), + [anon_sym_windows] = ACTIONS(334), + [anon_sym_51] = ACTIONS(334), + [anon_sym_keep] = ACTIONS(334), + [anon_sym_52] = ACTIONS(334), + [anon_sym_find] = ACTIONS(334), + [anon_sym_53] = ACTIONS(334), + [anon_sym_member] = ACTIONS(334), + [anon_sym_54] = ACTIONS(334), + [anon_sym_indexof] = ACTIONS(334), + [anon_sym_55] = ACTIONS(334), + [anon_sym_assert] = ACTIONS(334), + [anon_sym_56] = ACTIONS(334), + [anon_sym_wait] = ACTIONS(334), + [anon_sym_break] = ACTIONS(334), + [anon_sym_57] = ACTIONS(334), + [anon_sym_parse] = ACTIONS(334), + [anon_sym_random] = ACTIONS(334), + [anon_sym_58] = ACTIONS(334), + [anon_sym_gen] = ACTIONS(334), + [anon_sym_deal] = ACTIONS(334), + [anon_sym_tag] = ACTIONS(334), + [anon_sym_now] = ACTIONS(334), + [anon_sym_type] = ACTIONS(334), + [anon_sym_59] = ACTIONS(334), + [anon_sym_dump] = ACTIONS(334), + [anon_sym_regex] = ACTIONS(334), + [anon_sym_utf] = ACTIONS(334), + [anon_sym_rock] = ACTIONS(334), + [anon_sym_60] = ACTIONS(334), + [anon_sym_surface] = ACTIONS(334), + [anon_sym_TILDE] = ACTIONS(334), + [anon_sym_deep] = ACTIONS(334), + [anon_sym_de] = ACTIONS(336), + [anon_sym_61] = ACTIONS(334), + [anon_sym_abyss] = ACTIONS(334), + [anon_sym_ab] = ACTIONS(336), + [anon_sym_62] = ACTIONS(334), + [anon_sym_seabed] = ACTIONS(334), + [anon_sym_se] = ACTIONS(336), + [anon_sym_63] = ACTIONS(334), + [anon_sym_send] = ACTIONS(334), + [anon_sym_recv] = ACTIONS(334), + [anon_sym_tryrecv] = ACTIONS(334), + [anon_sym_reduce] = ACTIONS(338), + [anon_sym_SLASH] = ACTIONS(338), + [anon_sym_scan] = ACTIONS(338), + [anon_sym_BSLASH] = ACTIONS(338), + [anon_sym_each] = ACTIONS(338), + [anon_sym_64] = ACTIONS(338), + [anon_sym_rows] = ACTIONS(338), + [anon_sym_65] = ACTIONS(338), + [anon_sym_repeat] = ACTIONS(338), + [anon_sym_66] = ACTIONS(338), + [anon_sym_dip] = ACTIONS(338), + [anon_sym_67] = ACTIONS(338), + [anon_sym_gap] = ACTIONS(338), + [anon_sym_68] = ACTIONS(338), + [anon_sym_69] = ACTIONS(338), + [anon_sym_invert] = ACTIONS(338), + [anon_sym_70] = ACTIONS(338), + [anon_sym_spawn] = ACTIONS(338), + [anon_sym_pack] = ACTIONS(338), + [anon_sym_71] = ACTIONS(338), + [anon_sym_tribute] = ACTIONS(338), + [anon_sym_72] = ACTIONS(338), + [anon_sym_reach] = ACTIONS(338), + [anon_sym_fold] = ACTIONS(340), + [anon_sym_73] = ACTIONS(340), + [anon_sym_distribute] = ACTIONS(340), + [anon_sym_74] = ACTIONS(340), + [anon_sym_table] = ACTIONS(340), + [anon_sym_75] = ACTIONS(340), + [anon_sym_cross] = ACTIONS(340), + [anon_sym_76] = ACTIONS(340), + [anon_sym_group] = ACTIONS(340), + [anon_sym_77] = ACTIONS(340), + [anon_sym_partition] = ACTIONS(340), + [anon_sym_78] = ACTIONS(340), + [anon_sym_both] = ACTIONS(340), + [anon_sym_79] = ACTIONS(340), + [anon_sym_bracket] = ACTIONS(340), + [anon_sym_80] = ACTIONS(340), + [anon_sym_fork] = ACTIONS(340), + [anon_sym_81] = ACTIONS(340), + [anon_sym_under] = ACTIONS(340), + [anon_sym_82] = ACTIONS(340), + [anon_sym_level] = ACTIONS(340), + [anon_sym_83] = ACTIONS(340), + [anon_sym_fill] = ACTIONS(340), + [anon_sym_84] = ACTIONS(340), + [anon_sym_bind] = ACTIONS(340), + [anon_sym_SQUOTE] = ACTIONS(340), + [anon_sym_QMARK] = ACTIONS(340), + [anon_sym_try] = ACTIONS(342), + [anon_sym_85] = ACTIONS(340), + [anon_sym_combinate] = ACTIONS(340), + [anon_sym_86] = ACTIONS(340), + [anon_sym_87] = ACTIONS(344), + [anon_sym_88] = ACTIONS(344), + [anon_sym_89] = ACTIONS(344), + [anon_sym_90] = ACTIONS(344), + [anon_sym_91] = ACTIONS(344), + [anon_sym_92] = ACTIONS(344), + [anon_sym_93] = ACTIONS(344), [sym__whitespace] = ACTIONS(5), [sym__end_of_line] = ACTIONS(5), }, @@ -19491,242 +19373,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_modifier2] = STATE(128), [sym_deprecated] = STATE(147), [aux_sym_array_repeat1] = STATE(52), - [aux_sym_number_token1] = ACTIONS(325), - [anon_sym_os] = ACTIONS(327), - [anon_sym_Family] = ACTIONS(327), - [anon_sym_Arch] = ACTIONS(327), - [anon_sym_ExeExt] = ACTIONS(327), - [anon_sym_PllExt] = ACTIONS(327), - [anon_sym_Sep] = ACTIONS(327), - [aux_sym_character_token1] = ACTIONS(329), - [sym_string] = ACTIONS(331), - [sym_multiLineString] = ACTIONS(331), + [aux_sym_number_token1] = ACTIONS(312), + [anon_sym_os] = ACTIONS(314), + [anon_sym_Family] = ACTIONS(314), + [anon_sym_Arch] = ACTIONS(314), + [anon_sym_ExeExt] = ACTIONS(314), + [anon_sym_PllExt] = ACTIONS(314), + [anon_sym_Sep] = ACTIONS(314), + [aux_sym_character_token1] = ACTIONS(316), + [sym_string] = ACTIONS(318), + [sym_multiLineString] = ACTIONS(318), [anon_sym_PIPE] = ACTIONS(15), - [sym_identifier] = ACTIONS(333), - [sym_identifier_deprecated] = ACTIONS(333), - [sym_system] = ACTIONS(331), + [sym_identifier] = ACTIONS(320), + [sym_identifier_deprecated] = ACTIONS(320), + [sym_system] = ACTIONS(318), [sym_comment] = ACTIONS(3), - [sym_openParen] = ACTIONS(335), - [sym_openCurly] = ACTIONS(337), - [sym_openBracket] = ACTIONS(339), - [anon_sym_CARET] = ACTIONS(341), - [anon_sym_eta] = ACTIONS(343), - [anon_sym_] = ACTIONS(345), - [anon_sym_pi] = ACTIONS(345), - [anon_sym_2] = ACTIONS(345), - [anon_sym_tau] = ACTIONS(343), - [anon_sym_3] = ACTIONS(345), - [anon_sym_infinity] = ACTIONS(343), - [anon_sym_4] = ACTIONS(343), - [anon_sym_e] = ACTIONS(345), - [anon_sym_NaN] = ACTIONS(345), - [anon_sym_NumProcs] = ACTIONS(345), - [anon_sym_DOT] = ACTIONS(347), - [anon_sym_COMMA] = ACTIONS(347), - [anon_sym_5] = ACTIONS(347), - [anon_sym_SEMI] = ACTIONS(347), - [anon_sym_identity] = ACTIONS(347), - [anon_sym_id] = ACTIONS(349), - [anon_sym_6] = ACTIONS(347), - [anon_sym_not] = ACTIONS(347), - [anon_sym_7] = ACTIONS(347), - [anon_sym_sign] = ACTIONS(347), - [anon_sym_8] = ACTIONS(347), - [anon_sym_BQUOTE] = ACTIONS(347), - [anon_sym_9] = ACTIONS(347), - [anon_sym_absolutevalue] = ACTIONS(347), - [anon_sym_10] = ACTIONS(347), - [anon_sym_sqrt] = ACTIONS(347), - [anon_sym_11] = ACTIONS(347), - [anon_sym_sine] = ACTIONS(347), - [anon_sym_12] = ACTIONS(347), - [anon_sym_floor] = ACTIONS(347), - [anon_sym_13] = ACTIONS(347), - [anon_sym_ceiling] = ACTIONS(347), - [anon_sym_14] = ACTIONS(347), - [anon_sym_round] = ACTIONS(347), - [anon_sym_15] = ACTIONS(347), - [anon_sym_EQ] = ACTIONS(347), - [anon_sym_BANG_EQ] = ACTIONS(347), - [anon_sym_16] = ACTIONS(347), - [anon_sym_LT] = ACTIONS(349), - [anon_sym_LT_EQ] = ACTIONS(347), - [anon_sym_17] = ACTIONS(347), - [anon_sym_GT] = ACTIONS(349), - [anon_sym_GT_EQ] = ACTIONS(347), - [anon_sym_18] = ACTIONS(347), - [anon_sym_PLUS] = ACTIONS(347), - [anon_sym_DASH] = ACTIONS(347), - [anon_sym_STAR] = ACTIONS(347), - [anon_sym_19] = ACTIONS(347), - [anon_sym_PERCENT] = ACTIONS(347), - [anon_sym_20] = ACTIONS(347), - [anon_sym_modulus] = ACTIONS(347), - [anon_sym_21] = ACTIONS(347), - [anon_sym_power] = ACTIONS(347), - [anon_sym_22] = ACTIONS(347), - [anon_sym_logarithm] = ACTIONS(347), - [anon_sym_23] = ACTIONS(347), - [anon_sym_minimum] = ACTIONS(347), - [anon_sym_24] = ACTIONS(347), - [anon_sym_maximum] = ACTIONS(347), - [anon_sym_25] = ACTIONS(347), - [anon_sym_atangent] = ACTIONS(347), - [anon_sym_26] = ACTIONS(347), - [anon_sym_length] = ACTIONS(347), - [anon_sym_27] = ACTIONS(347), - [anon_sym_shape] = ACTIONS(347), - [anon_sym_28] = ACTIONS(347), - [anon_sym_range] = ACTIONS(347), - [anon_sym_29] = ACTIONS(347), - [anon_sym_first] = ACTIONS(347), - [anon_sym_30] = ACTIONS(347), - [anon_sym_reverse] = ACTIONS(347), - [anon_sym_31] = ACTIONS(347), - [anon_sym_deshape] = ACTIONS(347), - [anon_sym_32] = ACTIONS(347), - [anon_sym_bits] = ACTIONS(347), - [anon_sym_33] = ACTIONS(347), - [anon_sym_transpose] = ACTIONS(347), - [anon_sym_34] = ACTIONS(347), - [anon_sym_rise] = ACTIONS(347), - [anon_sym_35] = ACTIONS(347), - [anon_sym_fall] = ACTIONS(347), - [anon_sym_36] = ACTIONS(347), - [anon_sym_where] = ACTIONS(347), - [anon_sym_37] = ACTIONS(347), - [anon_sym_classify] = ACTIONS(347), - [anon_sym_38] = ACTIONS(347), - [anon_sym_deduplicate] = ACTIONS(347), - [anon_sym_39] = ACTIONS(347), - [anon_sym_box] = ACTIONS(347), - [anon_sym_40] = ACTIONS(347), - [anon_sym_unbox] = ACTIONS(347), - [anon_sym_41] = ACTIONS(347), - [anon_sym_match] = ACTIONS(347), - [anon_sym_42] = ACTIONS(347), - [anon_sym_couple] = ACTIONS(347), - [anon_sym_43] = ACTIONS(347), - [anon_sym_join] = ACTIONS(347), - [anon_sym_44] = ACTIONS(347), - [anon_sym_select] = ACTIONS(347), - [anon_sym_45] = ACTIONS(347), - [anon_sym_pick] = ACTIONS(347), - [anon_sym_46] = ACTIONS(347), - [anon_sym_reshape] = ACTIONS(347), - [anon_sym_47] = ACTIONS(347), - [anon_sym_take] = ACTIONS(347), - [anon_sym_48] = ACTIONS(347), - [anon_sym_drop] = ACTIONS(347), - [anon_sym_49] = ACTIONS(347), - [anon_sym_rotate] = ACTIONS(347), - [anon_sym_50] = ACTIONS(347), - [anon_sym_windows] = ACTIONS(347), - [anon_sym_51] = ACTIONS(347), - [anon_sym_keep] = ACTIONS(347), - [anon_sym_52] = ACTIONS(347), - [anon_sym_find] = ACTIONS(347), - [anon_sym_53] = ACTIONS(347), - [anon_sym_member] = ACTIONS(347), - [anon_sym_54] = ACTIONS(347), - [anon_sym_indexof] = ACTIONS(347), - [anon_sym_55] = ACTIONS(347), - [anon_sym_assert] = ACTIONS(347), - [anon_sym_56] = ACTIONS(347), - [anon_sym_wait] = ACTIONS(347), - [anon_sym_break] = ACTIONS(347), - [anon_sym_57] = ACTIONS(347), - [anon_sym_parse] = ACTIONS(347), - [anon_sym_random] = ACTIONS(347), - [anon_sym_58] = ACTIONS(347), - [anon_sym_gen] = ACTIONS(347), - [anon_sym_deal] = ACTIONS(347), - [anon_sym_tag] = ACTIONS(347), - [anon_sym_now] = ACTIONS(347), - [anon_sym_type] = ACTIONS(347), - [anon_sym_59] = ACTIONS(347), - [anon_sym_dump] = ACTIONS(347), - [anon_sym_regex] = ACTIONS(347), - [anon_sym_utf] = ACTIONS(347), - [anon_sym_rock] = ACTIONS(347), - [anon_sym_60] = ACTIONS(347), - [anon_sym_surface] = ACTIONS(347), - [anon_sym_TILDE] = ACTIONS(347), - [anon_sym_deep] = ACTIONS(347), - [anon_sym_de] = ACTIONS(349), - [anon_sym_61] = ACTIONS(347), - [anon_sym_abyss] = ACTIONS(347), - [anon_sym_ab] = ACTIONS(349), - [anon_sym_62] = ACTIONS(347), - [anon_sym_seabed] = ACTIONS(347), - [anon_sym_se] = ACTIONS(349), - [anon_sym_63] = ACTIONS(347), - [anon_sym_send] = ACTIONS(347), - [anon_sym_recv] = ACTIONS(347), - [anon_sym_tryrecv] = ACTIONS(347), - [anon_sym_reduce] = ACTIONS(351), - [anon_sym_SLASH] = ACTIONS(351), - [anon_sym_scan] = ACTIONS(351), - [anon_sym_BSLASH] = ACTIONS(351), - [anon_sym_each] = ACTIONS(351), - [anon_sym_64] = ACTIONS(351), - [anon_sym_rows] = ACTIONS(351), - [anon_sym_65] = ACTIONS(351), - [anon_sym_repeat] = ACTIONS(351), - [anon_sym_66] = ACTIONS(351), - [anon_sym_dip] = ACTIONS(351), - [anon_sym_di] = ACTIONS(353), - [anon_sym_67] = ACTIONS(351), - [anon_sym_gap] = ACTIONS(351), - [anon_sym_ga] = ACTIONS(353), - [anon_sym_68] = ACTIONS(351), - [anon_sym_oust] = ACTIONS(351), - [anon_sym_69] = ACTIONS(351), - [anon_sym_invert] = ACTIONS(351), - [anon_sym_70] = ACTIONS(351), - [anon_sym_spawn] = ACTIONS(351), - [anon_sym_pack] = ACTIONS(351), - [anon_sym_71] = ACTIONS(351), - [anon_sym_tribute] = ACTIONS(351), - [anon_sym_72] = ACTIONS(351), - [anon_sym_fold] = ACTIONS(355), - [anon_sym_73] = ACTIONS(355), - [anon_sym_distribute] = ACTIONS(355), - [anon_sym_74] = ACTIONS(355), - [anon_sym_table] = ACTIONS(355), - [anon_sym_75] = ACTIONS(355), - [anon_sym_cross] = ACTIONS(355), - [anon_sym_76] = ACTIONS(355), - [anon_sym_group] = ACTIONS(355), - [anon_sym_77] = ACTIONS(355), - [anon_sym_partition] = ACTIONS(355), - [anon_sym_78] = ACTIONS(355), - [anon_sym_both] = ACTIONS(355), - [anon_sym_79] = ACTIONS(355), - [anon_sym_bracket] = ACTIONS(355), - [anon_sym_80] = ACTIONS(355), - [anon_sym_fork] = ACTIONS(355), - [anon_sym_81] = ACTIONS(355), - [anon_sym_under] = ACTIONS(355), - [anon_sym_82] = ACTIONS(355), - [anon_sym_level] = ACTIONS(355), - [anon_sym_83] = ACTIONS(355), - [anon_sym_fill] = ACTIONS(355), - [anon_sym_84] = ACTIONS(355), - [anon_sym_bind] = ACTIONS(355), - [anon_sym_SQUOTE] = ACTIONS(355), - [anon_sym_QMARK] = ACTIONS(355), - [anon_sym_try] = ACTIONS(357), - [anon_sym_85] = ACTIONS(355), - [anon_sym_combinate] = ACTIONS(355), - [anon_sym_86] = ACTIONS(355), - [anon_sym_87] = ACTIONS(359), - [anon_sym_88] = ACTIONS(359), - [anon_sym_89] = ACTIONS(359), - [anon_sym_90] = ACTIONS(359), - [anon_sym_91] = ACTIONS(359), - [anon_sym_92] = ACTIONS(359), - [anon_sym_93] = ACTIONS(359), + [sym_openParen] = ACTIONS(322), + [sym_openCurly] = ACTIONS(324), + [sym_openBracket] = ACTIONS(326), + [anon_sym_CARET] = ACTIONS(328), + [anon_sym_eta] = ACTIONS(330), + [anon_sym_] = ACTIONS(332), + [anon_sym_pi] = ACTIONS(332), + [anon_sym_2] = ACTIONS(332), + [anon_sym_tau] = ACTIONS(330), + [anon_sym_3] = ACTIONS(332), + [anon_sym_infinity] = ACTIONS(330), + [anon_sym_4] = ACTIONS(330), + [anon_sym_e] = ACTIONS(332), + [anon_sym_NaN] = ACTIONS(332), + [anon_sym_NumProcs] = ACTIONS(332), + [anon_sym_DOT] = ACTIONS(334), + [anon_sym_COMMA] = ACTIONS(334), + [anon_sym_5] = ACTIONS(334), + [anon_sym_SEMI] = ACTIONS(334), + [anon_sym_identity] = ACTIONS(334), + [anon_sym_id] = ACTIONS(336), + [anon_sym_6] = ACTIONS(334), + [anon_sym_not] = ACTIONS(334), + [anon_sym_7] = ACTIONS(334), + [anon_sym_sign] = ACTIONS(334), + [anon_sym_8] = ACTIONS(334), + [anon_sym_BQUOTE] = ACTIONS(334), + [anon_sym_9] = ACTIONS(334), + [anon_sym_absolutevalue] = ACTIONS(334), + [anon_sym_10] = ACTIONS(334), + [anon_sym_sqrt] = ACTIONS(334), + [anon_sym_11] = ACTIONS(334), + [anon_sym_sine] = ACTIONS(334), + [anon_sym_12] = ACTIONS(334), + [anon_sym_floor] = ACTIONS(334), + [anon_sym_13] = ACTIONS(334), + [anon_sym_ceiling] = ACTIONS(334), + [anon_sym_14] = ACTIONS(334), + [anon_sym_round] = ACTIONS(334), + [anon_sym_15] = ACTIONS(334), + [anon_sym_EQ] = ACTIONS(334), + [anon_sym_BANG_EQ] = ACTIONS(334), + [anon_sym_16] = ACTIONS(334), + [anon_sym_LT] = ACTIONS(336), + [anon_sym_LT_EQ] = ACTIONS(334), + [anon_sym_17] = ACTIONS(334), + [anon_sym_GT] = ACTIONS(336), + [anon_sym_GT_EQ] = ACTIONS(334), + [anon_sym_18] = ACTIONS(334), + [anon_sym_PLUS] = ACTIONS(334), + [anon_sym_DASH] = ACTIONS(334), + [anon_sym_STAR] = ACTIONS(334), + [anon_sym_19] = ACTIONS(334), + [anon_sym_PERCENT] = ACTIONS(334), + [anon_sym_20] = ACTIONS(334), + [anon_sym_modulus] = ACTIONS(334), + [anon_sym_21] = ACTIONS(334), + [anon_sym_power] = ACTIONS(334), + [anon_sym_22] = ACTIONS(334), + [anon_sym_logarithm] = ACTIONS(334), + [anon_sym_23] = ACTIONS(334), + [anon_sym_minimum] = ACTIONS(334), + [anon_sym_24] = ACTIONS(334), + [anon_sym_maximum] = ACTIONS(334), + [anon_sym_25] = ACTIONS(334), + [anon_sym_atangent] = ACTIONS(334), + [anon_sym_26] = ACTIONS(334), + [anon_sym_length] = ACTIONS(334), + [anon_sym_27] = ACTIONS(334), + [anon_sym_shape] = ACTIONS(334), + [anon_sym_28] = ACTIONS(334), + [anon_sym_range] = ACTIONS(334), + [anon_sym_29] = ACTIONS(334), + [anon_sym_first] = ACTIONS(334), + [anon_sym_30] = ACTIONS(334), + [anon_sym_reverse] = ACTIONS(334), + [anon_sym_31] = ACTIONS(334), + [anon_sym_deshape] = ACTIONS(334), + [anon_sym_32] = ACTIONS(334), + [anon_sym_bits] = ACTIONS(334), + [anon_sym_33] = ACTIONS(334), + [anon_sym_transpose] = ACTIONS(334), + [anon_sym_34] = ACTIONS(334), + [anon_sym_rise] = ACTIONS(334), + [anon_sym_35] = ACTIONS(334), + [anon_sym_fall] = ACTIONS(334), + [anon_sym_36] = ACTIONS(334), + [anon_sym_where] = ACTIONS(334), + [anon_sym_37] = ACTIONS(334), + [anon_sym_classify] = ACTIONS(334), + [anon_sym_38] = ACTIONS(334), + [anon_sym_deduplicate] = ACTIONS(334), + [anon_sym_39] = ACTIONS(334), + [anon_sym_box] = ACTIONS(334), + [anon_sym_40] = ACTIONS(334), + [anon_sym_unbox] = ACTIONS(334), + [anon_sym_41] = ACTIONS(334), + [anon_sym_match] = ACTIONS(334), + [anon_sym_42] = ACTIONS(334), + [anon_sym_couple] = ACTIONS(334), + [anon_sym_43] = ACTIONS(334), + [anon_sym_join] = ACTIONS(334), + [anon_sym_44] = ACTIONS(334), + [anon_sym_select] = ACTIONS(334), + [anon_sym_45] = ACTIONS(334), + [anon_sym_pick] = ACTIONS(334), + [anon_sym_46] = ACTIONS(334), + [anon_sym_reshape] = ACTIONS(334), + [anon_sym_47] = ACTIONS(334), + [anon_sym_take] = ACTIONS(334), + [anon_sym_48] = ACTIONS(334), + [anon_sym_drop] = ACTIONS(334), + [anon_sym_49] = ACTIONS(334), + [anon_sym_rotate] = ACTIONS(334), + [anon_sym_50] = ACTIONS(334), + [anon_sym_windows] = ACTIONS(334), + [anon_sym_51] = ACTIONS(334), + [anon_sym_keep] = ACTIONS(334), + [anon_sym_52] = ACTIONS(334), + [anon_sym_find] = ACTIONS(334), + [anon_sym_53] = ACTIONS(334), + [anon_sym_member] = ACTIONS(334), + [anon_sym_54] = ACTIONS(334), + [anon_sym_indexof] = ACTIONS(334), + [anon_sym_55] = ACTIONS(334), + [anon_sym_assert] = ACTIONS(334), + [anon_sym_56] = ACTIONS(334), + [anon_sym_wait] = ACTIONS(334), + [anon_sym_break] = ACTIONS(334), + [anon_sym_57] = ACTIONS(334), + [anon_sym_parse] = ACTIONS(334), + [anon_sym_random] = ACTIONS(334), + [anon_sym_58] = ACTIONS(334), + [anon_sym_gen] = ACTIONS(334), + [anon_sym_deal] = ACTIONS(334), + [anon_sym_tag] = ACTIONS(334), + [anon_sym_now] = ACTIONS(334), + [anon_sym_type] = ACTIONS(334), + [anon_sym_59] = ACTIONS(334), + [anon_sym_dump] = ACTIONS(334), + [anon_sym_regex] = ACTIONS(334), + [anon_sym_utf] = ACTIONS(334), + [anon_sym_rock] = ACTIONS(334), + [anon_sym_60] = ACTIONS(334), + [anon_sym_surface] = ACTIONS(334), + [anon_sym_TILDE] = ACTIONS(334), + [anon_sym_deep] = ACTIONS(334), + [anon_sym_de] = ACTIONS(336), + [anon_sym_61] = ACTIONS(334), + [anon_sym_abyss] = ACTIONS(334), + [anon_sym_ab] = ACTIONS(336), + [anon_sym_62] = ACTIONS(334), + [anon_sym_seabed] = ACTIONS(334), + [anon_sym_se] = ACTIONS(336), + [anon_sym_63] = ACTIONS(334), + [anon_sym_send] = ACTIONS(334), + [anon_sym_recv] = ACTIONS(334), + [anon_sym_tryrecv] = ACTIONS(334), + [anon_sym_reduce] = ACTIONS(338), + [anon_sym_SLASH] = ACTIONS(338), + [anon_sym_scan] = ACTIONS(338), + [anon_sym_BSLASH] = ACTIONS(338), + [anon_sym_each] = ACTIONS(338), + [anon_sym_64] = ACTIONS(338), + [anon_sym_rows] = ACTIONS(338), + [anon_sym_65] = ACTIONS(338), + [anon_sym_repeat] = ACTIONS(338), + [anon_sym_66] = ACTIONS(338), + [anon_sym_dip] = ACTIONS(338), + [anon_sym_67] = ACTIONS(338), + [anon_sym_gap] = ACTIONS(338), + [anon_sym_68] = ACTIONS(338), + [anon_sym_69] = ACTIONS(338), + [anon_sym_invert] = ACTIONS(338), + [anon_sym_70] = ACTIONS(338), + [anon_sym_spawn] = ACTIONS(338), + [anon_sym_pack] = ACTIONS(338), + [anon_sym_71] = ACTIONS(338), + [anon_sym_tribute] = ACTIONS(338), + [anon_sym_72] = ACTIONS(338), + [anon_sym_reach] = ACTIONS(338), + [anon_sym_fold] = ACTIONS(340), + [anon_sym_73] = ACTIONS(340), + [anon_sym_distribute] = ACTIONS(340), + [anon_sym_74] = ACTIONS(340), + [anon_sym_table] = ACTIONS(340), + [anon_sym_75] = ACTIONS(340), + [anon_sym_cross] = ACTIONS(340), + [anon_sym_76] = ACTIONS(340), + [anon_sym_group] = ACTIONS(340), + [anon_sym_77] = ACTIONS(340), + [anon_sym_partition] = ACTIONS(340), + [anon_sym_78] = ACTIONS(340), + [anon_sym_both] = ACTIONS(340), + [anon_sym_79] = ACTIONS(340), + [anon_sym_bracket] = ACTIONS(340), + [anon_sym_80] = ACTIONS(340), + [anon_sym_fork] = ACTIONS(340), + [anon_sym_81] = ACTIONS(340), + [anon_sym_under] = ACTIONS(340), + [anon_sym_82] = ACTIONS(340), + [anon_sym_level] = ACTIONS(340), + [anon_sym_83] = ACTIONS(340), + [anon_sym_fill] = ACTIONS(340), + [anon_sym_84] = ACTIONS(340), + [anon_sym_bind] = ACTIONS(340), + [anon_sym_SQUOTE] = ACTIONS(340), + [anon_sym_QMARK] = ACTIONS(340), + [anon_sym_try] = ACTIONS(342), + [anon_sym_85] = ACTIONS(340), + [anon_sym_combinate] = ACTIONS(340), + [anon_sym_86] = ACTIONS(340), + [anon_sym_87] = ACTIONS(344), + [anon_sym_88] = ACTIONS(344), + [anon_sym_89] = ACTIONS(344), + [anon_sym_90] = ACTIONS(344), + [anon_sym_91] = ACTIONS(344), + [anon_sym_92] = ACTIONS(344), + [anon_sym_93] = ACTIONS(344), [sym__whitespace] = ACTIONS(5), [sym__end_of_line] = ACTIONS(5), }, @@ -19932,12 +19812,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_repeat] = ACTIONS(41), [anon_sym_66] = ACTIONS(41), [anon_sym_dip] = ACTIONS(41), - [anon_sym_di] = ACTIONS(43), [anon_sym_67] = ACTIONS(41), [anon_sym_gap] = ACTIONS(41), - [anon_sym_ga] = ACTIONS(43), [anon_sym_68] = ACTIONS(41), - [anon_sym_oust] = ACTIONS(41), [anon_sym_69] = ACTIONS(41), [anon_sym_invert] = ACTIONS(41), [anon_sym_70] = ACTIONS(41), @@ -19946,44 +19823,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_71] = ACTIONS(41), [anon_sym_tribute] = ACTIONS(41), [anon_sym_72] = ACTIONS(41), - [anon_sym_fold] = ACTIONS(45), - [anon_sym_73] = ACTIONS(45), - [anon_sym_distribute] = ACTIONS(45), - [anon_sym_74] = ACTIONS(45), - [anon_sym_table] = ACTIONS(45), - [anon_sym_75] = ACTIONS(45), - [anon_sym_cross] = ACTIONS(45), - [anon_sym_76] = ACTIONS(45), - [anon_sym_group] = ACTIONS(45), - [anon_sym_77] = ACTIONS(45), - [anon_sym_partition] = ACTIONS(45), - [anon_sym_78] = ACTIONS(45), - [anon_sym_both] = ACTIONS(45), - [anon_sym_79] = ACTIONS(45), - [anon_sym_bracket] = ACTIONS(45), - [anon_sym_80] = ACTIONS(45), - [anon_sym_fork] = ACTIONS(45), - [anon_sym_81] = ACTIONS(45), - [anon_sym_under] = ACTIONS(45), - [anon_sym_82] = ACTIONS(45), - [anon_sym_level] = ACTIONS(45), - [anon_sym_83] = ACTIONS(45), - [anon_sym_fill] = ACTIONS(45), - [anon_sym_84] = ACTIONS(45), - [anon_sym_bind] = ACTIONS(45), - [anon_sym_SQUOTE] = ACTIONS(45), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_try] = ACTIONS(47), - [anon_sym_85] = ACTIONS(45), - [anon_sym_combinate] = ACTIONS(45), - [anon_sym_86] = ACTIONS(45), - [anon_sym_87] = ACTIONS(49), - [anon_sym_88] = ACTIONS(49), - [anon_sym_89] = ACTIONS(49), - [anon_sym_90] = ACTIONS(49), - [anon_sym_91] = ACTIONS(49), - [anon_sym_92] = ACTIONS(49), - [anon_sym_93] = ACTIONS(49), + [anon_sym_reach] = ACTIONS(41), + [anon_sym_fold] = ACTIONS(43), + [anon_sym_73] = ACTIONS(43), + [anon_sym_distribute] = ACTIONS(43), + [anon_sym_74] = ACTIONS(43), + [anon_sym_table] = ACTIONS(43), + [anon_sym_75] = ACTIONS(43), + [anon_sym_cross] = ACTIONS(43), + [anon_sym_76] = ACTIONS(43), + [anon_sym_group] = ACTIONS(43), + [anon_sym_77] = ACTIONS(43), + [anon_sym_partition] = ACTIONS(43), + [anon_sym_78] = ACTIONS(43), + [anon_sym_both] = ACTIONS(43), + [anon_sym_79] = ACTIONS(43), + [anon_sym_bracket] = ACTIONS(43), + [anon_sym_80] = ACTIONS(43), + [anon_sym_fork] = ACTIONS(43), + [anon_sym_81] = ACTIONS(43), + [anon_sym_under] = ACTIONS(43), + [anon_sym_82] = ACTIONS(43), + [anon_sym_level] = ACTIONS(43), + [anon_sym_83] = ACTIONS(43), + [anon_sym_fill] = ACTIONS(43), + [anon_sym_84] = ACTIONS(43), + [anon_sym_bind] = ACTIONS(43), + [anon_sym_SQUOTE] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_85] = ACTIONS(43), + [anon_sym_combinate] = ACTIONS(43), + [anon_sym_86] = ACTIONS(43), + [anon_sym_87] = ACTIONS(47), + [anon_sym_88] = ACTIONS(47), + [anon_sym_89] = ACTIONS(47), + [anon_sym_90] = ACTIONS(47), + [anon_sym_91] = ACTIONS(47), + [anon_sym_92] = ACTIONS(47), + [anon_sym_93] = ACTIONS(47), [sym__whitespace] = ACTIONS(5), [sym__end_of_line] = ACTIONS(5), }, @@ -20005,242 +19883,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_modifier2] = STATE(128), [sym_deprecated] = STATE(147), [aux_sym_array_repeat1] = STATE(49), - [aux_sym_number_token1] = ACTIONS(325), - [anon_sym_os] = ACTIONS(327), - [anon_sym_Family] = ACTIONS(327), - [anon_sym_Arch] = ACTIONS(327), - [anon_sym_ExeExt] = ACTIONS(327), - [anon_sym_PllExt] = ACTIONS(327), - [anon_sym_Sep] = ACTIONS(327), - [aux_sym_character_token1] = ACTIONS(329), - [sym_string] = ACTIONS(331), - [sym_multiLineString] = ACTIONS(331), + [aux_sym_number_token1] = ACTIONS(312), + [anon_sym_os] = ACTIONS(314), + [anon_sym_Family] = ACTIONS(314), + [anon_sym_Arch] = ACTIONS(314), + [anon_sym_ExeExt] = ACTIONS(314), + [anon_sym_PllExt] = ACTIONS(314), + [anon_sym_Sep] = ACTIONS(314), + [aux_sym_character_token1] = ACTIONS(316), + [sym_string] = ACTIONS(318), + [sym_multiLineString] = ACTIONS(318), [anon_sym_PIPE] = ACTIONS(15), - [sym_identifier] = ACTIONS(333), - [sym_identifier_deprecated] = ACTIONS(333), - [sym_system] = ACTIONS(331), + [sym_identifier] = ACTIONS(320), + [sym_identifier_deprecated] = ACTIONS(320), + [sym_system] = ACTIONS(318), [sym_comment] = ACTIONS(3), - [sym_openParen] = ACTIONS(335), - [sym_openCurly] = ACTIONS(337), - [sym_openBracket] = ACTIONS(339), - [anon_sym_CARET] = ACTIONS(341), - [anon_sym_eta] = ACTIONS(343), - [anon_sym_] = ACTIONS(345), - [anon_sym_pi] = ACTIONS(345), - [anon_sym_2] = ACTIONS(345), - [anon_sym_tau] = ACTIONS(343), - [anon_sym_3] = ACTIONS(345), - [anon_sym_infinity] = ACTIONS(343), - [anon_sym_4] = ACTIONS(343), - [anon_sym_e] = ACTIONS(345), - [anon_sym_NaN] = ACTIONS(345), - [anon_sym_NumProcs] = ACTIONS(345), - [anon_sym_DOT] = ACTIONS(347), - [anon_sym_COMMA] = ACTIONS(347), - [anon_sym_5] = ACTIONS(347), - [anon_sym_SEMI] = ACTIONS(347), - [anon_sym_identity] = ACTIONS(347), - [anon_sym_id] = ACTIONS(349), - [anon_sym_6] = ACTIONS(347), - [anon_sym_not] = ACTIONS(347), - [anon_sym_7] = ACTIONS(347), - [anon_sym_sign] = ACTIONS(347), - [anon_sym_8] = ACTIONS(347), - [anon_sym_BQUOTE] = ACTIONS(347), - [anon_sym_9] = ACTIONS(347), - [anon_sym_absolutevalue] = ACTIONS(347), - [anon_sym_10] = ACTIONS(347), - [anon_sym_sqrt] = ACTIONS(347), - [anon_sym_11] = ACTIONS(347), - [anon_sym_sine] = ACTIONS(347), - [anon_sym_12] = ACTIONS(347), - [anon_sym_floor] = ACTIONS(347), - [anon_sym_13] = ACTIONS(347), - [anon_sym_ceiling] = ACTIONS(347), - [anon_sym_14] = ACTIONS(347), - [anon_sym_round] = ACTIONS(347), - [anon_sym_15] = ACTIONS(347), - [anon_sym_EQ] = ACTIONS(347), - [anon_sym_BANG_EQ] = ACTIONS(347), - [anon_sym_16] = ACTIONS(347), - [anon_sym_LT] = ACTIONS(349), - [anon_sym_LT_EQ] = ACTIONS(347), - [anon_sym_17] = ACTIONS(347), - [anon_sym_GT] = ACTIONS(349), - [anon_sym_GT_EQ] = ACTIONS(347), - [anon_sym_18] = ACTIONS(347), - [anon_sym_PLUS] = ACTIONS(347), - [anon_sym_DASH] = ACTIONS(347), - [anon_sym_STAR] = ACTIONS(347), - [anon_sym_19] = ACTIONS(347), - [anon_sym_PERCENT] = ACTIONS(347), - [anon_sym_20] = ACTIONS(347), - [anon_sym_modulus] = ACTIONS(347), - [anon_sym_21] = ACTIONS(347), - [anon_sym_power] = ACTIONS(347), - [anon_sym_22] = ACTIONS(347), - [anon_sym_logarithm] = ACTIONS(347), - [anon_sym_23] = ACTIONS(347), - [anon_sym_minimum] = ACTIONS(347), - [anon_sym_24] = ACTIONS(347), - [anon_sym_maximum] = ACTIONS(347), - [anon_sym_25] = ACTIONS(347), - [anon_sym_atangent] = ACTIONS(347), - [anon_sym_26] = ACTIONS(347), - [anon_sym_length] = ACTIONS(347), - [anon_sym_27] = ACTIONS(347), - [anon_sym_shape] = ACTIONS(347), - [anon_sym_28] = ACTIONS(347), - [anon_sym_range] = ACTIONS(347), - [anon_sym_29] = ACTIONS(347), - [anon_sym_first] = ACTIONS(347), - [anon_sym_30] = ACTIONS(347), - [anon_sym_reverse] = ACTIONS(347), - [anon_sym_31] = ACTIONS(347), - [anon_sym_deshape] = ACTIONS(347), - [anon_sym_32] = ACTIONS(347), - [anon_sym_bits] = ACTIONS(347), - [anon_sym_33] = ACTIONS(347), - [anon_sym_transpose] = ACTIONS(347), - [anon_sym_34] = ACTIONS(347), - [anon_sym_rise] = ACTIONS(347), - [anon_sym_35] = ACTIONS(347), - [anon_sym_fall] = ACTIONS(347), - [anon_sym_36] = ACTIONS(347), - [anon_sym_where] = ACTIONS(347), - [anon_sym_37] = ACTIONS(347), - [anon_sym_classify] = ACTIONS(347), - [anon_sym_38] = ACTIONS(347), - [anon_sym_deduplicate] = ACTIONS(347), - [anon_sym_39] = ACTIONS(347), - [anon_sym_box] = ACTIONS(347), - [anon_sym_40] = ACTIONS(347), - [anon_sym_unbox] = ACTIONS(347), - [anon_sym_41] = ACTIONS(347), - [anon_sym_match] = ACTIONS(347), - [anon_sym_42] = ACTIONS(347), - [anon_sym_couple] = ACTIONS(347), - [anon_sym_43] = ACTIONS(347), - [anon_sym_join] = ACTIONS(347), - [anon_sym_44] = ACTIONS(347), - [anon_sym_select] = ACTIONS(347), - [anon_sym_45] = ACTIONS(347), - [anon_sym_pick] = ACTIONS(347), - [anon_sym_46] = ACTIONS(347), - [anon_sym_reshape] = ACTIONS(347), - [anon_sym_47] = ACTIONS(347), - [anon_sym_take] = ACTIONS(347), - [anon_sym_48] = ACTIONS(347), - [anon_sym_drop] = ACTIONS(347), - [anon_sym_49] = ACTIONS(347), - [anon_sym_rotate] = ACTIONS(347), - [anon_sym_50] = ACTIONS(347), - [anon_sym_windows] = ACTIONS(347), - [anon_sym_51] = ACTIONS(347), - [anon_sym_keep] = ACTIONS(347), - [anon_sym_52] = ACTIONS(347), - [anon_sym_find] = ACTIONS(347), - [anon_sym_53] = ACTIONS(347), - [anon_sym_member] = ACTIONS(347), - [anon_sym_54] = ACTIONS(347), - [anon_sym_indexof] = ACTIONS(347), - [anon_sym_55] = ACTIONS(347), - [anon_sym_assert] = ACTIONS(347), - [anon_sym_56] = ACTIONS(347), - [anon_sym_wait] = ACTIONS(347), - [anon_sym_break] = ACTIONS(347), - [anon_sym_57] = ACTIONS(347), - [anon_sym_parse] = ACTIONS(347), - [anon_sym_random] = ACTIONS(347), - [anon_sym_58] = ACTIONS(347), - [anon_sym_gen] = ACTIONS(347), - [anon_sym_deal] = ACTIONS(347), - [anon_sym_tag] = ACTIONS(347), - [anon_sym_now] = ACTIONS(347), - [anon_sym_type] = ACTIONS(347), - [anon_sym_59] = ACTIONS(347), - [anon_sym_dump] = ACTIONS(347), - [anon_sym_regex] = ACTIONS(347), - [anon_sym_utf] = ACTIONS(347), - [anon_sym_rock] = ACTIONS(347), - [anon_sym_60] = ACTIONS(347), - [anon_sym_surface] = ACTIONS(347), - [anon_sym_TILDE] = ACTIONS(347), - [anon_sym_deep] = ACTIONS(347), - [anon_sym_de] = ACTIONS(349), - [anon_sym_61] = ACTIONS(347), - [anon_sym_abyss] = ACTIONS(347), - [anon_sym_ab] = ACTIONS(349), - [anon_sym_62] = ACTIONS(347), - [anon_sym_seabed] = ACTIONS(347), - [anon_sym_se] = ACTIONS(349), - [anon_sym_63] = ACTIONS(347), - [anon_sym_send] = ACTIONS(347), - [anon_sym_recv] = ACTIONS(347), - [anon_sym_tryrecv] = ACTIONS(347), - [anon_sym_reduce] = ACTIONS(351), - [anon_sym_SLASH] = ACTIONS(351), - [anon_sym_scan] = ACTIONS(351), - [anon_sym_BSLASH] = ACTIONS(351), - [anon_sym_each] = ACTIONS(351), - [anon_sym_64] = ACTIONS(351), - [anon_sym_rows] = ACTIONS(351), - [anon_sym_65] = ACTIONS(351), - [anon_sym_repeat] = ACTIONS(351), - [anon_sym_66] = ACTIONS(351), - [anon_sym_dip] = ACTIONS(351), - [anon_sym_di] = ACTIONS(353), - [anon_sym_67] = ACTIONS(351), - [anon_sym_gap] = ACTIONS(351), - [anon_sym_ga] = ACTIONS(353), - [anon_sym_68] = ACTIONS(351), - [anon_sym_oust] = ACTIONS(351), - [anon_sym_69] = ACTIONS(351), - [anon_sym_invert] = ACTIONS(351), - [anon_sym_70] = ACTIONS(351), - [anon_sym_spawn] = ACTIONS(351), - [anon_sym_pack] = ACTIONS(351), - [anon_sym_71] = ACTIONS(351), - [anon_sym_tribute] = ACTIONS(351), - [anon_sym_72] = ACTIONS(351), - [anon_sym_fold] = ACTIONS(355), - [anon_sym_73] = ACTIONS(355), - [anon_sym_distribute] = ACTIONS(355), - [anon_sym_74] = ACTIONS(355), - [anon_sym_table] = ACTIONS(355), - [anon_sym_75] = ACTIONS(355), - [anon_sym_cross] = ACTIONS(355), - [anon_sym_76] = ACTIONS(355), - [anon_sym_group] = ACTIONS(355), - [anon_sym_77] = ACTIONS(355), - [anon_sym_partition] = ACTIONS(355), - [anon_sym_78] = ACTIONS(355), - [anon_sym_both] = ACTIONS(355), - [anon_sym_79] = ACTIONS(355), - [anon_sym_bracket] = ACTIONS(355), - [anon_sym_80] = ACTIONS(355), - [anon_sym_fork] = ACTIONS(355), - [anon_sym_81] = ACTIONS(355), - [anon_sym_under] = ACTIONS(355), - [anon_sym_82] = ACTIONS(355), - [anon_sym_level] = ACTIONS(355), - [anon_sym_83] = ACTIONS(355), - [anon_sym_fill] = ACTIONS(355), - [anon_sym_84] = ACTIONS(355), - [anon_sym_bind] = ACTIONS(355), - [anon_sym_SQUOTE] = ACTIONS(355), - [anon_sym_QMARK] = ACTIONS(355), - [anon_sym_try] = ACTIONS(357), - [anon_sym_85] = ACTIONS(355), - [anon_sym_combinate] = ACTIONS(355), - [anon_sym_86] = ACTIONS(355), - [anon_sym_87] = ACTIONS(359), - [anon_sym_88] = ACTIONS(359), - [anon_sym_89] = ACTIONS(359), - [anon_sym_90] = ACTIONS(359), - [anon_sym_91] = ACTIONS(359), - [anon_sym_92] = ACTIONS(359), - [anon_sym_93] = ACTIONS(359), + [sym_openParen] = ACTIONS(322), + [sym_openCurly] = ACTIONS(324), + [sym_openBracket] = ACTIONS(326), + [anon_sym_CARET] = ACTIONS(328), + [anon_sym_eta] = ACTIONS(330), + [anon_sym_] = ACTIONS(332), + [anon_sym_pi] = ACTIONS(332), + [anon_sym_2] = ACTIONS(332), + [anon_sym_tau] = ACTIONS(330), + [anon_sym_3] = ACTIONS(332), + [anon_sym_infinity] = ACTIONS(330), + [anon_sym_4] = ACTIONS(330), + [anon_sym_e] = ACTIONS(332), + [anon_sym_NaN] = ACTIONS(332), + [anon_sym_NumProcs] = ACTIONS(332), + [anon_sym_DOT] = ACTIONS(334), + [anon_sym_COMMA] = ACTIONS(334), + [anon_sym_5] = ACTIONS(334), + [anon_sym_SEMI] = ACTIONS(334), + [anon_sym_identity] = ACTIONS(334), + [anon_sym_id] = ACTIONS(336), + [anon_sym_6] = ACTIONS(334), + [anon_sym_not] = ACTIONS(334), + [anon_sym_7] = ACTIONS(334), + [anon_sym_sign] = ACTIONS(334), + [anon_sym_8] = ACTIONS(334), + [anon_sym_BQUOTE] = ACTIONS(334), + [anon_sym_9] = ACTIONS(334), + [anon_sym_absolutevalue] = ACTIONS(334), + [anon_sym_10] = ACTIONS(334), + [anon_sym_sqrt] = ACTIONS(334), + [anon_sym_11] = ACTIONS(334), + [anon_sym_sine] = ACTIONS(334), + [anon_sym_12] = ACTIONS(334), + [anon_sym_floor] = ACTIONS(334), + [anon_sym_13] = ACTIONS(334), + [anon_sym_ceiling] = ACTIONS(334), + [anon_sym_14] = ACTIONS(334), + [anon_sym_round] = ACTIONS(334), + [anon_sym_15] = ACTIONS(334), + [anon_sym_EQ] = ACTIONS(334), + [anon_sym_BANG_EQ] = ACTIONS(334), + [anon_sym_16] = ACTIONS(334), + [anon_sym_LT] = ACTIONS(336), + [anon_sym_LT_EQ] = ACTIONS(334), + [anon_sym_17] = ACTIONS(334), + [anon_sym_GT] = ACTIONS(336), + [anon_sym_GT_EQ] = ACTIONS(334), + [anon_sym_18] = ACTIONS(334), + [anon_sym_PLUS] = ACTIONS(334), + [anon_sym_DASH] = ACTIONS(334), + [anon_sym_STAR] = ACTIONS(334), + [anon_sym_19] = ACTIONS(334), + [anon_sym_PERCENT] = ACTIONS(334), + [anon_sym_20] = ACTIONS(334), + [anon_sym_modulus] = ACTIONS(334), + [anon_sym_21] = ACTIONS(334), + [anon_sym_power] = ACTIONS(334), + [anon_sym_22] = ACTIONS(334), + [anon_sym_logarithm] = ACTIONS(334), + [anon_sym_23] = ACTIONS(334), + [anon_sym_minimum] = ACTIONS(334), + [anon_sym_24] = ACTIONS(334), + [anon_sym_maximum] = ACTIONS(334), + [anon_sym_25] = ACTIONS(334), + [anon_sym_atangent] = ACTIONS(334), + [anon_sym_26] = ACTIONS(334), + [anon_sym_length] = ACTIONS(334), + [anon_sym_27] = ACTIONS(334), + [anon_sym_shape] = ACTIONS(334), + [anon_sym_28] = ACTIONS(334), + [anon_sym_range] = ACTIONS(334), + [anon_sym_29] = ACTIONS(334), + [anon_sym_first] = ACTIONS(334), + [anon_sym_30] = ACTIONS(334), + [anon_sym_reverse] = ACTIONS(334), + [anon_sym_31] = ACTIONS(334), + [anon_sym_deshape] = ACTIONS(334), + [anon_sym_32] = ACTIONS(334), + [anon_sym_bits] = ACTIONS(334), + [anon_sym_33] = ACTIONS(334), + [anon_sym_transpose] = ACTIONS(334), + [anon_sym_34] = ACTIONS(334), + [anon_sym_rise] = ACTIONS(334), + [anon_sym_35] = ACTIONS(334), + [anon_sym_fall] = ACTIONS(334), + [anon_sym_36] = ACTIONS(334), + [anon_sym_where] = ACTIONS(334), + [anon_sym_37] = ACTIONS(334), + [anon_sym_classify] = ACTIONS(334), + [anon_sym_38] = ACTIONS(334), + [anon_sym_deduplicate] = ACTIONS(334), + [anon_sym_39] = ACTIONS(334), + [anon_sym_box] = ACTIONS(334), + [anon_sym_40] = ACTIONS(334), + [anon_sym_unbox] = ACTIONS(334), + [anon_sym_41] = ACTIONS(334), + [anon_sym_match] = ACTIONS(334), + [anon_sym_42] = ACTIONS(334), + [anon_sym_couple] = ACTIONS(334), + [anon_sym_43] = ACTIONS(334), + [anon_sym_join] = ACTIONS(334), + [anon_sym_44] = ACTIONS(334), + [anon_sym_select] = ACTIONS(334), + [anon_sym_45] = ACTIONS(334), + [anon_sym_pick] = ACTIONS(334), + [anon_sym_46] = ACTIONS(334), + [anon_sym_reshape] = ACTIONS(334), + [anon_sym_47] = ACTIONS(334), + [anon_sym_take] = ACTIONS(334), + [anon_sym_48] = ACTIONS(334), + [anon_sym_drop] = ACTIONS(334), + [anon_sym_49] = ACTIONS(334), + [anon_sym_rotate] = ACTIONS(334), + [anon_sym_50] = ACTIONS(334), + [anon_sym_windows] = ACTIONS(334), + [anon_sym_51] = ACTIONS(334), + [anon_sym_keep] = ACTIONS(334), + [anon_sym_52] = ACTIONS(334), + [anon_sym_find] = ACTIONS(334), + [anon_sym_53] = ACTIONS(334), + [anon_sym_member] = ACTIONS(334), + [anon_sym_54] = ACTIONS(334), + [anon_sym_indexof] = ACTIONS(334), + [anon_sym_55] = ACTIONS(334), + [anon_sym_assert] = ACTIONS(334), + [anon_sym_56] = ACTIONS(334), + [anon_sym_wait] = ACTIONS(334), + [anon_sym_break] = ACTIONS(334), + [anon_sym_57] = ACTIONS(334), + [anon_sym_parse] = ACTIONS(334), + [anon_sym_random] = ACTIONS(334), + [anon_sym_58] = ACTIONS(334), + [anon_sym_gen] = ACTIONS(334), + [anon_sym_deal] = ACTIONS(334), + [anon_sym_tag] = ACTIONS(334), + [anon_sym_now] = ACTIONS(334), + [anon_sym_type] = ACTIONS(334), + [anon_sym_59] = ACTIONS(334), + [anon_sym_dump] = ACTIONS(334), + [anon_sym_regex] = ACTIONS(334), + [anon_sym_utf] = ACTIONS(334), + [anon_sym_rock] = ACTIONS(334), + [anon_sym_60] = ACTIONS(334), + [anon_sym_surface] = ACTIONS(334), + [anon_sym_TILDE] = ACTIONS(334), + [anon_sym_deep] = ACTIONS(334), + [anon_sym_de] = ACTIONS(336), + [anon_sym_61] = ACTIONS(334), + [anon_sym_abyss] = ACTIONS(334), + [anon_sym_ab] = ACTIONS(336), + [anon_sym_62] = ACTIONS(334), + [anon_sym_seabed] = ACTIONS(334), + [anon_sym_se] = ACTIONS(336), + [anon_sym_63] = ACTIONS(334), + [anon_sym_send] = ACTIONS(334), + [anon_sym_recv] = ACTIONS(334), + [anon_sym_tryrecv] = ACTIONS(334), + [anon_sym_reduce] = ACTIONS(338), + [anon_sym_SLASH] = ACTIONS(338), + [anon_sym_scan] = ACTIONS(338), + [anon_sym_BSLASH] = ACTIONS(338), + [anon_sym_each] = ACTIONS(338), + [anon_sym_64] = ACTIONS(338), + [anon_sym_rows] = ACTIONS(338), + [anon_sym_65] = ACTIONS(338), + [anon_sym_repeat] = ACTIONS(338), + [anon_sym_66] = ACTIONS(338), + [anon_sym_dip] = ACTIONS(338), + [anon_sym_67] = ACTIONS(338), + [anon_sym_gap] = ACTIONS(338), + [anon_sym_68] = ACTIONS(338), + [anon_sym_69] = ACTIONS(338), + [anon_sym_invert] = ACTIONS(338), + [anon_sym_70] = ACTIONS(338), + [anon_sym_spawn] = ACTIONS(338), + [anon_sym_pack] = ACTIONS(338), + [anon_sym_71] = ACTIONS(338), + [anon_sym_tribute] = ACTIONS(338), + [anon_sym_72] = ACTIONS(338), + [anon_sym_reach] = ACTIONS(338), + [anon_sym_fold] = ACTIONS(340), + [anon_sym_73] = ACTIONS(340), + [anon_sym_distribute] = ACTIONS(340), + [anon_sym_74] = ACTIONS(340), + [anon_sym_table] = ACTIONS(340), + [anon_sym_75] = ACTIONS(340), + [anon_sym_cross] = ACTIONS(340), + [anon_sym_76] = ACTIONS(340), + [anon_sym_group] = ACTIONS(340), + [anon_sym_77] = ACTIONS(340), + [anon_sym_partition] = ACTIONS(340), + [anon_sym_78] = ACTIONS(340), + [anon_sym_both] = ACTIONS(340), + [anon_sym_79] = ACTIONS(340), + [anon_sym_bracket] = ACTIONS(340), + [anon_sym_80] = ACTIONS(340), + [anon_sym_fork] = ACTIONS(340), + [anon_sym_81] = ACTIONS(340), + [anon_sym_under] = ACTIONS(340), + [anon_sym_82] = ACTIONS(340), + [anon_sym_level] = ACTIONS(340), + [anon_sym_83] = ACTIONS(340), + [anon_sym_fill] = ACTIONS(340), + [anon_sym_84] = ACTIONS(340), + [anon_sym_bind] = ACTIONS(340), + [anon_sym_SQUOTE] = ACTIONS(340), + [anon_sym_QMARK] = ACTIONS(340), + [anon_sym_try] = ACTIONS(342), + [anon_sym_85] = ACTIONS(340), + [anon_sym_combinate] = ACTIONS(340), + [anon_sym_86] = ACTIONS(340), + [anon_sym_87] = ACTIONS(344), + [anon_sym_88] = ACTIONS(344), + [anon_sym_89] = ACTIONS(344), + [anon_sym_90] = ACTIONS(344), + [anon_sym_91] = ACTIONS(344), + [anon_sym_92] = ACTIONS(344), + [anon_sym_93] = ACTIONS(344), [sym__whitespace] = ACTIONS(5), [sym__end_of_line] = ACTIONS(5), }, @@ -20262,242 +20138,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_modifier2] = STATE(59), [sym_deprecated] = STATE(61), [aux_sym_array_repeat1] = STATE(53), - [aux_sym_number_token1] = ACTIONS(116), - [anon_sym_os] = ACTIONS(118), - [anon_sym_Family] = ACTIONS(118), - [anon_sym_Arch] = ACTIONS(118), - [anon_sym_ExeExt] = ACTIONS(118), - [anon_sym_PllExt] = ACTIONS(118), - [anon_sym_Sep] = ACTIONS(118), - [aux_sym_character_token1] = ACTIONS(120), - [sym_string] = ACTIONS(122), - [sym_multiLineString] = ACTIONS(122), + [aux_sym_number_token1] = ACTIONS(111), + [anon_sym_os] = ACTIONS(113), + [anon_sym_Family] = ACTIONS(113), + [anon_sym_Arch] = ACTIONS(113), + [anon_sym_ExeExt] = ACTIONS(113), + [anon_sym_PllExt] = ACTIONS(113), + [anon_sym_Sep] = ACTIONS(113), + [aux_sym_character_token1] = ACTIONS(115), + [sym_string] = ACTIONS(117), + [sym_multiLineString] = ACTIONS(117), [anon_sym_PIPE] = ACTIONS(15), - [sym_identifier] = ACTIONS(126), - [sym_identifier_deprecated] = ACTIONS(126), - [sym_system] = ACTIONS(122), + [sym_identifier] = ACTIONS(121), + [sym_identifier_deprecated] = ACTIONS(121), + [sym_system] = ACTIONS(117), [sym_comment] = ACTIONS(3), - [sym_openParen] = ACTIONS(130), - [sym_openCurly] = ACTIONS(134), - [sym_openBracket] = ACTIONS(136), - [anon_sym_CARET] = ACTIONS(142), - [anon_sym_eta] = ACTIONS(144), - [anon_sym_] = ACTIONS(146), - [anon_sym_pi] = ACTIONS(146), - [anon_sym_2] = ACTIONS(146), - [anon_sym_tau] = ACTIONS(144), - [anon_sym_3] = ACTIONS(146), - [anon_sym_infinity] = ACTIONS(144), - [anon_sym_4] = ACTIONS(144), - [anon_sym_e] = ACTIONS(146), - [anon_sym_NaN] = ACTIONS(146), - [anon_sym_NumProcs] = ACTIONS(146), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_COMMA] = ACTIONS(148), - [anon_sym_5] = ACTIONS(148), - [anon_sym_SEMI] = ACTIONS(148), - [anon_sym_identity] = ACTIONS(148), - [anon_sym_id] = ACTIONS(150), - [anon_sym_6] = ACTIONS(148), - [anon_sym_not] = ACTIONS(148), - [anon_sym_7] = ACTIONS(148), - [anon_sym_sign] = ACTIONS(148), - [anon_sym_8] = ACTIONS(148), - [anon_sym_BQUOTE] = ACTIONS(148), - [anon_sym_9] = ACTIONS(148), - [anon_sym_absolutevalue] = ACTIONS(148), - [anon_sym_10] = ACTIONS(148), - [anon_sym_sqrt] = ACTIONS(148), - [anon_sym_11] = ACTIONS(148), - [anon_sym_sine] = ACTIONS(148), - [anon_sym_12] = ACTIONS(148), - [anon_sym_floor] = ACTIONS(148), - [anon_sym_13] = ACTIONS(148), - [anon_sym_ceiling] = ACTIONS(148), - [anon_sym_14] = ACTIONS(148), - [anon_sym_round] = ACTIONS(148), - [anon_sym_15] = ACTIONS(148), - [anon_sym_EQ] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_16] = ACTIONS(148), - [anon_sym_LT] = ACTIONS(150), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_17] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_18] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_19] = ACTIONS(148), - [anon_sym_PERCENT] = ACTIONS(148), - [anon_sym_20] = ACTIONS(148), - [anon_sym_modulus] = ACTIONS(148), - [anon_sym_21] = ACTIONS(148), - [anon_sym_power] = ACTIONS(148), - [anon_sym_22] = ACTIONS(148), - [anon_sym_logarithm] = ACTIONS(148), - [anon_sym_23] = ACTIONS(148), - [anon_sym_minimum] = ACTIONS(148), - [anon_sym_24] = ACTIONS(148), - [anon_sym_maximum] = ACTIONS(148), - [anon_sym_25] = ACTIONS(148), - [anon_sym_atangent] = ACTIONS(148), - [anon_sym_26] = ACTIONS(148), - [anon_sym_length] = ACTIONS(148), - [anon_sym_27] = ACTIONS(148), - [anon_sym_shape] = ACTIONS(148), - [anon_sym_28] = ACTIONS(148), - [anon_sym_range] = ACTIONS(148), - [anon_sym_29] = ACTIONS(148), - [anon_sym_first] = ACTIONS(148), - [anon_sym_30] = ACTIONS(148), - [anon_sym_reverse] = ACTIONS(148), - [anon_sym_31] = ACTIONS(148), - [anon_sym_deshape] = ACTIONS(148), - [anon_sym_32] = ACTIONS(148), - [anon_sym_bits] = ACTIONS(148), - [anon_sym_33] = ACTIONS(148), - [anon_sym_transpose] = ACTIONS(148), - [anon_sym_34] = ACTIONS(148), - [anon_sym_rise] = ACTIONS(148), - [anon_sym_35] = ACTIONS(148), - [anon_sym_fall] = ACTIONS(148), - [anon_sym_36] = ACTIONS(148), - [anon_sym_where] = ACTIONS(148), - [anon_sym_37] = ACTIONS(148), - [anon_sym_classify] = ACTIONS(148), - [anon_sym_38] = ACTIONS(148), - [anon_sym_deduplicate] = ACTIONS(148), - [anon_sym_39] = ACTIONS(148), - [anon_sym_box] = ACTIONS(148), - [anon_sym_40] = ACTIONS(148), - [anon_sym_unbox] = ACTIONS(148), - [anon_sym_41] = ACTIONS(148), - [anon_sym_match] = ACTIONS(148), - [anon_sym_42] = ACTIONS(148), - [anon_sym_couple] = ACTIONS(148), - [anon_sym_43] = ACTIONS(148), - [anon_sym_join] = ACTIONS(148), - [anon_sym_44] = ACTIONS(148), - [anon_sym_select] = ACTIONS(148), - [anon_sym_45] = ACTIONS(148), - [anon_sym_pick] = ACTIONS(148), - [anon_sym_46] = ACTIONS(148), - [anon_sym_reshape] = ACTIONS(148), - [anon_sym_47] = ACTIONS(148), - [anon_sym_take] = ACTIONS(148), - [anon_sym_48] = ACTIONS(148), - [anon_sym_drop] = ACTIONS(148), - [anon_sym_49] = ACTIONS(148), - [anon_sym_rotate] = ACTIONS(148), - [anon_sym_50] = ACTIONS(148), - [anon_sym_windows] = ACTIONS(148), - [anon_sym_51] = ACTIONS(148), - [anon_sym_keep] = ACTIONS(148), - [anon_sym_52] = ACTIONS(148), - [anon_sym_find] = ACTIONS(148), - [anon_sym_53] = ACTIONS(148), - [anon_sym_member] = ACTIONS(148), - [anon_sym_54] = ACTIONS(148), - [anon_sym_indexof] = ACTIONS(148), - [anon_sym_55] = ACTIONS(148), - [anon_sym_assert] = ACTIONS(148), - [anon_sym_56] = ACTIONS(148), - [anon_sym_wait] = ACTIONS(148), - [anon_sym_break] = ACTIONS(148), - [anon_sym_57] = ACTIONS(148), - [anon_sym_parse] = ACTIONS(148), - [anon_sym_random] = ACTIONS(148), - [anon_sym_58] = ACTIONS(148), - [anon_sym_gen] = ACTIONS(148), - [anon_sym_deal] = ACTIONS(148), - [anon_sym_tag] = ACTIONS(148), - [anon_sym_now] = ACTIONS(148), - [anon_sym_type] = ACTIONS(148), - [anon_sym_59] = ACTIONS(148), - [anon_sym_dump] = ACTIONS(148), - [anon_sym_regex] = ACTIONS(148), - [anon_sym_utf] = ACTIONS(148), - [anon_sym_rock] = ACTIONS(148), - [anon_sym_60] = ACTIONS(148), - [anon_sym_surface] = ACTIONS(148), - [anon_sym_TILDE] = ACTIONS(148), - [anon_sym_deep] = ACTIONS(148), - [anon_sym_de] = ACTIONS(150), - [anon_sym_61] = ACTIONS(148), - [anon_sym_abyss] = ACTIONS(148), - [anon_sym_ab] = ACTIONS(150), - [anon_sym_62] = ACTIONS(148), - [anon_sym_seabed] = ACTIONS(148), - [anon_sym_se] = ACTIONS(150), - [anon_sym_63] = ACTIONS(148), - [anon_sym_send] = ACTIONS(148), - [anon_sym_recv] = ACTIONS(148), - [anon_sym_tryrecv] = ACTIONS(148), - [anon_sym_reduce] = ACTIONS(152), - [anon_sym_SLASH] = ACTIONS(152), - [anon_sym_scan] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_each] = ACTIONS(152), - [anon_sym_64] = ACTIONS(152), - [anon_sym_rows] = ACTIONS(152), - [anon_sym_65] = ACTIONS(152), - [anon_sym_repeat] = ACTIONS(152), - [anon_sym_66] = ACTIONS(152), - [anon_sym_dip] = ACTIONS(152), - [anon_sym_di] = ACTIONS(154), - [anon_sym_67] = ACTIONS(152), - [anon_sym_gap] = ACTIONS(152), - [anon_sym_ga] = ACTIONS(154), - [anon_sym_68] = ACTIONS(152), - [anon_sym_oust] = ACTIONS(152), - [anon_sym_69] = ACTIONS(152), - [anon_sym_invert] = ACTIONS(152), - [anon_sym_70] = ACTIONS(152), - [anon_sym_spawn] = ACTIONS(152), - [anon_sym_pack] = ACTIONS(152), - [anon_sym_71] = ACTIONS(152), - [anon_sym_tribute] = ACTIONS(152), - [anon_sym_72] = ACTIONS(152), - [anon_sym_fold] = ACTIONS(156), - [anon_sym_73] = ACTIONS(156), - [anon_sym_distribute] = ACTIONS(156), - [anon_sym_74] = ACTIONS(156), - [anon_sym_table] = ACTIONS(156), - [anon_sym_75] = ACTIONS(156), - [anon_sym_cross] = ACTIONS(156), - [anon_sym_76] = ACTIONS(156), - [anon_sym_group] = ACTIONS(156), - [anon_sym_77] = ACTIONS(156), - [anon_sym_partition] = ACTIONS(156), - [anon_sym_78] = ACTIONS(156), - [anon_sym_both] = ACTIONS(156), - [anon_sym_79] = ACTIONS(156), - [anon_sym_bracket] = ACTIONS(156), - [anon_sym_80] = ACTIONS(156), - [anon_sym_fork] = ACTIONS(156), - [anon_sym_81] = ACTIONS(156), - [anon_sym_under] = ACTIONS(156), - [anon_sym_82] = ACTIONS(156), - [anon_sym_level] = ACTIONS(156), - [anon_sym_83] = ACTIONS(156), - [anon_sym_fill] = ACTIONS(156), - [anon_sym_84] = ACTIONS(156), - [anon_sym_bind] = ACTIONS(156), - [anon_sym_SQUOTE] = ACTIONS(156), - [anon_sym_QMARK] = ACTIONS(156), - [anon_sym_try] = ACTIONS(158), - [anon_sym_85] = ACTIONS(156), - [anon_sym_combinate] = ACTIONS(156), - [anon_sym_86] = ACTIONS(156), - [anon_sym_87] = ACTIONS(160), - [anon_sym_88] = ACTIONS(160), - [anon_sym_89] = ACTIONS(160), - [anon_sym_90] = ACTIONS(160), - [anon_sym_91] = ACTIONS(160), - [anon_sym_92] = ACTIONS(160), - [anon_sym_93] = ACTIONS(160), + [sym_openParen] = ACTIONS(125), + [sym_openCurly] = ACTIONS(129), + [sym_openBracket] = ACTIONS(131), + [anon_sym_CARET] = ACTIONS(137), + [anon_sym_eta] = ACTIONS(139), + [anon_sym_] = ACTIONS(141), + [anon_sym_pi] = ACTIONS(141), + [anon_sym_2] = ACTIONS(141), + [anon_sym_tau] = ACTIONS(139), + [anon_sym_3] = ACTIONS(141), + [anon_sym_infinity] = ACTIONS(139), + [anon_sym_4] = ACTIONS(139), + [anon_sym_e] = ACTIONS(141), + [anon_sym_NaN] = ACTIONS(141), + [anon_sym_NumProcs] = ACTIONS(141), + [anon_sym_DOT] = ACTIONS(143), + [anon_sym_COMMA] = ACTIONS(143), + [anon_sym_5] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_identity] = ACTIONS(143), + [anon_sym_id] = ACTIONS(145), + [anon_sym_6] = ACTIONS(143), + [anon_sym_not] = ACTIONS(143), + [anon_sym_7] = ACTIONS(143), + [anon_sym_sign] = ACTIONS(143), + [anon_sym_8] = ACTIONS(143), + [anon_sym_BQUOTE] = ACTIONS(143), + [anon_sym_9] = ACTIONS(143), + [anon_sym_absolutevalue] = ACTIONS(143), + [anon_sym_10] = ACTIONS(143), + [anon_sym_sqrt] = ACTIONS(143), + [anon_sym_11] = ACTIONS(143), + [anon_sym_sine] = ACTIONS(143), + [anon_sym_12] = ACTIONS(143), + [anon_sym_floor] = ACTIONS(143), + [anon_sym_13] = ACTIONS(143), + [anon_sym_ceiling] = ACTIONS(143), + [anon_sym_14] = ACTIONS(143), + [anon_sym_round] = ACTIONS(143), + [anon_sym_15] = ACTIONS(143), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_16] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_17] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_18] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_19] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_20] = ACTIONS(143), + [anon_sym_modulus] = ACTIONS(143), + [anon_sym_21] = ACTIONS(143), + [anon_sym_power] = ACTIONS(143), + [anon_sym_22] = ACTIONS(143), + [anon_sym_logarithm] = ACTIONS(143), + [anon_sym_23] = ACTIONS(143), + [anon_sym_minimum] = ACTIONS(143), + [anon_sym_24] = ACTIONS(143), + [anon_sym_maximum] = ACTIONS(143), + [anon_sym_25] = ACTIONS(143), + [anon_sym_atangent] = ACTIONS(143), + [anon_sym_26] = ACTIONS(143), + [anon_sym_length] = ACTIONS(143), + [anon_sym_27] = ACTIONS(143), + [anon_sym_shape] = ACTIONS(143), + [anon_sym_28] = ACTIONS(143), + [anon_sym_range] = ACTIONS(143), + [anon_sym_29] = ACTIONS(143), + [anon_sym_first] = ACTIONS(143), + [anon_sym_30] = ACTIONS(143), + [anon_sym_reverse] = ACTIONS(143), + [anon_sym_31] = ACTIONS(143), + [anon_sym_deshape] = ACTIONS(143), + [anon_sym_32] = ACTIONS(143), + [anon_sym_bits] = ACTIONS(143), + [anon_sym_33] = ACTIONS(143), + [anon_sym_transpose] = ACTIONS(143), + [anon_sym_34] = ACTIONS(143), + [anon_sym_rise] = ACTIONS(143), + [anon_sym_35] = ACTIONS(143), + [anon_sym_fall] = ACTIONS(143), + [anon_sym_36] = ACTIONS(143), + [anon_sym_where] = ACTIONS(143), + [anon_sym_37] = ACTIONS(143), + [anon_sym_classify] = ACTIONS(143), + [anon_sym_38] = ACTIONS(143), + [anon_sym_deduplicate] = ACTIONS(143), + [anon_sym_39] = ACTIONS(143), + [anon_sym_box] = ACTIONS(143), + [anon_sym_40] = ACTIONS(143), + [anon_sym_unbox] = ACTIONS(143), + [anon_sym_41] = ACTIONS(143), + [anon_sym_match] = ACTIONS(143), + [anon_sym_42] = ACTIONS(143), + [anon_sym_couple] = ACTIONS(143), + [anon_sym_43] = ACTIONS(143), + [anon_sym_join] = ACTIONS(143), + [anon_sym_44] = ACTIONS(143), + [anon_sym_select] = ACTIONS(143), + [anon_sym_45] = ACTIONS(143), + [anon_sym_pick] = ACTIONS(143), + [anon_sym_46] = ACTIONS(143), + [anon_sym_reshape] = ACTIONS(143), + [anon_sym_47] = ACTIONS(143), + [anon_sym_take] = ACTIONS(143), + [anon_sym_48] = ACTIONS(143), + [anon_sym_drop] = ACTIONS(143), + [anon_sym_49] = ACTIONS(143), + [anon_sym_rotate] = ACTIONS(143), + [anon_sym_50] = ACTIONS(143), + [anon_sym_windows] = ACTIONS(143), + [anon_sym_51] = ACTIONS(143), + [anon_sym_keep] = ACTIONS(143), + [anon_sym_52] = ACTIONS(143), + [anon_sym_find] = ACTIONS(143), + [anon_sym_53] = ACTIONS(143), + [anon_sym_member] = ACTIONS(143), + [anon_sym_54] = ACTIONS(143), + [anon_sym_indexof] = ACTIONS(143), + [anon_sym_55] = ACTIONS(143), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_56] = ACTIONS(143), + [anon_sym_wait] = ACTIONS(143), + [anon_sym_break] = ACTIONS(143), + [anon_sym_57] = ACTIONS(143), + [anon_sym_parse] = ACTIONS(143), + [anon_sym_random] = ACTIONS(143), + [anon_sym_58] = ACTIONS(143), + [anon_sym_gen] = ACTIONS(143), + [anon_sym_deal] = ACTIONS(143), + [anon_sym_tag] = ACTIONS(143), + [anon_sym_now] = ACTIONS(143), + [anon_sym_type] = ACTIONS(143), + [anon_sym_59] = ACTIONS(143), + [anon_sym_dump] = ACTIONS(143), + [anon_sym_regex] = ACTIONS(143), + [anon_sym_utf] = ACTIONS(143), + [anon_sym_rock] = ACTIONS(143), + [anon_sym_60] = ACTIONS(143), + [anon_sym_surface] = ACTIONS(143), + [anon_sym_TILDE] = ACTIONS(143), + [anon_sym_deep] = ACTIONS(143), + [anon_sym_de] = ACTIONS(145), + [anon_sym_61] = ACTIONS(143), + [anon_sym_abyss] = ACTIONS(143), + [anon_sym_ab] = ACTIONS(145), + [anon_sym_62] = ACTIONS(143), + [anon_sym_seabed] = ACTIONS(143), + [anon_sym_se] = ACTIONS(145), + [anon_sym_63] = ACTIONS(143), + [anon_sym_send] = ACTIONS(143), + [anon_sym_recv] = ACTIONS(143), + [anon_sym_tryrecv] = ACTIONS(143), + [anon_sym_reduce] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_scan] = ACTIONS(147), + [anon_sym_BSLASH] = ACTIONS(147), + [anon_sym_each] = ACTIONS(147), + [anon_sym_64] = ACTIONS(147), + [anon_sym_rows] = ACTIONS(147), + [anon_sym_65] = ACTIONS(147), + [anon_sym_repeat] = ACTIONS(147), + [anon_sym_66] = ACTIONS(147), + [anon_sym_dip] = ACTIONS(147), + [anon_sym_67] = ACTIONS(147), + [anon_sym_gap] = ACTIONS(147), + [anon_sym_68] = ACTIONS(147), + [anon_sym_69] = ACTIONS(147), + [anon_sym_invert] = ACTIONS(147), + [anon_sym_70] = ACTIONS(147), + [anon_sym_spawn] = ACTIONS(147), + [anon_sym_pack] = ACTIONS(147), + [anon_sym_71] = ACTIONS(147), + [anon_sym_tribute] = ACTIONS(147), + [anon_sym_72] = ACTIONS(147), + [anon_sym_reach] = ACTIONS(147), + [anon_sym_fold] = ACTIONS(149), + [anon_sym_73] = ACTIONS(149), + [anon_sym_distribute] = ACTIONS(149), + [anon_sym_74] = ACTIONS(149), + [anon_sym_table] = ACTIONS(149), + [anon_sym_75] = ACTIONS(149), + [anon_sym_cross] = ACTIONS(149), + [anon_sym_76] = ACTIONS(149), + [anon_sym_group] = ACTIONS(149), + [anon_sym_77] = ACTIONS(149), + [anon_sym_partition] = ACTIONS(149), + [anon_sym_78] = ACTIONS(149), + [anon_sym_both] = ACTIONS(149), + [anon_sym_79] = ACTIONS(149), + [anon_sym_bracket] = ACTIONS(149), + [anon_sym_80] = ACTIONS(149), + [anon_sym_fork] = ACTIONS(149), + [anon_sym_81] = ACTIONS(149), + [anon_sym_under] = ACTIONS(149), + [anon_sym_82] = ACTIONS(149), + [anon_sym_level] = ACTIONS(149), + [anon_sym_83] = ACTIONS(149), + [anon_sym_fill] = ACTIONS(149), + [anon_sym_84] = ACTIONS(149), + [anon_sym_bind] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_try] = ACTIONS(151), + [anon_sym_85] = ACTIONS(149), + [anon_sym_combinate] = ACTIONS(149), + [anon_sym_86] = ACTIONS(149), + [anon_sym_87] = ACTIONS(153), + [anon_sym_88] = ACTIONS(153), + [anon_sym_89] = ACTIONS(153), + [anon_sym_90] = ACTIONS(153), + [anon_sym_91] = ACTIONS(153), + [anon_sym_92] = ACTIONS(153), + [anon_sym_93] = ACTIONS(153), [sym__whitespace] = ACTIONS(5), [sym__end_of_line] = ACTIONS(5), }, @@ -20519,242 +20393,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_modifier2] = STATE(59), [sym_deprecated] = STATE(61), [aux_sym_array_repeat1] = STATE(57), - [aux_sym_number_token1] = ACTIONS(116), - [anon_sym_os] = ACTIONS(118), - [anon_sym_Family] = ACTIONS(118), - [anon_sym_Arch] = ACTIONS(118), - [anon_sym_ExeExt] = ACTIONS(118), - [anon_sym_PllExt] = ACTIONS(118), - [anon_sym_Sep] = ACTIONS(118), - [aux_sym_character_token1] = ACTIONS(120), - [sym_string] = ACTIONS(122), - [sym_multiLineString] = ACTIONS(122), + [aux_sym_number_token1] = ACTIONS(111), + [anon_sym_os] = ACTIONS(113), + [anon_sym_Family] = ACTIONS(113), + [anon_sym_Arch] = ACTIONS(113), + [anon_sym_ExeExt] = ACTIONS(113), + [anon_sym_PllExt] = ACTIONS(113), + [anon_sym_Sep] = ACTIONS(113), + [aux_sym_character_token1] = ACTIONS(115), + [sym_string] = ACTIONS(117), + [sym_multiLineString] = ACTIONS(117), [anon_sym_PIPE] = ACTIONS(15), - [sym_identifier] = ACTIONS(126), - [sym_identifier_deprecated] = ACTIONS(126), - [sym_system] = ACTIONS(122), + [sym_identifier] = ACTIONS(121), + [sym_identifier_deprecated] = ACTIONS(121), + [sym_system] = ACTIONS(117), [sym_comment] = ACTIONS(3), - [sym_openParen] = ACTIONS(130), - [sym_openCurly] = ACTIONS(134), - [sym_openBracket] = ACTIONS(136), - [anon_sym_CARET] = ACTIONS(142), - [anon_sym_eta] = ACTIONS(144), - [anon_sym_] = ACTIONS(146), - [anon_sym_pi] = ACTIONS(146), - [anon_sym_2] = ACTIONS(146), - [anon_sym_tau] = ACTIONS(144), - [anon_sym_3] = ACTIONS(146), - [anon_sym_infinity] = ACTIONS(144), - [anon_sym_4] = ACTIONS(144), - [anon_sym_e] = ACTIONS(146), - [anon_sym_NaN] = ACTIONS(146), - [anon_sym_NumProcs] = ACTIONS(146), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_COMMA] = ACTIONS(148), - [anon_sym_5] = ACTIONS(148), - [anon_sym_SEMI] = ACTIONS(148), - [anon_sym_identity] = ACTIONS(148), - [anon_sym_id] = ACTIONS(150), - [anon_sym_6] = ACTIONS(148), - [anon_sym_not] = ACTIONS(148), - [anon_sym_7] = ACTIONS(148), - [anon_sym_sign] = ACTIONS(148), - [anon_sym_8] = ACTIONS(148), - [anon_sym_BQUOTE] = ACTIONS(148), - [anon_sym_9] = ACTIONS(148), - [anon_sym_absolutevalue] = ACTIONS(148), - [anon_sym_10] = ACTIONS(148), - [anon_sym_sqrt] = ACTIONS(148), - [anon_sym_11] = ACTIONS(148), - [anon_sym_sine] = ACTIONS(148), - [anon_sym_12] = ACTIONS(148), - [anon_sym_floor] = ACTIONS(148), - [anon_sym_13] = ACTIONS(148), - [anon_sym_ceiling] = ACTIONS(148), - [anon_sym_14] = ACTIONS(148), - [anon_sym_round] = ACTIONS(148), - [anon_sym_15] = ACTIONS(148), - [anon_sym_EQ] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_16] = ACTIONS(148), - [anon_sym_LT] = ACTIONS(150), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_17] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_18] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_19] = ACTIONS(148), - [anon_sym_PERCENT] = ACTIONS(148), - [anon_sym_20] = ACTIONS(148), - [anon_sym_modulus] = ACTIONS(148), - [anon_sym_21] = ACTIONS(148), - [anon_sym_power] = ACTIONS(148), - [anon_sym_22] = ACTIONS(148), - [anon_sym_logarithm] = ACTIONS(148), - [anon_sym_23] = ACTIONS(148), - [anon_sym_minimum] = ACTIONS(148), - [anon_sym_24] = ACTIONS(148), - [anon_sym_maximum] = ACTIONS(148), - [anon_sym_25] = ACTIONS(148), - [anon_sym_atangent] = ACTIONS(148), - [anon_sym_26] = ACTIONS(148), - [anon_sym_length] = ACTIONS(148), - [anon_sym_27] = ACTIONS(148), - [anon_sym_shape] = ACTIONS(148), - [anon_sym_28] = ACTIONS(148), - [anon_sym_range] = ACTIONS(148), - [anon_sym_29] = ACTIONS(148), - [anon_sym_first] = ACTIONS(148), - [anon_sym_30] = ACTIONS(148), - [anon_sym_reverse] = ACTIONS(148), - [anon_sym_31] = ACTIONS(148), - [anon_sym_deshape] = ACTIONS(148), - [anon_sym_32] = ACTIONS(148), - [anon_sym_bits] = ACTIONS(148), - [anon_sym_33] = ACTIONS(148), - [anon_sym_transpose] = ACTIONS(148), - [anon_sym_34] = ACTIONS(148), - [anon_sym_rise] = ACTIONS(148), - [anon_sym_35] = ACTIONS(148), - [anon_sym_fall] = ACTIONS(148), - [anon_sym_36] = ACTIONS(148), - [anon_sym_where] = ACTIONS(148), - [anon_sym_37] = ACTIONS(148), - [anon_sym_classify] = ACTIONS(148), - [anon_sym_38] = ACTIONS(148), - [anon_sym_deduplicate] = ACTIONS(148), - [anon_sym_39] = ACTIONS(148), - [anon_sym_box] = ACTIONS(148), - [anon_sym_40] = ACTIONS(148), - [anon_sym_unbox] = ACTIONS(148), - [anon_sym_41] = ACTIONS(148), - [anon_sym_match] = ACTIONS(148), - [anon_sym_42] = ACTIONS(148), - [anon_sym_couple] = ACTIONS(148), - [anon_sym_43] = ACTIONS(148), - [anon_sym_join] = ACTIONS(148), - [anon_sym_44] = ACTIONS(148), - [anon_sym_select] = ACTIONS(148), - [anon_sym_45] = ACTIONS(148), - [anon_sym_pick] = ACTIONS(148), - [anon_sym_46] = ACTIONS(148), - [anon_sym_reshape] = ACTIONS(148), - [anon_sym_47] = ACTIONS(148), - [anon_sym_take] = ACTIONS(148), - [anon_sym_48] = ACTIONS(148), - [anon_sym_drop] = ACTIONS(148), - [anon_sym_49] = ACTIONS(148), - [anon_sym_rotate] = ACTIONS(148), - [anon_sym_50] = ACTIONS(148), - [anon_sym_windows] = ACTIONS(148), - [anon_sym_51] = ACTIONS(148), - [anon_sym_keep] = ACTIONS(148), - [anon_sym_52] = ACTIONS(148), - [anon_sym_find] = ACTIONS(148), - [anon_sym_53] = ACTIONS(148), - [anon_sym_member] = ACTIONS(148), - [anon_sym_54] = ACTIONS(148), - [anon_sym_indexof] = ACTIONS(148), - [anon_sym_55] = ACTIONS(148), - [anon_sym_assert] = ACTIONS(148), - [anon_sym_56] = ACTIONS(148), - [anon_sym_wait] = ACTIONS(148), - [anon_sym_break] = ACTIONS(148), - [anon_sym_57] = ACTIONS(148), - [anon_sym_parse] = ACTIONS(148), - [anon_sym_random] = ACTIONS(148), - [anon_sym_58] = ACTIONS(148), - [anon_sym_gen] = ACTIONS(148), - [anon_sym_deal] = ACTIONS(148), - [anon_sym_tag] = ACTIONS(148), - [anon_sym_now] = ACTIONS(148), - [anon_sym_type] = ACTIONS(148), - [anon_sym_59] = ACTIONS(148), - [anon_sym_dump] = ACTIONS(148), - [anon_sym_regex] = ACTIONS(148), - [anon_sym_utf] = ACTIONS(148), - [anon_sym_rock] = ACTIONS(148), - [anon_sym_60] = ACTIONS(148), - [anon_sym_surface] = ACTIONS(148), - [anon_sym_TILDE] = ACTIONS(148), - [anon_sym_deep] = ACTIONS(148), - [anon_sym_de] = ACTIONS(150), - [anon_sym_61] = ACTIONS(148), - [anon_sym_abyss] = ACTIONS(148), - [anon_sym_ab] = ACTIONS(150), - [anon_sym_62] = ACTIONS(148), - [anon_sym_seabed] = ACTIONS(148), - [anon_sym_se] = ACTIONS(150), - [anon_sym_63] = ACTIONS(148), - [anon_sym_send] = ACTIONS(148), - [anon_sym_recv] = ACTIONS(148), - [anon_sym_tryrecv] = ACTIONS(148), - [anon_sym_reduce] = ACTIONS(152), - [anon_sym_SLASH] = ACTIONS(152), - [anon_sym_scan] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_each] = ACTIONS(152), - [anon_sym_64] = ACTIONS(152), - [anon_sym_rows] = ACTIONS(152), - [anon_sym_65] = ACTIONS(152), - [anon_sym_repeat] = ACTIONS(152), - [anon_sym_66] = ACTIONS(152), - [anon_sym_dip] = ACTIONS(152), - [anon_sym_di] = ACTIONS(154), - [anon_sym_67] = ACTIONS(152), - [anon_sym_gap] = ACTIONS(152), - [anon_sym_ga] = ACTIONS(154), - [anon_sym_68] = ACTIONS(152), - [anon_sym_oust] = ACTIONS(152), - [anon_sym_69] = ACTIONS(152), - [anon_sym_invert] = ACTIONS(152), - [anon_sym_70] = ACTIONS(152), - [anon_sym_spawn] = ACTIONS(152), - [anon_sym_pack] = ACTIONS(152), - [anon_sym_71] = ACTIONS(152), - [anon_sym_tribute] = ACTIONS(152), - [anon_sym_72] = ACTIONS(152), - [anon_sym_fold] = ACTIONS(156), - [anon_sym_73] = ACTIONS(156), - [anon_sym_distribute] = ACTIONS(156), - [anon_sym_74] = ACTIONS(156), - [anon_sym_table] = ACTIONS(156), - [anon_sym_75] = ACTIONS(156), - [anon_sym_cross] = ACTIONS(156), - [anon_sym_76] = ACTIONS(156), - [anon_sym_group] = ACTIONS(156), - [anon_sym_77] = ACTIONS(156), - [anon_sym_partition] = ACTIONS(156), - [anon_sym_78] = ACTIONS(156), - [anon_sym_both] = ACTIONS(156), - [anon_sym_79] = ACTIONS(156), - [anon_sym_bracket] = ACTIONS(156), - [anon_sym_80] = ACTIONS(156), - [anon_sym_fork] = ACTIONS(156), - [anon_sym_81] = ACTIONS(156), - [anon_sym_under] = ACTIONS(156), - [anon_sym_82] = ACTIONS(156), - [anon_sym_level] = ACTIONS(156), - [anon_sym_83] = ACTIONS(156), - [anon_sym_fill] = ACTIONS(156), - [anon_sym_84] = ACTIONS(156), - [anon_sym_bind] = ACTIONS(156), - [anon_sym_SQUOTE] = ACTIONS(156), - [anon_sym_QMARK] = ACTIONS(156), - [anon_sym_try] = ACTIONS(158), - [anon_sym_85] = ACTIONS(156), - [anon_sym_combinate] = ACTIONS(156), - [anon_sym_86] = ACTIONS(156), - [anon_sym_87] = ACTIONS(160), - [anon_sym_88] = ACTIONS(160), - [anon_sym_89] = ACTIONS(160), - [anon_sym_90] = ACTIONS(160), - [anon_sym_91] = ACTIONS(160), - [anon_sym_92] = ACTIONS(160), - [anon_sym_93] = ACTIONS(160), + [sym_openParen] = ACTIONS(125), + [sym_openCurly] = ACTIONS(129), + [sym_openBracket] = ACTIONS(131), + [anon_sym_CARET] = ACTIONS(137), + [anon_sym_eta] = ACTIONS(139), + [anon_sym_] = ACTIONS(141), + [anon_sym_pi] = ACTIONS(141), + [anon_sym_2] = ACTIONS(141), + [anon_sym_tau] = ACTIONS(139), + [anon_sym_3] = ACTIONS(141), + [anon_sym_infinity] = ACTIONS(139), + [anon_sym_4] = ACTIONS(139), + [anon_sym_e] = ACTIONS(141), + [anon_sym_NaN] = ACTIONS(141), + [anon_sym_NumProcs] = ACTIONS(141), + [anon_sym_DOT] = ACTIONS(143), + [anon_sym_COMMA] = ACTIONS(143), + [anon_sym_5] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_identity] = ACTIONS(143), + [anon_sym_id] = ACTIONS(145), + [anon_sym_6] = ACTIONS(143), + [anon_sym_not] = ACTIONS(143), + [anon_sym_7] = ACTIONS(143), + [anon_sym_sign] = ACTIONS(143), + [anon_sym_8] = ACTIONS(143), + [anon_sym_BQUOTE] = ACTIONS(143), + [anon_sym_9] = ACTIONS(143), + [anon_sym_absolutevalue] = ACTIONS(143), + [anon_sym_10] = ACTIONS(143), + [anon_sym_sqrt] = ACTIONS(143), + [anon_sym_11] = ACTIONS(143), + [anon_sym_sine] = ACTIONS(143), + [anon_sym_12] = ACTIONS(143), + [anon_sym_floor] = ACTIONS(143), + [anon_sym_13] = ACTIONS(143), + [anon_sym_ceiling] = ACTIONS(143), + [anon_sym_14] = ACTIONS(143), + [anon_sym_round] = ACTIONS(143), + [anon_sym_15] = ACTIONS(143), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_16] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_17] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_18] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_19] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_20] = ACTIONS(143), + [anon_sym_modulus] = ACTIONS(143), + [anon_sym_21] = ACTIONS(143), + [anon_sym_power] = ACTIONS(143), + [anon_sym_22] = ACTIONS(143), + [anon_sym_logarithm] = ACTIONS(143), + [anon_sym_23] = ACTIONS(143), + [anon_sym_minimum] = ACTIONS(143), + [anon_sym_24] = ACTIONS(143), + [anon_sym_maximum] = ACTIONS(143), + [anon_sym_25] = ACTIONS(143), + [anon_sym_atangent] = ACTIONS(143), + [anon_sym_26] = ACTIONS(143), + [anon_sym_length] = ACTIONS(143), + [anon_sym_27] = ACTIONS(143), + [anon_sym_shape] = ACTIONS(143), + [anon_sym_28] = ACTIONS(143), + [anon_sym_range] = ACTIONS(143), + [anon_sym_29] = ACTIONS(143), + [anon_sym_first] = ACTIONS(143), + [anon_sym_30] = ACTIONS(143), + [anon_sym_reverse] = ACTIONS(143), + [anon_sym_31] = ACTIONS(143), + [anon_sym_deshape] = ACTIONS(143), + [anon_sym_32] = ACTIONS(143), + [anon_sym_bits] = ACTIONS(143), + [anon_sym_33] = ACTIONS(143), + [anon_sym_transpose] = ACTIONS(143), + [anon_sym_34] = ACTIONS(143), + [anon_sym_rise] = ACTIONS(143), + [anon_sym_35] = ACTIONS(143), + [anon_sym_fall] = ACTIONS(143), + [anon_sym_36] = ACTIONS(143), + [anon_sym_where] = ACTIONS(143), + [anon_sym_37] = ACTIONS(143), + [anon_sym_classify] = ACTIONS(143), + [anon_sym_38] = ACTIONS(143), + [anon_sym_deduplicate] = ACTIONS(143), + [anon_sym_39] = ACTIONS(143), + [anon_sym_box] = ACTIONS(143), + [anon_sym_40] = ACTIONS(143), + [anon_sym_unbox] = ACTIONS(143), + [anon_sym_41] = ACTIONS(143), + [anon_sym_match] = ACTIONS(143), + [anon_sym_42] = ACTIONS(143), + [anon_sym_couple] = ACTIONS(143), + [anon_sym_43] = ACTIONS(143), + [anon_sym_join] = ACTIONS(143), + [anon_sym_44] = ACTIONS(143), + [anon_sym_select] = ACTIONS(143), + [anon_sym_45] = ACTIONS(143), + [anon_sym_pick] = ACTIONS(143), + [anon_sym_46] = ACTIONS(143), + [anon_sym_reshape] = ACTIONS(143), + [anon_sym_47] = ACTIONS(143), + [anon_sym_take] = ACTIONS(143), + [anon_sym_48] = ACTIONS(143), + [anon_sym_drop] = ACTIONS(143), + [anon_sym_49] = ACTIONS(143), + [anon_sym_rotate] = ACTIONS(143), + [anon_sym_50] = ACTIONS(143), + [anon_sym_windows] = ACTIONS(143), + [anon_sym_51] = ACTIONS(143), + [anon_sym_keep] = ACTIONS(143), + [anon_sym_52] = ACTIONS(143), + [anon_sym_find] = ACTIONS(143), + [anon_sym_53] = ACTIONS(143), + [anon_sym_member] = ACTIONS(143), + [anon_sym_54] = ACTIONS(143), + [anon_sym_indexof] = ACTIONS(143), + [anon_sym_55] = ACTIONS(143), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_56] = ACTIONS(143), + [anon_sym_wait] = ACTIONS(143), + [anon_sym_break] = ACTIONS(143), + [anon_sym_57] = ACTIONS(143), + [anon_sym_parse] = ACTIONS(143), + [anon_sym_random] = ACTIONS(143), + [anon_sym_58] = ACTIONS(143), + [anon_sym_gen] = ACTIONS(143), + [anon_sym_deal] = ACTIONS(143), + [anon_sym_tag] = ACTIONS(143), + [anon_sym_now] = ACTIONS(143), + [anon_sym_type] = ACTIONS(143), + [anon_sym_59] = ACTIONS(143), + [anon_sym_dump] = ACTIONS(143), + [anon_sym_regex] = ACTIONS(143), + [anon_sym_utf] = ACTIONS(143), + [anon_sym_rock] = ACTIONS(143), + [anon_sym_60] = ACTIONS(143), + [anon_sym_surface] = ACTIONS(143), + [anon_sym_TILDE] = ACTIONS(143), + [anon_sym_deep] = ACTIONS(143), + [anon_sym_de] = ACTIONS(145), + [anon_sym_61] = ACTIONS(143), + [anon_sym_abyss] = ACTIONS(143), + [anon_sym_ab] = ACTIONS(145), + [anon_sym_62] = ACTIONS(143), + [anon_sym_seabed] = ACTIONS(143), + [anon_sym_se] = ACTIONS(145), + [anon_sym_63] = ACTIONS(143), + [anon_sym_send] = ACTIONS(143), + [anon_sym_recv] = ACTIONS(143), + [anon_sym_tryrecv] = ACTIONS(143), + [anon_sym_reduce] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_scan] = ACTIONS(147), + [anon_sym_BSLASH] = ACTIONS(147), + [anon_sym_each] = ACTIONS(147), + [anon_sym_64] = ACTIONS(147), + [anon_sym_rows] = ACTIONS(147), + [anon_sym_65] = ACTIONS(147), + [anon_sym_repeat] = ACTIONS(147), + [anon_sym_66] = ACTIONS(147), + [anon_sym_dip] = ACTIONS(147), + [anon_sym_67] = ACTIONS(147), + [anon_sym_gap] = ACTIONS(147), + [anon_sym_68] = ACTIONS(147), + [anon_sym_69] = ACTIONS(147), + [anon_sym_invert] = ACTIONS(147), + [anon_sym_70] = ACTIONS(147), + [anon_sym_spawn] = ACTIONS(147), + [anon_sym_pack] = ACTIONS(147), + [anon_sym_71] = ACTIONS(147), + [anon_sym_tribute] = ACTIONS(147), + [anon_sym_72] = ACTIONS(147), + [anon_sym_reach] = ACTIONS(147), + [anon_sym_fold] = ACTIONS(149), + [anon_sym_73] = ACTIONS(149), + [anon_sym_distribute] = ACTIONS(149), + [anon_sym_74] = ACTIONS(149), + [anon_sym_table] = ACTIONS(149), + [anon_sym_75] = ACTIONS(149), + [anon_sym_cross] = ACTIONS(149), + [anon_sym_76] = ACTIONS(149), + [anon_sym_group] = ACTIONS(149), + [anon_sym_77] = ACTIONS(149), + [anon_sym_partition] = ACTIONS(149), + [anon_sym_78] = ACTIONS(149), + [anon_sym_both] = ACTIONS(149), + [anon_sym_79] = ACTIONS(149), + [anon_sym_bracket] = ACTIONS(149), + [anon_sym_80] = ACTIONS(149), + [anon_sym_fork] = ACTIONS(149), + [anon_sym_81] = ACTIONS(149), + [anon_sym_under] = ACTIONS(149), + [anon_sym_82] = ACTIONS(149), + [anon_sym_level] = ACTIONS(149), + [anon_sym_83] = ACTIONS(149), + [anon_sym_fill] = ACTIONS(149), + [anon_sym_84] = ACTIONS(149), + [anon_sym_bind] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_try] = ACTIONS(151), + [anon_sym_85] = ACTIONS(149), + [anon_sym_combinate] = ACTIONS(149), + [anon_sym_86] = ACTIONS(149), + [anon_sym_87] = ACTIONS(153), + [anon_sym_88] = ACTIONS(153), + [anon_sym_89] = ACTIONS(153), + [anon_sym_90] = ACTIONS(153), + [anon_sym_91] = ACTIONS(153), + [anon_sym_92] = ACTIONS(153), + [anon_sym_93] = ACTIONS(153), [sym__whitespace] = ACTIONS(5), [sym__end_of_line] = ACTIONS(5), }, @@ -20960,12 +20832,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_repeat] = ACTIONS(41), [anon_sym_66] = ACTIONS(41), [anon_sym_dip] = ACTIONS(41), - [anon_sym_di] = ACTIONS(43), [anon_sym_67] = ACTIONS(41), [anon_sym_gap] = ACTIONS(41), - [anon_sym_ga] = ACTIONS(43), [anon_sym_68] = ACTIONS(41), - [anon_sym_oust] = ACTIONS(41), [anon_sym_69] = ACTIONS(41), [anon_sym_invert] = ACTIONS(41), [anon_sym_70] = ACTIONS(41), @@ -20974,44 +20843,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_71] = ACTIONS(41), [anon_sym_tribute] = ACTIONS(41), [anon_sym_72] = ACTIONS(41), - [anon_sym_fold] = ACTIONS(45), - [anon_sym_73] = ACTIONS(45), - [anon_sym_distribute] = ACTIONS(45), - [anon_sym_74] = ACTIONS(45), - [anon_sym_table] = ACTIONS(45), - [anon_sym_75] = ACTIONS(45), - [anon_sym_cross] = ACTIONS(45), - [anon_sym_76] = ACTIONS(45), - [anon_sym_group] = ACTIONS(45), - [anon_sym_77] = ACTIONS(45), - [anon_sym_partition] = ACTIONS(45), - [anon_sym_78] = ACTIONS(45), - [anon_sym_both] = ACTIONS(45), - [anon_sym_79] = ACTIONS(45), - [anon_sym_bracket] = ACTIONS(45), - [anon_sym_80] = ACTIONS(45), - [anon_sym_fork] = ACTIONS(45), - [anon_sym_81] = ACTIONS(45), - [anon_sym_under] = ACTIONS(45), - [anon_sym_82] = ACTIONS(45), - [anon_sym_level] = ACTIONS(45), - [anon_sym_83] = ACTIONS(45), - [anon_sym_fill] = ACTIONS(45), - [anon_sym_84] = ACTIONS(45), - [anon_sym_bind] = ACTIONS(45), - [anon_sym_SQUOTE] = ACTIONS(45), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_try] = ACTIONS(47), - [anon_sym_85] = ACTIONS(45), - [anon_sym_combinate] = ACTIONS(45), - [anon_sym_86] = ACTIONS(45), - [anon_sym_87] = ACTIONS(49), - [anon_sym_88] = ACTIONS(49), - [anon_sym_89] = ACTIONS(49), - [anon_sym_90] = ACTIONS(49), - [anon_sym_91] = ACTIONS(49), - [anon_sym_92] = ACTIONS(49), - [anon_sym_93] = ACTIONS(49), + [anon_sym_reach] = ACTIONS(41), + [anon_sym_fold] = ACTIONS(43), + [anon_sym_73] = ACTIONS(43), + [anon_sym_distribute] = ACTIONS(43), + [anon_sym_74] = ACTIONS(43), + [anon_sym_table] = ACTIONS(43), + [anon_sym_75] = ACTIONS(43), + [anon_sym_cross] = ACTIONS(43), + [anon_sym_76] = ACTIONS(43), + [anon_sym_group] = ACTIONS(43), + [anon_sym_77] = ACTIONS(43), + [anon_sym_partition] = ACTIONS(43), + [anon_sym_78] = ACTIONS(43), + [anon_sym_both] = ACTIONS(43), + [anon_sym_79] = ACTIONS(43), + [anon_sym_bracket] = ACTIONS(43), + [anon_sym_80] = ACTIONS(43), + [anon_sym_fork] = ACTIONS(43), + [anon_sym_81] = ACTIONS(43), + [anon_sym_under] = ACTIONS(43), + [anon_sym_82] = ACTIONS(43), + [anon_sym_level] = ACTIONS(43), + [anon_sym_83] = ACTIONS(43), + [anon_sym_fill] = ACTIONS(43), + [anon_sym_84] = ACTIONS(43), + [anon_sym_bind] = ACTIONS(43), + [anon_sym_SQUOTE] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_85] = ACTIONS(43), + [anon_sym_combinate] = ACTIONS(43), + [anon_sym_86] = ACTIONS(43), + [anon_sym_87] = ACTIONS(47), + [anon_sym_88] = ACTIONS(47), + [anon_sym_89] = ACTIONS(47), + [anon_sym_90] = ACTIONS(47), + [anon_sym_91] = ACTIONS(47), + [anon_sym_92] = ACTIONS(47), + [anon_sym_93] = ACTIONS(47), [sym__whitespace] = ACTIONS(5), [sym__end_of_line] = ACTIONS(5), }, @@ -21217,12 +21087,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_repeat] = ACTIONS(41), [anon_sym_66] = ACTIONS(41), [anon_sym_dip] = ACTIONS(41), - [anon_sym_di] = ACTIONS(43), [anon_sym_67] = ACTIONS(41), [anon_sym_gap] = ACTIONS(41), - [anon_sym_ga] = ACTIONS(43), [anon_sym_68] = ACTIONS(41), - [anon_sym_oust] = ACTIONS(41), [anon_sym_69] = ACTIONS(41), [anon_sym_invert] = ACTIONS(41), [anon_sym_70] = ACTIONS(41), @@ -21231,44 +21098,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_71] = ACTIONS(41), [anon_sym_tribute] = ACTIONS(41), [anon_sym_72] = ACTIONS(41), - [anon_sym_fold] = ACTIONS(45), - [anon_sym_73] = ACTIONS(45), - [anon_sym_distribute] = ACTIONS(45), - [anon_sym_74] = ACTIONS(45), - [anon_sym_table] = ACTIONS(45), - [anon_sym_75] = ACTIONS(45), - [anon_sym_cross] = ACTIONS(45), - [anon_sym_76] = ACTIONS(45), - [anon_sym_group] = ACTIONS(45), - [anon_sym_77] = ACTIONS(45), - [anon_sym_partition] = ACTIONS(45), - [anon_sym_78] = ACTIONS(45), - [anon_sym_both] = ACTIONS(45), - [anon_sym_79] = ACTIONS(45), - [anon_sym_bracket] = ACTIONS(45), - [anon_sym_80] = ACTIONS(45), - [anon_sym_fork] = ACTIONS(45), - [anon_sym_81] = ACTIONS(45), - [anon_sym_under] = ACTIONS(45), - [anon_sym_82] = ACTIONS(45), - [anon_sym_level] = ACTIONS(45), - [anon_sym_83] = ACTIONS(45), - [anon_sym_fill] = ACTIONS(45), - [anon_sym_84] = ACTIONS(45), - [anon_sym_bind] = ACTIONS(45), - [anon_sym_SQUOTE] = ACTIONS(45), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_try] = ACTIONS(47), - [anon_sym_85] = ACTIONS(45), - [anon_sym_combinate] = ACTIONS(45), - [anon_sym_86] = ACTIONS(45), - [anon_sym_87] = ACTIONS(49), - [anon_sym_88] = ACTIONS(49), - [anon_sym_89] = ACTIONS(49), - [anon_sym_90] = ACTIONS(49), - [anon_sym_91] = ACTIONS(49), - [anon_sym_92] = ACTIONS(49), - [anon_sym_93] = ACTIONS(49), + [anon_sym_reach] = ACTIONS(41), + [anon_sym_fold] = ACTIONS(43), + [anon_sym_73] = ACTIONS(43), + [anon_sym_distribute] = ACTIONS(43), + [anon_sym_74] = ACTIONS(43), + [anon_sym_table] = ACTIONS(43), + [anon_sym_75] = ACTIONS(43), + [anon_sym_cross] = ACTIONS(43), + [anon_sym_76] = ACTIONS(43), + [anon_sym_group] = ACTIONS(43), + [anon_sym_77] = ACTIONS(43), + [anon_sym_partition] = ACTIONS(43), + [anon_sym_78] = ACTIONS(43), + [anon_sym_both] = ACTIONS(43), + [anon_sym_79] = ACTIONS(43), + [anon_sym_bracket] = ACTIONS(43), + [anon_sym_80] = ACTIONS(43), + [anon_sym_fork] = ACTIONS(43), + [anon_sym_81] = ACTIONS(43), + [anon_sym_under] = ACTIONS(43), + [anon_sym_82] = ACTIONS(43), + [anon_sym_level] = ACTIONS(43), + [anon_sym_83] = ACTIONS(43), + [anon_sym_fill] = ACTIONS(43), + [anon_sym_84] = ACTIONS(43), + [anon_sym_bind] = ACTIONS(43), + [anon_sym_SQUOTE] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_85] = ACTIONS(43), + [anon_sym_combinate] = ACTIONS(43), + [anon_sym_86] = ACTIONS(43), + [anon_sym_87] = ACTIONS(47), + [anon_sym_88] = ACTIONS(47), + [anon_sym_89] = ACTIONS(47), + [anon_sym_90] = ACTIONS(47), + [anon_sym_91] = ACTIONS(47), + [anon_sym_92] = ACTIONS(47), + [anon_sym_93] = ACTIONS(47), [sym__whitespace] = ACTIONS(5), [sym__end_of_line] = ACTIONS(5), }, @@ -21290,6408 +21158,6356 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_modifier2] = STATE(59), [sym_deprecated] = STATE(61), [aux_sym_array_repeat1] = STATE(53), - [aux_sym_number_token1] = ACTIONS(116), - [anon_sym_os] = ACTIONS(118), - [anon_sym_Family] = ACTIONS(118), - [anon_sym_Arch] = ACTIONS(118), - [anon_sym_ExeExt] = ACTIONS(118), - [anon_sym_PllExt] = ACTIONS(118), - [anon_sym_Sep] = ACTIONS(118), - [aux_sym_character_token1] = ACTIONS(120), - [sym_string] = ACTIONS(122), - [sym_multiLineString] = ACTIONS(122), + [aux_sym_number_token1] = ACTIONS(111), + [anon_sym_os] = ACTIONS(113), + [anon_sym_Family] = ACTIONS(113), + [anon_sym_Arch] = ACTIONS(113), + [anon_sym_ExeExt] = ACTIONS(113), + [anon_sym_PllExt] = ACTIONS(113), + [anon_sym_Sep] = ACTIONS(113), + [aux_sym_character_token1] = ACTIONS(115), + [sym_string] = ACTIONS(117), + [sym_multiLineString] = ACTIONS(117), [anon_sym_PIPE] = ACTIONS(15), - [sym_identifier] = ACTIONS(126), - [sym_identifier_deprecated] = ACTIONS(126), - [sym_system] = ACTIONS(122), + [sym_identifier] = ACTIONS(121), + [sym_identifier_deprecated] = ACTIONS(121), + [sym_system] = ACTIONS(117), [sym_comment] = ACTIONS(3), - [sym_openParen] = ACTIONS(130), - [sym_openCurly] = ACTIONS(134), - [sym_openBracket] = ACTIONS(136), - [anon_sym_CARET] = ACTIONS(142), - [anon_sym_eta] = ACTIONS(144), - [anon_sym_] = ACTIONS(146), - [anon_sym_pi] = ACTIONS(146), - [anon_sym_2] = ACTIONS(146), - [anon_sym_tau] = ACTIONS(144), - [anon_sym_3] = ACTIONS(146), - [anon_sym_infinity] = ACTIONS(144), - [anon_sym_4] = ACTIONS(144), - [anon_sym_e] = ACTIONS(146), - [anon_sym_NaN] = ACTIONS(146), - [anon_sym_NumProcs] = ACTIONS(146), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_COMMA] = ACTIONS(148), - [anon_sym_5] = ACTIONS(148), - [anon_sym_SEMI] = ACTIONS(148), - [anon_sym_identity] = ACTIONS(148), - [anon_sym_id] = ACTIONS(150), - [anon_sym_6] = ACTIONS(148), - [anon_sym_not] = ACTIONS(148), - [anon_sym_7] = ACTIONS(148), - [anon_sym_sign] = ACTIONS(148), - [anon_sym_8] = ACTIONS(148), - [anon_sym_BQUOTE] = ACTIONS(148), - [anon_sym_9] = ACTIONS(148), - [anon_sym_absolutevalue] = ACTIONS(148), - [anon_sym_10] = ACTIONS(148), - [anon_sym_sqrt] = ACTIONS(148), - [anon_sym_11] = ACTIONS(148), - [anon_sym_sine] = ACTIONS(148), - [anon_sym_12] = ACTIONS(148), - [anon_sym_floor] = ACTIONS(148), - [anon_sym_13] = ACTIONS(148), - [anon_sym_ceiling] = ACTIONS(148), - [anon_sym_14] = ACTIONS(148), - [anon_sym_round] = ACTIONS(148), - [anon_sym_15] = ACTIONS(148), - [anon_sym_EQ] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_16] = ACTIONS(148), - [anon_sym_LT] = ACTIONS(150), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_17] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_18] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_19] = ACTIONS(148), - [anon_sym_PERCENT] = ACTIONS(148), - [anon_sym_20] = ACTIONS(148), - [anon_sym_modulus] = ACTIONS(148), - [anon_sym_21] = ACTIONS(148), - [anon_sym_power] = ACTIONS(148), - [anon_sym_22] = ACTIONS(148), - [anon_sym_logarithm] = ACTIONS(148), - [anon_sym_23] = ACTIONS(148), - [anon_sym_minimum] = ACTIONS(148), - [anon_sym_24] = ACTIONS(148), - [anon_sym_maximum] = ACTIONS(148), - [anon_sym_25] = ACTIONS(148), - [anon_sym_atangent] = ACTIONS(148), - [anon_sym_26] = ACTIONS(148), - [anon_sym_length] = ACTIONS(148), - [anon_sym_27] = ACTIONS(148), - [anon_sym_shape] = ACTIONS(148), - [anon_sym_28] = ACTIONS(148), - [anon_sym_range] = ACTIONS(148), - [anon_sym_29] = ACTIONS(148), - [anon_sym_first] = ACTIONS(148), - [anon_sym_30] = ACTIONS(148), - [anon_sym_reverse] = ACTIONS(148), - [anon_sym_31] = ACTIONS(148), - [anon_sym_deshape] = ACTIONS(148), - [anon_sym_32] = ACTIONS(148), - [anon_sym_bits] = ACTIONS(148), - [anon_sym_33] = ACTIONS(148), - [anon_sym_transpose] = ACTIONS(148), - [anon_sym_34] = ACTIONS(148), - [anon_sym_rise] = ACTIONS(148), - [anon_sym_35] = ACTIONS(148), - [anon_sym_fall] = ACTIONS(148), - [anon_sym_36] = ACTIONS(148), - [anon_sym_where] = ACTIONS(148), - [anon_sym_37] = ACTIONS(148), - [anon_sym_classify] = ACTIONS(148), - [anon_sym_38] = ACTIONS(148), - [anon_sym_deduplicate] = ACTIONS(148), - [anon_sym_39] = ACTIONS(148), - [anon_sym_box] = ACTIONS(148), - [anon_sym_40] = ACTIONS(148), - [anon_sym_unbox] = ACTIONS(148), - [anon_sym_41] = ACTIONS(148), - [anon_sym_match] = ACTIONS(148), - [anon_sym_42] = ACTIONS(148), - [anon_sym_couple] = ACTIONS(148), - [anon_sym_43] = ACTIONS(148), - [anon_sym_join] = ACTIONS(148), - [anon_sym_44] = ACTIONS(148), - [anon_sym_select] = ACTIONS(148), - [anon_sym_45] = ACTIONS(148), - [anon_sym_pick] = ACTIONS(148), - [anon_sym_46] = ACTIONS(148), - [anon_sym_reshape] = ACTIONS(148), - [anon_sym_47] = ACTIONS(148), - [anon_sym_take] = ACTIONS(148), - [anon_sym_48] = ACTIONS(148), - [anon_sym_drop] = ACTIONS(148), - [anon_sym_49] = ACTIONS(148), - [anon_sym_rotate] = ACTIONS(148), - [anon_sym_50] = ACTIONS(148), - [anon_sym_windows] = ACTIONS(148), - [anon_sym_51] = ACTIONS(148), - [anon_sym_keep] = ACTIONS(148), - [anon_sym_52] = ACTIONS(148), - [anon_sym_find] = ACTIONS(148), - [anon_sym_53] = ACTIONS(148), - [anon_sym_member] = ACTIONS(148), - [anon_sym_54] = ACTIONS(148), - [anon_sym_indexof] = ACTIONS(148), - [anon_sym_55] = ACTIONS(148), - [anon_sym_assert] = ACTIONS(148), - [anon_sym_56] = ACTIONS(148), - [anon_sym_wait] = ACTIONS(148), - [anon_sym_break] = ACTIONS(148), - [anon_sym_57] = ACTIONS(148), - [anon_sym_parse] = ACTIONS(148), - [anon_sym_random] = ACTIONS(148), - [anon_sym_58] = ACTIONS(148), - [anon_sym_gen] = ACTIONS(148), - [anon_sym_deal] = ACTIONS(148), - [anon_sym_tag] = ACTIONS(148), - [anon_sym_now] = ACTIONS(148), - [anon_sym_type] = ACTIONS(148), - [anon_sym_59] = ACTIONS(148), - [anon_sym_dump] = ACTIONS(148), - [anon_sym_regex] = ACTIONS(148), - [anon_sym_utf] = ACTIONS(148), - [anon_sym_rock] = ACTIONS(148), - [anon_sym_60] = ACTIONS(148), - [anon_sym_surface] = ACTIONS(148), - [anon_sym_TILDE] = ACTIONS(148), - [anon_sym_deep] = ACTIONS(148), - [anon_sym_de] = ACTIONS(150), - [anon_sym_61] = ACTIONS(148), - [anon_sym_abyss] = ACTIONS(148), - [anon_sym_ab] = ACTIONS(150), - [anon_sym_62] = ACTIONS(148), - [anon_sym_seabed] = ACTIONS(148), - [anon_sym_se] = ACTIONS(150), - [anon_sym_63] = ACTIONS(148), - [anon_sym_send] = ACTIONS(148), - [anon_sym_recv] = ACTIONS(148), - [anon_sym_tryrecv] = ACTIONS(148), - [anon_sym_reduce] = ACTIONS(152), - [anon_sym_SLASH] = ACTIONS(152), - [anon_sym_scan] = ACTIONS(152), - [anon_sym_BSLASH] = ACTIONS(152), - [anon_sym_each] = ACTIONS(152), - [anon_sym_64] = ACTIONS(152), - [anon_sym_rows] = ACTIONS(152), - [anon_sym_65] = ACTIONS(152), - [anon_sym_repeat] = ACTIONS(152), - [anon_sym_66] = ACTIONS(152), - [anon_sym_dip] = ACTIONS(152), - [anon_sym_di] = ACTIONS(154), - [anon_sym_67] = ACTIONS(152), - [anon_sym_gap] = ACTIONS(152), - [anon_sym_ga] = ACTIONS(154), - [anon_sym_68] = ACTIONS(152), - [anon_sym_oust] = ACTIONS(152), - [anon_sym_69] = ACTIONS(152), - [anon_sym_invert] = ACTIONS(152), - [anon_sym_70] = ACTIONS(152), - [anon_sym_spawn] = ACTIONS(152), - [anon_sym_pack] = ACTIONS(152), - [anon_sym_71] = ACTIONS(152), - [anon_sym_tribute] = ACTIONS(152), - [anon_sym_72] = ACTIONS(152), - [anon_sym_fold] = ACTIONS(156), - [anon_sym_73] = ACTIONS(156), - [anon_sym_distribute] = ACTIONS(156), - [anon_sym_74] = ACTIONS(156), - [anon_sym_table] = ACTIONS(156), - [anon_sym_75] = ACTIONS(156), - [anon_sym_cross] = ACTIONS(156), - [anon_sym_76] = ACTIONS(156), - [anon_sym_group] = ACTIONS(156), - [anon_sym_77] = ACTIONS(156), - [anon_sym_partition] = ACTIONS(156), - [anon_sym_78] = ACTIONS(156), - [anon_sym_both] = ACTIONS(156), - [anon_sym_79] = ACTIONS(156), - [anon_sym_bracket] = ACTIONS(156), - [anon_sym_80] = ACTIONS(156), - [anon_sym_fork] = ACTIONS(156), - [anon_sym_81] = ACTIONS(156), - [anon_sym_under] = ACTIONS(156), - [anon_sym_82] = ACTIONS(156), - [anon_sym_level] = ACTIONS(156), - [anon_sym_83] = ACTIONS(156), - [anon_sym_fill] = ACTIONS(156), - [anon_sym_84] = ACTIONS(156), - [anon_sym_bind] = ACTIONS(156), - [anon_sym_SQUOTE] = ACTIONS(156), - [anon_sym_QMARK] = ACTIONS(156), - [anon_sym_try] = ACTIONS(158), - [anon_sym_85] = ACTIONS(156), - [anon_sym_combinate] = ACTIONS(156), - [anon_sym_86] = ACTIONS(156), - [anon_sym_87] = ACTIONS(160), - [anon_sym_88] = ACTIONS(160), - [anon_sym_89] = ACTIONS(160), - [anon_sym_90] = ACTIONS(160), - [anon_sym_91] = ACTIONS(160), - [anon_sym_92] = ACTIONS(160), - [anon_sym_93] = ACTIONS(160), + [sym_openParen] = ACTIONS(125), + [sym_openCurly] = ACTIONS(129), + [sym_openBracket] = ACTIONS(131), + [anon_sym_CARET] = ACTIONS(137), + [anon_sym_eta] = ACTIONS(139), + [anon_sym_] = ACTIONS(141), + [anon_sym_pi] = ACTIONS(141), + [anon_sym_2] = ACTIONS(141), + [anon_sym_tau] = ACTIONS(139), + [anon_sym_3] = ACTIONS(141), + [anon_sym_infinity] = ACTIONS(139), + [anon_sym_4] = ACTIONS(139), + [anon_sym_e] = ACTIONS(141), + [anon_sym_NaN] = ACTIONS(141), + [anon_sym_NumProcs] = ACTIONS(141), + [anon_sym_DOT] = ACTIONS(143), + [anon_sym_COMMA] = ACTIONS(143), + [anon_sym_5] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_identity] = ACTIONS(143), + [anon_sym_id] = ACTIONS(145), + [anon_sym_6] = ACTIONS(143), + [anon_sym_not] = ACTIONS(143), + [anon_sym_7] = ACTIONS(143), + [anon_sym_sign] = ACTIONS(143), + [anon_sym_8] = ACTIONS(143), + [anon_sym_BQUOTE] = ACTIONS(143), + [anon_sym_9] = ACTIONS(143), + [anon_sym_absolutevalue] = ACTIONS(143), + [anon_sym_10] = ACTIONS(143), + [anon_sym_sqrt] = ACTIONS(143), + [anon_sym_11] = ACTIONS(143), + [anon_sym_sine] = ACTIONS(143), + [anon_sym_12] = ACTIONS(143), + [anon_sym_floor] = ACTIONS(143), + [anon_sym_13] = ACTIONS(143), + [anon_sym_ceiling] = ACTIONS(143), + [anon_sym_14] = ACTIONS(143), + [anon_sym_round] = ACTIONS(143), + [anon_sym_15] = ACTIONS(143), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_16] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_17] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_18] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_19] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_20] = ACTIONS(143), + [anon_sym_modulus] = ACTIONS(143), + [anon_sym_21] = ACTIONS(143), + [anon_sym_power] = ACTIONS(143), + [anon_sym_22] = ACTIONS(143), + [anon_sym_logarithm] = ACTIONS(143), + [anon_sym_23] = ACTIONS(143), + [anon_sym_minimum] = ACTIONS(143), + [anon_sym_24] = ACTIONS(143), + [anon_sym_maximum] = ACTIONS(143), + [anon_sym_25] = ACTIONS(143), + [anon_sym_atangent] = ACTIONS(143), + [anon_sym_26] = ACTIONS(143), + [anon_sym_length] = ACTIONS(143), + [anon_sym_27] = ACTIONS(143), + [anon_sym_shape] = ACTIONS(143), + [anon_sym_28] = ACTIONS(143), + [anon_sym_range] = ACTIONS(143), + [anon_sym_29] = ACTIONS(143), + [anon_sym_first] = ACTIONS(143), + [anon_sym_30] = ACTIONS(143), + [anon_sym_reverse] = ACTIONS(143), + [anon_sym_31] = ACTIONS(143), + [anon_sym_deshape] = ACTIONS(143), + [anon_sym_32] = ACTIONS(143), + [anon_sym_bits] = ACTIONS(143), + [anon_sym_33] = ACTIONS(143), + [anon_sym_transpose] = ACTIONS(143), + [anon_sym_34] = ACTIONS(143), + [anon_sym_rise] = ACTIONS(143), + [anon_sym_35] = ACTIONS(143), + [anon_sym_fall] = ACTIONS(143), + [anon_sym_36] = ACTIONS(143), + [anon_sym_where] = ACTIONS(143), + [anon_sym_37] = ACTIONS(143), + [anon_sym_classify] = ACTIONS(143), + [anon_sym_38] = ACTIONS(143), + [anon_sym_deduplicate] = ACTIONS(143), + [anon_sym_39] = ACTIONS(143), + [anon_sym_box] = ACTIONS(143), + [anon_sym_40] = ACTIONS(143), + [anon_sym_unbox] = ACTIONS(143), + [anon_sym_41] = ACTIONS(143), + [anon_sym_match] = ACTIONS(143), + [anon_sym_42] = ACTIONS(143), + [anon_sym_couple] = ACTIONS(143), + [anon_sym_43] = ACTIONS(143), + [anon_sym_join] = ACTIONS(143), + [anon_sym_44] = ACTIONS(143), + [anon_sym_select] = ACTIONS(143), + [anon_sym_45] = ACTIONS(143), + [anon_sym_pick] = ACTIONS(143), + [anon_sym_46] = ACTIONS(143), + [anon_sym_reshape] = ACTIONS(143), + [anon_sym_47] = ACTIONS(143), + [anon_sym_take] = ACTIONS(143), + [anon_sym_48] = ACTIONS(143), + [anon_sym_drop] = ACTIONS(143), + [anon_sym_49] = ACTIONS(143), + [anon_sym_rotate] = ACTIONS(143), + [anon_sym_50] = ACTIONS(143), + [anon_sym_windows] = ACTIONS(143), + [anon_sym_51] = ACTIONS(143), + [anon_sym_keep] = ACTIONS(143), + [anon_sym_52] = ACTIONS(143), + [anon_sym_find] = ACTIONS(143), + [anon_sym_53] = ACTIONS(143), + [anon_sym_member] = ACTIONS(143), + [anon_sym_54] = ACTIONS(143), + [anon_sym_indexof] = ACTIONS(143), + [anon_sym_55] = ACTIONS(143), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_56] = ACTIONS(143), + [anon_sym_wait] = ACTIONS(143), + [anon_sym_break] = ACTIONS(143), + [anon_sym_57] = ACTIONS(143), + [anon_sym_parse] = ACTIONS(143), + [anon_sym_random] = ACTIONS(143), + [anon_sym_58] = ACTIONS(143), + [anon_sym_gen] = ACTIONS(143), + [anon_sym_deal] = ACTIONS(143), + [anon_sym_tag] = ACTIONS(143), + [anon_sym_now] = ACTIONS(143), + [anon_sym_type] = ACTIONS(143), + [anon_sym_59] = ACTIONS(143), + [anon_sym_dump] = ACTIONS(143), + [anon_sym_regex] = ACTIONS(143), + [anon_sym_utf] = ACTIONS(143), + [anon_sym_rock] = ACTIONS(143), + [anon_sym_60] = ACTIONS(143), + [anon_sym_surface] = ACTIONS(143), + [anon_sym_TILDE] = ACTIONS(143), + [anon_sym_deep] = ACTIONS(143), + [anon_sym_de] = ACTIONS(145), + [anon_sym_61] = ACTIONS(143), + [anon_sym_abyss] = ACTIONS(143), + [anon_sym_ab] = ACTIONS(145), + [anon_sym_62] = ACTIONS(143), + [anon_sym_seabed] = ACTIONS(143), + [anon_sym_se] = ACTIONS(145), + [anon_sym_63] = ACTIONS(143), + [anon_sym_send] = ACTIONS(143), + [anon_sym_recv] = ACTIONS(143), + [anon_sym_tryrecv] = ACTIONS(143), + [anon_sym_reduce] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_scan] = ACTIONS(147), + [anon_sym_BSLASH] = ACTIONS(147), + [anon_sym_each] = ACTIONS(147), + [anon_sym_64] = ACTIONS(147), + [anon_sym_rows] = ACTIONS(147), + [anon_sym_65] = ACTIONS(147), + [anon_sym_repeat] = ACTIONS(147), + [anon_sym_66] = ACTIONS(147), + [anon_sym_dip] = ACTIONS(147), + [anon_sym_67] = ACTIONS(147), + [anon_sym_gap] = ACTIONS(147), + [anon_sym_68] = ACTIONS(147), + [anon_sym_69] = ACTIONS(147), + [anon_sym_invert] = ACTIONS(147), + [anon_sym_70] = ACTIONS(147), + [anon_sym_spawn] = ACTIONS(147), + [anon_sym_pack] = ACTIONS(147), + [anon_sym_71] = ACTIONS(147), + [anon_sym_tribute] = ACTIONS(147), + [anon_sym_72] = ACTIONS(147), + [anon_sym_reach] = ACTIONS(147), + [anon_sym_fold] = ACTIONS(149), + [anon_sym_73] = ACTIONS(149), + [anon_sym_distribute] = ACTIONS(149), + [anon_sym_74] = ACTIONS(149), + [anon_sym_table] = ACTIONS(149), + [anon_sym_75] = ACTIONS(149), + [anon_sym_cross] = ACTIONS(149), + [anon_sym_76] = ACTIONS(149), + [anon_sym_group] = ACTIONS(149), + [anon_sym_77] = ACTIONS(149), + [anon_sym_partition] = ACTIONS(149), + [anon_sym_78] = ACTIONS(149), + [anon_sym_both] = ACTIONS(149), + [anon_sym_79] = ACTIONS(149), + [anon_sym_bracket] = ACTIONS(149), + [anon_sym_80] = ACTIONS(149), + [anon_sym_fork] = ACTIONS(149), + [anon_sym_81] = ACTIONS(149), + [anon_sym_under] = ACTIONS(149), + [anon_sym_82] = ACTIONS(149), + [anon_sym_level] = ACTIONS(149), + [anon_sym_83] = ACTIONS(149), + [anon_sym_fill] = ACTIONS(149), + [anon_sym_84] = ACTIONS(149), + [anon_sym_bind] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_try] = ACTIONS(151), + [anon_sym_85] = ACTIONS(149), + [anon_sym_combinate] = ACTIONS(149), + [anon_sym_86] = ACTIONS(149), + [anon_sym_87] = ACTIONS(153), + [anon_sym_88] = ACTIONS(153), + [anon_sym_89] = ACTIONS(153), + [anon_sym_90] = ACTIONS(153), + [anon_sym_91] = ACTIONS(153), + [anon_sym_92] = ACTIONS(153), + [anon_sym_93] = ACTIONS(153), [sym__whitespace] = ACTIONS(5), [sym__end_of_line] = ACTIONS(5), }, [58] = { [sym_function] = STATE(70), - [aux_sym_number_token1] = ACTIONS(418), - [anon_sym_os] = ACTIONS(418), - [anon_sym_Family] = ACTIONS(418), - [anon_sym_Arch] = ACTIONS(418), - [anon_sym_ExeExt] = ACTIONS(418), - [anon_sym_PllExt] = ACTIONS(418), - [anon_sym_Sep] = ACTIONS(418), - [aux_sym_character_token1] = ACTIONS(420), - [sym_string] = ACTIONS(420), - [sym_multiLineString] = ACTIONS(420), - [anon_sym_PIPE] = ACTIONS(420), - [sym_identifier] = ACTIONS(422), - [sym_identifier_deprecated] = ACTIONS(418), - [sym_system] = ACTIONS(424), - [sym_comment] = ACTIONS(418), - [sym_openParen] = ACTIONS(420), - [sym_closeParen] = ACTIONS(420), - [sym_openCurly] = ACTIONS(420), - [sym_closeCurly] = ACTIONS(420), - [sym_openBracket] = ACTIONS(420), - [sym_closeBracket] = ACTIONS(420), - [sym_underscore] = ACTIONS(420), - [sym_leftArrow] = ACTIONS(420), - [anon_sym_CARET] = ACTIONS(420), - [anon_sym_eta] = ACTIONS(420), - [anon_sym_] = ACTIONS(418), - [anon_sym_pi] = ACTIONS(418), - [anon_sym_2] = ACTIONS(418), - [anon_sym_tau] = ACTIONS(420), - [anon_sym_3] = ACTIONS(418), - [anon_sym_infinity] = ACTIONS(420), - [anon_sym_4] = ACTIONS(420), - [anon_sym_e] = ACTIONS(418), - [anon_sym_NaN] = ACTIONS(418), - [anon_sym_NumProcs] = ACTIONS(418), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_COMMA] = ACTIONS(148), - [anon_sym_5] = ACTIONS(148), - [anon_sym_SEMI] = ACTIONS(148), - [anon_sym_identity] = ACTIONS(148), - [anon_sym_id] = ACTIONS(150), - [anon_sym_6] = ACTIONS(148), - [anon_sym_not] = ACTIONS(148), - [anon_sym_7] = ACTIONS(148), - [anon_sym_sign] = ACTIONS(148), - [anon_sym_8] = ACTIONS(148), - [anon_sym_BQUOTE] = ACTIONS(148), - [anon_sym_9] = ACTIONS(148), - [anon_sym_absolutevalue] = ACTIONS(148), - [anon_sym_10] = ACTIONS(148), - [anon_sym_sqrt] = ACTIONS(148), - [anon_sym_11] = ACTIONS(148), - [anon_sym_sine] = ACTIONS(148), - [anon_sym_12] = ACTIONS(148), - [anon_sym_floor] = ACTIONS(148), - [anon_sym_13] = ACTIONS(148), - [anon_sym_ceiling] = ACTIONS(148), - [anon_sym_14] = ACTIONS(148), - [anon_sym_round] = ACTIONS(148), - [anon_sym_15] = ACTIONS(148), - [anon_sym_EQ] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_16] = ACTIONS(148), - [anon_sym_LT] = ACTIONS(150), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_17] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_18] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_19] = ACTIONS(148), - [anon_sym_PERCENT] = ACTIONS(148), - [anon_sym_20] = ACTIONS(148), - [anon_sym_modulus] = ACTIONS(148), - [anon_sym_21] = ACTIONS(148), - [anon_sym_power] = ACTIONS(148), - [anon_sym_22] = ACTIONS(148), - [anon_sym_logarithm] = ACTIONS(148), - [anon_sym_23] = ACTIONS(148), - [anon_sym_minimum] = ACTIONS(148), - [anon_sym_24] = ACTIONS(148), - [anon_sym_maximum] = ACTIONS(148), - [anon_sym_25] = ACTIONS(148), - [anon_sym_atangent] = ACTIONS(148), - [anon_sym_26] = ACTIONS(148), - [anon_sym_length] = ACTIONS(148), - [anon_sym_27] = ACTIONS(148), - [anon_sym_shape] = ACTIONS(148), - [anon_sym_28] = ACTIONS(148), - [anon_sym_range] = ACTIONS(148), - [anon_sym_29] = ACTIONS(148), - [anon_sym_first] = ACTIONS(148), - [anon_sym_30] = ACTIONS(148), - [anon_sym_reverse] = ACTIONS(148), - [anon_sym_31] = ACTIONS(148), - [anon_sym_deshape] = ACTIONS(148), - [anon_sym_32] = ACTIONS(148), - [anon_sym_bits] = ACTIONS(148), - [anon_sym_33] = ACTIONS(148), - [anon_sym_transpose] = ACTIONS(148), - [anon_sym_34] = ACTIONS(148), - [anon_sym_rise] = ACTIONS(148), - [anon_sym_35] = ACTIONS(148), - [anon_sym_fall] = ACTIONS(148), - [anon_sym_36] = ACTIONS(148), - [anon_sym_where] = ACTIONS(148), - [anon_sym_37] = ACTIONS(148), - [anon_sym_classify] = ACTIONS(148), - [anon_sym_38] = ACTIONS(148), - [anon_sym_deduplicate] = ACTIONS(148), - [anon_sym_39] = ACTIONS(148), - [anon_sym_box] = ACTIONS(148), - [anon_sym_40] = ACTIONS(148), - [anon_sym_unbox] = ACTIONS(148), - [anon_sym_41] = ACTIONS(148), - [anon_sym_match] = ACTIONS(148), - [anon_sym_42] = ACTIONS(148), - [anon_sym_couple] = ACTIONS(148), - [anon_sym_43] = ACTIONS(148), - [anon_sym_join] = ACTIONS(148), - [anon_sym_44] = ACTIONS(148), - [anon_sym_select] = ACTIONS(148), - [anon_sym_45] = ACTIONS(148), - [anon_sym_pick] = ACTIONS(148), - [anon_sym_46] = ACTIONS(148), - [anon_sym_reshape] = ACTIONS(148), - [anon_sym_47] = ACTIONS(148), - [anon_sym_take] = ACTIONS(148), - [anon_sym_48] = ACTIONS(148), - [anon_sym_drop] = ACTIONS(148), - [anon_sym_49] = ACTIONS(148), - [anon_sym_rotate] = ACTIONS(148), - [anon_sym_50] = ACTIONS(148), - [anon_sym_windows] = ACTIONS(148), - [anon_sym_51] = ACTIONS(148), - [anon_sym_keep] = ACTIONS(148), - [anon_sym_52] = ACTIONS(148), - [anon_sym_find] = ACTIONS(148), - [anon_sym_53] = ACTIONS(148), - [anon_sym_member] = ACTIONS(148), - [anon_sym_54] = ACTIONS(148), - [anon_sym_indexof] = ACTIONS(148), - [anon_sym_55] = ACTIONS(148), - [anon_sym_assert] = ACTIONS(148), - [anon_sym_56] = ACTIONS(148), - [anon_sym_wait] = ACTIONS(148), - [anon_sym_break] = ACTIONS(148), - [anon_sym_57] = ACTIONS(148), - [anon_sym_parse] = ACTIONS(148), - [anon_sym_random] = ACTIONS(148), - [anon_sym_58] = ACTIONS(148), - [anon_sym_gen] = ACTIONS(148), - [anon_sym_deal] = ACTIONS(148), - [anon_sym_tag] = ACTIONS(148), - [anon_sym_now] = ACTIONS(148), - [anon_sym_type] = ACTIONS(148), - [anon_sym_59] = ACTIONS(148), - [anon_sym_dump] = ACTIONS(148), - [anon_sym_regex] = ACTIONS(148), - [anon_sym_utf] = ACTIONS(148), - [anon_sym_rock] = ACTIONS(148), - [anon_sym_60] = ACTIONS(148), - [anon_sym_surface] = ACTIONS(148), - [anon_sym_TILDE] = ACTIONS(148), - [anon_sym_deep] = ACTIONS(148), - [anon_sym_de] = ACTIONS(150), - [anon_sym_61] = ACTIONS(148), - [anon_sym_abyss] = ACTIONS(148), - [anon_sym_ab] = ACTIONS(150), - [anon_sym_62] = ACTIONS(148), - [anon_sym_seabed] = ACTIONS(148), - [anon_sym_se] = ACTIONS(150), - [anon_sym_63] = ACTIONS(148), - [anon_sym_send] = ACTIONS(148), - [anon_sym_recv] = ACTIONS(148), - [anon_sym_tryrecv] = ACTIONS(148), - [anon_sym_reduce] = ACTIONS(420), - [anon_sym_SLASH] = ACTIONS(420), - [anon_sym_scan] = ACTIONS(420), - [anon_sym_BSLASH] = ACTIONS(420), - [anon_sym_each] = ACTIONS(420), - [anon_sym_64] = ACTIONS(420), - [anon_sym_rows] = ACTIONS(420), - [anon_sym_65] = ACTIONS(420), - [anon_sym_repeat] = ACTIONS(420), - [anon_sym_66] = ACTIONS(420), - [anon_sym_dip] = ACTIONS(420), - [anon_sym_di] = ACTIONS(418), - [anon_sym_67] = ACTIONS(420), - [anon_sym_gap] = ACTIONS(420), - [anon_sym_ga] = ACTIONS(418), - [anon_sym_68] = ACTIONS(420), - [anon_sym_oust] = ACTIONS(420), - [anon_sym_69] = ACTIONS(420), - [anon_sym_invert] = ACTIONS(420), - [anon_sym_70] = ACTIONS(420), - [anon_sym_spawn] = ACTIONS(420), - [anon_sym_pack] = ACTIONS(420), - [anon_sym_71] = ACTIONS(420), - [anon_sym_tribute] = ACTIONS(420), - [anon_sym_72] = ACTIONS(420), - [anon_sym_fold] = ACTIONS(420), - [anon_sym_73] = ACTIONS(420), - [anon_sym_distribute] = ACTIONS(420), - [anon_sym_74] = ACTIONS(420), - [anon_sym_table] = ACTIONS(420), - [anon_sym_75] = ACTIONS(420), - [anon_sym_cross] = ACTIONS(420), - [anon_sym_76] = ACTIONS(420), - [anon_sym_group] = ACTIONS(420), - [anon_sym_77] = ACTIONS(420), - [anon_sym_partition] = ACTIONS(420), - [anon_sym_78] = ACTIONS(420), - [anon_sym_both] = ACTIONS(420), - [anon_sym_79] = ACTIONS(420), - [anon_sym_bracket] = ACTIONS(420), - [anon_sym_80] = ACTIONS(420), - [anon_sym_fork] = ACTIONS(420), - [anon_sym_81] = ACTIONS(420), - [anon_sym_under] = ACTIONS(420), - [anon_sym_82] = ACTIONS(420), - [anon_sym_level] = ACTIONS(420), - [anon_sym_83] = ACTIONS(420), - [anon_sym_fill] = ACTIONS(420), - [anon_sym_84] = ACTIONS(420), - [anon_sym_bind] = ACTIONS(420), - [anon_sym_SQUOTE] = ACTIONS(420), - [anon_sym_QMARK] = ACTIONS(420), - [anon_sym_try] = ACTIONS(418), - [anon_sym_85] = ACTIONS(420), - [anon_sym_combinate] = ACTIONS(420), - [anon_sym_86] = ACTIONS(420), - [anon_sym_87] = ACTIONS(420), - [anon_sym_88] = ACTIONS(420), - [anon_sym_89] = ACTIONS(420), - [anon_sym_90] = ACTIONS(420), - [anon_sym_91] = ACTIONS(420), - [anon_sym_92] = ACTIONS(420), - [anon_sym_93] = ACTIONS(420), + [aux_sym_number_token1] = ACTIONS(400), + [anon_sym_os] = ACTIONS(400), + [anon_sym_Family] = ACTIONS(400), + [anon_sym_Arch] = ACTIONS(400), + [anon_sym_ExeExt] = ACTIONS(400), + [anon_sym_PllExt] = ACTIONS(400), + [anon_sym_Sep] = ACTIONS(400), + [aux_sym_character_token1] = ACTIONS(402), + [sym_string] = ACTIONS(402), + [sym_multiLineString] = ACTIONS(402), + [anon_sym_PIPE] = ACTIONS(402), + [sym_identifier] = ACTIONS(404), + [sym_identifier_deprecated] = ACTIONS(400), + [sym_system] = ACTIONS(406), + [sym_comment] = ACTIONS(400), + [sym_openParen] = ACTIONS(402), + [sym_closeParen] = ACTIONS(402), + [sym_openCurly] = ACTIONS(402), + [sym_closeCurly] = ACTIONS(402), + [sym_openBracket] = ACTIONS(402), + [sym_closeBracket] = ACTIONS(402), + [sym_underscore] = ACTIONS(402), + [sym_leftArrow] = ACTIONS(402), + [anon_sym_CARET] = ACTIONS(402), + [anon_sym_eta] = ACTIONS(402), + [anon_sym_] = ACTIONS(400), + [anon_sym_pi] = ACTIONS(400), + [anon_sym_2] = ACTIONS(400), + [anon_sym_tau] = ACTIONS(402), + [anon_sym_3] = ACTIONS(400), + [anon_sym_infinity] = ACTIONS(402), + [anon_sym_4] = ACTIONS(402), + [anon_sym_e] = ACTIONS(400), + [anon_sym_NaN] = ACTIONS(400), + [anon_sym_NumProcs] = ACTIONS(400), + [anon_sym_DOT] = ACTIONS(143), + [anon_sym_COMMA] = ACTIONS(143), + [anon_sym_5] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_identity] = ACTIONS(143), + [anon_sym_id] = ACTIONS(145), + [anon_sym_6] = ACTIONS(143), + [anon_sym_not] = ACTIONS(143), + [anon_sym_7] = ACTIONS(143), + [anon_sym_sign] = ACTIONS(143), + [anon_sym_8] = ACTIONS(143), + [anon_sym_BQUOTE] = ACTIONS(143), + [anon_sym_9] = ACTIONS(143), + [anon_sym_absolutevalue] = ACTIONS(143), + [anon_sym_10] = ACTIONS(143), + [anon_sym_sqrt] = ACTIONS(143), + [anon_sym_11] = ACTIONS(143), + [anon_sym_sine] = ACTIONS(143), + [anon_sym_12] = ACTIONS(143), + [anon_sym_floor] = ACTIONS(143), + [anon_sym_13] = ACTIONS(143), + [anon_sym_ceiling] = ACTIONS(143), + [anon_sym_14] = ACTIONS(143), + [anon_sym_round] = ACTIONS(143), + [anon_sym_15] = ACTIONS(143), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_16] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_17] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_18] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_19] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_20] = ACTIONS(143), + [anon_sym_modulus] = ACTIONS(143), + [anon_sym_21] = ACTIONS(143), + [anon_sym_power] = ACTIONS(143), + [anon_sym_22] = ACTIONS(143), + [anon_sym_logarithm] = ACTIONS(143), + [anon_sym_23] = ACTIONS(143), + [anon_sym_minimum] = ACTIONS(143), + [anon_sym_24] = ACTIONS(143), + [anon_sym_maximum] = ACTIONS(143), + [anon_sym_25] = ACTIONS(143), + [anon_sym_atangent] = ACTIONS(143), + [anon_sym_26] = ACTIONS(143), + [anon_sym_length] = ACTIONS(143), + [anon_sym_27] = ACTIONS(143), + [anon_sym_shape] = ACTIONS(143), + [anon_sym_28] = ACTIONS(143), + [anon_sym_range] = ACTIONS(143), + [anon_sym_29] = ACTIONS(143), + [anon_sym_first] = ACTIONS(143), + [anon_sym_30] = ACTIONS(143), + [anon_sym_reverse] = ACTIONS(143), + [anon_sym_31] = ACTIONS(143), + [anon_sym_deshape] = ACTIONS(143), + [anon_sym_32] = ACTIONS(143), + [anon_sym_bits] = ACTIONS(143), + [anon_sym_33] = ACTIONS(143), + [anon_sym_transpose] = ACTIONS(143), + [anon_sym_34] = ACTIONS(143), + [anon_sym_rise] = ACTIONS(143), + [anon_sym_35] = ACTIONS(143), + [anon_sym_fall] = ACTIONS(143), + [anon_sym_36] = ACTIONS(143), + [anon_sym_where] = ACTIONS(143), + [anon_sym_37] = ACTIONS(143), + [anon_sym_classify] = ACTIONS(143), + [anon_sym_38] = ACTIONS(143), + [anon_sym_deduplicate] = ACTIONS(143), + [anon_sym_39] = ACTIONS(143), + [anon_sym_box] = ACTIONS(143), + [anon_sym_40] = ACTIONS(143), + [anon_sym_unbox] = ACTIONS(143), + [anon_sym_41] = ACTIONS(143), + [anon_sym_match] = ACTIONS(143), + [anon_sym_42] = ACTIONS(143), + [anon_sym_couple] = ACTIONS(143), + [anon_sym_43] = ACTIONS(143), + [anon_sym_join] = ACTIONS(143), + [anon_sym_44] = ACTIONS(143), + [anon_sym_select] = ACTIONS(143), + [anon_sym_45] = ACTIONS(143), + [anon_sym_pick] = ACTIONS(143), + [anon_sym_46] = ACTIONS(143), + [anon_sym_reshape] = ACTIONS(143), + [anon_sym_47] = ACTIONS(143), + [anon_sym_take] = ACTIONS(143), + [anon_sym_48] = ACTIONS(143), + [anon_sym_drop] = ACTIONS(143), + [anon_sym_49] = ACTIONS(143), + [anon_sym_rotate] = ACTIONS(143), + [anon_sym_50] = ACTIONS(143), + [anon_sym_windows] = ACTIONS(143), + [anon_sym_51] = ACTIONS(143), + [anon_sym_keep] = ACTIONS(143), + [anon_sym_52] = ACTIONS(143), + [anon_sym_find] = ACTIONS(143), + [anon_sym_53] = ACTIONS(143), + [anon_sym_member] = ACTIONS(143), + [anon_sym_54] = ACTIONS(143), + [anon_sym_indexof] = ACTIONS(143), + [anon_sym_55] = ACTIONS(143), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_56] = ACTIONS(143), + [anon_sym_wait] = ACTIONS(143), + [anon_sym_break] = ACTIONS(143), + [anon_sym_57] = ACTIONS(143), + [anon_sym_parse] = ACTIONS(143), + [anon_sym_random] = ACTIONS(143), + [anon_sym_58] = ACTIONS(143), + [anon_sym_gen] = ACTIONS(143), + [anon_sym_deal] = ACTIONS(143), + [anon_sym_tag] = ACTIONS(143), + [anon_sym_now] = ACTIONS(143), + [anon_sym_type] = ACTIONS(143), + [anon_sym_59] = ACTIONS(143), + [anon_sym_dump] = ACTIONS(143), + [anon_sym_regex] = ACTIONS(143), + [anon_sym_utf] = ACTIONS(143), + [anon_sym_rock] = ACTIONS(143), + [anon_sym_60] = ACTIONS(143), + [anon_sym_surface] = ACTIONS(143), + [anon_sym_TILDE] = ACTIONS(143), + [anon_sym_deep] = ACTIONS(143), + [anon_sym_de] = ACTIONS(145), + [anon_sym_61] = ACTIONS(143), + [anon_sym_abyss] = ACTIONS(143), + [anon_sym_ab] = ACTIONS(145), + [anon_sym_62] = ACTIONS(143), + [anon_sym_seabed] = ACTIONS(143), + [anon_sym_se] = ACTIONS(145), + [anon_sym_63] = ACTIONS(143), + [anon_sym_send] = ACTIONS(143), + [anon_sym_recv] = ACTIONS(143), + [anon_sym_tryrecv] = ACTIONS(143), + [anon_sym_reduce] = ACTIONS(402), + [anon_sym_SLASH] = ACTIONS(402), + [anon_sym_scan] = ACTIONS(402), + [anon_sym_BSLASH] = ACTIONS(402), + [anon_sym_each] = ACTIONS(402), + [anon_sym_64] = ACTIONS(402), + [anon_sym_rows] = ACTIONS(402), + [anon_sym_65] = ACTIONS(402), + [anon_sym_repeat] = ACTIONS(402), + [anon_sym_66] = ACTIONS(402), + [anon_sym_dip] = ACTIONS(402), + [anon_sym_67] = ACTIONS(402), + [anon_sym_gap] = ACTIONS(402), + [anon_sym_68] = ACTIONS(402), + [anon_sym_69] = ACTIONS(402), + [anon_sym_invert] = ACTIONS(402), + [anon_sym_70] = ACTIONS(402), + [anon_sym_spawn] = ACTIONS(402), + [anon_sym_pack] = ACTIONS(402), + [anon_sym_71] = ACTIONS(402), + [anon_sym_tribute] = ACTIONS(402), + [anon_sym_72] = ACTIONS(402), + [anon_sym_reach] = ACTIONS(402), + [anon_sym_fold] = ACTIONS(402), + [anon_sym_73] = ACTIONS(402), + [anon_sym_distribute] = ACTIONS(402), + [anon_sym_74] = ACTIONS(402), + [anon_sym_table] = ACTIONS(402), + [anon_sym_75] = ACTIONS(402), + [anon_sym_cross] = ACTIONS(402), + [anon_sym_76] = ACTIONS(402), + [anon_sym_group] = ACTIONS(402), + [anon_sym_77] = ACTIONS(402), + [anon_sym_partition] = ACTIONS(402), + [anon_sym_78] = ACTIONS(402), + [anon_sym_both] = ACTIONS(402), + [anon_sym_79] = ACTIONS(402), + [anon_sym_bracket] = ACTIONS(402), + [anon_sym_80] = ACTIONS(402), + [anon_sym_fork] = ACTIONS(402), + [anon_sym_81] = ACTIONS(402), + [anon_sym_under] = ACTIONS(402), + [anon_sym_82] = ACTIONS(402), + [anon_sym_level] = ACTIONS(402), + [anon_sym_83] = ACTIONS(402), + [anon_sym_fill] = ACTIONS(402), + [anon_sym_84] = ACTIONS(402), + [anon_sym_bind] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(402), + [anon_sym_QMARK] = ACTIONS(402), + [anon_sym_try] = ACTIONS(400), + [anon_sym_85] = ACTIONS(402), + [anon_sym_combinate] = ACTIONS(402), + [anon_sym_86] = ACTIONS(402), + [anon_sym_87] = ACTIONS(402), + [anon_sym_88] = ACTIONS(402), + [anon_sym_89] = ACTIONS(402), + [anon_sym_90] = ACTIONS(402), + [anon_sym_91] = ACTIONS(402), + [anon_sym_92] = ACTIONS(402), + [anon_sym_93] = ACTIONS(402), [sym__whitespace] = ACTIONS(5), - [sym__end_of_line] = ACTIONS(420), + [sym__end_of_line] = ACTIONS(402), }, [59] = { [sym_function] = STATE(60), - [aux_sym_number_token1] = ACTIONS(418), - [anon_sym_os] = ACTIONS(418), - [anon_sym_Family] = ACTIONS(418), - [anon_sym_Arch] = ACTIONS(418), - [anon_sym_ExeExt] = ACTIONS(418), - [anon_sym_PllExt] = ACTIONS(418), - [anon_sym_Sep] = ACTIONS(418), - [aux_sym_character_token1] = ACTIONS(420), - [sym_string] = ACTIONS(420), - [sym_multiLineString] = ACTIONS(420), - [anon_sym_PIPE] = ACTIONS(420), - [sym_identifier] = ACTIONS(426), - [sym_identifier_deprecated] = ACTIONS(418), - [sym_system] = ACTIONS(428), - [sym_comment] = ACTIONS(418), - [sym_openParen] = ACTIONS(420), - [sym_closeParen] = ACTIONS(420), - [sym_openCurly] = ACTIONS(420), - [sym_closeCurly] = ACTIONS(420), - [sym_openBracket] = ACTIONS(420), - [sym_closeBracket] = ACTIONS(420), - [sym_underscore] = ACTIONS(420), - [sym_leftArrow] = ACTIONS(420), - [anon_sym_CARET] = ACTIONS(420), - [anon_sym_eta] = ACTIONS(420), - [anon_sym_] = ACTIONS(418), - [anon_sym_pi] = ACTIONS(418), - [anon_sym_2] = ACTIONS(418), - [anon_sym_tau] = ACTIONS(420), - [anon_sym_3] = ACTIONS(418), - [anon_sym_infinity] = ACTIONS(420), - [anon_sym_4] = ACTIONS(420), - [anon_sym_e] = ACTIONS(418), - [anon_sym_NaN] = ACTIONS(418), - [anon_sym_NumProcs] = ACTIONS(418), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_COMMA] = ACTIONS(148), - [anon_sym_5] = ACTIONS(148), - [anon_sym_SEMI] = ACTIONS(148), - [anon_sym_identity] = ACTIONS(148), - [anon_sym_id] = ACTIONS(150), - [anon_sym_6] = ACTIONS(148), - [anon_sym_not] = ACTIONS(148), - [anon_sym_7] = ACTIONS(148), - [anon_sym_sign] = ACTIONS(148), - [anon_sym_8] = ACTIONS(148), - [anon_sym_BQUOTE] = ACTIONS(148), - [anon_sym_9] = ACTIONS(148), - [anon_sym_absolutevalue] = ACTIONS(148), - [anon_sym_10] = ACTIONS(148), - [anon_sym_sqrt] = ACTIONS(148), - [anon_sym_11] = ACTIONS(148), - [anon_sym_sine] = ACTIONS(148), - [anon_sym_12] = ACTIONS(148), - [anon_sym_floor] = ACTIONS(148), - [anon_sym_13] = ACTIONS(148), - [anon_sym_ceiling] = ACTIONS(148), - [anon_sym_14] = ACTIONS(148), - [anon_sym_round] = ACTIONS(148), - [anon_sym_15] = ACTIONS(148), - [anon_sym_EQ] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_16] = ACTIONS(148), - [anon_sym_LT] = ACTIONS(150), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_17] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_18] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_19] = ACTIONS(148), - [anon_sym_PERCENT] = ACTIONS(148), - [anon_sym_20] = ACTIONS(148), - [anon_sym_modulus] = ACTIONS(148), - [anon_sym_21] = ACTIONS(148), - [anon_sym_power] = ACTIONS(148), - [anon_sym_22] = ACTIONS(148), - [anon_sym_logarithm] = ACTIONS(148), - [anon_sym_23] = ACTIONS(148), - [anon_sym_minimum] = ACTIONS(148), - [anon_sym_24] = ACTIONS(148), - [anon_sym_maximum] = ACTIONS(148), - [anon_sym_25] = ACTIONS(148), - [anon_sym_atangent] = ACTIONS(148), - [anon_sym_26] = ACTIONS(148), - [anon_sym_length] = ACTIONS(148), - [anon_sym_27] = ACTIONS(148), - [anon_sym_shape] = ACTIONS(148), - [anon_sym_28] = ACTIONS(148), - [anon_sym_range] = ACTIONS(148), - [anon_sym_29] = ACTIONS(148), - [anon_sym_first] = ACTIONS(148), - [anon_sym_30] = ACTIONS(148), - [anon_sym_reverse] = ACTIONS(148), - [anon_sym_31] = ACTIONS(148), - [anon_sym_deshape] = ACTIONS(148), - [anon_sym_32] = ACTIONS(148), - [anon_sym_bits] = ACTIONS(148), - [anon_sym_33] = ACTIONS(148), - [anon_sym_transpose] = ACTIONS(148), - [anon_sym_34] = ACTIONS(148), - [anon_sym_rise] = ACTIONS(148), - [anon_sym_35] = ACTIONS(148), - [anon_sym_fall] = ACTIONS(148), - [anon_sym_36] = ACTIONS(148), - [anon_sym_where] = ACTIONS(148), - [anon_sym_37] = ACTIONS(148), - [anon_sym_classify] = ACTIONS(148), - [anon_sym_38] = ACTIONS(148), - [anon_sym_deduplicate] = ACTIONS(148), - [anon_sym_39] = ACTIONS(148), - [anon_sym_box] = ACTIONS(148), - [anon_sym_40] = ACTIONS(148), - [anon_sym_unbox] = ACTIONS(148), - [anon_sym_41] = ACTIONS(148), - [anon_sym_match] = ACTIONS(148), - [anon_sym_42] = ACTIONS(148), - [anon_sym_couple] = ACTIONS(148), - [anon_sym_43] = ACTIONS(148), - [anon_sym_join] = ACTIONS(148), - [anon_sym_44] = ACTIONS(148), - [anon_sym_select] = ACTIONS(148), - [anon_sym_45] = ACTIONS(148), - [anon_sym_pick] = ACTIONS(148), - [anon_sym_46] = ACTIONS(148), - [anon_sym_reshape] = ACTIONS(148), - [anon_sym_47] = ACTIONS(148), - [anon_sym_take] = ACTIONS(148), - [anon_sym_48] = ACTIONS(148), - [anon_sym_drop] = ACTIONS(148), - [anon_sym_49] = ACTIONS(148), - [anon_sym_rotate] = ACTIONS(148), - [anon_sym_50] = ACTIONS(148), - [anon_sym_windows] = ACTIONS(148), - [anon_sym_51] = ACTIONS(148), - [anon_sym_keep] = ACTIONS(148), - [anon_sym_52] = ACTIONS(148), - [anon_sym_find] = ACTIONS(148), - [anon_sym_53] = ACTIONS(148), - [anon_sym_member] = ACTIONS(148), - [anon_sym_54] = ACTIONS(148), - [anon_sym_indexof] = ACTIONS(148), - [anon_sym_55] = ACTIONS(148), - [anon_sym_assert] = ACTIONS(148), - [anon_sym_56] = ACTIONS(148), - [anon_sym_wait] = ACTIONS(148), - [anon_sym_break] = ACTIONS(148), - [anon_sym_57] = ACTIONS(148), - [anon_sym_parse] = ACTIONS(148), - [anon_sym_random] = ACTIONS(148), - [anon_sym_58] = ACTIONS(148), - [anon_sym_gen] = ACTIONS(148), - [anon_sym_deal] = ACTIONS(148), - [anon_sym_tag] = ACTIONS(148), - [anon_sym_now] = ACTIONS(148), - [anon_sym_type] = ACTIONS(148), - [anon_sym_59] = ACTIONS(148), - [anon_sym_dump] = ACTIONS(148), - [anon_sym_regex] = ACTIONS(148), - [anon_sym_utf] = ACTIONS(148), - [anon_sym_rock] = ACTIONS(148), - [anon_sym_60] = ACTIONS(148), - [anon_sym_surface] = ACTIONS(148), - [anon_sym_TILDE] = ACTIONS(148), - [anon_sym_deep] = ACTIONS(148), - [anon_sym_de] = ACTIONS(150), - [anon_sym_61] = ACTIONS(148), - [anon_sym_abyss] = ACTIONS(148), - [anon_sym_ab] = ACTIONS(150), - [anon_sym_62] = ACTIONS(148), - [anon_sym_seabed] = ACTIONS(148), - [anon_sym_se] = ACTIONS(150), - [anon_sym_63] = ACTIONS(148), - [anon_sym_send] = ACTIONS(148), - [anon_sym_recv] = ACTIONS(148), - [anon_sym_tryrecv] = ACTIONS(148), - [anon_sym_reduce] = ACTIONS(420), - [anon_sym_SLASH] = ACTIONS(420), - [anon_sym_scan] = ACTIONS(420), - [anon_sym_BSLASH] = ACTIONS(420), - [anon_sym_each] = ACTIONS(420), - [anon_sym_64] = ACTIONS(420), - [anon_sym_rows] = ACTIONS(420), - [anon_sym_65] = ACTIONS(420), - [anon_sym_repeat] = ACTIONS(420), - [anon_sym_66] = ACTIONS(420), - [anon_sym_dip] = ACTIONS(420), - [anon_sym_di] = ACTIONS(418), - [anon_sym_67] = ACTIONS(420), - [anon_sym_gap] = ACTIONS(420), - [anon_sym_ga] = ACTIONS(418), - [anon_sym_68] = ACTIONS(420), - [anon_sym_oust] = ACTIONS(420), - [anon_sym_69] = ACTIONS(420), - [anon_sym_invert] = ACTIONS(420), - [anon_sym_70] = ACTIONS(420), - [anon_sym_spawn] = ACTIONS(420), - [anon_sym_pack] = ACTIONS(420), - [anon_sym_71] = ACTIONS(420), - [anon_sym_tribute] = ACTIONS(420), - [anon_sym_72] = ACTIONS(420), - [anon_sym_fold] = ACTIONS(420), - [anon_sym_73] = ACTIONS(420), - [anon_sym_distribute] = ACTIONS(420), - [anon_sym_74] = ACTIONS(420), - [anon_sym_table] = ACTIONS(420), - [anon_sym_75] = ACTIONS(420), - [anon_sym_cross] = ACTIONS(420), - [anon_sym_76] = ACTIONS(420), - [anon_sym_group] = ACTIONS(420), - [anon_sym_77] = ACTIONS(420), - [anon_sym_partition] = ACTIONS(420), - [anon_sym_78] = ACTIONS(420), - [anon_sym_both] = ACTIONS(420), - [anon_sym_79] = ACTIONS(420), - [anon_sym_bracket] = ACTIONS(420), - [anon_sym_80] = ACTIONS(420), - [anon_sym_fork] = ACTIONS(420), - [anon_sym_81] = ACTIONS(420), - [anon_sym_under] = ACTIONS(420), - [anon_sym_82] = ACTIONS(420), - [anon_sym_level] = ACTIONS(420), - [anon_sym_83] = ACTIONS(420), - [anon_sym_fill] = ACTIONS(420), - [anon_sym_84] = ACTIONS(420), - [anon_sym_bind] = ACTIONS(420), - [anon_sym_SQUOTE] = ACTIONS(420), - [anon_sym_QMARK] = ACTIONS(420), - [anon_sym_try] = ACTIONS(418), - [anon_sym_85] = ACTIONS(420), - [anon_sym_combinate] = ACTIONS(420), - [anon_sym_86] = ACTIONS(420), - [anon_sym_87] = ACTIONS(420), - [anon_sym_88] = ACTIONS(420), - [anon_sym_89] = ACTIONS(420), - [anon_sym_90] = ACTIONS(420), - [anon_sym_91] = ACTIONS(420), - [anon_sym_92] = ACTIONS(420), - [anon_sym_93] = ACTIONS(420), + [aux_sym_number_token1] = ACTIONS(400), + [anon_sym_os] = ACTIONS(400), + [anon_sym_Family] = ACTIONS(400), + [anon_sym_Arch] = ACTIONS(400), + [anon_sym_ExeExt] = ACTIONS(400), + [anon_sym_PllExt] = ACTIONS(400), + [anon_sym_Sep] = ACTIONS(400), + [aux_sym_character_token1] = ACTIONS(402), + [sym_string] = ACTIONS(402), + [sym_multiLineString] = ACTIONS(402), + [anon_sym_PIPE] = ACTIONS(402), + [sym_identifier] = ACTIONS(408), + [sym_identifier_deprecated] = ACTIONS(400), + [sym_system] = ACTIONS(410), + [sym_comment] = ACTIONS(400), + [sym_openParen] = ACTIONS(402), + [sym_closeParen] = ACTIONS(402), + [sym_openCurly] = ACTIONS(402), + [sym_closeCurly] = ACTIONS(402), + [sym_openBracket] = ACTIONS(402), + [sym_closeBracket] = ACTIONS(402), + [sym_underscore] = ACTIONS(402), + [sym_leftArrow] = ACTIONS(402), + [anon_sym_CARET] = ACTIONS(402), + [anon_sym_eta] = ACTIONS(402), + [anon_sym_] = ACTIONS(400), + [anon_sym_pi] = ACTIONS(400), + [anon_sym_2] = ACTIONS(400), + [anon_sym_tau] = ACTIONS(402), + [anon_sym_3] = ACTIONS(400), + [anon_sym_infinity] = ACTIONS(402), + [anon_sym_4] = ACTIONS(402), + [anon_sym_e] = ACTIONS(400), + [anon_sym_NaN] = ACTIONS(400), + [anon_sym_NumProcs] = ACTIONS(400), + [anon_sym_DOT] = ACTIONS(143), + [anon_sym_COMMA] = ACTIONS(143), + [anon_sym_5] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_identity] = ACTIONS(143), + [anon_sym_id] = ACTIONS(145), + [anon_sym_6] = ACTIONS(143), + [anon_sym_not] = ACTIONS(143), + [anon_sym_7] = ACTIONS(143), + [anon_sym_sign] = ACTIONS(143), + [anon_sym_8] = ACTIONS(143), + [anon_sym_BQUOTE] = ACTIONS(143), + [anon_sym_9] = ACTIONS(143), + [anon_sym_absolutevalue] = ACTIONS(143), + [anon_sym_10] = ACTIONS(143), + [anon_sym_sqrt] = ACTIONS(143), + [anon_sym_11] = ACTIONS(143), + [anon_sym_sine] = ACTIONS(143), + [anon_sym_12] = ACTIONS(143), + [anon_sym_floor] = ACTIONS(143), + [anon_sym_13] = ACTIONS(143), + [anon_sym_ceiling] = ACTIONS(143), + [anon_sym_14] = ACTIONS(143), + [anon_sym_round] = ACTIONS(143), + [anon_sym_15] = ACTIONS(143), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_16] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_17] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_18] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_19] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_20] = ACTIONS(143), + [anon_sym_modulus] = ACTIONS(143), + [anon_sym_21] = ACTIONS(143), + [anon_sym_power] = ACTIONS(143), + [anon_sym_22] = ACTIONS(143), + [anon_sym_logarithm] = ACTIONS(143), + [anon_sym_23] = ACTIONS(143), + [anon_sym_minimum] = ACTIONS(143), + [anon_sym_24] = ACTIONS(143), + [anon_sym_maximum] = ACTIONS(143), + [anon_sym_25] = ACTIONS(143), + [anon_sym_atangent] = ACTIONS(143), + [anon_sym_26] = ACTIONS(143), + [anon_sym_length] = ACTIONS(143), + [anon_sym_27] = ACTIONS(143), + [anon_sym_shape] = ACTIONS(143), + [anon_sym_28] = ACTIONS(143), + [anon_sym_range] = ACTIONS(143), + [anon_sym_29] = ACTIONS(143), + [anon_sym_first] = ACTIONS(143), + [anon_sym_30] = ACTIONS(143), + [anon_sym_reverse] = ACTIONS(143), + [anon_sym_31] = ACTIONS(143), + [anon_sym_deshape] = ACTIONS(143), + [anon_sym_32] = ACTIONS(143), + [anon_sym_bits] = ACTIONS(143), + [anon_sym_33] = ACTIONS(143), + [anon_sym_transpose] = ACTIONS(143), + [anon_sym_34] = ACTIONS(143), + [anon_sym_rise] = ACTIONS(143), + [anon_sym_35] = ACTIONS(143), + [anon_sym_fall] = ACTIONS(143), + [anon_sym_36] = ACTIONS(143), + [anon_sym_where] = ACTIONS(143), + [anon_sym_37] = ACTIONS(143), + [anon_sym_classify] = ACTIONS(143), + [anon_sym_38] = ACTIONS(143), + [anon_sym_deduplicate] = ACTIONS(143), + [anon_sym_39] = ACTIONS(143), + [anon_sym_box] = ACTIONS(143), + [anon_sym_40] = ACTIONS(143), + [anon_sym_unbox] = ACTIONS(143), + [anon_sym_41] = ACTIONS(143), + [anon_sym_match] = ACTIONS(143), + [anon_sym_42] = ACTIONS(143), + [anon_sym_couple] = ACTIONS(143), + [anon_sym_43] = ACTIONS(143), + [anon_sym_join] = ACTIONS(143), + [anon_sym_44] = ACTIONS(143), + [anon_sym_select] = ACTIONS(143), + [anon_sym_45] = ACTIONS(143), + [anon_sym_pick] = ACTIONS(143), + [anon_sym_46] = ACTIONS(143), + [anon_sym_reshape] = ACTIONS(143), + [anon_sym_47] = ACTIONS(143), + [anon_sym_take] = ACTIONS(143), + [anon_sym_48] = ACTIONS(143), + [anon_sym_drop] = ACTIONS(143), + [anon_sym_49] = ACTIONS(143), + [anon_sym_rotate] = ACTIONS(143), + [anon_sym_50] = ACTIONS(143), + [anon_sym_windows] = ACTIONS(143), + [anon_sym_51] = ACTIONS(143), + [anon_sym_keep] = ACTIONS(143), + [anon_sym_52] = ACTIONS(143), + [anon_sym_find] = ACTIONS(143), + [anon_sym_53] = ACTIONS(143), + [anon_sym_member] = ACTIONS(143), + [anon_sym_54] = ACTIONS(143), + [anon_sym_indexof] = ACTIONS(143), + [anon_sym_55] = ACTIONS(143), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_56] = ACTIONS(143), + [anon_sym_wait] = ACTIONS(143), + [anon_sym_break] = ACTIONS(143), + [anon_sym_57] = ACTIONS(143), + [anon_sym_parse] = ACTIONS(143), + [anon_sym_random] = ACTIONS(143), + [anon_sym_58] = ACTIONS(143), + [anon_sym_gen] = ACTIONS(143), + [anon_sym_deal] = ACTIONS(143), + [anon_sym_tag] = ACTIONS(143), + [anon_sym_now] = ACTIONS(143), + [anon_sym_type] = ACTIONS(143), + [anon_sym_59] = ACTIONS(143), + [anon_sym_dump] = ACTIONS(143), + [anon_sym_regex] = ACTIONS(143), + [anon_sym_utf] = ACTIONS(143), + [anon_sym_rock] = ACTIONS(143), + [anon_sym_60] = ACTIONS(143), + [anon_sym_surface] = ACTIONS(143), + [anon_sym_TILDE] = ACTIONS(143), + [anon_sym_deep] = ACTIONS(143), + [anon_sym_de] = ACTIONS(145), + [anon_sym_61] = ACTIONS(143), + [anon_sym_abyss] = ACTIONS(143), + [anon_sym_ab] = ACTIONS(145), + [anon_sym_62] = ACTIONS(143), + [anon_sym_seabed] = ACTIONS(143), + [anon_sym_se] = ACTIONS(145), + [anon_sym_63] = ACTIONS(143), + [anon_sym_send] = ACTIONS(143), + [anon_sym_recv] = ACTIONS(143), + [anon_sym_tryrecv] = ACTIONS(143), + [anon_sym_reduce] = ACTIONS(402), + [anon_sym_SLASH] = ACTIONS(402), + [anon_sym_scan] = ACTIONS(402), + [anon_sym_BSLASH] = ACTIONS(402), + [anon_sym_each] = ACTIONS(402), + [anon_sym_64] = ACTIONS(402), + [anon_sym_rows] = ACTIONS(402), + [anon_sym_65] = ACTIONS(402), + [anon_sym_repeat] = ACTIONS(402), + [anon_sym_66] = ACTIONS(402), + [anon_sym_dip] = ACTIONS(402), + [anon_sym_67] = ACTIONS(402), + [anon_sym_gap] = ACTIONS(402), + [anon_sym_68] = ACTIONS(402), + [anon_sym_69] = ACTIONS(402), + [anon_sym_invert] = ACTIONS(402), + [anon_sym_70] = ACTIONS(402), + [anon_sym_spawn] = ACTIONS(402), + [anon_sym_pack] = ACTIONS(402), + [anon_sym_71] = ACTIONS(402), + [anon_sym_tribute] = ACTIONS(402), + [anon_sym_72] = ACTIONS(402), + [anon_sym_reach] = ACTIONS(402), + [anon_sym_fold] = ACTIONS(402), + [anon_sym_73] = ACTIONS(402), + [anon_sym_distribute] = ACTIONS(402), + [anon_sym_74] = ACTIONS(402), + [anon_sym_table] = ACTIONS(402), + [anon_sym_75] = ACTIONS(402), + [anon_sym_cross] = ACTIONS(402), + [anon_sym_76] = ACTIONS(402), + [anon_sym_group] = ACTIONS(402), + [anon_sym_77] = ACTIONS(402), + [anon_sym_partition] = ACTIONS(402), + [anon_sym_78] = ACTIONS(402), + [anon_sym_both] = ACTIONS(402), + [anon_sym_79] = ACTIONS(402), + [anon_sym_bracket] = ACTIONS(402), + [anon_sym_80] = ACTIONS(402), + [anon_sym_fork] = ACTIONS(402), + [anon_sym_81] = ACTIONS(402), + [anon_sym_under] = ACTIONS(402), + [anon_sym_82] = ACTIONS(402), + [anon_sym_level] = ACTIONS(402), + [anon_sym_83] = ACTIONS(402), + [anon_sym_fill] = ACTIONS(402), + [anon_sym_84] = ACTIONS(402), + [anon_sym_bind] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(402), + [anon_sym_QMARK] = ACTIONS(402), + [anon_sym_try] = ACTIONS(400), + [anon_sym_85] = ACTIONS(402), + [anon_sym_combinate] = ACTIONS(402), + [anon_sym_86] = ACTIONS(402), + [anon_sym_87] = ACTIONS(402), + [anon_sym_88] = ACTIONS(402), + [anon_sym_89] = ACTIONS(402), + [anon_sym_90] = ACTIONS(402), + [anon_sym_91] = ACTIONS(402), + [anon_sym_92] = ACTIONS(402), + [anon_sym_93] = ACTIONS(402), [sym__whitespace] = ACTIONS(5), - [sym__end_of_line] = ACTIONS(420), + [sym__end_of_line] = ACTIONS(402), }, [60] = { [sym_function] = STATE(66), - [aux_sym_number_token1] = ACTIONS(430), - [anon_sym_os] = ACTIONS(430), - [anon_sym_Family] = ACTIONS(430), - [anon_sym_Arch] = ACTIONS(430), - [anon_sym_ExeExt] = ACTIONS(430), - [anon_sym_PllExt] = ACTIONS(430), - [anon_sym_Sep] = ACTIONS(430), - [aux_sym_character_token1] = ACTIONS(432), - [sym_string] = ACTIONS(432), - [sym_multiLineString] = ACTIONS(432), - [anon_sym_PIPE] = ACTIONS(432), - [sym_identifier] = ACTIONS(434), - [sym_identifier_deprecated] = ACTIONS(430), - [sym_system] = ACTIONS(436), - [sym_comment] = ACTIONS(430), - [sym_openParen] = ACTIONS(432), - [sym_closeParen] = ACTIONS(432), - [sym_openCurly] = ACTIONS(432), - [sym_closeCurly] = ACTIONS(432), - [sym_openBracket] = ACTIONS(432), - [sym_closeBracket] = ACTIONS(432), - [sym_underscore] = ACTIONS(432), - [sym_leftArrow] = ACTIONS(432), - [anon_sym_CARET] = ACTIONS(432), - [anon_sym_eta] = ACTIONS(432), - [anon_sym_] = ACTIONS(430), - [anon_sym_pi] = ACTIONS(430), - [anon_sym_2] = ACTIONS(430), - [anon_sym_tau] = ACTIONS(432), - [anon_sym_3] = ACTIONS(430), - [anon_sym_infinity] = ACTIONS(432), - [anon_sym_4] = ACTIONS(432), - [anon_sym_e] = ACTIONS(430), - [anon_sym_NaN] = ACTIONS(430), - [anon_sym_NumProcs] = ACTIONS(430), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_COMMA] = ACTIONS(148), - [anon_sym_5] = ACTIONS(148), - [anon_sym_SEMI] = ACTIONS(148), - [anon_sym_identity] = ACTIONS(148), - [anon_sym_id] = ACTIONS(150), - [anon_sym_6] = ACTIONS(148), - [anon_sym_not] = ACTIONS(148), - [anon_sym_7] = ACTIONS(148), - [anon_sym_sign] = ACTIONS(148), - [anon_sym_8] = ACTIONS(148), - [anon_sym_BQUOTE] = ACTIONS(148), - [anon_sym_9] = ACTIONS(148), - [anon_sym_absolutevalue] = ACTIONS(148), - [anon_sym_10] = ACTIONS(148), - [anon_sym_sqrt] = ACTIONS(148), - [anon_sym_11] = ACTIONS(148), - [anon_sym_sine] = ACTIONS(148), - [anon_sym_12] = ACTIONS(148), - [anon_sym_floor] = ACTIONS(148), - [anon_sym_13] = ACTIONS(148), - [anon_sym_ceiling] = ACTIONS(148), - [anon_sym_14] = ACTIONS(148), - [anon_sym_round] = ACTIONS(148), - [anon_sym_15] = ACTIONS(148), - [anon_sym_EQ] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_16] = ACTIONS(148), - [anon_sym_LT] = ACTIONS(150), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_17] = ACTIONS(148), - [anon_sym_GT] = ACTIONS(150), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_18] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(148), - [anon_sym_DASH] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(148), - [anon_sym_19] = ACTIONS(148), - [anon_sym_PERCENT] = ACTIONS(148), - [anon_sym_20] = ACTIONS(148), - [anon_sym_modulus] = ACTIONS(148), - [anon_sym_21] = ACTIONS(148), - [anon_sym_power] = ACTIONS(148), - [anon_sym_22] = ACTIONS(148), - [anon_sym_logarithm] = ACTIONS(148), - [anon_sym_23] = ACTIONS(148), - [anon_sym_minimum] = ACTIONS(148), - [anon_sym_24] = ACTIONS(148), - [anon_sym_maximum] = ACTIONS(148), - [anon_sym_25] = ACTIONS(148), - [anon_sym_atangent] = ACTIONS(148), - [anon_sym_26] = ACTIONS(148), - [anon_sym_length] = ACTIONS(148), - [anon_sym_27] = ACTIONS(148), - [anon_sym_shape] = ACTIONS(148), - [anon_sym_28] = ACTIONS(148), - [anon_sym_range] = ACTIONS(148), - [anon_sym_29] = ACTIONS(148), - [anon_sym_first] = ACTIONS(148), - [anon_sym_30] = ACTIONS(148), - [anon_sym_reverse] = ACTIONS(148), - [anon_sym_31] = ACTIONS(148), - [anon_sym_deshape] = ACTIONS(148), - [anon_sym_32] = ACTIONS(148), - [anon_sym_bits] = ACTIONS(148), - [anon_sym_33] = ACTIONS(148), - [anon_sym_transpose] = ACTIONS(148), - [anon_sym_34] = ACTIONS(148), - [anon_sym_rise] = ACTIONS(148), - [anon_sym_35] = ACTIONS(148), - [anon_sym_fall] = ACTIONS(148), - [anon_sym_36] = ACTIONS(148), - [anon_sym_where] = ACTIONS(148), - [anon_sym_37] = ACTIONS(148), - [anon_sym_classify] = ACTIONS(148), - [anon_sym_38] = ACTIONS(148), - [anon_sym_deduplicate] = ACTIONS(148), - [anon_sym_39] = ACTIONS(148), - [anon_sym_box] = ACTIONS(148), - [anon_sym_40] = ACTIONS(148), - [anon_sym_unbox] = ACTIONS(148), - [anon_sym_41] = ACTIONS(148), - [anon_sym_match] = ACTIONS(148), - [anon_sym_42] = ACTIONS(148), - [anon_sym_couple] = ACTIONS(148), - [anon_sym_43] = ACTIONS(148), - [anon_sym_join] = ACTIONS(148), - [anon_sym_44] = ACTIONS(148), - [anon_sym_select] = ACTIONS(148), - [anon_sym_45] = ACTIONS(148), - [anon_sym_pick] = ACTIONS(148), - [anon_sym_46] = ACTIONS(148), - [anon_sym_reshape] = ACTIONS(148), - [anon_sym_47] = ACTIONS(148), - [anon_sym_take] = ACTIONS(148), - [anon_sym_48] = ACTIONS(148), - [anon_sym_drop] = ACTIONS(148), - [anon_sym_49] = ACTIONS(148), - [anon_sym_rotate] = ACTIONS(148), - [anon_sym_50] = ACTIONS(148), - [anon_sym_windows] = ACTIONS(148), - [anon_sym_51] = ACTIONS(148), - [anon_sym_keep] = ACTIONS(148), - [anon_sym_52] = ACTIONS(148), - [anon_sym_find] = ACTIONS(148), - [anon_sym_53] = ACTIONS(148), - [anon_sym_member] = ACTIONS(148), - [anon_sym_54] = ACTIONS(148), - [anon_sym_indexof] = ACTIONS(148), - [anon_sym_55] = ACTIONS(148), - [anon_sym_assert] = ACTIONS(148), - [anon_sym_56] = ACTIONS(148), - [anon_sym_wait] = ACTIONS(148), - [anon_sym_break] = ACTIONS(148), - [anon_sym_57] = ACTIONS(148), - [anon_sym_parse] = ACTIONS(148), - [anon_sym_random] = ACTIONS(148), - [anon_sym_58] = ACTIONS(148), - [anon_sym_gen] = ACTIONS(148), - [anon_sym_deal] = ACTIONS(148), - [anon_sym_tag] = ACTIONS(148), - [anon_sym_now] = ACTIONS(148), - [anon_sym_type] = ACTIONS(148), - [anon_sym_59] = ACTIONS(148), - [anon_sym_dump] = ACTIONS(148), - [anon_sym_regex] = ACTIONS(148), - [anon_sym_utf] = ACTIONS(148), - [anon_sym_rock] = ACTIONS(148), - [anon_sym_60] = ACTIONS(148), - [anon_sym_surface] = ACTIONS(148), - [anon_sym_TILDE] = ACTIONS(148), - [anon_sym_deep] = ACTIONS(148), - [anon_sym_de] = ACTIONS(150), - [anon_sym_61] = ACTIONS(148), - [anon_sym_abyss] = ACTIONS(148), - [anon_sym_ab] = ACTIONS(150), - [anon_sym_62] = ACTIONS(148), - [anon_sym_seabed] = ACTIONS(148), - [anon_sym_se] = ACTIONS(150), - [anon_sym_63] = ACTIONS(148), - [anon_sym_send] = ACTIONS(148), - [anon_sym_recv] = ACTIONS(148), - [anon_sym_tryrecv] = ACTIONS(148), - [anon_sym_reduce] = ACTIONS(432), - [anon_sym_SLASH] = ACTIONS(432), - [anon_sym_scan] = ACTIONS(432), - [anon_sym_BSLASH] = ACTIONS(432), - [anon_sym_each] = ACTIONS(432), - [anon_sym_64] = ACTIONS(432), - [anon_sym_rows] = ACTIONS(432), - [anon_sym_65] = ACTIONS(432), - [anon_sym_repeat] = ACTIONS(432), - [anon_sym_66] = ACTIONS(432), - [anon_sym_dip] = ACTIONS(432), - [anon_sym_di] = ACTIONS(430), - [anon_sym_67] = ACTIONS(432), - [anon_sym_gap] = ACTIONS(432), - [anon_sym_ga] = ACTIONS(430), - [anon_sym_68] = ACTIONS(432), - [anon_sym_oust] = ACTIONS(432), - [anon_sym_69] = ACTIONS(432), - [anon_sym_invert] = ACTIONS(432), - [anon_sym_70] = ACTIONS(432), - [anon_sym_spawn] = ACTIONS(432), - [anon_sym_pack] = ACTIONS(432), - [anon_sym_71] = ACTIONS(432), - [anon_sym_tribute] = ACTIONS(432), - [anon_sym_72] = ACTIONS(432), - [anon_sym_fold] = ACTIONS(432), - [anon_sym_73] = ACTIONS(432), - [anon_sym_distribute] = ACTIONS(432), - [anon_sym_74] = ACTIONS(432), - [anon_sym_table] = ACTIONS(432), - [anon_sym_75] = ACTIONS(432), - [anon_sym_cross] = ACTIONS(432), - [anon_sym_76] = ACTIONS(432), - [anon_sym_group] = ACTIONS(432), - [anon_sym_77] = ACTIONS(432), - [anon_sym_partition] = ACTIONS(432), - [anon_sym_78] = ACTIONS(432), - [anon_sym_both] = ACTIONS(432), - [anon_sym_79] = ACTIONS(432), - [anon_sym_bracket] = ACTIONS(432), - [anon_sym_80] = ACTIONS(432), - [anon_sym_fork] = ACTIONS(432), - [anon_sym_81] = ACTIONS(432), - [anon_sym_under] = ACTIONS(432), - [anon_sym_82] = ACTIONS(432), - [anon_sym_level] = ACTIONS(432), - [anon_sym_83] = ACTIONS(432), - [anon_sym_fill] = ACTIONS(432), - [anon_sym_84] = ACTIONS(432), - [anon_sym_bind] = ACTIONS(432), - [anon_sym_SQUOTE] = ACTIONS(432), - [anon_sym_QMARK] = ACTIONS(432), - [anon_sym_try] = ACTIONS(430), - [anon_sym_85] = ACTIONS(432), - [anon_sym_combinate] = ACTIONS(432), - [anon_sym_86] = ACTIONS(432), - [anon_sym_87] = ACTIONS(432), - [anon_sym_88] = ACTIONS(432), - [anon_sym_89] = ACTIONS(432), - [anon_sym_90] = ACTIONS(432), - [anon_sym_91] = ACTIONS(432), - [anon_sym_92] = ACTIONS(432), - [anon_sym_93] = ACTIONS(432), + [aux_sym_number_token1] = ACTIONS(412), + [anon_sym_os] = ACTIONS(412), + [anon_sym_Family] = ACTIONS(412), + [anon_sym_Arch] = ACTIONS(412), + [anon_sym_ExeExt] = ACTIONS(412), + [anon_sym_PllExt] = ACTIONS(412), + [anon_sym_Sep] = ACTIONS(412), + [aux_sym_character_token1] = ACTIONS(414), + [sym_string] = ACTIONS(414), + [sym_multiLineString] = ACTIONS(414), + [anon_sym_PIPE] = ACTIONS(414), + [sym_identifier] = ACTIONS(416), + [sym_identifier_deprecated] = ACTIONS(412), + [sym_system] = ACTIONS(418), + [sym_comment] = ACTIONS(412), + [sym_openParen] = ACTIONS(414), + [sym_closeParen] = ACTIONS(414), + [sym_openCurly] = ACTIONS(414), + [sym_closeCurly] = ACTIONS(414), + [sym_openBracket] = ACTIONS(414), + [sym_closeBracket] = ACTIONS(414), + [sym_underscore] = ACTIONS(414), + [sym_leftArrow] = ACTIONS(414), + [anon_sym_CARET] = ACTIONS(414), + [anon_sym_eta] = ACTIONS(414), + [anon_sym_] = ACTIONS(412), + [anon_sym_pi] = ACTIONS(412), + [anon_sym_2] = ACTIONS(412), + [anon_sym_tau] = ACTIONS(414), + [anon_sym_3] = ACTIONS(412), + [anon_sym_infinity] = ACTIONS(414), + [anon_sym_4] = ACTIONS(414), + [anon_sym_e] = ACTIONS(412), + [anon_sym_NaN] = ACTIONS(412), + [anon_sym_NumProcs] = ACTIONS(412), + [anon_sym_DOT] = ACTIONS(143), + [anon_sym_COMMA] = ACTIONS(143), + [anon_sym_5] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_identity] = ACTIONS(143), + [anon_sym_id] = ACTIONS(145), + [anon_sym_6] = ACTIONS(143), + [anon_sym_not] = ACTIONS(143), + [anon_sym_7] = ACTIONS(143), + [anon_sym_sign] = ACTIONS(143), + [anon_sym_8] = ACTIONS(143), + [anon_sym_BQUOTE] = ACTIONS(143), + [anon_sym_9] = ACTIONS(143), + [anon_sym_absolutevalue] = ACTIONS(143), + [anon_sym_10] = ACTIONS(143), + [anon_sym_sqrt] = ACTIONS(143), + [anon_sym_11] = ACTIONS(143), + [anon_sym_sine] = ACTIONS(143), + [anon_sym_12] = ACTIONS(143), + [anon_sym_floor] = ACTIONS(143), + [anon_sym_13] = ACTIONS(143), + [anon_sym_ceiling] = ACTIONS(143), + [anon_sym_14] = ACTIONS(143), + [anon_sym_round] = ACTIONS(143), + [anon_sym_15] = ACTIONS(143), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_16] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_17] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_18] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_19] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_20] = ACTIONS(143), + [anon_sym_modulus] = ACTIONS(143), + [anon_sym_21] = ACTIONS(143), + [anon_sym_power] = ACTIONS(143), + [anon_sym_22] = ACTIONS(143), + [anon_sym_logarithm] = ACTIONS(143), + [anon_sym_23] = ACTIONS(143), + [anon_sym_minimum] = ACTIONS(143), + [anon_sym_24] = ACTIONS(143), + [anon_sym_maximum] = ACTIONS(143), + [anon_sym_25] = ACTIONS(143), + [anon_sym_atangent] = ACTIONS(143), + [anon_sym_26] = ACTIONS(143), + [anon_sym_length] = ACTIONS(143), + [anon_sym_27] = ACTIONS(143), + [anon_sym_shape] = ACTIONS(143), + [anon_sym_28] = ACTIONS(143), + [anon_sym_range] = ACTIONS(143), + [anon_sym_29] = ACTIONS(143), + [anon_sym_first] = ACTIONS(143), + [anon_sym_30] = ACTIONS(143), + [anon_sym_reverse] = ACTIONS(143), + [anon_sym_31] = ACTIONS(143), + [anon_sym_deshape] = ACTIONS(143), + [anon_sym_32] = ACTIONS(143), + [anon_sym_bits] = ACTIONS(143), + [anon_sym_33] = ACTIONS(143), + [anon_sym_transpose] = ACTIONS(143), + [anon_sym_34] = ACTIONS(143), + [anon_sym_rise] = ACTIONS(143), + [anon_sym_35] = ACTIONS(143), + [anon_sym_fall] = ACTIONS(143), + [anon_sym_36] = ACTIONS(143), + [anon_sym_where] = ACTIONS(143), + [anon_sym_37] = ACTIONS(143), + [anon_sym_classify] = ACTIONS(143), + [anon_sym_38] = ACTIONS(143), + [anon_sym_deduplicate] = ACTIONS(143), + [anon_sym_39] = ACTIONS(143), + [anon_sym_box] = ACTIONS(143), + [anon_sym_40] = ACTIONS(143), + [anon_sym_unbox] = ACTIONS(143), + [anon_sym_41] = ACTIONS(143), + [anon_sym_match] = ACTIONS(143), + [anon_sym_42] = ACTIONS(143), + [anon_sym_couple] = ACTIONS(143), + [anon_sym_43] = ACTIONS(143), + [anon_sym_join] = ACTIONS(143), + [anon_sym_44] = ACTIONS(143), + [anon_sym_select] = ACTIONS(143), + [anon_sym_45] = ACTIONS(143), + [anon_sym_pick] = ACTIONS(143), + [anon_sym_46] = ACTIONS(143), + [anon_sym_reshape] = ACTIONS(143), + [anon_sym_47] = ACTIONS(143), + [anon_sym_take] = ACTIONS(143), + [anon_sym_48] = ACTIONS(143), + [anon_sym_drop] = ACTIONS(143), + [anon_sym_49] = ACTIONS(143), + [anon_sym_rotate] = ACTIONS(143), + [anon_sym_50] = ACTIONS(143), + [anon_sym_windows] = ACTIONS(143), + [anon_sym_51] = ACTIONS(143), + [anon_sym_keep] = ACTIONS(143), + [anon_sym_52] = ACTIONS(143), + [anon_sym_find] = ACTIONS(143), + [anon_sym_53] = ACTIONS(143), + [anon_sym_member] = ACTIONS(143), + [anon_sym_54] = ACTIONS(143), + [anon_sym_indexof] = ACTIONS(143), + [anon_sym_55] = ACTIONS(143), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_56] = ACTIONS(143), + [anon_sym_wait] = ACTIONS(143), + [anon_sym_break] = ACTIONS(143), + [anon_sym_57] = ACTIONS(143), + [anon_sym_parse] = ACTIONS(143), + [anon_sym_random] = ACTIONS(143), + [anon_sym_58] = ACTIONS(143), + [anon_sym_gen] = ACTIONS(143), + [anon_sym_deal] = ACTIONS(143), + [anon_sym_tag] = ACTIONS(143), + [anon_sym_now] = ACTIONS(143), + [anon_sym_type] = ACTIONS(143), + [anon_sym_59] = ACTIONS(143), + [anon_sym_dump] = ACTIONS(143), + [anon_sym_regex] = ACTIONS(143), + [anon_sym_utf] = ACTIONS(143), + [anon_sym_rock] = ACTIONS(143), + [anon_sym_60] = ACTIONS(143), + [anon_sym_surface] = ACTIONS(143), + [anon_sym_TILDE] = ACTIONS(143), + [anon_sym_deep] = ACTIONS(143), + [anon_sym_de] = ACTIONS(145), + [anon_sym_61] = ACTIONS(143), + [anon_sym_abyss] = ACTIONS(143), + [anon_sym_ab] = ACTIONS(145), + [anon_sym_62] = ACTIONS(143), + [anon_sym_seabed] = ACTIONS(143), + [anon_sym_se] = ACTIONS(145), + [anon_sym_63] = ACTIONS(143), + [anon_sym_send] = ACTIONS(143), + [anon_sym_recv] = ACTIONS(143), + [anon_sym_tryrecv] = ACTIONS(143), + [anon_sym_reduce] = ACTIONS(414), + [anon_sym_SLASH] = ACTIONS(414), + [anon_sym_scan] = ACTIONS(414), + [anon_sym_BSLASH] = ACTIONS(414), + [anon_sym_each] = ACTIONS(414), + [anon_sym_64] = ACTIONS(414), + [anon_sym_rows] = ACTIONS(414), + [anon_sym_65] = ACTIONS(414), + [anon_sym_repeat] = ACTIONS(414), + [anon_sym_66] = ACTIONS(414), + [anon_sym_dip] = ACTIONS(414), + [anon_sym_67] = ACTIONS(414), + [anon_sym_gap] = ACTIONS(414), + [anon_sym_68] = ACTIONS(414), + [anon_sym_69] = ACTIONS(414), + [anon_sym_invert] = ACTIONS(414), + [anon_sym_70] = ACTIONS(414), + [anon_sym_spawn] = ACTIONS(414), + [anon_sym_pack] = ACTIONS(414), + [anon_sym_71] = ACTIONS(414), + [anon_sym_tribute] = ACTIONS(414), + [anon_sym_72] = ACTIONS(414), + [anon_sym_reach] = ACTIONS(414), + [anon_sym_fold] = ACTIONS(414), + [anon_sym_73] = ACTIONS(414), + [anon_sym_distribute] = ACTIONS(414), + [anon_sym_74] = ACTIONS(414), + [anon_sym_table] = ACTIONS(414), + [anon_sym_75] = ACTIONS(414), + [anon_sym_cross] = ACTIONS(414), + [anon_sym_76] = ACTIONS(414), + [anon_sym_group] = ACTIONS(414), + [anon_sym_77] = ACTIONS(414), + [anon_sym_partition] = ACTIONS(414), + [anon_sym_78] = ACTIONS(414), + [anon_sym_both] = ACTIONS(414), + [anon_sym_79] = ACTIONS(414), + [anon_sym_bracket] = ACTIONS(414), + [anon_sym_80] = ACTIONS(414), + [anon_sym_fork] = ACTIONS(414), + [anon_sym_81] = ACTIONS(414), + [anon_sym_under] = ACTIONS(414), + [anon_sym_82] = ACTIONS(414), + [anon_sym_level] = ACTIONS(414), + [anon_sym_83] = ACTIONS(414), + [anon_sym_fill] = ACTIONS(414), + [anon_sym_84] = ACTIONS(414), + [anon_sym_bind] = ACTIONS(414), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_QMARK] = ACTIONS(414), + [anon_sym_try] = ACTIONS(412), + [anon_sym_85] = ACTIONS(414), + [anon_sym_combinate] = ACTIONS(414), + [anon_sym_86] = ACTIONS(414), + [anon_sym_87] = ACTIONS(414), + [anon_sym_88] = ACTIONS(414), + [anon_sym_89] = ACTIONS(414), + [anon_sym_90] = ACTIONS(414), + [anon_sym_91] = ACTIONS(414), + [anon_sym_92] = ACTIONS(414), + [anon_sym_93] = ACTIONS(414), [sym__whitespace] = ACTIONS(5), - [sym__end_of_line] = ACTIONS(432), + [sym__end_of_line] = ACTIONS(414), }, [61] = { - [aux_sym_number_token1] = ACTIONS(418), - [anon_sym_os] = ACTIONS(418), - [anon_sym_Family] = ACTIONS(418), - [anon_sym_Arch] = ACTIONS(418), - [anon_sym_ExeExt] = ACTIONS(418), - [anon_sym_PllExt] = ACTIONS(418), - [anon_sym_Sep] = ACTIONS(418), - [aux_sym_character_token1] = ACTIONS(420), - [sym_string] = ACTIONS(420), - [sym_multiLineString] = ACTIONS(420), - [anon_sym_PIPE] = ACTIONS(420), - [sym_identifier] = ACTIONS(418), - [sym_identifier_deprecated] = ACTIONS(418), - [sym_system] = ACTIONS(420), - [sym_comment] = ACTIONS(418), - [sym_openParen] = ACTIONS(420), - [sym_closeParen] = ACTIONS(420), - [sym_openCurly] = ACTIONS(420), - [sym_closeCurly] = ACTIONS(420), - [sym_openBracket] = ACTIONS(420), - [sym_closeBracket] = ACTIONS(420), - [sym_underscore] = ACTIONS(420), - [sym_leftArrow] = ACTIONS(420), - [anon_sym_CARET] = ACTIONS(420), - [anon_sym_eta] = ACTIONS(420), - [anon_sym_] = ACTIONS(418), - [anon_sym_pi] = ACTIONS(418), - [anon_sym_2] = ACTIONS(418), - [anon_sym_tau] = ACTIONS(420), - [anon_sym_3] = ACTIONS(418), - [anon_sym_infinity] = ACTIONS(420), - [anon_sym_4] = ACTIONS(420), - [anon_sym_e] = ACTIONS(418), - [anon_sym_NaN] = ACTIONS(418), - [anon_sym_NumProcs] = ACTIONS(418), - [anon_sym_DOT] = ACTIONS(420), - [anon_sym_COMMA] = ACTIONS(420), - [anon_sym_5] = ACTIONS(420), - [anon_sym_SEMI] = ACTIONS(420), - [anon_sym_identity] = ACTIONS(420), - [anon_sym_id] = ACTIONS(418), - [anon_sym_6] = ACTIONS(420), - [anon_sym_not] = ACTIONS(420), - [anon_sym_7] = ACTIONS(420), - [anon_sym_sign] = ACTIONS(420), - [anon_sym_8] = ACTIONS(420), - [anon_sym_BQUOTE] = ACTIONS(420), - [anon_sym_9] = ACTIONS(420), - [anon_sym_absolutevalue] = ACTIONS(420), - [anon_sym_10] = ACTIONS(420), - [anon_sym_sqrt] = ACTIONS(420), - [anon_sym_11] = ACTIONS(420), - [anon_sym_sine] = ACTIONS(420), - [anon_sym_12] = ACTIONS(420), - [anon_sym_floor] = ACTIONS(420), - [anon_sym_13] = ACTIONS(420), - [anon_sym_ceiling] = ACTIONS(420), - [anon_sym_14] = ACTIONS(420), - [anon_sym_round] = ACTIONS(420), - [anon_sym_15] = ACTIONS(420), - [anon_sym_EQ] = ACTIONS(420), - [anon_sym_BANG_EQ] = ACTIONS(420), - [anon_sym_16] = ACTIONS(420), - [anon_sym_LT] = ACTIONS(418), - [anon_sym_LT_EQ] = ACTIONS(420), - [anon_sym_17] = ACTIONS(420), - [anon_sym_GT] = ACTIONS(418), - [anon_sym_GT_EQ] = ACTIONS(420), - [anon_sym_18] = ACTIONS(420), - [anon_sym_PLUS] = ACTIONS(420), - [anon_sym_DASH] = ACTIONS(420), - [anon_sym_STAR] = ACTIONS(420), - [anon_sym_19] = ACTIONS(420), - [anon_sym_PERCENT] = ACTIONS(420), - [anon_sym_20] = ACTIONS(420), - [anon_sym_modulus] = ACTIONS(420), - [anon_sym_21] = ACTIONS(420), - [anon_sym_power] = ACTIONS(420), - [anon_sym_22] = ACTIONS(420), - [anon_sym_logarithm] = ACTIONS(420), - [anon_sym_23] = ACTIONS(420), - [anon_sym_minimum] = ACTIONS(420), - [anon_sym_24] = ACTIONS(420), - [anon_sym_maximum] = ACTIONS(420), - [anon_sym_25] = ACTIONS(420), - [anon_sym_atangent] = ACTIONS(420), - [anon_sym_26] = ACTIONS(420), - [anon_sym_length] = ACTIONS(420), - [anon_sym_27] = ACTIONS(420), - [anon_sym_shape] = ACTIONS(420), - [anon_sym_28] = ACTIONS(420), - [anon_sym_range] = ACTIONS(420), - [anon_sym_29] = ACTIONS(420), - [anon_sym_first] = ACTIONS(420), - [anon_sym_30] = ACTIONS(420), - [anon_sym_reverse] = ACTIONS(420), - [anon_sym_31] = ACTIONS(420), - [anon_sym_deshape] = ACTIONS(420), - [anon_sym_32] = ACTIONS(420), - [anon_sym_bits] = ACTIONS(420), - [anon_sym_33] = ACTIONS(420), - [anon_sym_transpose] = ACTIONS(420), - [anon_sym_34] = ACTIONS(420), - [anon_sym_rise] = ACTIONS(420), - [anon_sym_35] = ACTIONS(420), - [anon_sym_fall] = ACTIONS(420), - [anon_sym_36] = ACTIONS(420), - [anon_sym_where] = ACTIONS(420), - [anon_sym_37] = ACTIONS(420), - [anon_sym_classify] = ACTIONS(420), - [anon_sym_38] = ACTIONS(420), - [anon_sym_deduplicate] = ACTIONS(420), - [anon_sym_39] = ACTIONS(420), - [anon_sym_box] = ACTIONS(420), - [anon_sym_40] = ACTIONS(420), - [anon_sym_unbox] = ACTIONS(420), - [anon_sym_41] = ACTIONS(420), - [anon_sym_match] = ACTIONS(420), - [anon_sym_42] = ACTIONS(420), - [anon_sym_couple] = ACTIONS(420), - [anon_sym_43] = ACTIONS(420), - [anon_sym_join] = ACTIONS(420), - [anon_sym_44] = ACTIONS(420), - [anon_sym_select] = ACTIONS(420), - [anon_sym_45] = ACTIONS(420), - [anon_sym_pick] = ACTIONS(420), - [anon_sym_46] = ACTIONS(420), - [anon_sym_reshape] = ACTIONS(420), - [anon_sym_47] = ACTIONS(420), - [anon_sym_take] = ACTIONS(420), - [anon_sym_48] = ACTIONS(420), - [anon_sym_drop] = ACTIONS(420), - [anon_sym_49] = ACTIONS(420), - [anon_sym_rotate] = ACTIONS(420), - [anon_sym_50] = ACTIONS(420), - [anon_sym_windows] = ACTIONS(420), - [anon_sym_51] = ACTIONS(420), - [anon_sym_keep] = ACTIONS(420), - [anon_sym_52] = ACTIONS(420), - [anon_sym_find] = ACTIONS(420), - [anon_sym_53] = ACTIONS(420), - [anon_sym_member] = ACTIONS(420), - [anon_sym_54] = ACTIONS(420), - [anon_sym_indexof] = ACTIONS(420), - [anon_sym_55] = ACTIONS(420), - [anon_sym_assert] = ACTIONS(420), - [anon_sym_56] = ACTIONS(420), - [anon_sym_wait] = ACTIONS(420), - [anon_sym_break] = ACTIONS(420), - [anon_sym_57] = ACTIONS(420), - [anon_sym_parse] = ACTIONS(420), - [anon_sym_random] = ACTIONS(420), - [anon_sym_58] = ACTIONS(420), - [anon_sym_gen] = ACTIONS(420), - [anon_sym_deal] = ACTIONS(420), - [anon_sym_tag] = ACTIONS(420), - [anon_sym_now] = ACTIONS(420), - [anon_sym_type] = ACTIONS(420), - [anon_sym_59] = ACTIONS(420), - [anon_sym_dump] = ACTIONS(420), - [anon_sym_regex] = ACTIONS(420), - [anon_sym_utf] = ACTIONS(420), - [anon_sym_rock] = ACTIONS(420), - [anon_sym_60] = ACTIONS(420), - [anon_sym_surface] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(420), - [anon_sym_deep] = ACTIONS(420), - [anon_sym_de] = ACTIONS(418), - [anon_sym_61] = ACTIONS(420), - [anon_sym_abyss] = ACTIONS(420), - [anon_sym_ab] = ACTIONS(418), - [anon_sym_62] = ACTIONS(420), - [anon_sym_seabed] = ACTIONS(420), - [anon_sym_se] = ACTIONS(418), - [anon_sym_63] = ACTIONS(420), - [anon_sym_send] = ACTIONS(420), - [anon_sym_recv] = ACTIONS(420), - [anon_sym_tryrecv] = ACTIONS(420), - [anon_sym_reduce] = ACTIONS(420), - [anon_sym_SLASH] = ACTIONS(420), - [anon_sym_scan] = ACTIONS(420), - [anon_sym_BSLASH] = ACTIONS(420), - [anon_sym_each] = ACTIONS(420), - [anon_sym_64] = ACTIONS(420), - [anon_sym_rows] = ACTIONS(420), - [anon_sym_65] = ACTIONS(420), - [anon_sym_repeat] = ACTIONS(420), - [anon_sym_66] = ACTIONS(420), - [anon_sym_dip] = ACTIONS(420), - [anon_sym_di] = ACTIONS(418), - [anon_sym_67] = ACTIONS(420), - [anon_sym_gap] = ACTIONS(420), - [anon_sym_ga] = ACTIONS(418), - [anon_sym_68] = ACTIONS(420), - [anon_sym_oust] = ACTIONS(420), - [anon_sym_69] = ACTIONS(420), - [anon_sym_invert] = ACTIONS(420), - [anon_sym_70] = ACTIONS(420), - [anon_sym_spawn] = ACTIONS(420), - [anon_sym_pack] = ACTIONS(420), - [anon_sym_71] = ACTIONS(420), - [anon_sym_tribute] = ACTIONS(420), - [anon_sym_72] = ACTIONS(420), - [anon_sym_fold] = ACTIONS(420), - [anon_sym_73] = ACTIONS(420), - [anon_sym_distribute] = ACTIONS(420), - [anon_sym_74] = ACTIONS(420), - [anon_sym_table] = ACTIONS(420), - [anon_sym_75] = ACTIONS(420), - [anon_sym_cross] = ACTIONS(420), - [anon_sym_76] = ACTIONS(420), - [anon_sym_group] = ACTIONS(420), - [anon_sym_77] = ACTIONS(420), - [anon_sym_partition] = ACTIONS(420), - [anon_sym_78] = ACTIONS(420), - [anon_sym_both] = ACTIONS(420), - [anon_sym_79] = ACTIONS(420), - [anon_sym_bracket] = ACTIONS(420), - [anon_sym_80] = ACTIONS(420), - [anon_sym_fork] = ACTIONS(420), - [anon_sym_81] = ACTIONS(420), - [anon_sym_under] = ACTIONS(420), - [anon_sym_82] = ACTIONS(420), - [anon_sym_level] = ACTIONS(420), - [anon_sym_83] = ACTIONS(420), - [anon_sym_fill] = ACTIONS(420), - [anon_sym_84] = ACTIONS(420), - [anon_sym_bind] = ACTIONS(420), - [anon_sym_SQUOTE] = ACTIONS(420), - [anon_sym_QMARK] = ACTIONS(420), - [anon_sym_try] = ACTIONS(418), - [anon_sym_85] = ACTIONS(420), - [anon_sym_combinate] = ACTIONS(420), - [anon_sym_86] = ACTIONS(420), - [anon_sym_87] = ACTIONS(420), - [anon_sym_88] = ACTIONS(420), - [anon_sym_89] = ACTIONS(420), - [anon_sym_90] = ACTIONS(420), - [anon_sym_91] = ACTIONS(420), - [anon_sym_92] = ACTIONS(420), - [anon_sym_93] = ACTIONS(420), + [aux_sym_number_token1] = ACTIONS(400), + [anon_sym_os] = ACTIONS(400), + [anon_sym_Family] = ACTIONS(400), + [anon_sym_Arch] = ACTIONS(400), + [anon_sym_ExeExt] = ACTIONS(400), + [anon_sym_PllExt] = ACTIONS(400), + [anon_sym_Sep] = ACTIONS(400), + [aux_sym_character_token1] = ACTIONS(402), + [sym_string] = ACTIONS(402), + [sym_multiLineString] = ACTIONS(402), + [anon_sym_PIPE] = ACTIONS(402), + [sym_identifier] = ACTIONS(400), + [sym_identifier_deprecated] = ACTIONS(400), + [sym_system] = ACTIONS(402), + [sym_comment] = ACTIONS(400), + [sym_openParen] = ACTIONS(402), + [sym_closeParen] = ACTIONS(402), + [sym_openCurly] = ACTIONS(402), + [sym_closeCurly] = ACTIONS(402), + [sym_openBracket] = ACTIONS(402), + [sym_closeBracket] = ACTIONS(402), + [sym_underscore] = ACTIONS(402), + [sym_leftArrow] = ACTIONS(402), + [anon_sym_CARET] = ACTIONS(402), + [anon_sym_eta] = ACTIONS(402), + [anon_sym_] = ACTIONS(400), + [anon_sym_pi] = ACTIONS(400), + [anon_sym_2] = ACTIONS(400), + [anon_sym_tau] = ACTIONS(402), + [anon_sym_3] = ACTIONS(400), + [anon_sym_infinity] = ACTIONS(402), + [anon_sym_4] = ACTIONS(402), + [anon_sym_e] = ACTIONS(400), + [anon_sym_NaN] = ACTIONS(400), + [anon_sym_NumProcs] = ACTIONS(400), + [anon_sym_DOT] = ACTIONS(402), + [anon_sym_COMMA] = ACTIONS(402), + [anon_sym_5] = ACTIONS(402), + [anon_sym_SEMI] = ACTIONS(402), + [anon_sym_identity] = ACTIONS(402), + [anon_sym_id] = ACTIONS(400), + [anon_sym_6] = ACTIONS(402), + [anon_sym_not] = ACTIONS(402), + [anon_sym_7] = ACTIONS(402), + [anon_sym_sign] = ACTIONS(402), + [anon_sym_8] = ACTIONS(402), + [anon_sym_BQUOTE] = ACTIONS(402), + [anon_sym_9] = ACTIONS(402), + [anon_sym_absolutevalue] = ACTIONS(402), + [anon_sym_10] = ACTIONS(402), + [anon_sym_sqrt] = ACTIONS(402), + [anon_sym_11] = ACTIONS(402), + [anon_sym_sine] = ACTIONS(402), + [anon_sym_12] = ACTIONS(402), + [anon_sym_floor] = ACTIONS(402), + [anon_sym_13] = ACTIONS(402), + [anon_sym_ceiling] = ACTIONS(402), + [anon_sym_14] = ACTIONS(402), + [anon_sym_round] = ACTIONS(402), + [anon_sym_15] = ACTIONS(402), + [anon_sym_EQ] = ACTIONS(402), + [anon_sym_BANG_EQ] = ACTIONS(402), + [anon_sym_16] = ACTIONS(402), + [anon_sym_LT] = ACTIONS(400), + [anon_sym_LT_EQ] = ACTIONS(402), + [anon_sym_17] = ACTIONS(402), + [anon_sym_GT] = ACTIONS(400), + [anon_sym_GT_EQ] = ACTIONS(402), + [anon_sym_18] = ACTIONS(402), + [anon_sym_PLUS] = ACTIONS(402), + [anon_sym_DASH] = ACTIONS(402), + [anon_sym_STAR] = ACTIONS(402), + [anon_sym_19] = ACTIONS(402), + [anon_sym_PERCENT] = ACTIONS(402), + [anon_sym_20] = ACTIONS(402), + [anon_sym_modulus] = ACTIONS(402), + [anon_sym_21] = ACTIONS(402), + [anon_sym_power] = ACTIONS(402), + [anon_sym_22] = ACTIONS(402), + [anon_sym_logarithm] = ACTIONS(402), + [anon_sym_23] = ACTIONS(402), + [anon_sym_minimum] = ACTIONS(402), + [anon_sym_24] = ACTIONS(402), + [anon_sym_maximum] = ACTIONS(402), + [anon_sym_25] = ACTIONS(402), + [anon_sym_atangent] = ACTIONS(402), + [anon_sym_26] = ACTIONS(402), + [anon_sym_length] = ACTIONS(402), + [anon_sym_27] = ACTIONS(402), + [anon_sym_shape] = ACTIONS(402), + [anon_sym_28] = ACTIONS(402), + [anon_sym_range] = ACTIONS(402), + [anon_sym_29] = ACTIONS(402), + [anon_sym_first] = ACTIONS(402), + [anon_sym_30] = ACTIONS(402), + [anon_sym_reverse] = ACTIONS(402), + [anon_sym_31] = ACTIONS(402), + [anon_sym_deshape] = ACTIONS(402), + [anon_sym_32] = ACTIONS(402), + [anon_sym_bits] = ACTIONS(402), + [anon_sym_33] = ACTIONS(402), + [anon_sym_transpose] = ACTIONS(402), + [anon_sym_34] = ACTIONS(402), + [anon_sym_rise] = ACTIONS(402), + [anon_sym_35] = ACTIONS(402), + [anon_sym_fall] = ACTIONS(402), + [anon_sym_36] = ACTIONS(402), + [anon_sym_where] = ACTIONS(402), + [anon_sym_37] = ACTIONS(402), + [anon_sym_classify] = ACTIONS(402), + [anon_sym_38] = ACTIONS(402), + [anon_sym_deduplicate] = ACTIONS(402), + [anon_sym_39] = ACTIONS(402), + [anon_sym_box] = ACTIONS(402), + [anon_sym_40] = ACTIONS(402), + [anon_sym_unbox] = ACTIONS(402), + [anon_sym_41] = ACTIONS(402), + [anon_sym_match] = ACTIONS(402), + [anon_sym_42] = ACTIONS(402), + [anon_sym_couple] = ACTIONS(402), + [anon_sym_43] = ACTIONS(402), + [anon_sym_join] = ACTIONS(402), + [anon_sym_44] = ACTIONS(402), + [anon_sym_select] = ACTIONS(402), + [anon_sym_45] = ACTIONS(402), + [anon_sym_pick] = ACTIONS(402), + [anon_sym_46] = ACTIONS(402), + [anon_sym_reshape] = ACTIONS(402), + [anon_sym_47] = ACTIONS(402), + [anon_sym_take] = ACTIONS(402), + [anon_sym_48] = ACTIONS(402), + [anon_sym_drop] = ACTIONS(402), + [anon_sym_49] = ACTIONS(402), + [anon_sym_rotate] = ACTIONS(402), + [anon_sym_50] = ACTIONS(402), + [anon_sym_windows] = ACTIONS(402), + [anon_sym_51] = ACTIONS(402), + [anon_sym_keep] = ACTIONS(402), + [anon_sym_52] = ACTIONS(402), + [anon_sym_find] = ACTIONS(402), + [anon_sym_53] = ACTIONS(402), + [anon_sym_member] = ACTIONS(402), + [anon_sym_54] = ACTIONS(402), + [anon_sym_indexof] = ACTIONS(402), + [anon_sym_55] = ACTIONS(402), + [anon_sym_assert] = ACTIONS(402), + [anon_sym_56] = ACTIONS(402), + [anon_sym_wait] = ACTIONS(402), + [anon_sym_break] = ACTIONS(402), + [anon_sym_57] = ACTIONS(402), + [anon_sym_parse] = ACTIONS(402), + [anon_sym_random] = ACTIONS(402), + [anon_sym_58] = ACTIONS(402), + [anon_sym_gen] = ACTIONS(402), + [anon_sym_deal] = ACTIONS(402), + [anon_sym_tag] = ACTIONS(402), + [anon_sym_now] = ACTIONS(402), + [anon_sym_type] = ACTIONS(402), + [anon_sym_59] = ACTIONS(402), + [anon_sym_dump] = ACTIONS(402), + [anon_sym_regex] = ACTIONS(402), + [anon_sym_utf] = ACTIONS(402), + [anon_sym_rock] = ACTIONS(402), + [anon_sym_60] = ACTIONS(402), + [anon_sym_surface] = ACTIONS(402), + [anon_sym_TILDE] = ACTIONS(402), + [anon_sym_deep] = ACTIONS(402), + [anon_sym_de] = ACTIONS(400), + [anon_sym_61] = ACTIONS(402), + [anon_sym_abyss] = ACTIONS(402), + [anon_sym_ab] = ACTIONS(400), + [anon_sym_62] = ACTIONS(402), + [anon_sym_seabed] = ACTIONS(402), + [anon_sym_se] = ACTIONS(400), + [anon_sym_63] = ACTIONS(402), + [anon_sym_send] = ACTIONS(402), + [anon_sym_recv] = ACTIONS(402), + [anon_sym_tryrecv] = ACTIONS(402), + [anon_sym_reduce] = ACTIONS(402), + [anon_sym_SLASH] = ACTIONS(402), + [anon_sym_scan] = ACTIONS(402), + [anon_sym_BSLASH] = ACTIONS(402), + [anon_sym_each] = ACTIONS(402), + [anon_sym_64] = ACTIONS(402), + [anon_sym_rows] = ACTIONS(402), + [anon_sym_65] = ACTIONS(402), + [anon_sym_repeat] = ACTIONS(402), + [anon_sym_66] = ACTIONS(402), + [anon_sym_dip] = ACTIONS(402), + [anon_sym_67] = ACTIONS(402), + [anon_sym_gap] = ACTIONS(402), + [anon_sym_68] = ACTIONS(402), + [anon_sym_69] = ACTIONS(402), + [anon_sym_invert] = ACTIONS(402), + [anon_sym_70] = ACTIONS(402), + [anon_sym_spawn] = ACTIONS(402), + [anon_sym_pack] = ACTIONS(402), + [anon_sym_71] = ACTIONS(402), + [anon_sym_tribute] = ACTIONS(402), + [anon_sym_72] = ACTIONS(402), + [anon_sym_reach] = ACTIONS(402), + [anon_sym_fold] = ACTIONS(402), + [anon_sym_73] = ACTIONS(402), + [anon_sym_distribute] = ACTIONS(402), + [anon_sym_74] = ACTIONS(402), + [anon_sym_table] = ACTIONS(402), + [anon_sym_75] = ACTIONS(402), + [anon_sym_cross] = ACTIONS(402), + [anon_sym_76] = ACTIONS(402), + [anon_sym_group] = ACTIONS(402), + [anon_sym_77] = ACTIONS(402), + [anon_sym_partition] = ACTIONS(402), + [anon_sym_78] = ACTIONS(402), + [anon_sym_both] = ACTIONS(402), + [anon_sym_79] = ACTIONS(402), + [anon_sym_bracket] = ACTIONS(402), + [anon_sym_80] = ACTIONS(402), + [anon_sym_fork] = ACTIONS(402), + [anon_sym_81] = ACTIONS(402), + [anon_sym_under] = ACTIONS(402), + [anon_sym_82] = ACTIONS(402), + [anon_sym_level] = ACTIONS(402), + [anon_sym_83] = ACTIONS(402), + [anon_sym_fill] = ACTIONS(402), + [anon_sym_84] = ACTIONS(402), + [anon_sym_bind] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(402), + [anon_sym_QMARK] = ACTIONS(402), + [anon_sym_try] = ACTIONS(400), + [anon_sym_85] = ACTIONS(402), + [anon_sym_combinate] = ACTIONS(402), + [anon_sym_86] = ACTIONS(402), + [anon_sym_87] = ACTIONS(402), + [anon_sym_88] = ACTIONS(402), + [anon_sym_89] = ACTIONS(402), + [anon_sym_90] = ACTIONS(402), + [anon_sym_91] = ACTIONS(402), + [anon_sym_92] = ACTIONS(402), + [anon_sym_93] = ACTIONS(402), [sym__whitespace] = ACTIONS(5), - [sym__end_of_line] = ACTIONS(420), + [sym__end_of_line] = ACTIONS(402), }, [62] = { - [aux_sym_number_token1] = ACTIONS(438), - [anon_sym_os] = ACTIONS(438), - [anon_sym_Family] = ACTIONS(438), - [anon_sym_Arch] = ACTIONS(438), - [anon_sym_ExeExt] = ACTIONS(438), - [anon_sym_PllExt] = ACTIONS(438), - [anon_sym_Sep] = ACTIONS(438), - [aux_sym_character_token1] = ACTIONS(440), - [sym_string] = ACTIONS(440), - [sym_multiLineString] = ACTIONS(440), - [anon_sym_PIPE] = ACTIONS(440), - [sym_identifier] = ACTIONS(438), - [sym_identifier_deprecated] = ACTIONS(438), - [sym_system] = ACTIONS(440), - [sym_comment] = ACTIONS(438), - [sym_openParen] = ACTIONS(440), - [sym_closeParen] = ACTIONS(440), - [sym_openCurly] = ACTIONS(440), - [sym_closeCurly] = ACTIONS(440), - [sym_openBracket] = ACTIONS(440), - [sym_closeBracket] = ACTIONS(440), - [sym_underscore] = ACTIONS(440), - [sym_leftArrow] = ACTIONS(440), - [anon_sym_CARET] = ACTIONS(440), - [anon_sym_eta] = ACTIONS(440), - [anon_sym_] = ACTIONS(438), - [anon_sym_pi] = ACTIONS(438), - [anon_sym_2] = ACTIONS(438), - [anon_sym_tau] = ACTIONS(440), - [anon_sym_3] = ACTIONS(438), - [anon_sym_infinity] = ACTIONS(440), - [anon_sym_4] = ACTIONS(440), - [anon_sym_e] = ACTIONS(438), - [anon_sym_NaN] = ACTIONS(438), - [anon_sym_NumProcs] = ACTIONS(438), - [anon_sym_DOT] = ACTIONS(440), - [anon_sym_COMMA] = ACTIONS(440), - [anon_sym_5] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(440), - [anon_sym_identity] = ACTIONS(440), - [anon_sym_id] = ACTIONS(438), - [anon_sym_6] = ACTIONS(440), - [anon_sym_not] = ACTIONS(440), - [anon_sym_7] = ACTIONS(440), - [anon_sym_sign] = ACTIONS(440), - [anon_sym_8] = ACTIONS(440), - [anon_sym_BQUOTE] = ACTIONS(440), - [anon_sym_9] = ACTIONS(440), - [anon_sym_absolutevalue] = ACTIONS(440), - [anon_sym_10] = ACTIONS(440), - [anon_sym_sqrt] = ACTIONS(440), - [anon_sym_11] = ACTIONS(440), - [anon_sym_sine] = ACTIONS(440), - [anon_sym_12] = ACTIONS(440), - [anon_sym_floor] = ACTIONS(440), - [anon_sym_13] = ACTIONS(440), - [anon_sym_ceiling] = ACTIONS(440), - [anon_sym_14] = ACTIONS(440), - [anon_sym_round] = ACTIONS(440), - [anon_sym_15] = ACTIONS(440), - [anon_sym_EQ] = ACTIONS(440), - [anon_sym_BANG_EQ] = ACTIONS(440), - [anon_sym_16] = ACTIONS(440), - [anon_sym_LT] = ACTIONS(438), - [anon_sym_LT_EQ] = ACTIONS(440), - [anon_sym_17] = ACTIONS(440), - [anon_sym_GT] = ACTIONS(438), - [anon_sym_GT_EQ] = ACTIONS(440), - [anon_sym_18] = ACTIONS(440), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_STAR] = ACTIONS(440), - [anon_sym_19] = ACTIONS(440), - [anon_sym_PERCENT] = ACTIONS(440), - [anon_sym_20] = ACTIONS(440), - [anon_sym_modulus] = ACTIONS(440), - [anon_sym_21] = ACTIONS(440), - [anon_sym_power] = ACTIONS(440), - [anon_sym_22] = ACTIONS(440), - [anon_sym_logarithm] = ACTIONS(440), - [anon_sym_23] = ACTIONS(440), - [anon_sym_minimum] = ACTIONS(440), - [anon_sym_24] = ACTIONS(440), - [anon_sym_maximum] = ACTIONS(440), - [anon_sym_25] = ACTIONS(440), - [anon_sym_atangent] = ACTIONS(440), - [anon_sym_26] = ACTIONS(440), - [anon_sym_length] = ACTIONS(440), - [anon_sym_27] = ACTIONS(440), - [anon_sym_shape] = ACTIONS(440), - [anon_sym_28] = ACTIONS(440), - [anon_sym_range] = ACTIONS(440), - [anon_sym_29] = ACTIONS(440), - [anon_sym_first] = ACTIONS(440), - [anon_sym_30] = ACTIONS(440), - [anon_sym_reverse] = ACTIONS(440), - [anon_sym_31] = ACTIONS(440), - [anon_sym_deshape] = ACTIONS(440), - [anon_sym_32] = ACTIONS(440), - [anon_sym_bits] = ACTIONS(440), - [anon_sym_33] = ACTIONS(440), - [anon_sym_transpose] = ACTIONS(440), - [anon_sym_34] = ACTIONS(440), - [anon_sym_rise] = ACTIONS(440), - [anon_sym_35] = ACTIONS(440), - [anon_sym_fall] = ACTIONS(440), - [anon_sym_36] = ACTIONS(440), - [anon_sym_where] = ACTIONS(440), - [anon_sym_37] = ACTIONS(440), - [anon_sym_classify] = ACTIONS(440), - [anon_sym_38] = ACTIONS(440), - [anon_sym_deduplicate] = ACTIONS(440), - [anon_sym_39] = ACTIONS(440), - [anon_sym_box] = ACTIONS(440), - [anon_sym_40] = ACTIONS(440), - [anon_sym_unbox] = ACTIONS(440), - [anon_sym_41] = ACTIONS(440), - [anon_sym_match] = ACTIONS(440), - [anon_sym_42] = ACTIONS(440), - [anon_sym_couple] = ACTIONS(440), - [anon_sym_43] = ACTIONS(440), - [anon_sym_join] = ACTIONS(440), - [anon_sym_44] = ACTIONS(440), - [anon_sym_select] = ACTIONS(440), - [anon_sym_45] = ACTIONS(440), - [anon_sym_pick] = ACTIONS(440), - [anon_sym_46] = ACTIONS(440), - [anon_sym_reshape] = ACTIONS(440), - [anon_sym_47] = ACTIONS(440), - [anon_sym_take] = ACTIONS(440), - [anon_sym_48] = ACTIONS(440), - [anon_sym_drop] = ACTIONS(440), - [anon_sym_49] = ACTIONS(440), - [anon_sym_rotate] = ACTIONS(440), - [anon_sym_50] = ACTIONS(440), - [anon_sym_windows] = ACTIONS(440), - [anon_sym_51] = ACTIONS(440), - [anon_sym_keep] = ACTIONS(440), - [anon_sym_52] = ACTIONS(440), - [anon_sym_find] = ACTIONS(440), - [anon_sym_53] = ACTIONS(440), - [anon_sym_member] = ACTIONS(440), - [anon_sym_54] = ACTIONS(440), - [anon_sym_indexof] = ACTIONS(440), - [anon_sym_55] = ACTIONS(440), - [anon_sym_assert] = ACTIONS(440), - [anon_sym_56] = ACTIONS(440), - [anon_sym_wait] = ACTIONS(440), - [anon_sym_break] = ACTIONS(440), - [anon_sym_57] = ACTIONS(440), - [anon_sym_parse] = ACTIONS(440), - [anon_sym_random] = ACTIONS(440), - [anon_sym_58] = ACTIONS(440), - [anon_sym_gen] = ACTIONS(440), - [anon_sym_deal] = ACTIONS(440), - [anon_sym_tag] = ACTIONS(440), - [anon_sym_now] = ACTIONS(440), - [anon_sym_type] = ACTIONS(440), - [anon_sym_59] = ACTIONS(440), - [anon_sym_dump] = ACTIONS(440), - [anon_sym_regex] = ACTIONS(440), - [anon_sym_utf] = ACTIONS(440), - [anon_sym_rock] = ACTIONS(440), - [anon_sym_60] = ACTIONS(440), - [anon_sym_surface] = ACTIONS(440), - [anon_sym_TILDE] = ACTIONS(440), - [anon_sym_deep] = ACTIONS(440), - [anon_sym_de] = ACTIONS(438), - [anon_sym_61] = ACTIONS(440), - [anon_sym_abyss] = ACTIONS(440), - [anon_sym_ab] = ACTIONS(438), - [anon_sym_62] = ACTIONS(440), - [anon_sym_seabed] = ACTIONS(440), - [anon_sym_se] = ACTIONS(438), - [anon_sym_63] = ACTIONS(440), - [anon_sym_send] = ACTIONS(440), - [anon_sym_recv] = ACTIONS(440), - [anon_sym_tryrecv] = ACTIONS(440), - [anon_sym_reduce] = ACTIONS(440), - [anon_sym_SLASH] = ACTIONS(440), - [anon_sym_scan] = ACTIONS(440), - [anon_sym_BSLASH] = ACTIONS(440), - [anon_sym_each] = ACTIONS(440), - [anon_sym_64] = ACTIONS(440), - [anon_sym_rows] = ACTIONS(440), - [anon_sym_65] = ACTIONS(440), - [anon_sym_repeat] = ACTIONS(440), - [anon_sym_66] = ACTIONS(440), - [anon_sym_dip] = ACTIONS(440), - [anon_sym_di] = ACTIONS(438), - [anon_sym_67] = ACTIONS(440), - [anon_sym_gap] = ACTIONS(440), - [anon_sym_ga] = ACTIONS(438), - [anon_sym_68] = ACTIONS(440), - [anon_sym_oust] = ACTIONS(440), - [anon_sym_69] = ACTIONS(440), - [anon_sym_invert] = ACTIONS(440), - [anon_sym_70] = ACTIONS(440), - [anon_sym_spawn] = ACTIONS(440), - [anon_sym_pack] = ACTIONS(440), - [anon_sym_71] = ACTIONS(440), - [anon_sym_tribute] = ACTIONS(440), - [anon_sym_72] = ACTIONS(440), - [anon_sym_fold] = ACTIONS(440), - [anon_sym_73] = ACTIONS(440), - [anon_sym_distribute] = ACTIONS(440), - [anon_sym_74] = ACTIONS(440), - [anon_sym_table] = ACTIONS(440), - [anon_sym_75] = ACTIONS(440), - [anon_sym_cross] = ACTIONS(440), - [anon_sym_76] = ACTIONS(440), - [anon_sym_group] = ACTIONS(440), - [anon_sym_77] = ACTIONS(440), - [anon_sym_partition] = ACTIONS(440), - [anon_sym_78] = ACTIONS(440), - [anon_sym_both] = ACTIONS(440), - [anon_sym_79] = ACTIONS(440), - [anon_sym_bracket] = ACTIONS(440), - [anon_sym_80] = ACTIONS(440), - [anon_sym_fork] = ACTIONS(440), - [anon_sym_81] = ACTIONS(440), - [anon_sym_under] = ACTIONS(440), - [anon_sym_82] = ACTIONS(440), - [anon_sym_level] = ACTIONS(440), - [anon_sym_83] = ACTIONS(440), - [anon_sym_fill] = ACTIONS(440), - [anon_sym_84] = ACTIONS(440), - [anon_sym_bind] = ACTIONS(440), - [anon_sym_SQUOTE] = ACTIONS(440), - [anon_sym_QMARK] = ACTIONS(440), - [anon_sym_try] = ACTIONS(438), - [anon_sym_85] = ACTIONS(440), - [anon_sym_combinate] = ACTIONS(440), - [anon_sym_86] = ACTIONS(440), - [anon_sym_87] = ACTIONS(440), - [anon_sym_88] = ACTIONS(440), - [anon_sym_89] = ACTIONS(440), - [anon_sym_90] = ACTIONS(440), - [anon_sym_91] = ACTIONS(440), - [anon_sym_92] = ACTIONS(440), - [anon_sym_93] = ACTIONS(440), + [aux_sym_number_token1] = ACTIONS(420), + [anon_sym_os] = ACTIONS(420), + [anon_sym_Family] = ACTIONS(420), + [anon_sym_Arch] = ACTIONS(420), + [anon_sym_ExeExt] = ACTIONS(420), + [anon_sym_PllExt] = ACTIONS(420), + [anon_sym_Sep] = ACTIONS(420), + [aux_sym_character_token1] = ACTIONS(422), + [sym_string] = ACTIONS(422), + [sym_multiLineString] = ACTIONS(422), + [anon_sym_PIPE] = ACTIONS(422), + [sym_identifier] = ACTIONS(420), + [sym_identifier_deprecated] = ACTIONS(420), + [sym_system] = ACTIONS(422), + [sym_comment] = ACTIONS(420), + [sym_openParen] = ACTIONS(422), + [sym_closeParen] = ACTIONS(422), + [sym_openCurly] = ACTIONS(422), + [sym_closeCurly] = ACTIONS(422), + [sym_openBracket] = ACTIONS(422), + [sym_closeBracket] = ACTIONS(422), + [sym_underscore] = ACTIONS(422), + [sym_leftArrow] = ACTIONS(422), + [anon_sym_CARET] = ACTIONS(422), + [anon_sym_eta] = ACTIONS(422), + [anon_sym_] = ACTIONS(420), + [anon_sym_pi] = ACTIONS(420), + [anon_sym_2] = ACTIONS(420), + [anon_sym_tau] = ACTIONS(422), + [anon_sym_3] = ACTIONS(420), + [anon_sym_infinity] = ACTIONS(422), + [anon_sym_4] = ACTIONS(422), + [anon_sym_e] = ACTIONS(420), + [anon_sym_NaN] = ACTIONS(420), + [anon_sym_NumProcs] = ACTIONS(420), + [anon_sym_DOT] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(422), + [anon_sym_5] = ACTIONS(422), + [anon_sym_SEMI] = ACTIONS(422), + [anon_sym_identity] = ACTIONS(422), + [anon_sym_id] = ACTIONS(420), + [anon_sym_6] = ACTIONS(422), + [anon_sym_not] = ACTIONS(422), + [anon_sym_7] = ACTIONS(422), + [anon_sym_sign] = ACTIONS(422), + [anon_sym_8] = ACTIONS(422), + [anon_sym_BQUOTE] = ACTIONS(422), + [anon_sym_9] = ACTIONS(422), + [anon_sym_absolutevalue] = ACTIONS(422), + [anon_sym_10] = ACTIONS(422), + [anon_sym_sqrt] = ACTIONS(422), + [anon_sym_11] = ACTIONS(422), + [anon_sym_sine] = ACTIONS(422), + [anon_sym_12] = ACTIONS(422), + [anon_sym_floor] = ACTIONS(422), + [anon_sym_13] = ACTIONS(422), + [anon_sym_ceiling] = ACTIONS(422), + [anon_sym_14] = ACTIONS(422), + [anon_sym_round] = ACTIONS(422), + [anon_sym_15] = ACTIONS(422), + [anon_sym_EQ] = ACTIONS(422), + [anon_sym_BANG_EQ] = ACTIONS(422), + [anon_sym_16] = ACTIONS(422), + [anon_sym_LT] = ACTIONS(420), + [anon_sym_LT_EQ] = ACTIONS(422), + [anon_sym_17] = ACTIONS(422), + [anon_sym_GT] = ACTIONS(420), + [anon_sym_GT_EQ] = ACTIONS(422), + [anon_sym_18] = ACTIONS(422), + [anon_sym_PLUS] = ACTIONS(422), + [anon_sym_DASH] = ACTIONS(422), + [anon_sym_STAR] = ACTIONS(422), + [anon_sym_19] = ACTIONS(422), + [anon_sym_PERCENT] = ACTIONS(422), + [anon_sym_20] = ACTIONS(422), + [anon_sym_modulus] = ACTIONS(422), + [anon_sym_21] = ACTIONS(422), + [anon_sym_power] = ACTIONS(422), + [anon_sym_22] = ACTIONS(422), + [anon_sym_logarithm] = ACTIONS(422), + [anon_sym_23] = ACTIONS(422), + [anon_sym_minimum] = ACTIONS(422), + [anon_sym_24] = ACTIONS(422), + [anon_sym_maximum] = ACTIONS(422), + [anon_sym_25] = ACTIONS(422), + [anon_sym_atangent] = ACTIONS(422), + [anon_sym_26] = ACTIONS(422), + [anon_sym_length] = ACTIONS(422), + [anon_sym_27] = ACTIONS(422), + [anon_sym_shape] = ACTIONS(422), + [anon_sym_28] = ACTIONS(422), + [anon_sym_range] = ACTIONS(422), + [anon_sym_29] = ACTIONS(422), + [anon_sym_first] = ACTIONS(422), + [anon_sym_30] = ACTIONS(422), + [anon_sym_reverse] = ACTIONS(422), + [anon_sym_31] = ACTIONS(422), + [anon_sym_deshape] = ACTIONS(422), + [anon_sym_32] = ACTIONS(422), + [anon_sym_bits] = ACTIONS(422), + [anon_sym_33] = ACTIONS(422), + [anon_sym_transpose] = ACTIONS(422), + [anon_sym_34] = ACTIONS(422), + [anon_sym_rise] = ACTIONS(422), + [anon_sym_35] = ACTIONS(422), + [anon_sym_fall] = ACTIONS(422), + [anon_sym_36] = ACTIONS(422), + [anon_sym_where] = ACTIONS(422), + [anon_sym_37] = ACTIONS(422), + [anon_sym_classify] = ACTIONS(422), + [anon_sym_38] = ACTIONS(422), + [anon_sym_deduplicate] = ACTIONS(422), + [anon_sym_39] = ACTIONS(422), + [anon_sym_box] = ACTIONS(422), + [anon_sym_40] = ACTIONS(422), + [anon_sym_unbox] = ACTIONS(422), + [anon_sym_41] = ACTIONS(422), + [anon_sym_match] = ACTIONS(422), + [anon_sym_42] = ACTIONS(422), + [anon_sym_couple] = ACTIONS(422), + [anon_sym_43] = ACTIONS(422), + [anon_sym_join] = ACTIONS(422), + [anon_sym_44] = ACTIONS(422), + [anon_sym_select] = ACTIONS(422), + [anon_sym_45] = ACTIONS(422), + [anon_sym_pick] = ACTIONS(422), + [anon_sym_46] = ACTIONS(422), + [anon_sym_reshape] = ACTIONS(422), + [anon_sym_47] = ACTIONS(422), + [anon_sym_take] = ACTIONS(422), + [anon_sym_48] = ACTIONS(422), + [anon_sym_drop] = ACTIONS(422), + [anon_sym_49] = ACTIONS(422), + [anon_sym_rotate] = ACTIONS(422), + [anon_sym_50] = ACTIONS(422), + [anon_sym_windows] = ACTIONS(422), + [anon_sym_51] = ACTIONS(422), + [anon_sym_keep] = ACTIONS(422), + [anon_sym_52] = ACTIONS(422), + [anon_sym_find] = ACTIONS(422), + [anon_sym_53] = ACTIONS(422), + [anon_sym_member] = ACTIONS(422), + [anon_sym_54] = ACTIONS(422), + [anon_sym_indexof] = ACTIONS(422), + [anon_sym_55] = ACTIONS(422), + [anon_sym_assert] = ACTIONS(422), + [anon_sym_56] = ACTIONS(422), + [anon_sym_wait] = ACTIONS(422), + [anon_sym_break] = ACTIONS(422), + [anon_sym_57] = ACTIONS(422), + [anon_sym_parse] = ACTIONS(422), + [anon_sym_random] = ACTIONS(422), + [anon_sym_58] = ACTIONS(422), + [anon_sym_gen] = ACTIONS(422), + [anon_sym_deal] = ACTIONS(422), + [anon_sym_tag] = ACTIONS(422), + [anon_sym_now] = ACTIONS(422), + [anon_sym_type] = ACTIONS(422), + [anon_sym_59] = ACTIONS(422), + [anon_sym_dump] = ACTIONS(422), + [anon_sym_regex] = ACTIONS(422), + [anon_sym_utf] = ACTIONS(422), + [anon_sym_rock] = ACTIONS(422), + [anon_sym_60] = ACTIONS(422), + [anon_sym_surface] = ACTIONS(422), + [anon_sym_TILDE] = ACTIONS(422), + [anon_sym_deep] = ACTIONS(422), + [anon_sym_de] = ACTIONS(420), + [anon_sym_61] = ACTIONS(422), + [anon_sym_abyss] = ACTIONS(422), + [anon_sym_ab] = ACTIONS(420), + [anon_sym_62] = ACTIONS(422), + [anon_sym_seabed] = ACTIONS(422), + [anon_sym_se] = ACTIONS(420), + [anon_sym_63] = ACTIONS(422), + [anon_sym_send] = ACTIONS(422), + [anon_sym_recv] = ACTIONS(422), + [anon_sym_tryrecv] = ACTIONS(422), + [anon_sym_reduce] = ACTIONS(422), + [anon_sym_SLASH] = ACTIONS(422), + [anon_sym_scan] = ACTIONS(422), + [anon_sym_BSLASH] = ACTIONS(422), + [anon_sym_each] = ACTIONS(422), + [anon_sym_64] = ACTIONS(422), + [anon_sym_rows] = ACTIONS(422), + [anon_sym_65] = ACTIONS(422), + [anon_sym_repeat] = ACTIONS(422), + [anon_sym_66] = ACTIONS(422), + [anon_sym_dip] = ACTIONS(422), + [anon_sym_67] = ACTIONS(422), + [anon_sym_gap] = ACTIONS(422), + [anon_sym_68] = ACTIONS(422), + [anon_sym_69] = ACTIONS(422), + [anon_sym_invert] = ACTIONS(422), + [anon_sym_70] = ACTIONS(422), + [anon_sym_spawn] = ACTIONS(422), + [anon_sym_pack] = ACTIONS(422), + [anon_sym_71] = ACTIONS(422), + [anon_sym_tribute] = ACTIONS(422), + [anon_sym_72] = ACTIONS(422), + [anon_sym_reach] = ACTIONS(422), + [anon_sym_fold] = ACTIONS(422), + [anon_sym_73] = ACTIONS(422), + [anon_sym_distribute] = ACTIONS(422), + [anon_sym_74] = ACTIONS(422), + [anon_sym_table] = ACTIONS(422), + [anon_sym_75] = ACTIONS(422), + [anon_sym_cross] = ACTIONS(422), + [anon_sym_76] = ACTIONS(422), + [anon_sym_group] = ACTIONS(422), + [anon_sym_77] = ACTIONS(422), + [anon_sym_partition] = ACTIONS(422), + [anon_sym_78] = ACTIONS(422), + [anon_sym_both] = ACTIONS(422), + [anon_sym_79] = ACTIONS(422), + [anon_sym_bracket] = ACTIONS(422), + [anon_sym_80] = ACTIONS(422), + [anon_sym_fork] = ACTIONS(422), + [anon_sym_81] = ACTIONS(422), + [anon_sym_under] = ACTIONS(422), + [anon_sym_82] = ACTIONS(422), + [anon_sym_level] = ACTIONS(422), + [anon_sym_83] = ACTIONS(422), + [anon_sym_fill] = ACTIONS(422), + [anon_sym_84] = ACTIONS(422), + [anon_sym_bind] = ACTIONS(422), + [anon_sym_SQUOTE] = ACTIONS(422), + [anon_sym_QMARK] = ACTIONS(422), + [anon_sym_try] = ACTIONS(420), + [anon_sym_85] = ACTIONS(422), + [anon_sym_combinate] = ACTIONS(422), + [anon_sym_86] = ACTIONS(422), + [anon_sym_87] = ACTIONS(422), + [anon_sym_88] = ACTIONS(422), + [anon_sym_89] = ACTIONS(422), + [anon_sym_90] = ACTIONS(422), + [anon_sym_91] = ACTIONS(422), + [anon_sym_92] = ACTIONS(422), + [anon_sym_93] = ACTIONS(422), [sym__whitespace] = ACTIONS(5), - [sym__end_of_line] = ACTIONS(440), + [sym__end_of_line] = ACTIONS(422), }, [63] = { - [aux_sym_number_token1] = ACTIONS(442), - [anon_sym_os] = ACTIONS(442), - [anon_sym_Family] = ACTIONS(442), - [anon_sym_Arch] = ACTIONS(442), - [anon_sym_ExeExt] = ACTIONS(442), - [anon_sym_PllExt] = ACTIONS(442), - [anon_sym_Sep] = ACTIONS(442), - [aux_sym_character_token1] = ACTIONS(444), - [sym_string] = ACTIONS(444), - [sym_multiLineString] = ACTIONS(444), - [anon_sym_PIPE] = ACTIONS(444), - [sym_identifier] = ACTIONS(442), - [sym_identifier_deprecated] = ACTIONS(442), - [sym_system] = ACTIONS(444), - [sym_comment] = ACTIONS(442), - [sym_openParen] = ACTIONS(444), - [sym_closeParen] = ACTIONS(444), - [sym_openCurly] = ACTIONS(444), - [sym_closeCurly] = ACTIONS(444), - [sym_openBracket] = ACTIONS(444), - [sym_closeBracket] = ACTIONS(444), - [sym_underscore] = ACTIONS(444), - [sym_leftArrow] = ACTIONS(444), - [anon_sym_CARET] = ACTIONS(444), - [anon_sym_eta] = ACTIONS(444), - [anon_sym_] = ACTIONS(442), - [anon_sym_pi] = ACTIONS(442), - [anon_sym_2] = ACTIONS(442), - [anon_sym_tau] = ACTIONS(444), - [anon_sym_3] = ACTIONS(442), - [anon_sym_infinity] = ACTIONS(444), - [anon_sym_4] = ACTIONS(444), - [anon_sym_e] = ACTIONS(442), - [anon_sym_NaN] = ACTIONS(442), - [anon_sym_NumProcs] = ACTIONS(442), - [anon_sym_DOT] = ACTIONS(444), - [anon_sym_COMMA] = ACTIONS(444), - [anon_sym_5] = ACTIONS(444), - [anon_sym_SEMI] = ACTIONS(444), - [anon_sym_identity] = ACTIONS(444), - [anon_sym_id] = ACTIONS(442), - [anon_sym_6] = ACTIONS(444), - [anon_sym_not] = ACTIONS(444), - [anon_sym_7] = ACTIONS(444), - [anon_sym_sign] = ACTIONS(444), - [anon_sym_8] = ACTIONS(444), - [anon_sym_BQUOTE] = ACTIONS(444), - [anon_sym_9] = ACTIONS(444), - [anon_sym_absolutevalue] = ACTIONS(444), - [anon_sym_10] = ACTIONS(444), - [anon_sym_sqrt] = ACTIONS(444), - [anon_sym_11] = ACTIONS(444), - [anon_sym_sine] = ACTIONS(444), - [anon_sym_12] = ACTIONS(444), - [anon_sym_floor] = ACTIONS(444), - [anon_sym_13] = ACTIONS(444), - [anon_sym_ceiling] = ACTIONS(444), - [anon_sym_14] = ACTIONS(444), - [anon_sym_round] = ACTIONS(444), - [anon_sym_15] = ACTIONS(444), - [anon_sym_EQ] = ACTIONS(444), - [anon_sym_BANG_EQ] = ACTIONS(444), - [anon_sym_16] = ACTIONS(444), - [anon_sym_LT] = ACTIONS(442), - [anon_sym_LT_EQ] = ACTIONS(444), - [anon_sym_17] = ACTIONS(444), - [anon_sym_GT] = ACTIONS(442), - [anon_sym_GT_EQ] = ACTIONS(444), - [anon_sym_18] = ACTIONS(444), - [anon_sym_PLUS] = ACTIONS(444), - [anon_sym_DASH] = ACTIONS(444), - [anon_sym_STAR] = ACTIONS(444), - [anon_sym_19] = ACTIONS(444), - [anon_sym_PERCENT] = ACTIONS(444), - [anon_sym_20] = ACTIONS(444), - [anon_sym_modulus] = ACTIONS(444), - [anon_sym_21] = ACTIONS(444), - [anon_sym_power] = ACTIONS(444), - [anon_sym_22] = ACTIONS(444), - [anon_sym_logarithm] = ACTIONS(444), - [anon_sym_23] = ACTIONS(444), - [anon_sym_minimum] = ACTIONS(444), - [anon_sym_24] = ACTIONS(444), - [anon_sym_maximum] = ACTIONS(444), - [anon_sym_25] = ACTIONS(444), - [anon_sym_atangent] = ACTIONS(444), - [anon_sym_26] = ACTIONS(444), - [anon_sym_length] = ACTIONS(444), - [anon_sym_27] = ACTIONS(444), - [anon_sym_shape] = ACTIONS(444), - [anon_sym_28] = ACTIONS(444), - [anon_sym_range] = ACTIONS(444), - [anon_sym_29] = ACTIONS(444), - [anon_sym_first] = ACTIONS(444), - [anon_sym_30] = ACTIONS(444), - [anon_sym_reverse] = ACTIONS(444), - [anon_sym_31] = ACTIONS(444), - [anon_sym_deshape] = ACTIONS(444), - [anon_sym_32] = ACTIONS(444), - [anon_sym_bits] = ACTIONS(444), - [anon_sym_33] = ACTIONS(444), - [anon_sym_transpose] = ACTIONS(444), - [anon_sym_34] = ACTIONS(444), - [anon_sym_rise] = ACTIONS(444), - [anon_sym_35] = ACTIONS(444), - [anon_sym_fall] = ACTIONS(444), - [anon_sym_36] = ACTIONS(444), - [anon_sym_where] = ACTIONS(444), - [anon_sym_37] = ACTIONS(444), - [anon_sym_classify] = ACTIONS(444), - [anon_sym_38] = ACTIONS(444), - [anon_sym_deduplicate] = ACTIONS(444), - [anon_sym_39] = ACTIONS(444), - [anon_sym_box] = ACTIONS(444), - [anon_sym_40] = ACTIONS(444), - [anon_sym_unbox] = ACTIONS(444), - [anon_sym_41] = ACTIONS(444), - [anon_sym_match] = ACTIONS(444), - [anon_sym_42] = ACTIONS(444), - [anon_sym_couple] = ACTIONS(444), - [anon_sym_43] = ACTIONS(444), - [anon_sym_join] = ACTIONS(444), - [anon_sym_44] = ACTIONS(444), - [anon_sym_select] = ACTIONS(444), - [anon_sym_45] = ACTIONS(444), - [anon_sym_pick] = ACTIONS(444), - [anon_sym_46] = ACTIONS(444), - [anon_sym_reshape] = ACTIONS(444), - [anon_sym_47] = ACTIONS(444), - [anon_sym_take] = ACTIONS(444), - [anon_sym_48] = ACTIONS(444), - [anon_sym_drop] = ACTIONS(444), - [anon_sym_49] = ACTIONS(444), - [anon_sym_rotate] = ACTIONS(444), - [anon_sym_50] = ACTIONS(444), - [anon_sym_windows] = ACTIONS(444), - [anon_sym_51] = ACTIONS(444), - [anon_sym_keep] = ACTIONS(444), - [anon_sym_52] = ACTIONS(444), - [anon_sym_find] = ACTIONS(444), - [anon_sym_53] = ACTIONS(444), - [anon_sym_member] = ACTIONS(444), - [anon_sym_54] = ACTIONS(444), - [anon_sym_indexof] = ACTIONS(444), - [anon_sym_55] = ACTIONS(444), - [anon_sym_assert] = ACTIONS(444), - [anon_sym_56] = ACTIONS(444), - [anon_sym_wait] = ACTIONS(444), - [anon_sym_break] = ACTIONS(444), - [anon_sym_57] = ACTIONS(444), - [anon_sym_parse] = ACTIONS(444), - [anon_sym_random] = ACTIONS(444), - [anon_sym_58] = ACTIONS(444), - [anon_sym_gen] = ACTIONS(444), - [anon_sym_deal] = ACTIONS(444), - [anon_sym_tag] = ACTIONS(444), - [anon_sym_now] = ACTIONS(444), - [anon_sym_type] = ACTIONS(444), - [anon_sym_59] = ACTIONS(444), - [anon_sym_dump] = ACTIONS(444), - [anon_sym_regex] = ACTIONS(444), - [anon_sym_utf] = ACTIONS(444), - [anon_sym_rock] = ACTIONS(444), - [anon_sym_60] = ACTIONS(444), - [anon_sym_surface] = ACTIONS(444), - [anon_sym_TILDE] = ACTIONS(444), - [anon_sym_deep] = ACTIONS(444), - [anon_sym_de] = ACTIONS(442), - [anon_sym_61] = ACTIONS(444), - [anon_sym_abyss] = ACTIONS(444), - [anon_sym_ab] = ACTIONS(442), - [anon_sym_62] = ACTIONS(444), - [anon_sym_seabed] = ACTIONS(444), - [anon_sym_se] = ACTIONS(442), - [anon_sym_63] = ACTIONS(444), - [anon_sym_send] = ACTIONS(444), - [anon_sym_recv] = ACTIONS(444), - [anon_sym_tryrecv] = ACTIONS(444), - [anon_sym_reduce] = ACTIONS(444), - [anon_sym_SLASH] = ACTIONS(444), - [anon_sym_scan] = ACTIONS(444), - [anon_sym_BSLASH] = ACTIONS(444), - [anon_sym_each] = ACTIONS(444), - [anon_sym_64] = ACTIONS(444), - [anon_sym_rows] = ACTIONS(444), - [anon_sym_65] = ACTIONS(444), - [anon_sym_repeat] = ACTIONS(444), - [anon_sym_66] = ACTIONS(444), - [anon_sym_dip] = ACTIONS(444), - [anon_sym_di] = ACTIONS(442), - [anon_sym_67] = ACTIONS(444), - [anon_sym_gap] = ACTIONS(444), - [anon_sym_ga] = ACTIONS(442), - [anon_sym_68] = ACTIONS(444), - [anon_sym_oust] = ACTIONS(444), - [anon_sym_69] = ACTIONS(444), - [anon_sym_invert] = ACTIONS(444), - [anon_sym_70] = ACTIONS(444), - [anon_sym_spawn] = ACTIONS(444), - [anon_sym_pack] = ACTIONS(444), - [anon_sym_71] = ACTIONS(444), - [anon_sym_tribute] = ACTIONS(444), - [anon_sym_72] = ACTIONS(444), - [anon_sym_fold] = ACTIONS(444), - [anon_sym_73] = ACTIONS(444), - [anon_sym_distribute] = ACTIONS(444), - [anon_sym_74] = ACTIONS(444), - [anon_sym_table] = ACTIONS(444), - [anon_sym_75] = ACTIONS(444), - [anon_sym_cross] = ACTIONS(444), - [anon_sym_76] = ACTIONS(444), - [anon_sym_group] = ACTIONS(444), - [anon_sym_77] = ACTIONS(444), - [anon_sym_partition] = ACTIONS(444), - [anon_sym_78] = ACTIONS(444), - [anon_sym_both] = ACTIONS(444), - [anon_sym_79] = ACTIONS(444), - [anon_sym_bracket] = ACTIONS(444), - [anon_sym_80] = ACTIONS(444), - [anon_sym_fork] = ACTIONS(444), - [anon_sym_81] = ACTIONS(444), - [anon_sym_under] = ACTIONS(444), - [anon_sym_82] = ACTIONS(444), - [anon_sym_level] = ACTIONS(444), - [anon_sym_83] = ACTIONS(444), - [anon_sym_fill] = ACTIONS(444), - [anon_sym_84] = ACTIONS(444), - [anon_sym_bind] = ACTIONS(444), - [anon_sym_SQUOTE] = ACTIONS(444), - [anon_sym_QMARK] = ACTIONS(444), - [anon_sym_try] = ACTIONS(442), - [anon_sym_85] = ACTIONS(444), - [anon_sym_combinate] = ACTIONS(444), - [anon_sym_86] = ACTIONS(444), - [anon_sym_87] = ACTIONS(444), - [anon_sym_88] = ACTIONS(444), - [anon_sym_89] = ACTIONS(444), - [anon_sym_90] = ACTIONS(444), - [anon_sym_91] = ACTIONS(444), - [anon_sym_92] = ACTIONS(444), - [anon_sym_93] = ACTIONS(444), + [aux_sym_number_token1] = ACTIONS(424), + [anon_sym_os] = ACTIONS(424), + [anon_sym_Family] = ACTIONS(424), + [anon_sym_Arch] = ACTIONS(424), + [anon_sym_ExeExt] = ACTIONS(424), + [anon_sym_PllExt] = ACTIONS(424), + [anon_sym_Sep] = ACTIONS(424), + [aux_sym_character_token1] = ACTIONS(426), + [sym_string] = ACTIONS(426), + [sym_multiLineString] = ACTIONS(426), + [anon_sym_PIPE] = ACTIONS(426), + [sym_identifier] = ACTIONS(424), + [sym_identifier_deprecated] = ACTIONS(424), + [sym_system] = ACTIONS(426), + [sym_comment] = ACTIONS(424), + [sym_openParen] = ACTIONS(426), + [sym_closeParen] = ACTIONS(426), + [sym_openCurly] = ACTIONS(426), + [sym_closeCurly] = ACTIONS(426), + [sym_openBracket] = ACTIONS(426), + [sym_closeBracket] = ACTIONS(426), + [sym_underscore] = ACTIONS(426), + [sym_leftArrow] = ACTIONS(426), + [anon_sym_CARET] = ACTIONS(426), + [anon_sym_eta] = ACTIONS(426), + [anon_sym_] = ACTIONS(424), + [anon_sym_pi] = ACTIONS(424), + [anon_sym_2] = ACTIONS(424), + [anon_sym_tau] = ACTIONS(426), + [anon_sym_3] = ACTIONS(424), + [anon_sym_infinity] = ACTIONS(426), + [anon_sym_4] = ACTIONS(426), + [anon_sym_e] = ACTIONS(424), + [anon_sym_NaN] = ACTIONS(424), + [anon_sym_NumProcs] = ACTIONS(424), + [anon_sym_DOT] = ACTIONS(426), + [anon_sym_COMMA] = ACTIONS(426), + [anon_sym_5] = ACTIONS(426), + [anon_sym_SEMI] = ACTIONS(426), + [anon_sym_identity] = ACTIONS(426), + [anon_sym_id] = ACTIONS(424), + [anon_sym_6] = ACTIONS(426), + [anon_sym_not] = ACTIONS(426), + [anon_sym_7] = ACTIONS(426), + [anon_sym_sign] = ACTIONS(426), + [anon_sym_8] = ACTIONS(426), + [anon_sym_BQUOTE] = ACTIONS(426), + [anon_sym_9] = ACTIONS(426), + [anon_sym_absolutevalue] = ACTIONS(426), + [anon_sym_10] = ACTIONS(426), + [anon_sym_sqrt] = ACTIONS(426), + [anon_sym_11] = ACTIONS(426), + [anon_sym_sine] = ACTIONS(426), + [anon_sym_12] = ACTIONS(426), + [anon_sym_floor] = ACTIONS(426), + [anon_sym_13] = ACTIONS(426), + [anon_sym_ceiling] = ACTIONS(426), + [anon_sym_14] = ACTIONS(426), + [anon_sym_round] = ACTIONS(426), + [anon_sym_15] = ACTIONS(426), + [anon_sym_EQ] = ACTIONS(426), + [anon_sym_BANG_EQ] = ACTIONS(426), + [anon_sym_16] = ACTIONS(426), + [anon_sym_LT] = ACTIONS(424), + [anon_sym_LT_EQ] = ACTIONS(426), + [anon_sym_17] = ACTIONS(426), + [anon_sym_GT] = ACTIONS(424), + [anon_sym_GT_EQ] = ACTIONS(426), + [anon_sym_18] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(426), + [anon_sym_DASH] = ACTIONS(426), + [anon_sym_STAR] = ACTIONS(426), + [anon_sym_19] = ACTIONS(426), + [anon_sym_PERCENT] = ACTIONS(426), + [anon_sym_20] = ACTIONS(426), + [anon_sym_modulus] = ACTIONS(426), + [anon_sym_21] = ACTIONS(426), + [anon_sym_power] = ACTIONS(426), + [anon_sym_22] = ACTIONS(426), + [anon_sym_logarithm] = ACTIONS(426), + [anon_sym_23] = ACTIONS(426), + [anon_sym_minimum] = ACTIONS(426), + [anon_sym_24] = ACTIONS(426), + [anon_sym_maximum] = ACTIONS(426), + [anon_sym_25] = ACTIONS(426), + [anon_sym_atangent] = ACTIONS(426), + [anon_sym_26] = ACTIONS(426), + [anon_sym_length] = ACTIONS(426), + [anon_sym_27] = ACTIONS(426), + [anon_sym_shape] = ACTIONS(426), + [anon_sym_28] = ACTIONS(426), + [anon_sym_range] = ACTIONS(426), + [anon_sym_29] = ACTIONS(426), + [anon_sym_first] = ACTIONS(426), + [anon_sym_30] = ACTIONS(426), + [anon_sym_reverse] = ACTIONS(426), + [anon_sym_31] = ACTIONS(426), + [anon_sym_deshape] = ACTIONS(426), + [anon_sym_32] = ACTIONS(426), + [anon_sym_bits] = ACTIONS(426), + [anon_sym_33] = ACTIONS(426), + [anon_sym_transpose] = ACTIONS(426), + [anon_sym_34] = ACTIONS(426), + [anon_sym_rise] = ACTIONS(426), + [anon_sym_35] = ACTIONS(426), + [anon_sym_fall] = ACTIONS(426), + [anon_sym_36] = ACTIONS(426), + [anon_sym_where] = ACTIONS(426), + [anon_sym_37] = ACTIONS(426), + [anon_sym_classify] = ACTIONS(426), + [anon_sym_38] = ACTIONS(426), + [anon_sym_deduplicate] = ACTIONS(426), + [anon_sym_39] = ACTIONS(426), + [anon_sym_box] = ACTIONS(426), + [anon_sym_40] = ACTIONS(426), + [anon_sym_unbox] = ACTIONS(426), + [anon_sym_41] = ACTIONS(426), + [anon_sym_match] = ACTIONS(426), + [anon_sym_42] = ACTIONS(426), + [anon_sym_couple] = ACTIONS(426), + [anon_sym_43] = ACTIONS(426), + [anon_sym_join] = ACTIONS(426), + [anon_sym_44] = ACTIONS(426), + [anon_sym_select] = ACTIONS(426), + [anon_sym_45] = ACTIONS(426), + [anon_sym_pick] = ACTIONS(426), + [anon_sym_46] = ACTIONS(426), + [anon_sym_reshape] = ACTIONS(426), + [anon_sym_47] = ACTIONS(426), + [anon_sym_take] = ACTIONS(426), + [anon_sym_48] = ACTIONS(426), + [anon_sym_drop] = ACTIONS(426), + [anon_sym_49] = ACTIONS(426), + [anon_sym_rotate] = ACTIONS(426), + [anon_sym_50] = ACTIONS(426), + [anon_sym_windows] = ACTIONS(426), + [anon_sym_51] = ACTIONS(426), + [anon_sym_keep] = ACTIONS(426), + [anon_sym_52] = ACTIONS(426), + [anon_sym_find] = ACTIONS(426), + [anon_sym_53] = ACTIONS(426), + [anon_sym_member] = ACTIONS(426), + [anon_sym_54] = ACTIONS(426), + [anon_sym_indexof] = ACTIONS(426), + [anon_sym_55] = ACTIONS(426), + [anon_sym_assert] = ACTIONS(426), + [anon_sym_56] = ACTIONS(426), + [anon_sym_wait] = ACTIONS(426), + [anon_sym_break] = ACTIONS(426), + [anon_sym_57] = ACTIONS(426), + [anon_sym_parse] = ACTIONS(426), + [anon_sym_random] = ACTIONS(426), + [anon_sym_58] = ACTIONS(426), + [anon_sym_gen] = ACTIONS(426), + [anon_sym_deal] = ACTIONS(426), + [anon_sym_tag] = ACTIONS(426), + [anon_sym_now] = ACTIONS(426), + [anon_sym_type] = ACTIONS(426), + [anon_sym_59] = ACTIONS(426), + [anon_sym_dump] = ACTIONS(426), + [anon_sym_regex] = ACTIONS(426), + [anon_sym_utf] = ACTIONS(426), + [anon_sym_rock] = ACTIONS(426), + [anon_sym_60] = ACTIONS(426), + [anon_sym_surface] = ACTIONS(426), + [anon_sym_TILDE] = ACTIONS(426), + [anon_sym_deep] = ACTIONS(426), + [anon_sym_de] = ACTIONS(424), + [anon_sym_61] = ACTIONS(426), + [anon_sym_abyss] = ACTIONS(426), + [anon_sym_ab] = ACTIONS(424), + [anon_sym_62] = ACTIONS(426), + [anon_sym_seabed] = ACTIONS(426), + [anon_sym_se] = ACTIONS(424), + [anon_sym_63] = ACTIONS(426), + [anon_sym_send] = ACTIONS(426), + [anon_sym_recv] = ACTIONS(426), + [anon_sym_tryrecv] = ACTIONS(426), + [anon_sym_reduce] = ACTIONS(426), + [anon_sym_SLASH] = ACTIONS(426), + [anon_sym_scan] = ACTIONS(426), + [anon_sym_BSLASH] = ACTIONS(426), + [anon_sym_each] = ACTIONS(426), + [anon_sym_64] = ACTIONS(426), + [anon_sym_rows] = ACTIONS(426), + [anon_sym_65] = ACTIONS(426), + [anon_sym_repeat] = ACTIONS(426), + [anon_sym_66] = ACTIONS(426), + [anon_sym_dip] = ACTIONS(426), + [anon_sym_67] = ACTIONS(426), + [anon_sym_gap] = ACTIONS(426), + [anon_sym_68] = ACTIONS(426), + [anon_sym_69] = ACTIONS(426), + [anon_sym_invert] = ACTIONS(426), + [anon_sym_70] = ACTIONS(426), + [anon_sym_spawn] = ACTIONS(426), + [anon_sym_pack] = ACTIONS(426), + [anon_sym_71] = ACTIONS(426), + [anon_sym_tribute] = ACTIONS(426), + [anon_sym_72] = ACTIONS(426), + [anon_sym_reach] = ACTIONS(426), + [anon_sym_fold] = ACTIONS(426), + [anon_sym_73] = ACTIONS(426), + [anon_sym_distribute] = ACTIONS(426), + [anon_sym_74] = ACTIONS(426), + [anon_sym_table] = ACTIONS(426), + [anon_sym_75] = ACTIONS(426), + [anon_sym_cross] = ACTIONS(426), + [anon_sym_76] = ACTIONS(426), + [anon_sym_group] = ACTIONS(426), + [anon_sym_77] = ACTIONS(426), + [anon_sym_partition] = ACTIONS(426), + [anon_sym_78] = ACTIONS(426), + [anon_sym_both] = ACTIONS(426), + [anon_sym_79] = ACTIONS(426), + [anon_sym_bracket] = ACTIONS(426), + [anon_sym_80] = ACTIONS(426), + [anon_sym_fork] = ACTIONS(426), + [anon_sym_81] = ACTIONS(426), + [anon_sym_under] = ACTIONS(426), + [anon_sym_82] = ACTIONS(426), + [anon_sym_level] = ACTIONS(426), + [anon_sym_83] = ACTIONS(426), + [anon_sym_fill] = ACTIONS(426), + [anon_sym_84] = ACTIONS(426), + [anon_sym_bind] = ACTIONS(426), + [anon_sym_SQUOTE] = ACTIONS(426), + [anon_sym_QMARK] = ACTIONS(426), + [anon_sym_try] = ACTIONS(424), + [anon_sym_85] = ACTIONS(426), + [anon_sym_combinate] = ACTIONS(426), + [anon_sym_86] = ACTIONS(426), + [anon_sym_87] = ACTIONS(426), + [anon_sym_88] = ACTIONS(426), + [anon_sym_89] = ACTIONS(426), + [anon_sym_90] = ACTIONS(426), + [anon_sym_91] = ACTIONS(426), + [anon_sym_92] = ACTIONS(426), + [anon_sym_93] = ACTIONS(426), [sym__whitespace] = ACTIONS(5), - [sym__end_of_line] = ACTIONS(444), + [sym__end_of_line] = ACTIONS(426), }, [64] = { - [aux_sym_number_token1] = ACTIONS(446), - [anon_sym_os] = ACTIONS(446), - [anon_sym_Family] = ACTIONS(446), - [anon_sym_Arch] = ACTIONS(446), - [anon_sym_ExeExt] = ACTIONS(446), - [anon_sym_PllExt] = ACTIONS(446), - [anon_sym_Sep] = ACTIONS(446), - [aux_sym_character_token1] = ACTIONS(448), - [sym_string] = ACTIONS(448), - [sym_multiLineString] = ACTIONS(448), - [anon_sym_PIPE] = ACTIONS(448), - [sym_identifier] = ACTIONS(446), - [sym_identifier_deprecated] = ACTIONS(446), - [sym_system] = ACTIONS(448), - [sym_comment] = ACTIONS(446), - [sym_openParen] = ACTIONS(448), - [sym_closeParen] = ACTIONS(448), - [sym_openCurly] = ACTIONS(448), - [sym_closeCurly] = ACTIONS(448), - [sym_openBracket] = ACTIONS(448), - [sym_closeBracket] = ACTIONS(448), - [sym_underscore] = ACTIONS(448), - [sym_leftArrow] = ACTIONS(448), - [anon_sym_CARET] = ACTIONS(448), - [anon_sym_eta] = ACTIONS(448), - [anon_sym_] = ACTIONS(446), - [anon_sym_pi] = ACTIONS(446), - [anon_sym_2] = ACTIONS(446), - [anon_sym_tau] = ACTIONS(448), - [anon_sym_3] = ACTIONS(446), - [anon_sym_infinity] = ACTIONS(448), - [anon_sym_4] = ACTIONS(448), - [anon_sym_e] = ACTIONS(446), - [anon_sym_NaN] = ACTIONS(446), - [anon_sym_NumProcs] = ACTIONS(446), - [anon_sym_DOT] = ACTIONS(448), - [anon_sym_COMMA] = ACTIONS(448), - [anon_sym_5] = ACTIONS(448), - [anon_sym_SEMI] = ACTIONS(448), - [anon_sym_identity] = ACTIONS(448), - [anon_sym_id] = ACTIONS(446), - [anon_sym_6] = ACTIONS(448), - [anon_sym_not] = ACTIONS(448), - [anon_sym_7] = ACTIONS(448), - [anon_sym_sign] = ACTIONS(448), - [anon_sym_8] = ACTIONS(448), - [anon_sym_BQUOTE] = ACTIONS(448), - [anon_sym_9] = ACTIONS(448), - [anon_sym_absolutevalue] = ACTIONS(448), - [anon_sym_10] = ACTIONS(448), - [anon_sym_sqrt] = ACTIONS(448), - [anon_sym_11] = ACTIONS(448), - [anon_sym_sine] = ACTIONS(448), - [anon_sym_12] = ACTIONS(448), - [anon_sym_floor] = ACTIONS(448), - [anon_sym_13] = ACTIONS(448), - [anon_sym_ceiling] = ACTIONS(448), - [anon_sym_14] = ACTIONS(448), - [anon_sym_round] = ACTIONS(448), - [anon_sym_15] = ACTIONS(448), - [anon_sym_EQ] = ACTIONS(448), - [anon_sym_BANG_EQ] = ACTIONS(448), - [anon_sym_16] = ACTIONS(448), - [anon_sym_LT] = ACTIONS(446), - [anon_sym_LT_EQ] = ACTIONS(448), - [anon_sym_17] = ACTIONS(448), - [anon_sym_GT] = ACTIONS(446), - [anon_sym_GT_EQ] = ACTIONS(448), - [anon_sym_18] = ACTIONS(448), - [anon_sym_PLUS] = ACTIONS(448), - [anon_sym_DASH] = ACTIONS(448), - [anon_sym_STAR] = ACTIONS(448), - [anon_sym_19] = ACTIONS(448), - [anon_sym_PERCENT] = ACTIONS(448), - [anon_sym_20] = ACTIONS(448), - [anon_sym_modulus] = ACTIONS(448), - [anon_sym_21] = ACTIONS(448), - [anon_sym_power] = ACTIONS(448), - [anon_sym_22] = ACTIONS(448), - [anon_sym_logarithm] = ACTIONS(448), - [anon_sym_23] = ACTIONS(448), - [anon_sym_minimum] = ACTIONS(448), - [anon_sym_24] = ACTIONS(448), - [anon_sym_maximum] = ACTIONS(448), - [anon_sym_25] = ACTIONS(448), - [anon_sym_atangent] = ACTIONS(448), - [anon_sym_26] = ACTIONS(448), - [anon_sym_length] = ACTIONS(448), - [anon_sym_27] = ACTIONS(448), - [anon_sym_shape] = ACTIONS(448), - [anon_sym_28] = ACTIONS(448), - [anon_sym_range] = ACTIONS(448), - [anon_sym_29] = ACTIONS(448), - [anon_sym_first] = ACTIONS(448), - [anon_sym_30] = ACTIONS(448), - [anon_sym_reverse] = ACTIONS(448), - [anon_sym_31] = ACTIONS(448), - [anon_sym_deshape] = ACTIONS(448), - [anon_sym_32] = ACTIONS(448), - [anon_sym_bits] = ACTIONS(448), - [anon_sym_33] = ACTIONS(448), - [anon_sym_transpose] = ACTIONS(448), - [anon_sym_34] = ACTIONS(448), - [anon_sym_rise] = ACTIONS(448), - [anon_sym_35] = ACTIONS(448), - [anon_sym_fall] = ACTIONS(448), - [anon_sym_36] = ACTIONS(448), - [anon_sym_where] = ACTIONS(448), - [anon_sym_37] = ACTIONS(448), - [anon_sym_classify] = ACTIONS(448), - [anon_sym_38] = ACTIONS(448), - [anon_sym_deduplicate] = ACTIONS(448), - [anon_sym_39] = ACTIONS(448), - [anon_sym_box] = ACTIONS(448), - [anon_sym_40] = ACTIONS(448), - [anon_sym_unbox] = ACTIONS(448), - [anon_sym_41] = ACTIONS(448), - [anon_sym_match] = ACTIONS(448), - [anon_sym_42] = ACTIONS(448), - [anon_sym_couple] = ACTIONS(448), - [anon_sym_43] = ACTIONS(448), - [anon_sym_join] = ACTIONS(448), - [anon_sym_44] = ACTIONS(448), - [anon_sym_select] = ACTIONS(448), - [anon_sym_45] = ACTIONS(448), - [anon_sym_pick] = ACTIONS(448), - [anon_sym_46] = ACTIONS(448), - [anon_sym_reshape] = ACTIONS(448), - [anon_sym_47] = ACTIONS(448), - [anon_sym_take] = ACTIONS(448), - [anon_sym_48] = ACTIONS(448), - [anon_sym_drop] = ACTIONS(448), - [anon_sym_49] = ACTIONS(448), - [anon_sym_rotate] = ACTIONS(448), - [anon_sym_50] = ACTIONS(448), - [anon_sym_windows] = ACTIONS(448), - [anon_sym_51] = ACTIONS(448), - [anon_sym_keep] = ACTIONS(448), - [anon_sym_52] = ACTIONS(448), - [anon_sym_find] = ACTIONS(448), - [anon_sym_53] = ACTIONS(448), - [anon_sym_member] = ACTIONS(448), - [anon_sym_54] = ACTIONS(448), - [anon_sym_indexof] = ACTIONS(448), - [anon_sym_55] = ACTIONS(448), - [anon_sym_assert] = ACTIONS(448), - [anon_sym_56] = ACTIONS(448), - [anon_sym_wait] = ACTIONS(448), - [anon_sym_break] = ACTIONS(448), - [anon_sym_57] = ACTIONS(448), - [anon_sym_parse] = ACTIONS(448), - [anon_sym_random] = ACTIONS(448), - [anon_sym_58] = ACTIONS(448), - [anon_sym_gen] = ACTIONS(448), - [anon_sym_deal] = ACTIONS(448), - [anon_sym_tag] = ACTIONS(448), - [anon_sym_now] = ACTIONS(448), - [anon_sym_type] = ACTIONS(448), - [anon_sym_59] = ACTIONS(448), - [anon_sym_dump] = ACTIONS(448), - [anon_sym_regex] = ACTIONS(448), - [anon_sym_utf] = ACTIONS(448), - [anon_sym_rock] = ACTIONS(448), - [anon_sym_60] = ACTIONS(448), - [anon_sym_surface] = ACTIONS(448), - [anon_sym_TILDE] = ACTIONS(448), - [anon_sym_deep] = ACTIONS(448), - [anon_sym_de] = ACTIONS(446), - [anon_sym_61] = ACTIONS(448), - [anon_sym_abyss] = ACTIONS(448), - [anon_sym_ab] = ACTIONS(446), - [anon_sym_62] = ACTIONS(448), - [anon_sym_seabed] = ACTIONS(448), - [anon_sym_se] = ACTIONS(446), - [anon_sym_63] = ACTIONS(448), - [anon_sym_send] = ACTIONS(448), - [anon_sym_recv] = ACTIONS(448), - [anon_sym_tryrecv] = ACTIONS(448), - [anon_sym_reduce] = ACTIONS(448), - [anon_sym_SLASH] = ACTIONS(448), - [anon_sym_scan] = ACTIONS(448), - [anon_sym_BSLASH] = ACTIONS(448), - [anon_sym_each] = ACTIONS(448), - [anon_sym_64] = ACTIONS(448), - [anon_sym_rows] = ACTIONS(448), - [anon_sym_65] = ACTIONS(448), - [anon_sym_repeat] = ACTIONS(448), - [anon_sym_66] = ACTIONS(448), - [anon_sym_dip] = ACTIONS(448), - [anon_sym_di] = ACTIONS(446), - [anon_sym_67] = ACTIONS(448), - [anon_sym_gap] = ACTIONS(448), - [anon_sym_ga] = ACTIONS(446), - [anon_sym_68] = ACTIONS(448), - [anon_sym_oust] = ACTIONS(448), - [anon_sym_69] = ACTIONS(448), - [anon_sym_invert] = ACTIONS(448), - [anon_sym_70] = ACTIONS(448), - [anon_sym_spawn] = ACTIONS(448), - [anon_sym_pack] = ACTIONS(448), - [anon_sym_71] = ACTIONS(448), - [anon_sym_tribute] = ACTIONS(448), - [anon_sym_72] = ACTIONS(448), - [anon_sym_fold] = ACTIONS(448), - [anon_sym_73] = ACTIONS(448), - [anon_sym_distribute] = ACTIONS(448), - [anon_sym_74] = ACTIONS(448), - [anon_sym_table] = ACTIONS(448), - [anon_sym_75] = ACTIONS(448), - [anon_sym_cross] = ACTIONS(448), - [anon_sym_76] = ACTIONS(448), - [anon_sym_group] = ACTIONS(448), - [anon_sym_77] = ACTIONS(448), - [anon_sym_partition] = ACTIONS(448), - [anon_sym_78] = ACTIONS(448), - [anon_sym_both] = ACTIONS(448), - [anon_sym_79] = ACTIONS(448), - [anon_sym_bracket] = ACTIONS(448), - [anon_sym_80] = ACTIONS(448), - [anon_sym_fork] = ACTIONS(448), - [anon_sym_81] = ACTIONS(448), - [anon_sym_under] = ACTIONS(448), - [anon_sym_82] = ACTIONS(448), - [anon_sym_level] = ACTIONS(448), - [anon_sym_83] = ACTIONS(448), - [anon_sym_fill] = ACTIONS(448), - [anon_sym_84] = ACTIONS(448), - [anon_sym_bind] = ACTIONS(448), - [anon_sym_SQUOTE] = ACTIONS(448), - [anon_sym_QMARK] = ACTIONS(448), - [anon_sym_try] = ACTIONS(446), - [anon_sym_85] = ACTIONS(448), - [anon_sym_combinate] = ACTIONS(448), - [anon_sym_86] = ACTIONS(448), - [anon_sym_87] = ACTIONS(448), - [anon_sym_88] = ACTIONS(448), - [anon_sym_89] = ACTIONS(448), - [anon_sym_90] = ACTIONS(448), - [anon_sym_91] = ACTIONS(448), - [anon_sym_92] = ACTIONS(448), - [anon_sym_93] = ACTIONS(448), + [aux_sym_number_token1] = ACTIONS(428), + [anon_sym_os] = ACTIONS(428), + [anon_sym_Family] = ACTIONS(428), + [anon_sym_Arch] = ACTIONS(428), + [anon_sym_ExeExt] = ACTIONS(428), + [anon_sym_PllExt] = ACTIONS(428), + [anon_sym_Sep] = ACTIONS(428), + [aux_sym_character_token1] = ACTIONS(430), + [sym_string] = ACTIONS(430), + [sym_multiLineString] = ACTIONS(430), + [anon_sym_PIPE] = ACTIONS(430), + [sym_identifier] = ACTIONS(428), + [sym_identifier_deprecated] = ACTIONS(428), + [sym_system] = ACTIONS(430), + [sym_comment] = ACTIONS(428), + [sym_openParen] = ACTIONS(430), + [sym_closeParen] = ACTIONS(430), + [sym_openCurly] = ACTIONS(430), + [sym_closeCurly] = ACTIONS(430), + [sym_openBracket] = ACTIONS(430), + [sym_closeBracket] = ACTIONS(430), + [sym_underscore] = ACTIONS(430), + [sym_leftArrow] = ACTIONS(430), + [anon_sym_CARET] = ACTIONS(430), + [anon_sym_eta] = ACTIONS(430), + [anon_sym_] = ACTIONS(428), + [anon_sym_pi] = ACTIONS(428), + [anon_sym_2] = ACTIONS(428), + [anon_sym_tau] = ACTIONS(430), + [anon_sym_3] = ACTIONS(428), + [anon_sym_infinity] = ACTIONS(430), + [anon_sym_4] = ACTIONS(430), + [anon_sym_e] = ACTIONS(428), + [anon_sym_NaN] = ACTIONS(428), + [anon_sym_NumProcs] = ACTIONS(428), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_COMMA] = ACTIONS(430), + [anon_sym_5] = ACTIONS(430), + [anon_sym_SEMI] = ACTIONS(430), + [anon_sym_identity] = ACTIONS(430), + [anon_sym_id] = ACTIONS(428), + [anon_sym_6] = ACTIONS(430), + [anon_sym_not] = ACTIONS(430), + [anon_sym_7] = ACTIONS(430), + [anon_sym_sign] = ACTIONS(430), + [anon_sym_8] = ACTIONS(430), + [anon_sym_BQUOTE] = ACTIONS(430), + [anon_sym_9] = ACTIONS(430), + [anon_sym_absolutevalue] = ACTIONS(430), + [anon_sym_10] = ACTIONS(430), + [anon_sym_sqrt] = ACTIONS(430), + [anon_sym_11] = ACTIONS(430), + [anon_sym_sine] = ACTIONS(430), + [anon_sym_12] = ACTIONS(430), + [anon_sym_floor] = ACTIONS(430), + [anon_sym_13] = ACTIONS(430), + [anon_sym_ceiling] = ACTIONS(430), + [anon_sym_14] = ACTIONS(430), + [anon_sym_round] = ACTIONS(430), + [anon_sym_15] = ACTIONS(430), + [anon_sym_EQ] = ACTIONS(430), + [anon_sym_BANG_EQ] = ACTIONS(430), + [anon_sym_16] = ACTIONS(430), + [anon_sym_LT] = ACTIONS(428), + [anon_sym_LT_EQ] = ACTIONS(430), + [anon_sym_17] = ACTIONS(430), + [anon_sym_GT] = ACTIONS(428), + [anon_sym_GT_EQ] = ACTIONS(430), + [anon_sym_18] = ACTIONS(430), + [anon_sym_PLUS] = ACTIONS(430), + [anon_sym_DASH] = ACTIONS(430), + [anon_sym_STAR] = ACTIONS(430), + [anon_sym_19] = ACTIONS(430), + [anon_sym_PERCENT] = ACTIONS(430), + [anon_sym_20] = ACTIONS(430), + [anon_sym_modulus] = ACTIONS(430), + [anon_sym_21] = ACTIONS(430), + [anon_sym_power] = ACTIONS(430), + [anon_sym_22] = ACTIONS(430), + [anon_sym_logarithm] = ACTIONS(430), + [anon_sym_23] = ACTIONS(430), + [anon_sym_minimum] = ACTIONS(430), + [anon_sym_24] = ACTIONS(430), + [anon_sym_maximum] = ACTIONS(430), + [anon_sym_25] = ACTIONS(430), + [anon_sym_atangent] = ACTIONS(430), + [anon_sym_26] = ACTIONS(430), + [anon_sym_length] = ACTIONS(430), + [anon_sym_27] = ACTIONS(430), + [anon_sym_shape] = ACTIONS(430), + [anon_sym_28] = ACTIONS(430), + [anon_sym_range] = ACTIONS(430), + [anon_sym_29] = ACTIONS(430), + [anon_sym_first] = ACTIONS(430), + [anon_sym_30] = ACTIONS(430), + [anon_sym_reverse] = ACTIONS(430), + [anon_sym_31] = ACTIONS(430), + [anon_sym_deshape] = ACTIONS(430), + [anon_sym_32] = ACTIONS(430), + [anon_sym_bits] = ACTIONS(430), + [anon_sym_33] = ACTIONS(430), + [anon_sym_transpose] = ACTIONS(430), + [anon_sym_34] = ACTIONS(430), + [anon_sym_rise] = ACTIONS(430), + [anon_sym_35] = ACTIONS(430), + [anon_sym_fall] = ACTIONS(430), + [anon_sym_36] = ACTIONS(430), + [anon_sym_where] = ACTIONS(430), + [anon_sym_37] = ACTIONS(430), + [anon_sym_classify] = ACTIONS(430), + [anon_sym_38] = ACTIONS(430), + [anon_sym_deduplicate] = ACTIONS(430), + [anon_sym_39] = ACTIONS(430), + [anon_sym_box] = ACTIONS(430), + [anon_sym_40] = ACTIONS(430), + [anon_sym_unbox] = ACTIONS(430), + [anon_sym_41] = ACTIONS(430), + [anon_sym_match] = ACTIONS(430), + [anon_sym_42] = ACTIONS(430), + [anon_sym_couple] = ACTIONS(430), + [anon_sym_43] = ACTIONS(430), + [anon_sym_join] = ACTIONS(430), + [anon_sym_44] = ACTIONS(430), + [anon_sym_select] = ACTIONS(430), + [anon_sym_45] = ACTIONS(430), + [anon_sym_pick] = ACTIONS(430), + [anon_sym_46] = ACTIONS(430), + [anon_sym_reshape] = ACTIONS(430), + [anon_sym_47] = ACTIONS(430), + [anon_sym_take] = ACTIONS(430), + [anon_sym_48] = ACTIONS(430), + [anon_sym_drop] = ACTIONS(430), + [anon_sym_49] = ACTIONS(430), + [anon_sym_rotate] = ACTIONS(430), + [anon_sym_50] = ACTIONS(430), + [anon_sym_windows] = ACTIONS(430), + [anon_sym_51] = ACTIONS(430), + [anon_sym_keep] = ACTIONS(430), + [anon_sym_52] = ACTIONS(430), + [anon_sym_find] = ACTIONS(430), + [anon_sym_53] = ACTIONS(430), + [anon_sym_member] = ACTIONS(430), + [anon_sym_54] = ACTIONS(430), + [anon_sym_indexof] = ACTIONS(430), + [anon_sym_55] = ACTIONS(430), + [anon_sym_assert] = ACTIONS(430), + [anon_sym_56] = ACTIONS(430), + [anon_sym_wait] = ACTIONS(430), + [anon_sym_break] = ACTIONS(430), + [anon_sym_57] = ACTIONS(430), + [anon_sym_parse] = ACTIONS(430), + [anon_sym_random] = ACTIONS(430), + [anon_sym_58] = ACTIONS(430), + [anon_sym_gen] = ACTIONS(430), + [anon_sym_deal] = ACTIONS(430), + [anon_sym_tag] = ACTIONS(430), + [anon_sym_now] = ACTIONS(430), + [anon_sym_type] = ACTIONS(430), + [anon_sym_59] = ACTIONS(430), + [anon_sym_dump] = ACTIONS(430), + [anon_sym_regex] = ACTIONS(430), + [anon_sym_utf] = ACTIONS(430), + [anon_sym_rock] = ACTIONS(430), + [anon_sym_60] = ACTIONS(430), + [anon_sym_surface] = ACTIONS(430), + [anon_sym_TILDE] = ACTIONS(430), + [anon_sym_deep] = ACTIONS(430), + [anon_sym_de] = ACTIONS(428), + [anon_sym_61] = ACTIONS(430), + [anon_sym_abyss] = ACTIONS(430), + [anon_sym_ab] = ACTIONS(428), + [anon_sym_62] = ACTIONS(430), + [anon_sym_seabed] = ACTIONS(430), + [anon_sym_se] = ACTIONS(428), + [anon_sym_63] = ACTIONS(430), + [anon_sym_send] = ACTIONS(430), + [anon_sym_recv] = ACTIONS(430), + [anon_sym_tryrecv] = ACTIONS(430), + [anon_sym_reduce] = ACTIONS(430), + [anon_sym_SLASH] = ACTIONS(430), + [anon_sym_scan] = ACTIONS(430), + [anon_sym_BSLASH] = ACTIONS(430), + [anon_sym_each] = ACTIONS(430), + [anon_sym_64] = ACTIONS(430), + [anon_sym_rows] = ACTIONS(430), + [anon_sym_65] = ACTIONS(430), + [anon_sym_repeat] = ACTIONS(430), + [anon_sym_66] = ACTIONS(430), + [anon_sym_dip] = ACTIONS(430), + [anon_sym_67] = ACTIONS(430), + [anon_sym_gap] = ACTIONS(430), + [anon_sym_68] = ACTIONS(430), + [anon_sym_69] = ACTIONS(430), + [anon_sym_invert] = ACTIONS(430), + [anon_sym_70] = ACTIONS(430), + [anon_sym_spawn] = ACTIONS(430), + [anon_sym_pack] = ACTIONS(430), + [anon_sym_71] = ACTIONS(430), + [anon_sym_tribute] = ACTIONS(430), + [anon_sym_72] = ACTIONS(430), + [anon_sym_reach] = ACTIONS(430), + [anon_sym_fold] = ACTIONS(430), + [anon_sym_73] = ACTIONS(430), + [anon_sym_distribute] = ACTIONS(430), + [anon_sym_74] = ACTIONS(430), + [anon_sym_table] = ACTIONS(430), + [anon_sym_75] = ACTIONS(430), + [anon_sym_cross] = ACTIONS(430), + [anon_sym_76] = ACTIONS(430), + [anon_sym_group] = ACTIONS(430), + [anon_sym_77] = ACTIONS(430), + [anon_sym_partition] = ACTIONS(430), + [anon_sym_78] = ACTIONS(430), + [anon_sym_both] = ACTIONS(430), + [anon_sym_79] = ACTIONS(430), + [anon_sym_bracket] = ACTIONS(430), + [anon_sym_80] = ACTIONS(430), + [anon_sym_fork] = ACTIONS(430), + [anon_sym_81] = ACTIONS(430), + [anon_sym_under] = ACTIONS(430), + [anon_sym_82] = ACTIONS(430), + [anon_sym_level] = ACTIONS(430), + [anon_sym_83] = ACTIONS(430), + [anon_sym_fill] = ACTIONS(430), + [anon_sym_84] = ACTIONS(430), + [anon_sym_bind] = ACTIONS(430), + [anon_sym_SQUOTE] = ACTIONS(430), + [anon_sym_QMARK] = ACTIONS(430), + [anon_sym_try] = ACTIONS(428), + [anon_sym_85] = ACTIONS(430), + [anon_sym_combinate] = ACTIONS(430), + [anon_sym_86] = ACTIONS(430), + [anon_sym_87] = ACTIONS(430), + [anon_sym_88] = ACTIONS(430), + [anon_sym_89] = ACTIONS(430), + [anon_sym_90] = ACTIONS(430), + [anon_sym_91] = ACTIONS(430), + [anon_sym_92] = ACTIONS(430), + [anon_sym_93] = ACTIONS(430), [sym__whitespace] = ACTIONS(5), - [sym__end_of_line] = ACTIONS(448), + [sym__end_of_line] = ACTIONS(430), }, [65] = { - [aux_sym_number_token1] = ACTIONS(450), - [anon_sym_os] = ACTIONS(450), - [anon_sym_Family] = ACTIONS(450), - [anon_sym_Arch] = ACTIONS(450), - [anon_sym_ExeExt] = ACTIONS(450), - [anon_sym_PllExt] = ACTIONS(450), - [anon_sym_Sep] = ACTIONS(450), - [aux_sym_character_token1] = ACTIONS(452), - [sym_string] = ACTIONS(452), - [sym_multiLineString] = ACTIONS(452), - [anon_sym_PIPE] = ACTIONS(452), - [sym_identifier] = ACTIONS(450), - [sym_identifier_deprecated] = ACTIONS(450), - [sym_system] = ACTIONS(452), - [sym_comment] = ACTIONS(450), - [sym_openParen] = ACTIONS(452), - [sym_closeParen] = ACTIONS(452), - [sym_openCurly] = ACTIONS(452), - [sym_closeCurly] = ACTIONS(452), - [sym_openBracket] = ACTIONS(452), - [sym_closeBracket] = ACTIONS(452), - [sym_underscore] = ACTIONS(452), - [sym_leftArrow] = ACTIONS(452), - [anon_sym_CARET] = ACTIONS(452), - [anon_sym_eta] = ACTIONS(452), - [anon_sym_] = ACTIONS(450), - [anon_sym_pi] = ACTIONS(450), - [anon_sym_2] = ACTIONS(450), - [anon_sym_tau] = ACTIONS(452), - [anon_sym_3] = ACTIONS(450), - [anon_sym_infinity] = ACTIONS(452), - [anon_sym_4] = ACTIONS(452), - [anon_sym_e] = ACTIONS(450), - [anon_sym_NaN] = ACTIONS(450), - [anon_sym_NumProcs] = ACTIONS(450), - [anon_sym_DOT] = ACTIONS(452), - [anon_sym_COMMA] = ACTIONS(452), - [anon_sym_5] = ACTIONS(452), - [anon_sym_SEMI] = ACTIONS(452), - [anon_sym_identity] = ACTIONS(452), - [anon_sym_id] = ACTIONS(450), - [anon_sym_6] = ACTIONS(452), - [anon_sym_not] = ACTIONS(452), - [anon_sym_7] = ACTIONS(452), - [anon_sym_sign] = ACTIONS(452), - [anon_sym_8] = ACTIONS(452), - [anon_sym_BQUOTE] = ACTIONS(452), - [anon_sym_9] = ACTIONS(452), - [anon_sym_absolutevalue] = ACTIONS(452), - [anon_sym_10] = ACTIONS(452), - [anon_sym_sqrt] = ACTIONS(452), - [anon_sym_11] = ACTIONS(452), - [anon_sym_sine] = ACTIONS(452), - [anon_sym_12] = ACTIONS(452), - [anon_sym_floor] = ACTIONS(452), - [anon_sym_13] = ACTIONS(452), - [anon_sym_ceiling] = ACTIONS(452), - [anon_sym_14] = ACTIONS(452), - [anon_sym_round] = ACTIONS(452), - [anon_sym_15] = ACTIONS(452), - [anon_sym_EQ] = ACTIONS(452), - [anon_sym_BANG_EQ] = ACTIONS(452), - [anon_sym_16] = ACTIONS(452), - [anon_sym_LT] = ACTIONS(450), - [anon_sym_LT_EQ] = ACTIONS(452), - [anon_sym_17] = ACTIONS(452), - [anon_sym_GT] = ACTIONS(450), - [anon_sym_GT_EQ] = ACTIONS(452), - [anon_sym_18] = ACTIONS(452), - [anon_sym_PLUS] = ACTIONS(452), - [anon_sym_DASH] = ACTIONS(452), - [anon_sym_STAR] = ACTIONS(452), - [anon_sym_19] = ACTIONS(452), - [anon_sym_PERCENT] = ACTIONS(452), - [anon_sym_20] = ACTIONS(452), - [anon_sym_modulus] = ACTIONS(452), - [anon_sym_21] = ACTIONS(452), - [anon_sym_power] = ACTIONS(452), - [anon_sym_22] = ACTIONS(452), - [anon_sym_logarithm] = ACTIONS(452), - [anon_sym_23] = ACTIONS(452), - [anon_sym_minimum] = ACTIONS(452), - [anon_sym_24] = ACTIONS(452), - [anon_sym_maximum] = ACTIONS(452), - [anon_sym_25] = ACTIONS(452), - [anon_sym_atangent] = ACTIONS(452), - [anon_sym_26] = ACTIONS(452), - [anon_sym_length] = ACTIONS(452), - [anon_sym_27] = ACTIONS(452), - [anon_sym_shape] = ACTIONS(452), - [anon_sym_28] = ACTIONS(452), - [anon_sym_range] = ACTIONS(452), - [anon_sym_29] = ACTIONS(452), - [anon_sym_first] = ACTIONS(452), - [anon_sym_30] = ACTIONS(452), - [anon_sym_reverse] = ACTIONS(452), - [anon_sym_31] = ACTIONS(452), - [anon_sym_deshape] = ACTIONS(452), - [anon_sym_32] = ACTIONS(452), - [anon_sym_bits] = ACTIONS(452), - [anon_sym_33] = ACTIONS(452), - [anon_sym_transpose] = ACTIONS(452), - [anon_sym_34] = ACTIONS(452), - [anon_sym_rise] = ACTIONS(452), - [anon_sym_35] = ACTIONS(452), - [anon_sym_fall] = ACTIONS(452), - [anon_sym_36] = ACTIONS(452), - [anon_sym_where] = ACTIONS(452), - [anon_sym_37] = ACTIONS(452), - [anon_sym_classify] = ACTIONS(452), - [anon_sym_38] = ACTIONS(452), - [anon_sym_deduplicate] = ACTIONS(452), - [anon_sym_39] = ACTIONS(452), - [anon_sym_box] = ACTIONS(452), - [anon_sym_40] = ACTIONS(452), - [anon_sym_unbox] = ACTIONS(452), - [anon_sym_41] = ACTIONS(452), - [anon_sym_match] = ACTIONS(452), - [anon_sym_42] = ACTIONS(452), - [anon_sym_couple] = ACTIONS(452), - [anon_sym_43] = ACTIONS(452), - [anon_sym_join] = ACTIONS(452), - [anon_sym_44] = ACTIONS(452), - [anon_sym_select] = ACTIONS(452), - [anon_sym_45] = ACTIONS(452), - [anon_sym_pick] = ACTIONS(452), - [anon_sym_46] = ACTIONS(452), - [anon_sym_reshape] = ACTIONS(452), - [anon_sym_47] = ACTIONS(452), - [anon_sym_take] = ACTIONS(452), - [anon_sym_48] = ACTIONS(452), - [anon_sym_drop] = ACTIONS(452), - [anon_sym_49] = ACTIONS(452), - [anon_sym_rotate] = ACTIONS(452), - [anon_sym_50] = ACTIONS(452), - [anon_sym_windows] = ACTIONS(452), - [anon_sym_51] = ACTIONS(452), - [anon_sym_keep] = ACTIONS(452), - [anon_sym_52] = ACTIONS(452), - [anon_sym_find] = ACTIONS(452), - [anon_sym_53] = ACTIONS(452), - [anon_sym_member] = ACTIONS(452), - [anon_sym_54] = ACTIONS(452), - [anon_sym_indexof] = ACTIONS(452), - [anon_sym_55] = ACTIONS(452), - [anon_sym_assert] = ACTIONS(452), - [anon_sym_56] = ACTIONS(452), - [anon_sym_wait] = ACTIONS(452), - [anon_sym_break] = ACTIONS(452), - [anon_sym_57] = ACTIONS(452), - [anon_sym_parse] = ACTIONS(452), - [anon_sym_random] = ACTIONS(452), - [anon_sym_58] = ACTIONS(452), - [anon_sym_gen] = ACTIONS(452), - [anon_sym_deal] = ACTIONS(452), - [anon_sym_tag] = ACTIONS(452), - [anon_sym_now] = ACTIONS(452), - [anon_sym_type] = ACTIONS(452), - [anon_sym_59] = ACTIONS(452), - [anon_sym_dump] = ACTIONS(452), - [anon_sym_regex] = ACTIONS(452), - [anon_sym_utf] = ACTIONS(452), - [anon_sym_rock] = ACTIONS(452), - [anon_sym_60] = ACTIONS(452), - [anon_sym_surface] = ACTIONS(452), - [anon_sym_TILDE] = ACTIONS(452), - [anon_sym_deep] = ACTIONS(452), - [anon_sym_de] = ACTIONS(450), - [anon_sym_61] = ACTIONS(452), - [anon_sym_abyss] = ACTIONS(452), - [anon_sym_ab] = ACTIONS(450), - [anon_sym_62] = ACTIONS(452), - [anon_sym_seabed] = ACTIONS(452), - [anon_sym_se] = ACTIONS(450), - [anon_sym_63] = ACTIONS(452), - [anon_sym_send] = ACTIONS(452), - [anon_sym_recv] = ACTIONS(452), - [anon_sym_tryrecv] = ACTIONS(452), - [anon_sym_reduce] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(452), - [anon_sym_scan] = ACTIONS(452), - [anon_sym_BSLASH] = ACTIONS(452), - [anon_sym_each] = ACTIONS(452), - [anon_sym_64] = ACTIONS(452), - [anon_sym_rows] = ACTIONS(452), - [anon_sym_65] = ACTIONS(452), - [anon_sym_repeat] = ACTIONS(452), - [anon_sym_66] = ACTIONS(452), - [anon_sym_dip] = ACTIONS(452), - [anon_sym_di] = ACTIONS(450), - [anon_sym_67] = ACTIONS(452), - [anon_sym_gap] = ACTIONS(452), - [anon_sym_ga] = ACTIONS(450), - [anon_sym_68] = ACTIONS(452), - [anon_sym_oust] = ACTIONS(452), - [anon_sym_69] = ACTIONS(452), - [anon_sym_invert] = ACTIONS(452), - [anon_sym_70] = ACTIONS(452), - [anon_sym_spawn] = ACTIONS(452), - [anon_sym_pack] = ACTIONS(452), - [anon_sym_71] = ACTIONS(452), - [anon_sym_tribute] = ACTIONS(452), - [anon_sym_72] = ACTIONS(452), - [anon_sym_fold] = ACTIONS(452), - [anon_sym_73] = ACTIONS(452), - [anon_sym_distribute] = ACTIONS(452), - [anon_sym_74] = ACTIONS(452), - [anon_sym_table] = ACTIONS(452), - [anon_sym_75] = ACTIONS(452), - [anon_sym_cross] = ACTIONS(452), - [anon_sym_76] = ACTIONS(452), - [anon_sym_group] = ACTIONS(452), - [anon_sym_77] = ACTIONS(452), - [anon_sym_partition] = ACTIONS(452), - [anon_sym_78] = ACTIONS(452), - [anon_sym_both] = ACTIONS(452), - [anon_sym_79] = ACTIONS(452), - [anon_sym_bracket] = ACTIONS(452), - [anon_sym_80] = ACTIONS(452), - [anon_sym_fork] = ACTIONS(452), - [anon_sym_81] = ACTIONS(452), - [anon_sym_under] = ACTIONS(452), - [anon_sym_82] = ACTIONS(452), - [anon_sym_level] = ACTIONS(452), - [anon_sym_83] = ACTIONS(452), - [anon_sym_fill] = ACTIONS(452), - [anon_sym_84] = ACTIONS(452), - [anon_sym_bind] = ACTIONS(452), - [anon_sym_SQUOTE] = ACTIONS(452), - [anon_sym_QMARK] = ACTIONS(452), - [anon_sym_try] = ACTIONS(450), - [anon_sym_85] = ACTIONS(452), - [anon_sym_combinate] = ACTIONS(452), - [anon_sym_86] = ACTIONS(452), - [anon_sym_87] = ACTIONS(452), - [anon_sym_88] = ACTIONS(452), - [anon_sym_89] = ACTIONS(452), - [anon_sym_90] = ACTIONS(452), - [anon_sym_91] = ACTIONS(452), - [anon_sym_92] = ACTIONS(452), - [anon_sym_93] = ACTIONS(452), + [aux_sym_number_token1] = ACTIONS(432), + [anon_sym_os] = ACTIONS(432), + [anon_sym_Family] = ACTIONS(432), + [anon_sym_Arch] = ACTIONS(432), + [anon_sym_ExeExt] = ACTIONS(432), + [anon_sym_PllExt] = ACTIONS(432), + [anon_sym_Sep] = ACTIONS(432), + [aux_sym_character_token1] = ACTIONS(434), + [sym_string] = ACTIONS(434), + [sym_multiLineString] = ACTIONS(434), + [anon_sym_PIPE] = ACTIONS(434), + [sym_identifier] = ACTIONS(432), + [sym_identifier_deprecated] = ACTIONS(432), + [sym_system] = ACTIONS(434), + [sym_comment] = ACTIONS(432), + [sym_openParen] = ACTIONS(434), + [sym_closeParen] = ACTIONS(434), + [sym_openCurly] = ACTIONS(434), + [sym_closeCurly] = ACTIONS(434), + [sym_openBracket] = ACTIONS(434), + [sym_closeBracket] = ACTIONS(434), + [sym_underscore] = ACTIONS(434), + [sym_leftArrow] = ACTIONS(434), + [anon_sym_CARET] = ACTIONS(434), + [anon_sym_eta] = ACTIONS(434), + [anon_sym_] = ACTIONS(432), + [anon_sym_pi] = ACTIONS(432), + [anon_sym_2] = ACTIONS(432), + [anon_sym_tau] = ACTIONS(434), + [anon_sym_3] = ACTIONS(432), + [anon_sym_infinity] = ACTIONS(434), + [anon_sym_4] = ACTIONS(434), + [anon_sym_e] = ACTIONS(432), + [anon_sym_NaN] = ACTIONS(432), + [anon_sym_NumProcs] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(434), + [anon_sym_COMMA] = ACTIONS(434), + [anon_sym_5] = ACTIONS(434), + [anon_sym_SEMI] = ACTIONS(434), + [anon_sym_identity] = ACTIONS(434), + [anon_sym_id] = ACTIONS(432), + [anon_sym_6] = ACTIONS(434), + [anon_sym_not] = ACTIONS(434), + [anon_sym_7] = ACTIONS(434), + [anon_sym_sign] = ACTIONS(434), + [anon_sym_8] = ACTIONS(434), + [anon_sym_BQUOTE] = ACTIONS(434), + [anon_sym_9] = ACTIONS(434), + [anon_sym_absolutevalue] = ACTIONS(434), + [anon_sym_10] = ACTIONS(434), + [anon_sym_sqrt] = ACTIONS(434), + [anon_sym_11] = ACTIONS(434), + [anon_sym_sine] = ACTIONS(434), + [anon_sym_12] = ACTIONS(434), + [anon_sym_floor] = ACTIONS(434), + [anon_sym_13] = ACTIONS(434), + [anon_sym_ceiling] = ACTIONS(434), + [anon_sym_14] = ACTIONS(434), + [anon_sym_round] = ACTIONS(434), + [anon_sym_15] = ACTIONS(434), + [anon_sym_EQ] = ACTIONS(434), + [anon_sym_BANG_EQ] = ACTIONS(434), + [anon_sym_16] = ACTIONS(434), + [anon_sym_LT] = ACTIONS(432), + [anon_sym_LT_EQ] = ACTIONS(434), + [anon_sym_17] = ACTIONS(434), + [anon_sym_GT] = ACTIONS(432), + [anon_sym_GT_EQ] = ACTIONS(434), + [anon_sym_18] = ACTIONS(434), + [anon_sym_PLUS] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(434), + [anon_sym_STAR] = ACTIONS(434), + [anon_sym_19] = ACTIONS(434), + [anon_sym_PERCENT] = ACTIONS(434), + [anon_sym_20] = ACTIONS(434), + [anon_sym_modulus] = ACTIONS(434), + [anon_sym_21] = ACTIONS(434), + [anon_sym_power] = ACTIONS(434), + [anon_sym_22] = ACTIONS(434), + [anon_sym_logarithm] = ACTIONS(434), + [anon_sym_23] = ACTIONS(434), + [anon_sym_minimum] = ACTIONS(434), + [anon_sym_24] = ACTIONS(434), + [anon_sym_maximum] = ACTIONS(434), + [anon_sym_25] = ACTIONS(434), + [anon_sym_atangent] = ACTIONS(434), + [anon_sym_26] = ACTIONS(434), + [anon_sym_length] = ACTIONS(434), + [anon_sym_27] = ACTIONS(434), + [anon_sym_shape] = ACTIONS(434), + [anon_sym_28] = ACTIONS(434), + [anon_sym_range] = ACTIONS(434), + [anon_sym_29] = ACTIONS(434), + [anon_sym_first] = ACTIONS(434), + [anon_sym_30] = ACTIONS(434), + [anon_sym_reverse] = ACTIONS(434), + [anon_sym_31] = ACTIONS(434), + [anon_sym_deshape] = ACTIONS(434), + [anon_sym_32] = ACTIONS(434), + [anon_sym_bits] = ACTIONS(434), + [anon_sym_33] = ACTIONS(434), + [anon_sym_transpose] = ACTIONS(434), + [anon_sym_34] = ACTIONS(434), + [anon_sym_rise] = ACTIONS(434), + [anon_sym_35] = ACTIONS(434), + [anon_sym_fall] = ACTIONS(434), + [anon_sym_36] = ACTIONS(434), + [anon_sym_where] = ACTIONS(434), + [anon_sym_37] = ACTIONS(434), + [anon_sym_classify] = ACTIONS(434), + [anon_sym_38] = ACTIONS(434), + [anon_sym_deduplicate] = ACTIONS(434), + [anon_sym_39] = ACTIONS(434), + [anon_sym_box] = ACTIONS(434), + [anon_sym_40] = ACTIONS(434), + [anon_sym_unbox] = ACTIONS(434), + [anon_sym_41] = ACTIONS(434), + [anon_sym_match] = ACTIONS(434), + [anon_sym_42] = ACTIONS(434), + [anon_sym_couple] = ACTIONS(434), + [anon_sym_43] = ACTIONS(434), + [anon_sym_join] = ACTIONS(434), + [anon_sym_44] = ACTIONS(434), + [anon_sym_select] = ACTIONS(434), + [anon_sym_45] = ACTIONS(434), + [anon_sym_pick] = ACTIONS(434), + [anon_sym_46] = ACTIONS(434), + [anon_sym_reshape] = ACTIONS(434), + [anon_sym_47] = ACTIONS(434), + [anon_sym_take] = ACTIONS(434), + [anon_sym_48] = ACTIONS(434), + [anon_sym_drop] = ACTIONS(434), + [anon_sym_49] = ACTIONS(434), + [anon_sym_rotate] = ACTIONS(434), + [anon_sym_50] = ACTIONS(434), + [anon_sym_windows] = ACTIONS(434), + [anon_sym_51] = ACTIONS(434), + [anon_sym_keep] = ACTIONS(434), + [anon_sym_52] = ACTIONS(434), + [anon_sym_find] = ACTIONS(434), + [anon_sym_53] = ACTIONS(434), + [anon_sym_member] = ACTIONS(434), + [anon_sym_54] = ACTIONS(434), + [anon_sym_indexof] = ACTIONS(434), + [anon_sym_55] = ACTIONS(434), + [anon_sym_assert] = ACTIONS(434), + [anon_sym_56] = ACTIONS(434), + [anon_sym_wait] = ACTIONS(434), + [anon_sym_break] = ACTIONS(434), + [anon_sym_57] = ACTIONS(434), + [anon_sym_parse] = ACTIONS(434), + [anon_sym_random] = ACTIONS(434), + [anon_sym_58] = ACTIONS(434), + [anon_sym_gen] = ACTIONS(434), + [anon_sym_deal] = ACTIONS(434), + [anon_sym_tag] = ACTIONS(434), + [anon_sym_now] = ACTIONS(434), + [anon_sym_type] = ACTIONS(434), + [anon_sym_59] = ACTIONS(434), + [anon_sym_dump] = ACTIONS(434), + [anon_sym_regex] = ACTIONS(434), + [anon_sym_utf] = ACTIONS(434), + [anon_sym_rock] = ACTIONS(434), + [anon_sym_60] = ACTIONS(434), + [anon_sym_surface] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_deep] = ACTIONS(434), + [anon_sym_de] = ACTIONS(432), + [anon_sym_61] = ACTIONS(434), + [anon_sym_abyss] = ACTIONS(434), + [anon_sym_ab] = ACTIONS(432), + [anon_sym_62] = ACTIONS(434), + [anon_sym_seabed] = ACTIONS(434), + [anon_sym_se] = ACTIONS(432), + [anon_sym_63] = ACTIONS(434), + [anon_sym_send] = ACTIONS(434), + [anon_sym_recv] = ACTIONS(434), + [anon_sym_tryrecv] = ACTIONS(434), + [anon_sym_reduce] = ACTIONS(434), + [anon_sym_SLASH] = ACTIONS(434), + [anon_sym_scan] = ACTIONS(434), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_each] = ACTIONS(434), + [anon_sym_64] = ACTIONS(434), + [anon_sym_rows] = ACTIONS(434), + [anon_sym_65] = ACTIONS(434), + [anon_sym_repeat] = ACTIONS(434), + [anon_sym_66] = ACTIONS(434), + [anon_sym_dip] = ACTIONS(434), + [anon_sym_67] = ACTIONS(434), + [anon_sym_gap] = ACTIONS(434), + [anon_sym_68] = ACTIONS(434), + [anon_sym_69] = ACTIONS(434), + [anon_sym_invert] = ACTIONS(434), + [anon_sym_70] = ACTIONS(434), + [anon_sym_spawn] = ACTIONS(434), + [anon_sym_pack] = ACTIONS(434), + [anon_sym_71] = ACTIONS(434), + [anon_sym_tribute] = ACTIONS(434), + [anon_sym_72] = ACTIONS(434), + [anon_sym_reach] = ACTIONS(434), + [anon_sym_fold] = ACTIONS(434), + [anon_sym_73] = ACTIONS(434), + [anon_sym_distribute] = ACTIONS(434), + [anon_sym_74] = ACTIONS(434), + [anon_sym_table] = ACTIONS(434), + [anon_sym_75] = ACTIONS(434), + [anon_sym_cross] = ACTIONS(434), + [anon_sym_76] = ACTIONS(434), + [anon_sym_group] = ACTIONS(434), + [anon_sym_77] = ACTIONS(434), + [anon_sym_partition] = ACTIONS(434), + [anon_sym_78] = ACTIONS(434), + [anon_sym_both] = ACTIONS(434), + [anon_sym_79] = ACTIONS(434), + [anon_sym_bracket] = ACTIONS(434), + [anon_sym_80] = ACTIONS(434), + [anon_sym_fork] = ACTIONS(434), + [anon_sym_81] = ACTIONS(434), + [anon_sym_under] = ACTIONS(434), + [anon_sym_82] = ACTIONS(434), + [anon_sym_level] = ACTIONS(434), + [anon_sym_83] = ACTIONS(434), + [anon_sym_fill] = ACTIONS(434), + [anon_sym_84] = ACTIONS(434), + [anon_sym_bind] = ACTIONS(434), + [anon_sym_SQUOTE] = ACTIONS(434), + [anon_sym_QMARK] = ACTIONS(434), + [anon_sym_try] = ACTIONS(432), + [anon_sym_85] = ACTIONS(434), + [anon_sym_combinate] = ACTIONS(434), + [anon_sym_86] = ACTIONS(434), + [anon_sym_87] = ACTIONS(434), + [anon_sym_88] = ACTIONS(434), + [anon_sym_89] = ACTIONS(434), + [anon_sym_90] = ACTIONS(434), + [anon_sym_91] = ACTIONS(434), + [anon_sym_92] = ACTIONS(434), + [anon_sym_93] = ACTIONS(434), [sym__whitespace] = ACTIONS(5), - [sym__end_of_line] = ACTIONS(452), + [sym__end_of_line] = ACTIONS(434), }, [66] = { - [aux_sym_number_token1] = ACTIONS(454), - [anon_sym_os] = ACTIONS(454), - [anon_sym_Family] = ACTIONS(454), - [anon_sym_Arch] = ACTIONS(454), - [anon_sym_ExeExt] = ACTIONS(454), - [anon_sym_PllExt] = ACTIONS(454), - [anon_sym_Sep] = ACTIONS(454), - [aux_sym_character_token1] = ACTIONS(456), - [sym_string] = ACTIONS(456), - [sym_multiLineString] = ACTIONS(456), - [anon_sym_PIPE] = ACTIONS(456), - [sym_identifier] = ACTIONS(454), - [sym_identifier_deprecated] = ACTIONS(454), - [sym_system] = ACTIONS(456), - [sym_comment] = ACTIONS(454), - [sym_openParen] = ACTIONS(456), - [sym_closeParen] = ACTIONS(456), - [sym_openCurly] = ACTIONS(456), - [sym_closeCurly] = ACTIONS(456), - [sym_openBracket] = ACTIONS(456), - [sym_closeBracket] = ACTIONS(456), - [sym_underscore] = ACTIONS(456), - [sym_leftArrow] = ACTIONS(456), - [anon_sym_CARET] = ACTIONS(456), - [anon_sym_eta] = ACTIONS(456), - [anon_sym_] = ACTIONS(454), - [anon_sym_pi] = ACTIONS(454), - [anon_sym_2] = ACTIONS(454), - [anon_sym_tau] = ACTIONS(456), - [anon_sym_3] = ACTIONS(454), - [anon_sym_infinity] = ACTIONS(456), - [anon_sym_4] = ACTIONS(456), - [anon_sym_e] = ACTIONS(454), - [anon_sym_NaN] = ACTIONS(454), - [anon_sym_NumProcs] = ACTIONS(454), - [anon_sym_DOT] = ACTIONS(456), - [anon_sym_COMMA] = ACTIONS(456), - [anon_sym_5] = ACTIONS(456), - [anon_sym_SEMI] = ACTIONS(456), - [anon_sym_identity] = ACTIONS(456), - [anon_sym_id] = ACTIONS(454), - [anon_sym_6] = ACTIONS(456), - [anon_sym_not] = ACTIONS(456), - [anon_sym_7] = ACTIONS(456), - [anon_sym_sign] = ACTIONS(456), - [anon_sym_8] = ACTIONS(456), - [anon_sym_BQUOTE] = ACTIONS(456), - [anon_sym_9] = ACTIONS(456), - [anon_sym_absolutevalue] = ACTIONS(456), - [anon_sym_10] = ACTIONS(456), - [anon_sym_sqrt] = ACTIONS(456), - [anon_sym_11] = ACTIONS(456), - [anon_sym_sine] = ACTIONS(456), - [anon_sym_12] = ACTIONS(456), - [anon_sym_floor] = ACTIONS(456), - [anon_sym_13] = ACTIONS(456), - [anon_sym_ceiling] = ACTIONS(456), - [anon_sym_14] = ACTIONS(456), - [anon_sym_round] = ACTIONS(456), - [anon_sym_15] = ACTIONS(456), - [anon_sym_EQ] = ACTIONS(456), - [anon_sym_BANG_EQ] = ACTIONS(456), - [anon_sym_16] = ACTIONS(456), - [anon_sym_LT] = ACTIONS(454), - [anon_sym_LT_EQ] = ACTIONS(456), - [anon_sym_17] = ACTIONS(456), - [anon_sym_GT] = ACTIONS(454), - [anon_sym_GT_EQ] = ACTIONS(456), - [anon_sym_18] = ACTIONS(456), - [anon_sym_PLUS] = ACTIONS(456), - [anon_sym_DASH] = ACTIONS(456), - [anon_sym_STAR] = ACTIONS(456), - [anon_sym_19] = ACTIONS(456), - [anon_sym_PERCENT] = ACTIONS(456), - [anon_sym_20] = ACTIONS(456), - [anon_sym_modulus] = ACTIONS(456), - [anon_sym_21] = ACTIONS(456), - [anon_sym_power] = ACTIONS(456), - [anon_sym_22] = ACTIONS(456), - [anon_sym_logarithm] = ACTIONS(456), - [anon_sym_23] = ACTIONS(456), - [anon_sym_minimum] = ACTIONS(456), - [anon_sym_24] = ACTIONS(456), - [anon_sym_maximum] = ACTIONS(456), - [anon_sym_25] = ACTIONS(456), - [anon_sym_atangent] = ACTIONS(456), - [anon_sym_26] = ACTIONS(456), - [anon_sym_length] = ACTIONS(456), - [anon_sym_27] = ACTIONS(456), - [anon_sym_shape] = ACTIONS(456), - [anon_sym_28] = ACTIONS(456), - [anon_sym_range] = ACTIONS(456), - [anon_sym_29] = ACTIONS(456), - [anon_sym_first] = ACTIONS(456), - [anon_sym_30] = ACTIONS(456), - [anon_sym_reverse] = ACTIONS(456), - [anon_sym_31] = ACTIONS(456), - [anon_sym_deshape] = ACTIONS(456), - [anon_sym_32] = ACTIONS(456), - [anon_sym_bits] = ACTIONS(456), - [anon_sym_33] = ACTIONS(456), - [anon_sym_transpose] = ACTIONS(456), - [anon_sym_34] = ACTIONS(456), - [anon_sym_rise] = ACTIONS(456), - [anon_sym_35] = ACTIONS(456), - [anon_sym_fall] = ACTIONS(456), - [anon_sym_36] = ACTIONS(456), - [anon_sym_where] = ACTIONS(456), - [anon_sym_37] = ACTIONS(456), - [anon_sym_classify] = ACTIONS(456), - [anon_sym_38] = ACTIONS(456), - [anon_sym_deduplicate] = ACTIONS(456), - [anon_sym_39] = ACTIONS(456), - [anon_sym_box] = ACTIONS(456), - [anon_sym_40] = ACTIONS(456), - [anon_sym_unbox] = ACTIONS(456), - [anon_sym_41] = ACTIONS(456), - [anon_sym_match] = ACTIONS(456), - [anon_sym_42] = ACTIONS(456), - [anon_sym_couple] = ACTIONS(456), - [anon_sym_43] = ACTIONS(456), - [anon_sym_join] = ACTIONS(456), - [anon_sym_44] = ACTIONS(456), - [anon_sym_select] = ACTIONS(456), - [anon_sym_45] = ACTIONS(456), - [anon_sym_pick] = ACTIONS(456), - [anon_sym_46] = ACTIONS(456), - [anon_sym_reshape] = ACTIONS(456), - [anon_sym_47] = ACTIONS(456), - [anon_sym_take] = ACTIONS(456), - [anon_sym_48] = ACTIONS(456), - [anon_sym_drop] = ACTIONS(456), - [anon_sym_49] = ACTIONS(456), - [anon_sym_rotate] = ACTIONS(456), - [anon_sym_50] = ACTIONS(456), - [anon_sym_windows] = ACTIONS(456), - [anon_sym_51] = ACTIONS(456), - [anon_sym_keep] = ACTIONS(456), - [anon_sym_52] = ACTIONS(456), - [anon_sym_find] = ACTIONS(456), - [anon_sym_53] = ACTIONS(456), - [anon_sym_member] = ACTIONS(456), - [anon_sym_54] = ACTIONS(456), - [anon_sym_indexof] = ACTIONS(456), - [anon_sym_55] = ACTIONS(456), - [anon_sym_assert] = ACTIONS(456), - [anon_sym_56] = ACTIONS(456), - [anon_sym_wait] = ACTIONS(456), - [anon_sym_break] = ACTIONS(456), - [anon_sym_57] = ACTIONS(456), - [anon_sym_parse] = ACTIONS(456), - [anon_sym_random] = ACTIONS(456), - [anon_sym_58] = ACTIONS(456), - [anon_sym_gen] = ACTIONS(456), - [anon_sym_deal] = ACTIONS(456), - [anon_sym_tag] = ACTIONS(456), - [anon_sym_now] = ACTIONS(456), - [anon_sym_type] = ACTIONS(456), - [anon_sym_59] = ACTIONS(456), - [anon_sym_dump] = ACTIONS(456), - [anon_sym_regex] = ACTIONS(456), - [anon_sym_utf] = ACTIONS(456), - [anon_sym_rock] = ACTIONS(456), - [anon_sym_60] = ACTIONS(456), - [anon_sym_surface] = ACTIONS(456), - [anon_sym_TILDE] = ACTIONS(456), - [anon_sym_deep] = ACTIONS(456), - [anon_sym_de] = ACTIONS(454), - [anon_sym_61] = ACTIONS(456), - [anon_sym_abyss] = ACTIONS(456), - [anon_sym_ab] = ACTIONS(454), - [anon_sym_62] = ACTIONS(456), - [anon_sym_seabed] = ACTIONS(456), - [anon_sym_se] = ACTIONS(454), - [anon_sym_63] = ACTIONS(456), - [anon_sym_send] = ACTIONS(456), - [anon_sym_recv] = ACTIONS(456), - [anon_sym_tryrecv] = ACTIONS(456), - [anon_sym_reduce] = ACTIONS(456), - [anon_sym_SLASH] = ACTIONS(456), - [anon_sym_scan] = ACTIONS(456), - [anon_sym_BSLASH] = ACTIONS(456), - [anon_sym_each] = ACTIONS(456), - [anon_sym_64] = ACTIONS(456), - [anon_sym_rows] = ACTIONS(456), - [anon_sym_65] = ACTIONS(456), - [anon_sym_repeat] = ACTIONS(456), - [anon_sym_66] = ACTIONS(456), - [anon_sym_dip] = ACTIONS(456), - [anon_sym_di] = ACTIONS(454), - [anon_sym_67] = ACTIONS(456), - [anon_sym_gap] = ACTIONS(456), - [anon_sym_ga] = ACTIONS(454), - [anon_sym_68] = ACTIONS(456), - [anon_sym_oust] = ACTIONS(456), - [anon_sym_69] = ACTIONS(456), - [anon_sym_invert] = ACTIONS(456), - [anon_sym_70] = ACTIONS(456), - [anon_sym_spawn] = ACTIONS(456), - [anon_sym_pack] = ACTIONS(456), - [anon_sym_71] = ACTIONS(456), - [anon_sym_tribute] = ACTIONS(456), - [anon_sym_72] = ACTIONS(456), - [anon_sym_fold] = ACTIONS(456), - [anon_sym_73] = ACTIONS(456), - [anon_sym_distribute] = ACTIONS(456), - [anon_sym_74] = ACTIONS(456), - [anon_sym_table] = ACTIONS(456), - [anon_sym_75] = ACTIONS(456), - [anon_sym_cross] = ACTIONS(456), - [anon_sym_76] = ACTIONS(456), - [anon_sym_group] = ACTIONS(456), - [anon_sym_77] = ACTIONS(456), - [anon_sym_partition] = ACTIONS(456), - [anon_sym_78] = ACTIONS(456), - [anon_sym_both] = ACTIONS(456), - [anon_sym_79] = ACTIONS(456), - [anon_sym_bracket] = ACTIONS(456), - [anon_sym_80] = ACTIONS(456), - [anon_sym_fork] = ACTIONS(456), - [anon_sym_81] = ACTIONS(456), - [anon_sym_under] = ACTIONS(456), - [anon_sym_82] = ACTIONS(456), - [anon_sym_level] = ACTIONS(456), - [anon_sym_83] = ACTIONS(456), - [anon_sym_fill] = ACTIONS(456), - [anon_sym_84] = ACTIONS(456), - [anon_sym_bind] = ACTIONS(456), - [anon_sym_SQUOTE] = ACTIONS(456), - [anon_sym_QMARK] = ACTIONS(456), - [anon_sym_try] = ACTIONS(454), - [anon_sym_85] = ACTIONS(456), - [anon_sym_combinate] = ACTIONS(456), - [anon_sym_86] = ACTIONS(456), - [anon_sym_87] = ACTIONS(456), - [anon_sym_88] = ACTIONS(456), - [anon_sym_89] = ACTIONS(456), - [anon_sym_90] = ACTIONS(456), - [anon_sym_91] = ACTIONS(456), - [anon_sym_92] = ACTIONS(456), - [anon_sym_93] = ACTIONS(456), + [aux_sym_number_token1] = ACTIONS(436), + [anon_sym_os] = ACTIONS(436), + [anon_sym_Family] = ACTIONS(436), + [anon_sym_Arch] = ACTIONS(436), + [anon_sym_ExeExt] = ACTIONS(436), + [anon_sym_PllExt] = ACTIONS(436), + [anon_sym_Sep] = ACTIONS(436), + [aux_sym_character_token1] = ACTIONS(438), + [sym_string] = ACTIONS(438), + [sym_multiLineString] = ACTIONS(438), + [anon_sym_PIPE] = ACTIONS(438), + [sym_identifier] = ACTIONS(436), + [sym_identifier_deprecated] = ACTIONS(436), + [sym_system] = ACTIONS(438), + [sym_comment] = ACTIONS(436), + [sym_openParen] = ACTIONS(438), + [sym_closeParen] = ACTIONS(438), + [sym_openCurly] = ACTIONS(438), + [sym_closeCurly] = ACTIONS(438), + [sym_openBracket] = ACTIONS(438), + [sym_closeBracket] = ACTIONS(438), + [sym_underscore] = ACTIONS(438), + [sym_leftArrow] = ACTIONS(438), + [anon_sym_CARET] = ACTIONS(438), + [anon_sym_eta] = ACTIONS(438), + [anon_sym_] = ACTIONS(436), + [anon_sym_pi] = ACTIONS(436), + [anon_sym_2] = ACTIONS(436), + [anon_sym_tau] = ACTIONS(438), + [anon_sym_3] = ACTIONS(436), + [anon_sym_infinity] = ACTIONS(438), + [anon_sym_4] = ACTIONS(438), + [anon_sym_e] = ACTIONS(436), + [anon_sym_NaN] = ACTIONS(436), + [anon_sym_NumProcs] = ACTIONS(436), + [anon_sym_DOT] = ACTIONS(438), + [anon_sym_COMMA] = ACTIONS(438), + [anon_sym_5] = ACTIONS(438), + [anon_sym_SEMI] = ACTIONS(438), + [anon_sym_identity] = ACTIONS(438), + [anon_sym_id] = ACTIONS(436), + [anon_sym_6] = ACTIONS(438), + [anon_sym_not] = ACTIONS(438), + [anon_sym_7] = ACTIONS(438), + [anon_sym_sign] = ACTIONS(438), + [anon_sym_8] = ACTIONS(438), + [anon_sym_BQUOTE] = ACTIONS(438), + [anon_sym_9] = ACTIONS(438), + [anon_sym_absolutevalue] = ACTIONS(438), + [anon_sym_10] = ACTIONS(438), + [anon_sym_sqrt] = ACTIONS(438), + [anon_sym_11] = ACTIONS(438), + [anon_sym_sine] = ACTIONS(438), + [anon_sym_12] = ACTIONS(438), + [anon_sym_floor] = ACTIONS(438), + [anon_sym_13] = ACTIONS(438), + [anon_sym_ceiling] = ACTIONS(438), + [anon_sym_14] = ACTIONS(438), + [anon_sym_round] = ACTIONS(438), + [anon_sym_15] = ACTIONS(438), + [anon_sym_EQ] = ACTIONS(438), + [anon_sym_BANG_EQ] = ACTIONS(438), + [anon_sym_16] = ACTIONS(438), + [anon_sym_LT] = ACTIONS(436), + [anon_sym_LT_EQ] = ACTIONS(438), + [anon_sym_17] = ACTIONS(438), + [anon_sym_GT] = ACTIONS(436), + [anon_sym_GT_EQ] = ACTIONS(438), + [anon_sym_18] = ACTIONS(438), + [anon_sym_PLUS] = ACTIONS(438), + [anon_sym_DASH] = ACTIONS(438), + [anon_sym_STAR] = ACTIONS(438), + [anon_sym_19] = ACTIONS(438), + [anon_sym_PERCENT] = ACTIONS(438), + [anon_sym_20] = ACTIONS(438), + [anon_sym_modulus] = ACTIONS(438), + [anon_sym_21] = ACTIONS(438), + [anon_sym_power] = ACTIONS(438), + [anon_sym_22] = ACTIONS(438), + [anon_sym_logarithm] = ACTIONS(438), + [anon_sym_23] = ACTIONS(438), + [anon_sym_minimum] = ACTIONS(438), + [anon_sym_24] = ACTIONS(438), + [anon_sym_maximum] = ACTIONS(438), + [anon_sym_25] = ACTIONS(438), + [anon_sym_atangent] = ACTIONS(438), + [anon_sym_26] = ACTIONS(438), + [anon_sym_length] = ACTIONS(438), + [anon_sym_27] = ACTIONS(438), + [anon_sym_shape] = ACTIONS(438), + [anon_sym_28] = ACTIONS(438), + [anon_sym_range] = ACTIONS(438), + [anon_sym_29] = ACTIONS(438), + [anon_sym_first] = ACTIONS(438), + [anon_sym_30] = ACTIONS(438), + [anon_sym_reverse] = ACTIONS(438), + [anon_sym_31] = ACTIONS(438), + [anon_sym_deshape] = ACTIONS(438), + [anon_sym_32] = ACTIONS(438), + [anon_sym_bits] = ACTIONS(438), + [anon_sym_33] = ACTIONS(438), + [anon_sym_transpose] = ACTIONS(438), + [anon_sym_34] = ACTIONS(438), + [anon_sym_rise] = ACTIONS(438), + [anon_sym_35] = ACTIONS(438), + [anon_sym_fall] = ACTIONS(438), + [anon_sym_36] = ACTIONS(438), + [anon_sym_where] = ACTIONS(438), + [anon_sym_37] = ACTIONS(438), + [anon_sym_classify] = ACTIONS(438), + [anon_sym_38] = ACTIONS(438), + [anon_sym_deduplicate] = ACTIONS(438), + [anon_sym_39] = ACTIONS(438), + [anon_sym_box] = ACTIONS(438), + [anon_sym_40] = ACTIONS(438), + [anon_sym_unbox] = ACTIONS(438), + [anon_sym_41] = ACTIONS(438), + [anon_sym_match] = ACTIONS(438), + [anon_sym_42] = ACTIONS(438), + [anon_sym_couple] = ACTIONS(438), + [anon_sym_43] = ACTIONS(438), + [anon_sym_join] = ACTIONS(438), + [anon_sym_44] = ACTIONS(438), + [anon_sym_select] = ACTIONS(438), + [anon_sym_45] = ACTIONS(438), + [anon_sym_pick] = ACTIONS(438), + [anon_sym_46] = ACTIONS(438), + [anon_sym_reshape] = ACTIONS(438), + [anon_sym_47] = ACTIONS(438), + [anon_sym_take] = ACTIONS(438), + [anon_sym_48] = ACTIONS(438), + [anon_sym_drop] = ACTIONS(438), + [anon_sym_49] = ACTIONS(438), + [anon_sym_rotate] = ACTIONS(438), + [anon_sym_50] = ACTIONS(438), + [anon_sym_windows] = ACTIONS(438), + [anon_sym_51] = ACTIONS(438), + [anon_sym_keep] = ACTIONS(438), + [anon_sym_52] = ACTIONS(438), + [anon_sym_find] = ACTIONS(438), + [anon_sym_53] = ACTIONS(438), + [anon_sym_member] = ACTIONS(438), + [anon_sym_54] = ACTIONS(438), + [anon_sym_indexof] = ACTIONS(438), + [anon_sym_55] = ACTIONS(438), + [anon_sym_assert] = ACTIONS(438), + [anon_sym_56] = ACTIONS(438), + [anon_sym_wait] = ACTIONS(438), + [anon_sym_break] = ACTIONS(438), + [anon_sym_57] = ACTIONS(438), + [anon_sym_parse] = ACTIONS(438), + [anon_sym_random] = ACTIONS(438), + [anon_sym_58] = ACTIONS(438), + [anon_sym_gen] = ACTIONS(438), + [anon_sym_deal] = ACTIONS(438), + [anon_sym_tag] = ACTIONS(438), + [anon_sym_now] = ACTIONS(438), + [anon_sym_type] = ACTIONS(438), + [anon_sym_59] = ACTIONS(438), + [anon_sym_dump] = ACTIONS(438), + [anon_sym_regex] = ACTIONS(438), + [anon_sym_utf] = ACTIONS(438), + [anon_sym_rock] = ACTIONS(438), + [anon_sym_60] = ACTIONS(438), + [anon_sym_surface] = ACTIONS(438), + [anon_sym_TILDE] = ACTIONS(438), + [anon_sym_deep] = ACTIONS(438), + [anon_sym_de] = ACTIONS(436), + [anon_sym_61] = ACTIONS(438), + [anon_sym_abyss] = ACTIONS(438), + [anon_sym_ab] = ACTIONS(436), + [anon_sym_62] = ACTIONS(438), + [anon_sym_seabed] = ACTIONS(438), + [anon_sym_se] = ACTIONS(436), + [anon_sym_63] = ACTIONS(438), + [anon_sym_send] = ACTIONS(438), + [anon_sym_recv] = ACTIONS(438), + [anon_sym_tryrecv] = ACTIONS(438), + [anon_sym_reduce] = ACTIONS(438), + [anon_sym_SLASH] = ACTIONS(438), + [anon_sym_scan] = ACTIONS(438), + [anon_sym_BSLASH] = ACTIONS(438), + [anon_sym_each] = ACTIONS(438), + [anon_sym_64] = ACTIONS(438), + [anon_sym_rows] = ACTIONS(438), + [anon_sym_65] = ACTIONS(438), + [anon_sym_repeat] = ACTIONS(438), + [anon_sym_66] = ACTIONS(438), + [anon_sym_dip] = ACTIONS(438), + [anon_sym_67] = ACTIONS(438), + [anon_sym_gap] = ACTIONS(438), + [anon_sym_68] = ACTIONS(438), + [anon_sym_69] = ACTIONS(438), + [anon_sym_invert] = ACTIONS(438), + [anon_sym_70] = ACTIONS(438), + [anon_sym_spawn] = ACTIONS(438), + [anon_sym_pack] = ACTIONS(438), + [anon_sym_71] = ACTIONS(438), + [anon_sym_tribute] = ACTIONS(438), + [anon_sym_72] = ACTIONS(438), + [anon_sym_reach] = ACTIONS(438), + [anon_sym_fold] = ACTIONS(438), + [anon_sym_73] = ACTIONS(438), + [anon_sym_distribute] = ACTIONS(438), + [anon_sym_74] = ACTIONS(438), + [anon_sym_table] = ACTIONS(438), + [anon_sym_75] = ACTIONS(438), + [anon_sym_cross] = ACTIONS(438), + [anon_sym_76] = ACTIONS(438), + [anon_sym_group] = ACTIONS(438), + [anon_sym_77] = ACTIONS(438), + [anon_sym_partition] = ACTIONS(438), + [anon_sym_78] = ACTIONS(438), + [anon_sym_both] = ACTIONS(438), + [anon_sym_79] = ACTIONS(438), + [anon_sym_bracket] = ACTIONS(438), + [anon_sym_80] = ACTIONS(438), + [anon_sym_fork] = ACTIONS(438), + [anon_sym_81] = ACTIONS(438), + [anon_sym_under] = ACTIONS(438), + [anon_sym_82] = ACTIONS(438), + [anon_sym_level] = ACTIONS(438), + [anon_sym_83] = ACTIONS(438), + [anon_sym_fill] = ACTIONS(438), + [anon_sym_84] = ACTIONS(438), + [anon_sym_bind] = ACTIONS(438), + [anon_sym_SQUOTE] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(438), + [anon_sym_try] = ACTIONS(436), + [anon_sym_85] = ACTIONS(438), + [anon_sym_combinate] = ACTIONS(438), + [anon_sym_86] = ACTIONS(438), + [anon_sym_87] = ACTIONS(438), + [anon_sym_88] = ACTIONS(438), + [anon_sym_89] = ACTIONS(438), + [anon_sym_90] = ACTIONS(438), + [anon_sym_91] = ACTIONS(438), + [anon_sym_92] = ACTIONS(438), + [anon_sym_93] = ACTIONS(438), [sym__whitespace] = ACTIONS(5), - [sym__end_of_line] = ACTIONS(456), + [sym__end_of_line] = ACTIONS(438), }, [67] = { - [aux_sym_number_token1] = ACTIONS(458), - [anon_sym_os] = ACTIONS(458), - [anon_sym_Family] = ACTIONS(458), - [anon_sym_Arch] = ACTIONS(458), - [anon_sym_ExeExt] = ACTIONS(458), - [anon_sym_PllExt] = ACTIONS(458), - [anon_sym_Sep] = ACTIONS(458), - [aux_sym_character_token1] = ACTIONS(460), - [sym_string] = ACTIONS(460), - [sym_multiLineString] = ACTIONS(460), - [anon_sym_PIPE] = ACTIONS(460), - [sym_identifier] = ACTIONS(458), - [sym_identifier_deprecated] = ACTIONS(458), - [sym_system] = ACTIONS(460), - [sym_comment] = ACTIONS(458), - [sym_openParen] = ACTIONS(460), - [sym_closeParen] = ACTIONS(460), - [sym_openCurly] = ACTIONS(460), - [sym_closeCurly] = ACTIONS(460), - [sym_openBracket] = ACTIONS(460), - [sym_closeBracket] = ACTIONS(460), - [sym_underscore] = ACTIONS(460), - [sym_leftArrow] = ACTIONS(460), - [anon_sym_CARET] = ACTIONS(460), - [anon_sym_eta] = ACTIONS(460), - [anon_sym_] = ACTIONS(458), - [anon_sym_pi] = ACTIONS(458), - [anon_sym_2] = ACTIONS(458), - [anon_sym_tau] = ACTIONS(460), - [anon_sym_3] = ACTIONS(458), - [anon_sym_infinity] = ACTIONS(460), - [anon_sym_4] = ACTIONS(460), - [anon_sym_e] = ACTIONS(458), - [anon_sym_NaN] = ACTIONS(458), - [anon_sym_NumProcs] = ACTIONS(458), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_COMMA] = ACTIONS(460), - [anon_sym_5] = ACTIONS(460), - [anon_sym_SEMI] = ACTIONS(460), - [anon_sym_identity] = ACTIONS(460), - [anon_sym_id] = ACTIONS(458), - [anon_sym_6] = ACTIONS(460), - [anon_sym_not] = ACTIONS(460), - [anon_sym_7] = ACTIONS(460), - [anon_sym_sign] = ACTIONS(460), - [anon_sym_8] = ACTIONS(460), - [anon_sym_BQUOTE] = ACTIONS(460), - [anon_sym_9] = ACTIONS(460), - [anon_sym_absolutevalue] = ACTIONS(460), - [anon_sym_10] = ACTIONS(460), - [anon_sym_sqrt] = ACTIONS(460), - [anon_sym_11] = ACTIONS(460), - [anon_sym_sine] = ACTIONS(460), - [anon_sym_12] = ACTIONS(460), - [anon_sym_floor] = ACTIONS(460), - [anon_sym_13] = ACTIONS(460), - [anon_sym_ceiling] = ACTIONS(460), - [anon_sym_14] = ACTIONS(460), - [anon_sym_round] = ACTIONS(460), - [anon_sym_15] = ACTIONS(460), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BANG_EQ] = ACTIONS(460), - [anon_sym_16] = ACTIONS(460), - [anon_sym_LT] = ACTIONS(458), - [anon_sym_LT_EQ] = ACTIONS(460), - [anon_sym_17] = ACTIONS(460), - [anon_sym_GT] = ACTIONS(458), - [anon_sym_GT_EQ] = ACTIONS(460), - [anon_sym_18] = ACTIONS(460), - [anon_sym_PLUS] = ACTIONS(460), - [anon_sym_DASH] = ACTIONS(460), - [anon_sym_STAR] = ACTIONS(460), - [anon_sym_19] = ACTIONS(460), - [anon_sym_PERCENT] = ACTIONS(460), - [anon_sym_20] = ACTIONS(460), - [anon_sym_modulus] = ACTIONS(460), - [anon_sym_21] = ACTIONS(460), - [anon_sym_power] = ACTIONS(460), - [anon_sym_22] = ACTIONS(460), - [anon_sym_logarithm] = ACTIONS(460), - [anon_sym_23] = ACTIONS(460), - [anon_sym_minimum] = ACTIONS(460), - [anon_sym_24] = ACTIONS(460), - [anon_sym_maximum] = ACTIONS(460), - [anon_sym_25] = ACTIONS(460), - [anon_sym_atangent] = ACTIONS(460), - [anon_sym_26] = ACTIONS(460), - [anon_sym_length] = ACTIONS(460), - [anon_sym_27] = ACTIONS(460), - [anon_sym_shape] = ACTIONS(460), - [anon_sym_28] = ACTIONS(460), - [anon_sym_range] = ACTIONS(460), - [anon_sym_29] = ACTIONS(460), - [anon_sym_first] = ACTIONS(460), - [anon_sym_30] = ACTIONS(460), - [anon_sym_reverse] = ACTIONS(460), - [anon_sym_31] = ACTIONS(460), - [anon_sym_deshape] = ACTIONS(460), - [anon_sym_32] = ACTIONS(460), - [anon_sym_bits] = ACTIONS(460), - [anon_sym_33] = ACTIONS(460), - [anon_sym_transpose] = ACTIONS(460), - [anon_sym_34] = ACTIONS(460), - [anon_sym_rise] = ACTIONS(460), - [anon_sym_35] = ACTIONS(460), - [anon_sym_fall] = ACTIONS(460), - [anon_sym_36] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_37] = ACTIONS(460), - [anon_sym_classify] = ACTIONS(460), - [anon_sym_38] = ACTIONS(460), - [anon_sym_deduplicate] = ACTIONS(460), - [anon_sym_39] = ACTIONS(460), - [anon_sym_box] = ACTIONS(460), - [anon_sym_40] = ACTIONS(460), - [anon_sym_unbox] = ACTIONS(460), - [anon_sym_41] = ACTIONS(460), - [anon_sym_match] = ACTIONS(460), - [anon_sym_42] = ACTIONS(460), - [anon_sym_couple] = ACTIONS(460), - [anon_sym_43] = ACTIONS(460), - [anon_sym_join] = ACTIONS(460), - [anon_sym_44] = ACTIONS(460), - [anon_sym_select] = ACTIONS(460), - [anon_sym_45] = ACTIONS(460), - [anon_sym_pick] = ACTIONS(460), - [anon_sym_46] = ACTIONS(460), - [anon_sym_reshape] = ACTIONS(460), - [anon_sym_47] = ACTIONS(460), - [anon_sym_take] = ACTIONS(460), - [anon_sym_48] = ACTIONS(460), - [anon_sym_drop] = ACTIONS(460), - [anon_sym_49] = ACTIONS(460), - [anon_sym_rotate] = ACTIONS(460), - [anon_sym_50] = ACTIONS(460), - [anon_sym_windows] = ACTIONS(460), - [anon_sym_51] = ACTIONS(460), - [anon_sym_keep] = ACTIONS(460), - [anon_sym_52] = ACTIONS(460), - [anon_sym_find] = ACTIONS(460), - [anon_sym_53] = ACTIONS(460), - [anon_sym_member] = ACTIONS(460), - [anon_sym_54] = ACTIONS(460), - [anon_sym_indexof] = ACTIONS(460), - [anon_sym_55] = ACTIONS(460), - [anon_sym_assert] = ACTIONS(460), - [anon_sym_56] = ACTIONS(460), - [anon_sym_wait] = ACTIONS(460), - [anon_sym_break] = ACTIONS(460), - [anon_sym_57] = ACTIONS(460), - [anon_sym_parse] = ACTIONS(460), - [anon_sym_random] = ACTIONS(460), - [anon_sym_58] = ACTIONS(460), - [anon_sym_gen] = ACTIONS(460), - [anon_sym_deal] = ACTIONS(460), - [anon_sym_tag] = ACTIONS(460), - [anon_sym_now] = ACTIONS(460), - [anon_sym_type] = ACTIONS(460), - [anon_sym_59] = ACTIONS(460), - [anon_sym_dump] = ACTIONS(460), - [anon_sym_regex] = ACTIONS(460), - [anon_sym_utf] = ACTIONS(460), - [anon_sym_rock] = ACTIONS(460), - [anon_sym_60] = ACTIONS(460), - [anon_sym_surface] = ACTIONS(460), - [anon_sym_TILDE] = ACTIONS(460), - [anon_sym_deep] = ACTIONS(460), - [anon_sym_de] = ACTIONS(458), - [anon_sym_61] = ACTIONS(460), - [anon_sym_abyss] = ACTIONS(460), - [anon_sym_ab] = ACTIONS(458), - [anon_sym_62] = ACTIONS(460), - [anon_sym_seabed] = ACTIONS(460), - [anon_sym_se] = ACTIONS(458), - [anon_sym_63] = ACTIONS(460), - [anon_sym_send] = ACTIONS(460), - [anon_sym_recv] = ACTIONS(460), - [anon_sym_tryrecv] = ACTIONS(460), - [anon_sym_reduce] = ACTIONS(460), - [anon_sym_SLASH] = ACTIONS(460), - [anon_sym_scan] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_each] = ACTIONS(460), - [anon_sym_64] = ACTIONS(460), - [anon_sym_rows] = ACTIONS(460), - [anon_sym_65] = ACTIONS(460), - [anon_sym_repeat] = ACTIONS(460), - [anon_sym_66] = ACTIONS(460), - [anon_sym_dip] = ACTIONS(460), - [anon_sym_di] = ACTIONS(458), - [anon_sym_67] = ACTIONS(460), - [anon_sym_gap] = ACTIONS(460), - [anon_sym_ga] = ACTIONS(458), - [anon_sym_68] = ACTIONS(460), - [anon_sym_oust] = ACTIONS(460), - [anon_sym_69] = ACTIONS(460), - [anon_sym_invert] = ACTIONS(460), - [anon_sym_70] = ACTIONS(460), - [anon_sym_spawn] = ACTIONS(460), - [anon_sym_pack] = ACTIONS(460), - [anon_sym_71] = ACTIONS(460), - [anon_sym_tribute] = ACTIONS(460), - [anon_sym_72] = ACTIONS(460), - [anon_sym_fold] = ACTIONS(460), - [anon_sym_73] = ACTIONS(460), - [anon_sym_distribute] = ACTIONS(460), - [anon_sym_74] = ACTIONS(460), - [anon_sym_table] = ACTIONS(460), - [anon_sym_75] = ACTIONS(460), - [anon_sym_cross] = ACTIONS(460), - [anon_sym_76] = ACTIONS(460), - [anon_sym_group] = ACTIONS(460), - [anon_sym_77] = ACTIONS(460), - [anon_sym_partition] = ACTIONS(460), - [anon_sym_78] = ACTIONS(460), - [anon_sym_both] = ACTIONS(460), - [anon_sym_79] = ACTIONS(460), - [anon_sym_bracket] = ACTIONS(460), - [anon_sym_80] = ACTIONS(460), - [anon_sym_fork] = ACTIONS(460), - [anon_sym_81] = ACTIONS(460), - [anon_sym_under] = ACTIONS(460), - [anon_sym_82] = ACTIONS(460), - [anon_sym_level] = ACTIONS(460), - [anon_sym_83] = ACTIONS(460), - [anon_sym_fill] = ACTIONS(460), - [anon_sym_84] = ACTIONS(460), - [anon_sym_bind] = ACTIONS(460), - [anon_sym_SQUOTE] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_try] = ACTIONS(458), - [anon_sym_85] = ACTIONS(460), - [anon_sym_combinate] = ACTIONS(460), - [anon_sym_86] = ACTIONS(460), - [anon_sym_87] = ACTIONS(460), - [anon_sym_88] = ACTIONS(460), - [anon_sym_89] = ACTIONS(460), - [anon_sym_90] = ACTIONS(460), - [anon_sym_91] = ACTIONS(460), - [anon_sym_92] = ACTIONS(460), - [anon_sym_93] = ACTIONS(460), + [aux_sym_number_token1] = ACTIONS(440), + [anon_sym_os] = ACTIONS(440), + [anon_sym_Family] = ACTIONS(440), + [anon_sym_Arch] = ACTIONS(440), + [anon_sym_ExeExt] = ACTIONS(440), + [anon_sym_PllExt] = ACTIONS(440), + [anon_sym_Sep] = ACTIONS(440), + [aux_sym_character_token1] = ACTIONS(442), + [sym_string] = ACTIONS(442), + [sym_multiLineString] = ACTIONS(442), + [anon_sym_PIPE] = ACTIONS(442), + [sym_identifier] = ACTIONS(440), + [sym_identifier_deprecated] = ACTIONS(440), + [sym_system] = ACTIONS(442), + [sym_comment] = ACTIONS(440), + [sym_openParen] = ACTIONS(442), + [sym_closeParen] = ACTIONS(442), + [sym_openCurly] = ACTIONS(442), + [sym_closeCurly] = ACTIONS(442), + [sym_openBracket] = ACTIONS(442), + [sym_closeBracket] = ACTIONS(442), + [sym_underscore] = ACTIONS(442), + [sym_leftArrow] = ACTIONS(442), + [anon_sym_CARET] = ACTIONS(442), + [anon_sym_eta] = ACTIONS(442), + [anon_sym_] = ACTIONS(440), + [anon_sym_pi] = ACTIONS(440), + [anon_sym_2] = ACTIONS(440), + [anon_sym_tau] = ACTIONS(442), + [anon_sym_3] = ACTIONS(440), + [anon_sym_infinity] = ACTIONS(442), + [anon_sym_4] = ACTIONS(442), + [anon_sym_e] = ACTIONS(440), + [anon_sym_NaN] = ACTIONS(440), + [anon_sym_NumProcs] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(442), + [anon_sym_COMMA] = ACTIONS(442), + [anon_sym_5] = ACTIONS(442), + [anon_sym_SEMI] = ACTIONS(442), + [anon_sym_identity] = ACTIONS(442), + [anon_sym_id] = ACTIONS(440), + [anon_sym_6] = ACTIONS(442), + [anon_sym_not] = ACTIONS(442), + [anon_sym_7] = ACTIONS(442), + [anon_sym_sign] = ACTIONS(442), + [anon_sym_8] = ACTIONS(442), + [anon_sym_BQUOTE] = ACTIONS(442), + [anon_sym_9] = ACTIONS(442), + [anon_sym_absolutevalue] = ACTIONS(442), + [anon_sym_10] = ACTIONS(442), + [anon_sym_sqrt] = ACTIONS(442), + [anon_sym_11] = ACTIONS(442), + [anon_sym_sine] = ACTIONS(442), + [anon_sym_12] = ACTIONS(442), + [anon_sym_floor] = ACTIONS(442), + [anon_sym_13] = ACTIONS(442), + [anon_sym_ceiling] = ACTIONS(442), + [anon_sym_14] = ACTIONS(442), + [anon_sym_round] = ACTIONS(442), + [anon_sym_15] = ACTIONS(442), + [anon_sym_EQ] = ACTIONS(442), + [anon_sym_BANG_EQ] = ACTIONS(442), + [anon_sym_16] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(440), + [anon_sym_LT_EQ] = ACTIONS(442), + [anon_sym_17] = ACTIONS(442), + [anon_sym_GT] = ACTIONS(440), + [anon_sym_GT_EQ] = ACTIONS(442), + [anon_sym_18] = ACTIONS(442), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_STAR] = ACTIONS(442), + [anon_sym_19] = ACTIONS(442), + [anon_sym_PERCENT] = ACTIONS(442), + [anon_sym_20] = ACTIONS(442), + [anon_sym_modulus] = ACTIONS(442), + [anon_sym_21] = ACTIONS(442), + [anon_sym_power] = ACTIONS(442), + [anon_sym_22] = ACTIONS(442), + [anon_sym_logarithm] = ACTIONS(442), + [anon_sym_23] = ACTIONS(442), + [anon_sym_minimum] = ACTIONS(442), + [anon_sym_24] = ACTIONS(442), + [anon_sym_maximum] = ACTIONS(442), + [anon_sym_25] = ACTIONS(442), + [anon_sym_atangent] = ACTIONS(442), + [anon_sym_26] = ACTIONS(442), + [anon_sym_length] = ACTIONS(442), + [anon_sym_27] = ACTIONS(442), + [anon_sym_shape] = ACTIONS(442), + [anon_sym_28] = ACTIONS(442), + [anon_sym_range] = ACTIONS(442), + [anon_sym_29] = ACTIONS(442), + [anon_sym_first] = ACTIONS(442), + [anon_sym_30] = ACTIONS(442), + [anon_sym_reverse] = ACTIONS(442), + [anon_sym_31] = ACTIONS(442), + [anon_sym_deshape] = ACTIONS(442), + [anon_sym_32] = ACTIONS(442), + [anon_sym_bits] = ACTIONS(442), + [anon_sym_33] = ACTIONS(442), + [anon_sym_transpose] = ACTIONS(442), + [anon_sym_34] = ACTIONS(442), + [anon_sym_rise] = ACTIONS(442), + [anon_sym_35] = ACTIONS(442), + [anon_sym_fall] = ACTIONS(442), + [anon_sym_36] = ACTIONS(442), + [anon_sym_where] = ACTIONS(442), + [anon_sym_37] = ACTIONS(442), + [anon_sym_classify] = ACTIONS(442), + [anon_sym_38] = ACTIONS(442), + [anon_sym_deduplicate] = ACTIONS(442), + [anon_sym_39] = ACTIONS(442), + [anon_sym_box] = ACTIONS(442), + [anon_sym_40] = ACTIONS(442), + [anon_sym_unbox] = ACTIONS(442), + [anon_sym_41] = ACTIONS(442), + [anon_sym_match] = ACTIONS(442), + [anon_sym_42] = ACTIONS(442), + [anon_sym_couple] = ACTIONS(442), + [anon_sym_43] = ACTIONS(442), + [anon_sym_join] = ACTIONS(442), + [anon_sym_44] = ACTIONS(442), + [anon_sym_select] = ACTIONS(442), + [anon_sym_45] = ACTIONS(442), + [anon_sym_pick] = ACTIONS(442), + [anon_sym_46] = ACTIONS(442), + [anon_sym_reshape] = ACTIONS(442), + [anon_sym_47] = ACTIONS(442), + [anon_sym_take] = ACTIONS(442), + [anon_sym_48] = ACTIONS(442), + [anon_sym_drop] = ACTIONS(442), + [anon_sym_49] = ACTIONS(442), + [anon_sym_rotate] = ACTIONS(442), + [anon_sym_50] = ACTIONS(442), + [anon_sym_windows] = ACTIONS(442), + [anon_sym_51] = ACTIONS(442), + [anon_sym_keep] = ACTIONS(442), + [anon_sym_52] = ACTIONS(442), + [anon_sym_find] = ACTIONS(442), + [anon_sym_53] = ACTIONS(442), + [anon_sym_member] = ACTIONS(442), + [anon_sym_54] = ACTIONS(442), + [anon_sym_indexof] = ACTIONS(442), + [anon_sym_55] = ACTIONS(442), + [anon_sym_assert] = ACTIONS(442), + [anon_sym_56] = ACTIONS(442), + [anon_sym_wait] = ACTIONS(442), + [anon_sym_break] = ACTIONS(442), + [anon_sym_57] = ACTIONS(442), + [anon_sym_parse] = ACTIONS(442), + [anon_sym_random] = ACTIONS(442), + [anon_sym_58] = ACTIONS(442), + [anon_sym_gen] = ACTIONS(442), + [anon_sym_deal] = ACTIONS(442), + [anon_sym_tag] = ACTIONS(442), + [anon_sym_now] = ACTIONS(442), + [anon_sym_type] = ACTIONS(442), + [anon_sym_59] = ACTIONS(442), + [anon_sym_dump] = ACTIONS(442), + [anon_sym_regex] = ACTIONS(442), + [anon_sym_utf] = ACTIONS(442), + [anon_sym_rock] = ACTIONS(442), + [anon_sym_60] = ACTIONS(442), + [anon_sym_surface] = ACTIONS(442), + [anon_sym_TILDE] = ACTIONS(442), + [anon_sym_deep] = ACTIONS(442), + [anon_sym_de] = ACTIONS(440), + [anon_sym_61] = ACTIONS(442), + [anon_sym_abyss] = ACTIONS(442), + [anon_sym_ab] = ACTIONS(440), + [anon_sym_62] = ACTIONS(442), + [anon_sym_seabed] = ACTIONS(442), + [anon_sym_se] = ACTIONS(440), + [anon_sym_63] = ACTIONS(442), + [anon_sym_send] = ACTIONS(442), + [anon_sym_recv] = ACTIONS(442), + [anon_sym_tryrecv] = ACTIONS(442), + [anon_sym_reduce] = ACTIONS(442), + [anon_sym_SLASH] = ACTIONS(442), + [anon_sym_scan] = ACTIONS(442), + [anon_sym_BSLASH] = ACTIONS(442), + [anon_sym_each] = ACTIONS(442), + [anon_sym_64] = ACTIONS(442), + [anon_sym_rows] = ACTIONS(442), + [anon_sym_65] = ACTIONS(442), + [anon_sym_repeat] = ACTIONS(442), + [anon_sym_66] = ACTIONS(442), + [anon_sym_dip] = ACTIONS(442), + [anon_sym_67] = ACTIONS(442), + [anon_sym_gap] = ACTIONS(442), + [anon_sym_68] = ACTIONS(442), + [anon_sym_69] = ACTIONS(442), + [anon_sym_invert] = ACTIONS(442), + [anon_sym_70] = ACTIONS(442), + [anon_sym_spawn] = ACTIONS(442), + [anon_sym_pack] = ACTIONS(442), + [anon_sym_71] = ACTIONS(442), + [anon_sym_tribute] = ACTIONS(442), + [anon_sym_72] = ACTIONS(442), + [anon_sym_reach] = ACTIONS(442), + [anon_sym_fold] = ACTIONS(442), + [anon_sym_73] = ACTIONS(442), + [anon_sym_distribute] = ACTIONS(442), + [anon_sym_74] = ACTIONS(442), + [anon_sym_table] = ACTIONS(442), + [anon_sym_75] = ACTIONS(442), + [anon_sym_cross] = ACTIONS(442), + [anon_sym_76] = ACTIONS(442), + [anon_sym_group] = ACTIONS(442), + [anon_sym_77] = ACTIONS(442), + [anon_sym_partition] = ACTIONS(442), + [anon_sym_78] = ACTIONS(442), + [anon_sym_both] = ACTIONS(442), + [anon_sym_79] = ACTIONS(442), + [anon_sym_bracket] = ACTIONS(442), + [anon_sym_80] = ACTIONS(442), + [anon_sym_fork] = ACTIONS(442), + [anon_sym_81] = ACTIONS(442), + [anon_sym_under] = ACTIONS(442), + [anon_sym_82] = ACTIONS(442), + [anon_sym_level] = ACTIONS(442), + [anon_sym_83] = ACTIONS(442), + [anon_sym_fill] = ACTIONS(442), + [anon_sym_84] = ACTIONS(442), + [anon_sym_bind] = ACTIONS(442), + [anon_sym_SQUOTE] = ACTIONS(442), + [anon_sym_QMARK] = ACTIONS(442), + [anon_sym_try] = ACTIONS(440), + [anon_sym_85] = ACTIONS(442), + [anon_sym_combinate] = ACTIONS(442), + [anon_sym_86] = ACTIONS(442), + [anon_sym_87] = ACTIONS(442), + [anon_sym_88] = ACTIONS(442), + [anon_sym_89] = ACTIONS(442), + [anon_sym_90] = ACTIONS(442), + [anon_sym_91] = ACTIONS(442), + [anon_sym_92] = ACTIONS(442), + [anon_sym_93] = ACTIONS(442), [sym__whitespace] = ACTIONS(5), - [sym__end_of_line] = ACTIONS(460), + [sym__end_of_line] = ACTIONS(442), }, [68] = { - [aux_sym_number_token1] = ACTIONS(462), - [anon_sym_os] = ACTIONS(462), - [anon_sym_Family] = ACTIONS(462), - [anon_sym_Arch] = ACTIONS(462), - [anon_sym_ExeExt] = ACTIONS(462), - [anon_sym_PllExt] = ACTIONS(462), - [anon_sym_Sep] = ACTIONS(462), - [aux_sym_character_token1] = ACTIONS(464), - [sym_string] = ACTIONS(464), - [sym_multiLineString] = ACTIONS(464), - [anon_sym_PIPE] = ACTIONS(464), - [sym_identifier] = ACTIONS(462), - [sym_identifier_deprecated] = ACTIONS(462), - [sym_system] = ACTIONS(464), - [sym_comment] = ACTIONS(462), - [sym_openParen] = ACTIONS(464), - [sym_closeParen] = ACTIONS(464), - [sym_openCurly] = ACTIONS(464), - [sym_closeCurly] = ACTIONS(464), - [sym_openBracket] = ACTIONS(464), - [sym_closeBracket] = ACTIONS(464), - [sym_underscore] = ACTIONS(464), - [sym_leftArrow] = ACTIONS(464), - [anon_sym_CARET] = ACTIONS(464), - [anon_sym_eta] = ACTIONS(464), - [anon_sym_] = ACTIONS(462), - [anon_sym_pi] = ACTIONS(462), - [anon_sym_2] = ACTIONS(462), - [anon_sym_tau] = ACTIONS(464), - [anon_sym_3] = ACTIONS(462), - [anon_sym_infinity] = ACTIONS(464), - [anon_sym_4] = ACTIONS(464), - [anon_sym_e] = ACTIONS(462), - [anon_sym_NaN] = ACTIONS(462), - [anon_sym_NumProcs] = ACTIONS(462), - [anon_sym_DOT] = ACTIONS(464), - [anon_sym_COMMA] = ACTIONS(464), - [anon_sym_5] = ACTIONS(464), - [anon_sym_SEMI] = ACTIONS(464), - [anon_sym_identity] = ACTIONS(464), - [anon_sym_id] = ACTIONS(462), - [anon_sym_6] = ACTIONS(464), - [anon_sym_not] = ACTIONS(464), - [anon_sym_7] = ACTIONS(464), - [anon_sym_sign] = ACTIONS(464), - [anon_sym_8] = ACTIONS(464), - [anon_sym_BQUOTE] = ACTIONS(464), - [anon_sym_9] = ACTIONS(464), - [anon_sym_absolutevalue] = ACTIONS(464), - [anon_sym_10] = ACTIONS(464), - [anon_sym_sqrt] = ACTIONS(464), - [anon_sym_11] = ACTIONS(464), - [anon_sym_sine] = ACTIONS(464), - [anon_sym_12] = ACTIONS(464), - [anon_sym_floor] = ACTIONS(464), - [anon_sym_13] = ACTIONS(464), - [anon_sym_ceiling] = ACTIONS(464), - [anon_sym_14] = ACTIONS(464), - [anon_sym_round] = ACTIONS(464), - [anon_sym_15] = ACTIONS(464), - [anon_sym_EQ] = ACTIONS(464), - [anon_sym_BANG_EQ] = ACTIONS(464), - [anon_sym_16] = ACTIONS(464), - [anon_sym_LT] = ACTIONS(462), - [anon_sym_LT_EQ] = ACTIONS(464), - [anon_sym_17] = ACTIONS(464), - [anon_sym_GT] = ACTIONS(462), - [anon_sym_GT_EQ] = ACTIONS(464), - [anon_sym_18] = ACTIONS(464), - [anon_sym_PLUS] = ACTIONS(464), - [anon_sym_DASH] = ACTIONS(464), - [anon_sym_STAR] = ACTIONS(464), - [anon_sym_19] = ACTIONS(464), - [anon_sym_PERCENT] = ACTIONS(464), - [anon_sym_20] = ACTIONS(464), - [anon_sym_modulus] = ACTIONS(464), - [anon_sym_21] = ACTIONS(464), - [anon_sym_power] = ACTIONS(464), - [anon_sym_22] = ACTIONS(464), - [anon_sym_logarithm] = ACTIONS(464), - [anon_sym_23] = ACTIONS(464), - [anon_sym_minimum] = ACTIONS(464), - [anon_sym_24] = ACTIONS(464), - [anon_sym_maximum] = ACTIONS(464), - [anon_sym_25] = ACTIONS(464), - [anon_sym_atangent] = ACTIONS(464), - [anon_sym_26] = ACTIONS(464), - [anon_sym_length] = ACTIONS(464), - [anon_sym_27] = ACTIONS(464), - [anon_sym_shape] = ACTIONS(464), - [anon_sym_28] = ACTIONS(464), - [anon_sym_range] = ACTIONS(464), - [anon_sym_29] = ACTIONS(464), - [anon_sym_first] = ACTIONS(464), - [anon_sym_30] = ACTIONS(464), - [anon_sym_reverse] = ACTIONS(464), - [anon_sym_31] = ACTIONS(464), - [anon_sym_deshape] = ACTIONS(464), - [anon_sym_32] = ACTIONS(464), - [anon_sym_bits] = ACTIONS(464), - [anon_sym_33] = ACTIONS(464), - [anon_sym_transpose] = ACTIONS(464), - [anon_sym_34] = ACTIONS(464), - [anon_sym_rise] = ACTIONS(464), - [anon_sym_35] = ACTIONS(464), - [anon_sym_fall] = ACTIONS(464), - [anon_sym_36] = ACTIONS(464), - [anon_sym_where] = ACTIONS(464), - [anon_sym_37] = ACTIONS(464), - [anon_sym_classify] = ACTIONS(464), - [anon_sym_38] = ACTIONS(464), - [anon_sym_deduplicate] = ACTIONS(464), - [anon_sym_39] = ACTIONS(464), - [anon_sym_box] = ACTIONS(464), - [anon_sym_40] = ACTIONS(464), - [anon_sym_unbox] = ACTIONS(464), - [anon_sym_41] = ACTIONS(464), - [anon_sym_match] = ACTIONS(464), - [anon_sym_42] = ACTIONS(464), - [anon_sym_couple] = ACTIONS(464), - [anon_sym_43] = ACTIONS(464), - [anon_sym_join] = ACTIONS(464), - [anon_sym_44] = ACTIONS(464), - [anon_sym_select] = ACTIONS(464), - [anon_sym_45] = ACTIONS(464), - [anon_sym_pick] = ACTIONS(464), - [anon_sym_46] = ACTIONS(464), - [anon_sym_reshape] = ACTIONS(464), - [anon_sym_47] = ACTIONS(464), - [anon_sym_take] = ACTIONS(464), - [anon_sym_48] = ACTIONS(464), - [anon_sym_drop] = ACTIONS(464), - [anon_sym_49] = ACTIONS(464), - [anon_sym_rotate] = ACTIONS(464), - [anon_sym_50] = ACTIONS(464), - [anon_sym_windows] = ACTIONS(464), - [anon_sym_51] = ACTIONS(464), - [anon_sym_keep] = ACTIONS(464), - [anon_sym_52] = ACTIONS(464), - [anon_sym_find] = ACTIONS(464), - [anon_sym_53] = ACTIONS(464), - [anon_sym_member] = ACTIONS(464), - [anon_sym_54] = ACTIONS(464), - [anon_sym_indexof] = ACTIONS(464), - [anon_sym_55] = ACTIONS(464), - [anon_sym_assert] = ACTIONS(464), - [anon_sym_56] = ACTIONS(464), - [anon_sym_wait] = ACTIONS(464), - [anon_sym_break] = ACTIONS(464), - [anon_sym_57] = ACTIONS(464), - [anon_sym_parse] = ACTIONS(464), - [anon_sym_random] = ACTIONS(464), - [anon_sym_58] = ACTIONS(464), - [anon_sym_gen] = ACTIONS(464), - [anon_sym_deal] = ACTIONS(464), - [anon_sym_tag] = ACTIONS(464), - [anon_sym_now] = ACTIONS(464), - [anon_sym_type] = ACTIONS(464), - [anon_sym_59] = ACTIONS(464), - [anon_sym_dump] = ACTIONS(464), - [anon_sym_regex] = ACTIONS(464), - [anon_sym_utf] = ACTIONS(464), - [anon_sym_rock] = ACTIONS(464), - [anon_sym_60] = ACTIONS(464), - [anon_sym_surface] = ACTIONS(464), - [anon_sym_TILDE] = ACTIONS(464), - [anon_sym_deep] = ACTIONS(464), - [anon_sym_de] = ACTIONS(462), - [anon_sym_61] = ACTIONS(464), - [anon_sym_abyss] = ACTIONS(464), - [anon_sym_ab] = ACTIONS(462), - [anon_sym_62] = ACTIONS(464), - [anon_sym_seabed] = ACTIONS(464), - [anon_sym_se] = ACTIONS(462), - [anon_sym_63] = ACTIONS(464), - [anon_sym_send] = ACTIONS(464), - [anon_sym_recv] = ACTIONS(464), - [anon_sym_tryrecv] = ACTIONS(464), - [anon_sym_reduce] = ACTIONS(464), - [anon_sym_SLASH] = ACTIONS(464), - [anon_sym_scan] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(464), - [anon_sym_each] = ACTIONS(464), - [anon_sym_64] = ACTIONS(464), - [anon_sym_rows] = ACTIONS(464), - [anon_sym_65] = ACTIONS(464), - [anon_sym_repeat] = ACTIONS(464), - [anon_sym_66] = ACTIONS(464), - [anon_sym_dip] = ACTIONS(464), - [anon_sym_di] = ACTIONS(462), - [anon_sym_67] = ACTIONS(464), - [anon_sym_gap] = ACTIONS(464), - [anon_sym_ga] = ACTIONS(462), - [anon_sym_68] = ACTIONS(464), - [anon_sym_oust] = ACTIONS(464), - [anon_sym_69] = ACTIONS(464), - [anon_sym_invert] = ACTIONS(464), - [anon_sym_70] = ACTIONS(464), - [anon_sym_spawn] = ACTIONS(464), - [anon_sym_pack] = ACTIONS(464), - [anon_sym_71] = ACTIONS(464), - [anon_sym_tribute] = ACTIONS(464), - [anon_sym_72] = ACTIONS(464), - [anon_sym_fold] = ACTIONS(464), - [anon_sym_73] = ACTIONS(464), - [anon_sym_distribute] = ACTIONS(464), - [anon_sym_74] = ACTIONS(464), - [anon_sym_table] = ACTIONS(464), - [anon_sym_75] = ACTIONS(464), - [anon_sym_cross] = ACTIONS(464), - [anon_sym_76] = ACTIONS(464), - [anon_sym_group] = ACTIONS(464), - [anon_sym_77] = ACTIONS(464), - [anon_sym_partition] = ACTIONS(464), - [anon_sym_78] = ACTIONS(464), - [anon_sym_both] = ACTIONS(464), - [anon_sym_79] = ACTIONS(464), - [anon_sym_bracket] = ACTIONS(464), - [anon_sym_80] = ACTIONS(464), - [anon_sym_fork] = ACTIONS(464), - [anon_sym_81] = ACTIONS(464), - [anon_sym_under] = ACTIONS(464), - [anon_sym_82] = ACTIONS(464), - [anon_sym_level] = ACTIONS(464), - [anon_sym_83] = ACTIONS(464), - [anon_sym_fill] = ACTIONS(464), - [anon_sym_84] = ACTIONS(464), - [anon_sym_bind] = ACTIONS(464), - [anon_sym_SQUOTE] = ACTIONS(464), - [anon_sym_QMARK] = ACTIONS(464), - [anon_sym_try] = ACTIONS(462), - [anon_sym_85] = ACTIONS(464), - [anon_sym_combinate] = ACTIONS(464), - [anon_sym_86] = ACTIONS(464), - [anon_sym_87] = ACTIONS(464), - [anon_sym_88] = ACTIONS(464), - [anon_sym_89] = ACTIONS(464), - [anon_sym_90] = ACTIONS(464), - [anon_sym_91] = ACTIONS(464), - [anon_sym_92] = ACTIONS(464), - [anon_sym_93] = ACTIONS(464), + [aux_sym_number_token1] = ACTIONS(444), + [anon_sym_os] = ACTIONS(444), + [anon_sym_Family] = ACTIONS(444), + [anon_sym_Arch] = ACTIONS(444), + [anon_sym_ExeExt] = ACTIONS(444), + [anon_sym_PllExt] = ACTIONS(444), + [anon_sym_Sep] = ACTIONS(444), + [aux_sym_character_token1] = ACTIONS(446), + [sym_string] = ACTIONS(446), + [sym_multiLineString] = ACTIONS(446), + [anon_sym_PIPE] = ACTIONS(446), + [sym_identifier] = ACTIONS(444), + [sym_identifier_deprecated] = ACTIONS(444), + [sym_system] = ACTIONS(446), + [sym_comment] = ACTIONS(444), + [sym_openParen] = ACTIONS(446), + [sym_closeParen] = ACTIONS(446), + [sym_openCurly] = ACTIONS(446), + [sym_closeCurly] = ACTIONS(446), + [sym_openBracket] = ACTIONS(446), + [sym_closeBracket] = ACTIONS(446), + [sym_underscore] = ACTIONS(446), + [sym_leftArrow] = ACTIONS(446), + [anon_sym_CARET] = ACTIONS(446), + [anon_sym_eta] = ACTIONS(446), + [anon_sym_] = ACTIONS(444), + [anon_sym_pi] = ACTIONS(444), + [anon_sym_2] = ACTIONS(444), + [anon_sym_tau] = ACTIONS(446), + [anon_sym_3] = ACTIONS(444), + [anon_sym_infinity] = ACTIONS(446), + [anon_sym_4] = ACTIONS(446), + [anon_sym_e] = ACTIONS(444), + [anon_sym_NaN] = ACTIONS(444), + [anon_sym_NumProcs] = ACTIONS(444), + [anon_sym_DOT] = ACTIONS(446), + [anon_sym_COMMA] = ACTIONS(446), + [anon_sym_5] = ACTIONS(446), + [anon_sym_SEMI] = ACTIONS(446), + [anon_sym_identity] = ACTIONS(446), + [anon_sym_id] = ACTIONS(444), + [anon_sym_6] = ACTIONS(446), + [anon_sym_not] = ACTIONS(446), + [anon_sym_7] = ACTIONS(446), + [anon_sym_sign] = ACTIONS(446), + [anon_sym_8] = ACTIONS(446), + [anon_sym_BQUOTE] = ACTIONS(446), + [anon_sym_9] = ACTIONS(446), + [anon_sym_absolutevalue] = ACTIONS(446), + [anon_sym_10] = ACTIONS(446), + [anon_sym_sqrt] = ACTIONS(446), + [anon_sym_11] = ACTIONS(446), + [anon_sym_sine] = ACTIONS(446), + [anon_sym_12] = ACTIONS(446), + [anon_sym_floor] = ACTIONS(446), + [anon_sym_13] = ACTIONS(446), + [anon_sym_ceiling] = ACTIONS(446), + [anon_sym_14] = ACTIONS(446), + [anon_sym_round] = ACTIONS(446), + [anon_sym_15] = ACTIONS(446), + [anon_sym_EQ] = ACTIONS(446), + [anon_sym_BANG_EQ] = ACTIONS(446), + [anon_sym_16] = ACTIONS(446), + [anon_sym_LT] = ACTIONS(444), + [anon_sym_LT_EQ] = ACTIONS(446), + [anon_sym_17] = ACTIONS(446), + [anon_sym_GT] = ACTIONS(444), + [anon_sym_GT_EQ] = ACTIONS(446), + [anon_sym_18] = ACTIONS(446), + [anon_sym_PLUS] = ACTIONS(446), + [anon_sym_DASH] = ACTIONS(446), + [anon_sym_STAR] = ACTIONS(446), + [anon_sym_19] = ACTIONS(446), + [anon_sym_PERCENT] = ACTIONS(446), + [anon_sym_20] = ACTIONS(446), + [anon_sym_modulus] = ACTIONS(446), + [anon_sym_21] = ACTIONS(446), + [anon_sym_power] = ACTIONS(446), + [anon_sym_22] = ACTIONS(446), + [anon_sym_logarithm] = ACTIONS(446), + [anon_sym_23] = ACTIONS(446), + [anon_sym_minimum] = ACTIONS(446), + [anon_sym_24] = ACTIONS(446), + [anon_sym_maximum] = ACTIONS(446), + [anon_sym_25] = ACTIONS(446), + [anon_sym_atangent] = ACTIONS(446), + [anon_sym_26] = ACTIONS(446), + [anon_sym_length] = ACTIONS(446), + [anon_sym_27] = ACTIONS(446), + [anon_sym_shape] = ACTIONS(446), + [anon_sym_28] = ACTIONS(446), + [anon_sym_range] = ACTIONS(446), + [anon_sym_29] = ACTIONS(446), + [anon_sym_first] = ACTIONS(446), + [anon_sym_30] = ACTIONS(446), + [anon_sym_reverse] = ACTIONS(446), + [anon_sym_31] = ACTIONS(446), + [anon_sym_deshape] = ACTIONS(446), + [anon_sym_32] = ACTIONS(446), + [anon_sym_bits] = ACTIONS(446), + [anon_sym_33] = ACTIONS(446), + [anon_sym_transpose] = ACTIONS(446), + [anon_sym_34] = ACTIONS(446), + [anon_sym_rise] = ACTIONS(446), + [anon_sym_35] = ACTIONS(446), + [anon_sym_fall] = ACTIONS(446), + [anon_sym_36] = ACTIONS(446), + [anon_sym_where] = ACTIONS(446), + [anon_sym_37] = ACTIONS(446), + [anon_sym_classify] = ACTIONS(446), + [anon_sym_38] = ACTIONS(446), + [anon_sym_deduplicate] = ACTIONS(446), + [anon_sym_39] = ACTIONS(446), + [anon_sym_box] = ACTIONS(446), + [anon_sym_40] = ACTIONS(446), + [anon_sym_unbox] = ACTIONS(446), + [anon_sym_41] = ACTIONS(446), + [anon_sym_match] = ACTIONS(446), + [anon_sym_42] = ACTIONS(446), + [anon_sym_couple] = ACTIONS(446), + [anon_sym_43] = ACTIONS(446), + [anon_sym_join] = ACTIONS(446), + [anon_sym_44] = ACTIONS(446), + [anon_sym_select] = ACTIONS(446), + [anon_sym_45] = ACTIONS(446), + [anon_sym_pick] = ACTIONS(446), + [anon_sym_46] = ACTIONS(446), + [anon_sym_reshape] = ACTIONS(446), + [anon_sym_47] = ACTIONS(446), + [anon_sym_take] = ACTIONS(446), + [anon_sym_48] = ACTIONS(446), + [anon_sym_drop] = ACTIONS(446), + [anon_sym_49] = ACTIONS(446), + [anon_sym_rotate] = ACTIONS(446), + [anon_sym_50] = ACTIONS(446), + [anon_sym_windows] = ACTIONS(446), + [anon_sym_51] = ACTIONS(446), + [anon_sym_keep] = ACTIONS(446), + [anon_sym_52] = ACTIONS(446), + [anon_sym_find] = ACTIONS(446), + [anon_sym_53] = ACTIONS(446), + [anon_sym_member] = ACTIONS(446), + [anon_sym_54] = ACTIONS(446), + [anon_sym_indexof] = ACTIONS(446), + [anon_sym_55] = ACTIONS(446), + [anon_sym_assert] = ACTIONS(446), + [anon_sym_56] = ACTIONS(446), + [anon_sym_wait] = ACTIONS(446), + [anon_sym_break] = ACTIONS(446), + [anon_sym_57] = ACTIONS(446), + [anon_sym_parse] = ACTIONS(446), + [anon_sym_random] = ACTIONS(446), + [anon_sym_58] = ACTIONS(446), + [anon_sym_gen] = ACTIONS(446), + [anon_sym_deal] = ACTIONS(446), + [anon_sym_tag] = ACTIONS(446), + [anon_sym_now] = ACTIONS(446), + [anon_sym_type] = ACTIONS(446), + [anon_sym_59] = ACTIONS(446), + [anon_sym_dump] = ACTIONS(446), + [anon_sym_regex] = ACTIONS(446), + [anon_sym_utf] = ACTIONS(446), + [anon_sym_rock] = ACTIONS(446), + [anon_sym_60] = ACTIONS(446), + [anon_sym_surface] = ACTIONS(446), + [anon_sym_TILDE] = ACTIONS(446), + [anon_sym_deep] = ACTIONS(446), + [anon_sym_de] = ACTIONS(444), + [anon_sym_61] = ACTIONS(446), + [anon_sym_abyss] = ACTIONS(446), + [anon_sym_ab] = ACTIONS(444), + [anon_sym_62] = ACTIONS(446), + [anon_sym_seabed] = ACTIONS(446), + [anon_sym_se] = ACTIONS(444), + [anon_sym_63] = ACTIONS(446), + [anon_sym_send] = ACTIONS(446), + [anon_sym_recv] = ACTIONS(446), + [anon_sym_tryrecv] = ACTIONS(446), + [anon_sym_reduce] = ACTIONS(446), + [anon_sym_SLASH] = ACTIONS(446), + [anon_sym_scan] = ACTIONS(446), + [anon_sym_BSLASH] = ACTIONS(446), + [anon_sym_each] = ACTIONS(446), + [anon_sym_64] = ACTIONS(446), + [anon_sym_rows] = ACTIONS(446), + [anon_sym_65] = ACTIONS(446), + [anon_sym_repeat] = ACTIONS(446), + [anon_sym_66] = ACTIONS(446), + [anon_sym_dip] = ACTIONS(446), + [anon_sym_67] = ACTIONS(446), + [anon_sym_gap] = ACTIONS(446), + [anon_sym_68] = ACTIONS(446), + [anon_sym_69] = ACTIONS(446), + [anon_sym_invert] = ACTIONS(446), + [anon_sym_70] = ACTIONS(446), + [anon_sym_spawn] = ACTIONS(446), + [anon_sym_pack] = ACTIONS(446), + [anon_sym_71] = ACTIONS(446), + [anon_sym_tribute] = ACTIONS(446), + [anon_sym_72] = ACTIONS(446), + [anon_sym_reach] = ACTIONS(446), + [anon_sym_fold] = ACTIONS(446), + [anon_sym_73] = ACTIONS(446), + [anon_sym_distribute] = ACTIONS(446), + [anon_sym_74] = ACTIONS(446), + [anon_sym_table] = ACTIONS(446), + [anon_sym_75] = ACTIONS(446), + [anon_sym_cross] = ACTIONS(446), + [anon_sym_76] = ACTIONS(446), + [anon_sym_group] = ACTIONS(446), + [anon_sym_77] = ACTIONS(446), + [anon_sym_partition] = ACTIONS(446), + [anon_sym_78] = ACTIONS(446), + [anon_sym_both] = ACTIONS(446), + [anon_sym_79] = ACTIONS(446), + [anon_sym_bracket] = ACTIONS(446), + [anon_sym_80] = ACTIONS(446), + [anon_sym_fork] = ACTIONS(446), + [anon_sym_81] = ACTIONS(446), + [anon_sym_under] = ACTIONS(446), + [anon_sym_82] = ACTIONS(446), + [anon_sym_level] = ACTIONS(446), + [anon_sym_83] = ACTIONS(446), + [anon_sym_fill] = ACTIONS(446), + [anon_sym_84] = ACTIONS(446), + [anon_sym_bind] = ACTIONS(446), + [anon_sym_SQUOTE] = ACTIONS(446), + [anon_sym_QMARK] = ACTIONS(446), + [anon_sym_try] = ACTIONS(444), + [anon_sym_85] = ACTIONS(446), + [anon_sym_combinate] = ACTIONS(446), + [anon_sym_86] = ACTIONS(446), + [anon_sym_87] = ACTIONS(446), + [anon_sym_88] = ACTIONS(446), + [anon_sym_89] = ACTIONS(446), + [anon_sym_90] = ACTIONS(446), + [anon_sym_91] = ACTIONS(446), + [anon_sym_92] = ACTIONS(446), + [anon_sym_93] = ACTIONS(446), [sym__whitespace] = ACTIONS(5), - [sym__end_of_line] = ACTIONS(464), + [sym__end_of_line] = ACTIONS(446), }, [69] = { - [aux_sym_number_token1] = ACTIONS(438), - [anon_sym_os] = ACTIONS(438), - [anon_sym_Family] = ACTIONS(438), - [anon_sym_Arch] = ACTIONS(438), - [anon_sym_ExeExt] = ACTIONS(438), - [anon_sym_PllExt] = ACTIONS(438), - [anon_sym_Sep] = ACTIONS(438), - [aux_sym_character_token1] = ACTIONS(440), - [sym_string] = ACTIONS(440), - [sym_multiLineString] = ACTIONS(440), - [anon_sym_PIPE] = ACTIONS(440), - [sym_identifier] = ACTIONS(438), - [sym_identifier_deprecated] = ACTIONS(438), - [sym_system] = ACTIONS(440), - [sym_comment] = ACTIONS(438), - [sym_openParen] = ACTIONS(440), - [sym_closeParen] = ACTIONS(440), - [sym_openCurly] = ACTIONS(440), - [sym_closeCurly] = ACTIONS(440), - [sym_openBracket] = ACTIONS(440), - [sym_closeBracket] = ACTIONS(440), - [sym_underscore] = ACTIONS(440), - [sym_leftArrow] = ACTIONS(440), - [anon_sym_CARET] = ACTIONS(440), - [anon_sym_eta] = ACTIONS(440), - [anon_sym_] = ACTIONS(438), - [anon_sym_pi] = ACTIONS(438), - [anon_sym_2] = ACTIONS(438), - [anon_sym_tau] = ACTIONS(440), - [anon_sym_3] = ACTIONS(438), - [anon_sym_infinity] = ACTIONS(440), - [anon_sym_4] = ACTIONS(440), - [anon_sym_e] = ACTIONS(438), - [anon_sym_NaN] = ACTIONS(438), - [anon_sym_NumProcs] = ACTIONS(438), - [anon_sym_DOT] = ACTIONS(440), - [anon_sym_COMMA] = ACTIONS(440), - [anon_sym_5] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(440), - [anon_sym_identity] = ACTIONS(440), - [anon_sym_id] = ACTIONS(438), - [anon_sym_6] = ACTIONS(440), - [anon_sym_not] = ACTIONS(440), - [anon_sym_7] = ACTIONS(440), - [anon_sym_sign] = ACTIONS(440), - [anon_sym_8] = ACTIONS(440), - [anon_sym_BQUOTE] = ACTIONS(440), - [anon_sym_9] = ACTIONS(440), - [anon_sym_absolutevalue] = ACTIONS(440), - [anon_sym_10] = ACTIONS(440), - [anon_sym_sqrt] = ACTIONS(440), - [anon_sym_11] = ACTIONS(440), - [anon_sym_sine] = ACTIONS(440), - [anon_sym_12] = ACTIONS(440), - [anon_sym_floor] = ACTIONS(440), - [anon_sym_13] = ACTIONS(440), - [anon_sym_ceiling] = ACTIONS(440), - [anon_sym_14] = ACTIONS(440), - [anon_sym_round] = ACTIONS(440), - [anon_sym_15] = ACTIONS(440), - [anon_sym_EQ] = ACTIONS(440), - [anon_sym_BANG_EQ] = ACTIONS(440), - [anon_sym_16] = ACTIONS(440), - [anon_sym_LT] = ACTIONS(438), - [anon_sym_LT_EQ] = ACTIONS(440), - [anon_sym_17] = ACTIONS(440), - [anon_sym_GT] = ACTIONS(438), - [anon_sym_GT_EQ] = ACTIONS(440), - [anon_sym_18] = ACTIONS(440), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_STAR] = ACTIONS(440), - [anon_sym_19] = ACTIONS(440), - [anon_sym_PERCENT] = ACTIONS(440), - [anon_sym_20] = ACTIONS(440), - [anon_sym_modulus] = ACTIONS(440), - [anon_sym_21] = ACTIONS(440), - [anon_sym_power] = ACTIONS(440), - [anon_sym_22] = ACTIONS(440), - [anon_sym_logarithm] = ACTIONS(440), - [anon_sym_23] = ACTIONS(440), - [anon_sym_minimum] = ACTIONS(440), - [anon_sym_24] = ACTIONS(440), - [anon_sym_maximum] = ACTIONS(440), - [anon_sym_25] = ACTIONS(440), - [anon_sym_atangent] = ACTIONS(440), - [anon_sym_26] = ACTIONS(440), - [anon_sym_length] = ACTIONS(440), - [anon_sym_27] = ACTIONS(440), - [anon_sym_shape] = ACTIONS(440), - [anon_sym_28] = ACTIONS(440), - [anon_sym_range] = ACTIONS(440), - [anon_sym_29] = ACTIONS(440), - [anon_sym_first] = ACTIONS(440), - [anon_sym_30] = ACTIONS(440), - [anon_sym_reverse] = ACTIONS(440), - [anon_sym_31] = ACTIONS(440), - [anon_sym_deshape] = ACTIONS(440), - [anon_sym_32] = ACTIONS(440), - [anon_sym_bits] = ACTIONS(440), - [anon_sym_33] = ACTIONS(440), - [anon_sym_transpose] = ACTIONS(440), - [anon_sym_34] = ACTIONS(440), - [anon_sym_rise] = ACTIONS(440), - [anon_sym_35] = ACTIONS(440), - [anon_sym_fall] = ACTIONS(440), - [anon_sym_36] = ACTIONS(440), - [anon_sym_where] = ACTIONS(440), - [anon_sym_37] = ACTIONS(440), - [anon_sym_classify] = ACTIONS(440), - [anon_sym_38] = ACTIONS(440), - [anon_sym_deduplicate] = ACTIONS(440), - [anon_sym_39] = ACTIONS(440), - [anon_sym_box] = ACTIONS(440), - [anon_sym_40] = ACTIONS(440), - [anon_sym_unbox] = ACTIONS(440), - [anon_sym_41] = ACTIONS(440), - [anon_sym_match] = ACTIONS(440), - [anon_sym_42] = ACTIONS(440), - [anon_sym_couple] = ACTIONS(440), - [anon_sym_43] = ACTIONS(440), - [anon_sym_join] = ACTIONS(440), - [anon_sym_44] = ACTIONS(440), - [anon_sym_select] = ACTIONS(440), - [anon_sym_45] = ACTIONS(440), - [anon_sym_pick] = ACTIONS(440), - [anon_sym_46] = ACTIONS(440), - [anon_sym_reshape] = ACTIONS(440), - [anon_sym_47] = ACTIONS(440), - [anon_sym_take] = ACTIONS(440), - [anon_sym_48] = ACTIONS(440), - [anon_sym_drop] = ACTIONS(440), - [anon_sym_49] = ACTIONS(440), - [anon_sym_rotate] = ACTIONS(440), - [anon_sym_50] = ACTIONS(440), - [anon_sym_windows] = ACTIONS(440), - [anon_sym_51] = ACTIONS(440), - [anon_sym_keep] = ACTIONS(440), - [anon_sym_52] = ACTIONS(440), - [anon_sym_find] = ACTIONS(440), - [anon_sym_53] = ACTIONS(440), - [anon_sym_member] = ACTIONS(440), - [anon_sym_54] = ACTIONS(440), - [anon_sym_indexof] = ACTIONS(440), - [anon_sym_55] = ACTIONS(440), - [anon_sym_assert] = ACTIONS(440), - [anon_sym_56] = ACTIONS(440), - [anon_sym_wait] = ACTIONS(440), - [anon_sym_break] = ACTIONS(440), - [anon_sym_57] = ACTIONS(440), - [anon_sym_parse] = ACTIONS(440), - [anon_sym_random] = ACTIONS(440), - [anon_sym_58] = ACTIONS(440), - [anon_sym_gen] = ACTIONS(440), - [anon_sym_deal] = ACTIONS(440), - [anon_sym_tag] = ACTIONS(440), - [anon_sym_now] = ACTIONS(440), - [anon_sym_type] = ACTIONS(440), - [anon_sym_59] = ACTIONS(440), - [anon_sym_dump] = ACTIONS(440), - [anon_sym_regex] = ACTIONS(440), - [anon_sym_utf] = ACTIONS(440), - [anon_sym_rock] = ACTIONS(440), - [anon_sym_60] = ACTIONS(440), - [anon_sym_surface] = ACTIONS(440), - [anon_sym_TILDE] = ACTIONS(440), - [anon_sym_deep] = ACTIONS(440), - [anon_sym_de] = ACTIONS(438), - [anon_sym_61] = ACTIONS(440), - [anon_sym_abyss] = ACTIONS(440), - [anon_sym_ab] = ACTIONS(438), - [anon_sym_62] = ACTIONS(440), - [anon_sym_seabed] = ACTIONS(440), - [anon_sym_se] = ACTIONS(438), - [anon_sym_63] = ACTIONS(440), - [anon_sym_send] = ACTIONS(440), - [anon_sym_recv] = ACTIONS(440), - [anon_sym_tryrecv] = ACTIONS(440), - [anon_sym_reduce] = ACTIONS(440), - [anon_sym_SLASH] = ACTIONS(440), - [anon_sym_scan] = ACTIONS(440), - [anon_sym_BSLASH] = ACTIONS(440), - [anon_sym_each] = ACTIONS(440), - [anon_sym_64] = ACTIONS(440), - [anon_sym_rows] = ACTIONS(440), - [anon_sym_65] = ACTIONS(440), - [anon_sym_repeat] = ACTIONS(440), - [anon_sym_66] = ACTIONS(440), - [anon_sym_dip] = ACTIONS(440), - [anon_sym_di] = ACTIONS(438), - [anon_sym_67] = ACTIONS(440), - [anon_sym_gap] = ACTIONS(440), - [anon_sym_ga] = ACTIONS(438), - [anon_sym_68] = ACTIONS(440), - [anon_sym_oust] = ACTIONS(440), - [anon_sym_69] = ACTIONS(440), - [anon_sym_invert] = ACTIONS(440), - [anon_sym_70] = ACTIONS(440), - [anon_sym_spawn] = ACTIONS(440), - [anon_sym_pack] = ACTIONS(440), - [anon_sym_71] = ACTIONS(440), - [anon_sym_tribute] = ACTIONS(440), - [anon_sym_72] = ACTIONS(440), - [anon_sym_fold] = ACTIONS(440), - [anon_sym_73] = ACTIONS(440), - [anon_sym_distribute] = ACTIONS(440), - [anon_sym_74] = ACTIONS(440), - [anon_sym_table] = ACTIONS(440), - [anon_sym_75] = ACTIONS(440), - [anon_sym_cross] = ACTIONS(440), - [anon_sym_76] = ACTIONS(440), - [anon_sym_group] = ACTIONS(440), - [anon_sym_77] = ACTIONS(440), - [anon_sym_partition] = ACTIONS(440), - [anon_sym_78] = ACTIONS(440), - [anon_sym_both] = ACTIONS(440), - [anon_sym_79] = ACTIONS(440), - [anon_sym_bracket] = ACTIONS(440), - [anon_sym_80] = ACTIONS(440), - [anon_sym_fork] = ACTIONS(440), - [anon_sym_81] = ACTIONS(440), - [anon_sym_under] = ACTIONS(440), - [anon_sym_82] = ACTIONS(440), - [anon_sym_level] = ACTIONS(440), - [anon_sym_83] = ACTIONS(440), - [anon_sym_fill] = ACTIONS(440), - [anon_sym_84] = ACTIONS(440), - [anon_sym_bind] = ACTIONS(440), - [anon_sym_SQUOTE] = ACTIONS(440), - [anon_sym_QMARK] = ACTIONS(440), - [anon_sym_try] = ACTIONS(438), - [anon_sym_85] = ACTIONS(440), - [anon_sym_combinate] = ACTIONS(440), - [anon_sym_86] = ACTIONS(440), - [anon_sym_87] = ACTIONS(440), - [anon_sym_88] = ACTIONS(440), - [anon_sym_89] = ACTIONS(440), - [anon_sym_90] = ACTIONS(440), - [anon_sym_91] = ACTIONS(440), - [anon_sym_92] = ACTIONS(440), - [anon_sym_93] = ACTIONS(440), + [aux_sym_number_token1] = ACTIONS(420), + [anon_sym_os] = ACTIONS(420), + [anon_sym_Family] = ACTIONS(420), + [anon_sym_Arch] = ACTIONS(420), + [anon_sym_ExeExt] = ACTIONS(420), + [anon_sym_PllExt] = ACTIONS(420), + [anon_sym_Sep] = ACTIONS(420), + [aux_sym_character_token1] = ACTIONS(422), + [sym_string] = ACTIONS(422), + [sym_multiLineString] = ACTIONS(422), + [anon_sym_PIPE] = ACTIONS(422), + [sym_identifier] = ACTIONS(420), + [sym_identifier_deprecated] = ACTIONS(420), + [sym_system] = ACTIONS(422), + [sym_comment] = ACTIONS(420), + [sym_openParen] = ACTIONS(422), + [sym_closeParen] = ACTIONS(422), + [sym_openCurly] = ACTIONS(422), + [sym_closeCurly] = ACTIONS(422), + [sym_openBracket] = ACTIONS(422), + [sym_closeBracket] = ACTIONS(422), + [sym_underscore] = ACTIONS(422), + [sym_leftArrow] = ACTIONS(422), + [anon_sym_CARET] = ACTIONS(422), + [anon_sym_eta] = ACTIONS(422), + [anon_sym_] = ACTIONS(420), + [anon_sym_pi] = ACTIONS(420), + [anon_sym_2] = ACTIONS(420), + [anon_sym_tau] = ACTIONS(422), + [anon_sym_3] = ACTIONS(420), + [anon_sym_infinity] = ACTIONS(422), + [anon_sym_4] = ACTIONS(422), + [anon_sym_e] = ACTIONS(420), + [anon_sym_NaN] = ACTIONS(420), + [anon_sym_NumProcs] = ACTIONS(420), + [anon_sym_DOT] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(422), + [anon_sym_5] = ACTIONS(422), + [anon_sym_SEMI] = ACTIONS(422), + [anon_sym_identity] = ACTIONS(422), + [anon_sym_id] = ACTIONS(420), + [anon_sym_6] = ACTIONS(422), + [anon_sym_not] = ACTIONS(422), + [anon_sym_7] = ACTIONS(422), + [anon_sym_sign] = ACTIONS(422), + [anon_sym_8] = ACTIONS(422), + [anon_sym_BQUOTE] = ACTIONS(422), + [anon_sym_9] = ACTIONS(422), + [anon_sym_absolutevalue] = ACTIONS(422), + [anon_sym_10] = ACTIONS(422), + [anon_sym_sqrt] = ACTIONS(422), + [anon_sym_11] = ACTIONS(422), + [anon_sym_sine] = ACTIONS(422), + [anon_sym_12] = ACTIONS(422), + [anon_sym_floor] = ACTIONS(422), + [anon_sym_13] = ACTIONS(422), + [anon_sym_ceiling] = ACTIONS(422), + [anon_sym_14] = ACTIONS(422), + [anon_sym_round] = ACTIONS(422), + [anon_sym_15] = ACTIONS(422), + [anon_sym_EQ] = ACTIONS(422), + [anon_sym_BANG_EQ] = ACTIONS(422), + [anon_sym_16] = ACTIONS(422), + [anon_sym_LT] = ACTIONS(420), + [anon_sym_LT_EQ] = ACTIONS(422), + [anon_sym_17] = ACTIONS(422), + [anon_sym_GT] = ACTIONS(420), + [anon_sym_GT_EQ] = ACTIONS(422), + [anon_sym_18] = ACTIONS(422), + [anon_sym_PLUS] = ACTIONS(422), + [anon_sym_DASH] = ACTIONS(422), + [anon_sym_STAR] = ACTIONS(422), + [anon_sym_19] = ACTIONS(422), + [anon_sym_PERCENT] = ACTIONS(422), + [anon_sym_20] = ACTIONS(422), + [anon_sym_modulus] = ACTIONS(422), + [anon_sym_21] = ACTIONS(422), + [anon_sym_power] = ACTIONS(422), + [anon_sym_22] = ACTIONS(422), + [anon_sym_logarithm] = ACTIONS(422), + [anon_sym_23] = ACTIONS(422), + [anon_sym_minimum] = ACTIONS(422), + [anon_sym_24] = ACTIONS(422), + [anon_sym_maximum] = ACTIONS(422), + [anon_sym_25] = ACTIONS(422), + [anon_sym_atangent] = ACTIONS(422), + [anon_sym_26] = ACTIONS(422), + [anon_sym_length] = ACTIONS(422), + [anon_sym_27] = ACTIONS(422), + [anon_sym_shape] = ACTIONS(422), + [anon_sym_28] = ACTIONS(422), + [anon_sym_range] = ACTIONS(422), + [anon_sym_29] = ACTIONS(422), + [anon_sym_first] = ACTIONS(422), + [anon_sym_30] = ACTIONS(422), + [anon_sym_reverse] = ACTIONS(422), + [anon_sym_31] = ACTIONS(422), + [anon_sym_deshape] = ACTIONS(422), + [anon_sym_32] = ACTIONS(422), + [anon_sym_bits] = ACTIONS(422), + [anon_sym_33] = ACTIONS(422), + [anon_sym_transpose] = ACTIONS(422), + [anon_sym_34] = ACTIONS(422), + [anon_sym_rise] = ACTIONS(422), + [anon_sym_35] = ACTIONS(422), + [anon_sym_fall] = ACTIONS(422), + [anon_sym_36] = ACTIONS(422), + [anon_sym_where] = ACTIONS(422), + [anon_sym_37] = ACTIONS(422), + [anon_sym_classify] = ACTIONS(422), + [anon_sym_38] = ACTIONS(422), + [anon_sym_deduplicate] = ACTIONS(422), + [anon_sym_39] = ACTIONS(422), + [anon_sym_box] = ACTIONS(422), + [anon_sym_40] = ACTIONS(422), + [anon_sym_unbox] = ACTIONS(422), + [anon_sym_41] = ACTIONS(422), + [anon_sym_match] = ACTIONS(422), + [anon_sym_42] = ACTIONS(422), + [anon_sym_couple] = ACTIONS(422), + [anon_sym_43] = ACTIONS(422), + [anon_sym_join] = ACTIONS(422), + [anon_sym_44] = ACTIONS(422), + [anon_sym_select] = ACTIONS(422), + [anon_sym_45] = ACTIONS(422), + [anon_sym_pick] = ACTIONS(422), + [anon_sym_46] = ACTIONS(422), + [anon_sym_reshape] = ACTIONS(422), + [anon_sym_47] = ACTIONS(422), + [anon_sym_take] = ACTIONS(422), + [anon_sym_48] = ACTIONS(422), + [anon_sym_drop] = ACTIONS(422), + [anon_sym_49] = ACTIONS(422), + [anon_sym_rotate] = ACTIONS(422), + [anon_sym_50] = ACTIONS(422), + [anon_sym_windows] = ACTIONS(422), + [anon_sym_51] = ACTIONS(422), + [anon_sym_keep] = ACTIONS(422), + [anon_sym_52] = ACTIONS(422), + [anon_sym_find] = ACTIONS(422), + [anon_sym_53] = ACTIONS(422), + [anon_sym_member] = ACTIONS(422), + [anon_sym_54] = ACTIONS(422), + [anon_sym_indexof] = ACTIONS(422), + [anon_sym_55] = ACTIONS(422), + [anon_sym_assert] = ACTIONS(422), + [anon_sym_56] = ACTIONS(422), + [anon_sym_wait] = ACTIONS(422), + [anon_sym_break] = ACTIONS(422), + [anon_sym_57] = ACTIONS(422), + [anon_sym_parse] = ACTIONS(422), + [anon_sym_random] = ACTIONS(422), + [anon_sym_58] = ACTIONS(422), + [anon_sym_gen] = ACTIONS(422), + [anon_sym_deal] = ACTIONS(422), + [anon_sym_tag] = ACTIONS(422), + [anon_sym_now] = ACTIONS(422), + [anon_sym_type] = ACTIONS(422), + [anon_sym_59] = ACTIONS(422), + [anon_sym_dump] = ACTIONS(422), + [anon_sym_regex] = ACTIONS(422), + [anon_sym_utf] = ACTIONS(422), + [anon_sym_rock] = ACTIONS(422), + [anon_sym_60] = ACTIONS(422), + [anon_sym_surface] = ACTIONS(422), + [anon_sym_TILDE] = ACTIONS(422), + [anon_sym_deep] = ACTIONS(422), + [anon_sym_de] = ACTIONS(420), + [anon_sym_61] = ACTIONS(422), + [anon_sym_abyss] = ACTIONS(422), + [anon_sym_ab] = ACTIONS(420), + [anon_sym_62] = ACTIONS(422), + [anon_sym_seabed] = ACTIONS(422), + [anon_sym_se] = ACTIONS(420), + [anon_sym_63] = ACTIONS(422), + [anon_sym_send] = ACTIONS(422), + [anon_sym_recv] = ACTIONS(422), + [anon_sym_tryrecv] = ACTIONS(422), + [anon_sym_reduce] = ACTIONS(422), + [anon_sym_SLASH] = ACTIONS(422), + [anon_sym_scan] = ACTIONS(422), + [anon_sym_BSLASH] = ACTIONS(422), + [anon_sym_each] = ACTIONS(422), + [anon_sym_64] = ACTIONS(422), + [anon_sym_rows] = ACTIONS(422), + [anon_sym_65] = ACTIONS(422), + [anon_sym_repeat] = ACTIONS(422), + [anon_sym_66] = ACTIONS(422), + [anon_sym_dip] = ACTIONS(422), + [anon_sym_67] = ACTIONS(422), + [anon_sym_gap] = ACTIONS(422), + [anon_sym_68] = ACTIONS(422), + [anon_sym_69] = ACTIONS(422), + [anon_sym_invert] = ACTIONS(422), + [anon_sym_70] = ACTIONS(422), + [anon_sym_spawn] = ACTIONS(422), + [anon_sym_pack] = ACTIONS(422), + [anon_sym_71] = ACTIONS(422), + [anon_sym_tribute] = ACTIONS(422), + [anon_sym_72] = ACTIONS(422), + [anon_sym_reach] = ACTIONS(422), + [anon_sym_fold] = ACTIONS(422), + [anon_sym_73] = ACTIONS(422), + [anon_sym_distribute] = ACTIONS(422), + [anon_sym_74] = ACTIONS(422), + [anon_sym_table] = ACTIONS(422), + [anon_sym_75] = ACTIONS(422), + [anon_sym_cross] = ACTIONS(422), + [anon_sym_76] = ACTIONS(422), + [anon_sym_group] = ACTIONS(422), + [anon_sym_77] = ACTIONS(422), + [anon_sym_partition] = ACTIONS(422), + [anon_sym_78] = ACTIONS(422), + [anon_sym_both] = ACTIONS(422), + [anon_sym_79] = ACTIONS(422), + [anon_sym_bracket] = ACTIONS(422), + [anon_sym_80] = ACTIONS(422), + [anon_sym_fork] = ACTIONS(422), + [anon_sym_81] = ACTIONS(422), + [anon_sym_under] = ACTIONS(422), + [anon_sym_82] = ACTIONS(422), + [anon_sym_level] = ACTIONS(422), + [anon_sym_83] = ACTIONS(422), + [anon_sym_fill] = ACTIONS(422), + [anon_sym_84] = ACTIONS(422), + [anon_sym_bind] = ACTIONS(422), + [anon_sym_SQUOTE] = ACTIONS(422), + [anon_sym_QMARK] = ACTIONS(422), + [anon_sym_try] = ACTIONS(420), + [anon_sym_85] = ACTIONS(422), + [anon_sym_combinate] = ACTIONS(422), + [anon_sym_86] = ACTIONS(422), + [anon_sym_87] = ACTIONS(422), + [anon_sym_88] = ACTIONS(422), + [anon_sym_89] = ACTIONS(422), + [anon_sym_90] = ACTIONS(422), + [anon_sym_91] = ACTIONS(422), + [anon_sym_92] = ACTIONS(422), + [anon_sym_93] = ACTIONS(422), [sym__whitespace] = ACTIONS(5), - [sym__end_of_line] = ACTIONS(440), + [sym__end_of_line] = ACTIONS(422), }, [70] = { - [aux_sym_number_token1] = ACTIONS(430), - [anon_sym_os] = ACTIONS(430), - [anon_sym_Family] = ACTIONS(430), - [anon_sym_Arch] = ACTIONS(430), - [anon_sym_ExeExt] = ACTIONS(430), - [anon_sym_PllExt] = ACTIONS(430), - [anon_sym_Sep] = ACTIONS(430), - [aux_sym_character_token1] = ACTIONS(432), - [sym_string] = ACTIONS(432), - [sym_multiLineString] = ACTIONS(432), - [anon_sym_PIPE] = ACTIONS(432), - [sym_identifier] = ACTIONS(430), - [sym_identifier_deprecated] = ACTIONS(430), - [sym_system] = ACTIONS(432), - [sym_comment] = ACTIONS(430), - [sym_openParen] = ACTIONS(432), - [sym_closeParen] = ACTIONS(432), - [sym_openCurly] = ACTIONS(432), - [sym_closeCurly] = ACTIONS(432), - [sym_openBracket] = ACTIONS(432), - [sym_closeBracket] = ACTIONS(432), - [sym_underscore] = ACTIONS(432), - [sym_leftArrow] = ACTIONS(432), - [anon_sym_CARET] = ACTIONS(432), - [anon_sym_eta] = ACTIONS(432), - [anon_sym_] = ACTIONS(430), - [anon_sym_pi] = ACTIONS(430), - [anon_sym_2] = ACTIONS(430), - [anon_sym_tau] = ACTIONS(432), - [anon_sym_3] = ACTIONS(430), - [anon_sym_infinity] = ACTIONS(432), - [anon_sym_4] = ACTIONS(432), - [anon_sym_e] = ACTIONS(430), - [anon_sym_NaN] = ACTIONS(430), - [anon_sym_NumProcs] = ACTIONS(430), - [anon_sym_DOT] = ACTIONS(432), - [anon_sym_COMMA] = ACTIONS(432), - [anon_sym_5] = ACTIONS(432), - [anon_sym_SEMI] = ACTIONS(432), - [anon_sym_identity] = ACTIONS(432), - [anon_sym_id] = ACTIONS(430), - [anon_sym_6] = ACTIONS(432), - [anon_sym_not] = ACTIONS(432), - [anon_sym_7] = ACTIONS(432), - [anon_sym_sign] = ACTIONS(432), - [anon_sym_8] = ACTIONS(432), - [anon_sym_BQUOTE] = ACTIONS(432), - [anon_sym_9] = ACTIONS(432), - [anon_sym_absolutevalue] = ACTIONS(432), - [anon_sym_10] = ACTIONS(432), - [anon_sym_sqrt] = ACTIONS(432), - [anon_sym_11] = ACTIONS(432), - [anon_sym_sine] = ACTIONS(432), - [anon_sym_12] = ACTIONS(432), - [anon_sym_floor] = ACTIONS(432), - [anon_sym_13] = ACTIONS(432), - [anon_sym_ceiling] = ACTIONS(432), - [anon_sym_14] = ACTIONS(432), - [anon_sym_round] = ACTIONS(432), - [anon_sym_15] = ACTIONS(432), - [anon_sym_EQ] = ACTIONS(432), - [anon_sym_BANG_EQ] = ACTIONS(432), - [anon_sym_16] = ACTIONS(432), - [anon_sym_LT] = ACTIONS(430), - [anon_sym_LT_EQ] = ACTIONS(432), - [anon_sym_17] = ACTIONS(432), - [anon_sym_GT] = ACTIONS(430), - [anon_sym_GT_EQ] = ACTIONS(432), - [anon_sym_18] = ACTIONS(432), - [anon_sym_PLUS] = ACTIONS(432), - [anon_sym_DASH] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(432), - [anon_sym_19] = ACTIONS(432), - [anon_sym_PERCENT] = ACTIONS(432), - [anon_sym_20] = ACTIONS(432), - [anon_sym_modulus] = ACTIONS(432), - [anon_sym_21] = ACTIONS(432), - [anon_sym_power] = ACTIONS(432), - [anon_sym_22] = ACTIONS(432), - [anon_sym_logarithm] = ACTIONS(432), - [anon_sym_23] = ACTIONS(432), - [anon_sym_minimum] = ACTIONS(432), - [anon_sym_24] = ACTIONS(432), - [anon_sym_maximum] = ACTIONS(432), - [anon_sym_25] = ACTIONS(432), - [anon_sym_atangent] = ACTIONS(432), - [anon_sym_26] = ACTIONS(432), - [anon_sym_length] = ACTIONS(432), - [anon_sym_27] = ACTIONS(432), - [anon_sym_shape] = ACTIONS(432), - [anon_sym_28] = ACTIONS(432), - [anon_sym_range] = ACTIONS(432), - [anon_sym_29] = ACTIONS(432), - [anon_sym_first] = ACTIONS(432), - [anon_sym_30] = ACTIONS(432), - [anon_sym_reverse] = ACTIONS(432), - [anon_sym_31] = ACTIONS(432), - [anon_sym_deshape] = ACTIONS(432), - [anon_sym_32] = ACTIONS(432), - [anon_sym_bits] = ACTIONS(432), - [anon_sym_33] = ACTIONS(432), - [anon_sym_transpose] = ACTIONS(432), - [anon_sym_34] = ACTIONS(432), - [anon_sym_rise] = ACTIONS(432), - [anon_sym_35] = ACTIONS(432), - [anon_sym_fall] = ACTIONS(432), - [anon_sym_36] = ACTIONS(432), - [anon_sym_where] = ACTIONS(432), - [anon_sym_37] = ACTIONS(432), - [anon_sym_classify] = ACTIONS(432), - [anon_sym_38] = ACTIONS(432), - [anon_sym_deduplicate] = ACTIONS(432), - [anon_sym_39] = ACTIONS(432), - [anon_sym_box] = ACTIONS(432), - [anon_sym_40] = ACTIONS(432), - [anon_sym_unbox] = ACTIONS(432), - [anon_sym_41] = ACTIONS(432), - [anon_sym_match] = ACTIONS(432), - [anon_sym_42] = ACTIONS(432), - [anon_sym_couple] = ACTIONS(432), - [anon_sym_43] = ACTIONS(432), - [anon_sym_join] = ACTIONS(432), - [anon_sym_44] = ACTIONS(432), - [anon_sym_select] = ACTIONS(432), - [anon_sym_45] = ACTIONS(432), - [anon_sym_pick] = ACTIONS(432), - [anon_sym_46] = ACTIONS(432), - [anon_sym_reshape] = ACTIONS(432), - [anon_sym_47] = ACTIONS(432), - [anon_sym_take] = ACTIONS(432), - [anon_sym_48] = ACTIONS(432), - [anon_sym_drop] = ACTIONS(432), - [anon_sym_49] = ACTIONS(432), - [anon_sym_rotate] = ACTIONS(432), - [anon_sym_50] = ACTIONS(432), - [anon_sym_windows] = ACTIONS(432), - [anon_sym_51] = ACTIONS(432), - [anon_sym_keep] = ACTIONS(432), - [anon_sym_52] = ACTIONS(432), - [anon_sym_find] = ACTIONS(432), - [anon_sym_53] = ACTIONS(432), - [anon_sym_member] = ACTIONS(432), - [anon_sym_54] = ACTIONS(432), - [anon_sym_indexof] = ACTIONS(432), - [anon_sym_55] = ACTIONS(432), - [anon_sym_assert] = ACTIONS(432), - [anon_sym_56] = ACTIONS(432), - [anon_sym_wait] = ACTIONS(432), - [anon_sym_break] = ACTIONS(432), - [anon_sym_57] = ACTIONS(432), - [anon_sym_parse] = ACTIONS(432), - [anon_sym_random] = ACTIONS(432), - [anon_sym_58] = ACTIONS(432), - [anon_sym_gen] = ACTIONS(432), - [anon_sym_deal] = ACTIONS(432), - [anon_sym_tag] = ACTIONS(432), - [anon_sym_now] = ACTIONS(432), - [anon_sym_type] = ACTIONS(432), - [anon_sym_59] = ACTIONS(432), - [anon_sym_dump] = ACTIONS(432), - [anon_sym_regex] = ACTIONS(432), - [anon_sym_utf] = ACTIONS(432), - [anon_sym_rock] = ACTIONS(432), - [anon_sym_60] = ACTIONS(432), - [anon_sym_surface] = ACTIONS(432), - [anon_sym_TILDE] = ACTIONS(432), - [anon_sym_deep] = ACTIONS(432), - [anon_sym_de] = ACTIONS(430), - [anon_sym_61] = ACTIONS(432), - [anon_sym_abyss] = ACTIONS(432), - [anon_sym_ab] = ACTIONS(430), - [anon_sym_62] = ACTIONS(432), - [anon_sym_seabed] = ACTIONS(432), - [anon_sym_se] = ACTIONS(430), - [anon_sym_63] = ACTIONS(432), - [anon_sym_send] = ACTIONS(432), - [anon_sym_recv] = ACTIONS(432), - [anon_sym_tryrecv] = ACTIONS(432), - [anon_sym_reduce] = ACTIONS(432), - [anon_sym_SLASH] = ACTIONS(432), - [anon_sym_scan] = ACTIONS(432), - [anon_sym_BSLASH] = ACTIONS(432), - [anon_sym_each] = ACTIONS(432), - [anon_sym_64] = ACTIONS(432), - [anon_sym_rows] = ACTIONS(432), - [anon_sym_65] = ACTIONS(432), - [anon_sym_repeat] = ACTIONS(432), - [anon_sym_66] = ACTIONS(432), - [anon_sym_dip] = ACTIONS(432), - [anon_sym_di] = ACTIONS(430), - [anon_sym_67] = ACTIONS(432), - [anon_sym_gap] = ACTIONS(432), - [anon_sym_ga] = ACTIONS(430), - [anon_sym_68] = ACTIONS(432), - [anon_sym_oust] = ACTIONS(432), - [anon_sym_69] = ACTIONS(432), - [anon_sym_invert] = ACTIONS(432), - [anon_sym_70] = ACTIONS(432), - [anon_sym_spawn] = ACTIONS(432), - [anon_sym_pack] = ACTIONS(432), - [anon_sym_71] = ACTIONS(432), - [anon_sym_tribute] = ACTIONS(432), - [anon_sym_72] = ACTIONS(432), - [anon_sym_fold] = ACTIONS(432), - [anon_sym_73] = ACTIONS(432), - [anon_sym_distribute] = ACTIONS(432), - [anon_sym_74] = ACTIONS(432), - [anon_sym_table] = ACTIONS(432), - [anon_sym_75] = ACTIONS(432), - [anon_sym_cross] = ACTIONS(432), - [anon_sym_76] = ACTIONS(432), - [anon_sym_group] = ACTIONS(432), - [anon_sym_77] = ACTIONS(432), - [anon_sym_partition] = ACTIONS(432), - [anon_sym_78] = ACTIONS(432), - [anon_sym_both] = ACTIONS(432), - [anon_sym_79] = ACTIONS(432), - [anon_sym_bracket] = ACTIONS(432), - [anon_sym_80] = ACTIONS(432), - [anon_sym_fork] = ACTIONS(432), - [anon_sym_81] = ACTIONS(432), - [anon_sym_under] = ACTIONS(432), - [anon_sym_82] = ACTIONS(432), - [anon_sym_level] = ACTIONS(432), - [anon_sym_83] = ACTIONS(432), - [anon_sym_fill] = ACTIONS(432), - [anon_sym_84] = ACTIONS(432), - [anon_sym_bind] = ACTIONS(432), - [anon_sym_SQUOTE] = ACTIONS(432), - [anon_sym_QMARK] = ACTIONS(432), - [anon_sym_try] = ACTIONS(430), - [anon_sym_85] = ACTIONS(432), - [anon_sym_combinate] = ACTIONS(432), - [anon_sym_86] = ACTIONS(432), - [anon_sym_87] = ACTIONS(432), - [anon_sym_88] = ACTIONS(432), - [anon_sym_89] = ACTIONS(432), - [anon_sym_90] = ACTIONS(432), - [anon_sym_91] = ACTIONS(432), - [anon_sym_92] = ACTIONS(432), - [anon_sym_93] = ACTIONS(432), + [aux_sym_number_token1] = ACTIONS(412), + [anon_sym_os] = ACTIONS(412), + [anon_sym_Family] = ACTIONS(412), + [anon_sym_Arch] = ACTIONS(412), + [anon_sym_ExeExt] = ACTIONS(412), + [anon_sym_PllExt] = ACTIONS(412), + [anon_sym_Sep] = ACTIONS(412), + [aux_sym_character_token1] = ACTIONS(414), + [sym_string] = ACTIONS(414), + [sym_multiLineString] = ACTIONS(414), + [anon_sym_PIPE] = ACTIONS(414), + [sym_identifier] = ACTIONS(412), + [sym_identifier_deprecated] = ACTIONS(412), + [sym_system] = ACTIONS(414), + [sym_comment] = ACTIONS(412), + [sym_openParen] = ACTIONS(414), + [sym_closeParen] = ACTIONS(414), + [sym_openCurly] = ACTIONS(414), + [sym_closeCurly] = ACTIONS(414), + [sym_openBracket] = ACTIONS(414), + [sym_closeBracket] = ACTIONS(414), + [sym_underscore] = ACTIONS(414), + [sym_leftArrow] = ACTIONS(414), + [anon_sym_CARET] = ACTIONS(414), + [anon_sym_eta] = ACTIONS(414), + [anon_sym_] = ACTIONS(412), + [anon_sym_pi] = ACTIONS(412), + [anon_sym_2] = ACTIONS(412), + [anon_sym_tau] = ACTIONS(414), + [anon_sym_3] = ACTIONS(412), + [anon_sym_infinity] = ACTIONS(414), + [anon_sym_4] = ACTIONS(414), + [anon_sym_e] = ACTIONS(412), + [anon_sym_NaN] = ACTIONS(412), + [anon_sym_NumProcs] = ACTIONS(412), + [anon_sym_DOT] = ACTIONS(414), + [anon_sym_COMMA] = ACTIONS(414), + [anon_sym_5] = ACTIONS(414), + [anon_sym_SEMI] = ACTIONS(414), + [anon_sym_identity] = ACTIONS(414), + [anon_sym_id] = ACTIONS(412), + [anon_sym_6] = ACTIONS(414), + [anon_sym_not] = ACTIONS(414), + [anon_sym_7] = ACTIONS(414), + [anon_sym_sign] = ACTIONS(414), + [anon_sym_8] = ACTIONS(414), + [anon_sym_BQUOTE] = ACTIONS(414), + [anon_sym_9] = ACTIONS(414), + [anon_sym_absolutevalue] = ACTIONS(414), + [anon_sym_10] = ACTIONS(414), + [anon_sym_sqrt] = ACTIONS(414), + [anon_sym_11] = ACTIONS(414), + [anon_sym_sine] = ACTIONS(414), + [anon_sym_12] = ACTIONS(414), + [anon_sym_floor] = ACTIONS(414), + [anon_sym_13] = ACTIONS(414), + [anon_sym_ceiling] = ACTIONS(414), + [anon_sym_14] = ACTIONS(414), + [anon_sym_round] = ACTIONS(414), + [anon_sym_15] = ACTIONS(414), + [anon_sym_EQ] = ACTIONS(414), + [anon_sym_BANG_EQ] = ACTIONS(414), + [anon_sym_16] = ACTIONS(414), + [anon_sym_LT] = ACTIONS(412), + [anon_sym_LT_EQ] = ACTIONS(414), + [anon_sym_17] = ACTIONS(414), + [anon_sym_GT] = ACTIONS(412), + [anon_sym_GT_EQ] = ACTIONS(414), + [anon_sym_18] = ACTIONS(414), + [anon_sym_PLUS] = ACTIONS(414), + [anon_sym_DASH] = ACTIONS(414), + [anon_sym_STAR] = ACTIONS(414), + [anon_sym_19] = ACTIONS(414), + [anon_sym_PERCENT] = ACTIONS(414), + [anon_sym_20] = ACTIONS(414), + [anon_sym_modulus] = ACTIONS(414), + [anon_sym_21] = ACTIONS(414), + [anon_sym_power] = ACTIONS(414), + [anon_sym_22] = ACTIONS(414), + [anon_sym_logarithm] = ACTIONS(414), + [anon_sym_23] = ACTIONS(414), + [anon_sym_minimum] = ACTIONS(414), + [anon_sym_24] = ACTIONS(414), + [anon_sym_maximum] = ACTIONS(414), + [anon_sym_25] = ACTIONS(414), + [anon_sym_atangent] = ACTIONS(414), + [anon_sym_26] = ACTIONS(414), + [anon_sym_length] = ACTIONS(414), + [anon_sym_27] = ACTIONS(414), + [anon_sym_shape] = ACTIONS(414), + [anon_sym_28] = ACTIONS(414), + [anon_sym_range] = ACTIONS(414), + [anon_sym_29] = ACTIONS(414), + [anon_sym_first] = ACTIONS(414), + [anon_sym_30] = ACTIONS(414), + [anon_sym_reverse] = ACTIONS(414), + [anon_sym_31] = ACTIONS(414), + [anon_sym_deshape] = ACTIONS(414), + [anon_sym_32] = ACTIONS(414), + [anon_sym_bits] = ACTIONS(414), + [anon_sym_33] = ACTIONS(414), + [anon_sym_transpose] = ACTIONS(414), + [anon_sym_34] = ACTIONS(414), + [anon_sym_rise] = ACTIONS(414), + [anon_sym_35] = ACTIONS(414), + [anon_sym_fall] = ACTIONS(414), + [anon_sym_36] = ACTIONS(414), + [anon_sym_where] = ACTIONS(414), + [anon_sym_37] = ACTIONS(414), + [anon_sym_classify] = ACTIONS(414), + [anon_sym_38] = ACTIONS(414), + [anon_sym_deduplicate] = ACTIONS(414), + [anon_sym_39] = ACTIONS(414), + [anon_sym_box] = ACTIONS(414), + [anon_sym_40] = ACTIONS(414), + [anon_sym_unbox] = ACTIONS(414), + [anon_sym_41] = ACTIONS(414), + [anon_sym_match] = ACTIONS(414), + [anon_sym_42] = ACTIONS(414), + [anon_sym_couple] = ACTIONS(414), + [anon_sym_43] = ACTIONS(414), + [anon_sym_join] = ACTIONS(414), + [anon_sym_44] = ACTIONS(414), + [anon_sym_select] = ACTIONS(414), + [anon_sym_45] = ACTIONS(414), + [anon_sym_pick] = ACTIONS(414), + [anon_sym_46] = ACTIONS(414), + [anon_sym_reshape] = ACTIONS(414), + [anon_sym_47] = ACTIONS(414), + [anon_sym_take] = ACTIONS(414), + [anon_sym_48] = ACTIONS(414), + [anon_sym_drop] = ACTIONS(414), + [anon_sym_49] = ACTIONS(414), + [anon_sym_rotate] = ACTIONS(414), + [anon_sym_50] = ACTIONS(414), + [anon_sym_windows] = ACTIONS(414), + [anon_sym_51] = ACTIONS(414), + [anon_sym_keep] = ACTIONS(414), + [anon_sym_52] = ACTIONS(414), + [anon_sym_find] = ACTIONS(414), + [anon_sym_53] = ACTIONS(414), + [anon_sym_member] = ACTIONS(414), + [anon_sym_54] = ACTIONS(414), + [anon_sym_indexof] = ACTIONS(414), + [anon_sym_55] = ACTIONS(414), + [anon_sym_assert] = ACTIONS(414), + [anon_sym_56] = ACTIONS(414), + [anon_sym_wait] = ACTIONS(414), + [anon_sym_break] = ACTIONS(414), + [anon_sym_57] = ACTIONS(414), + [anon_sym_parse] = ACTIONS(414), + [anon_sym_random] = ACTIONS(414), + [anon_sym_58] = ACTIONS(414), + [anon_sym_gen] = ACTIONS(414), + [anon_sym_deal] = ACTIONS(414), + [anon_sym_tag] = ACTIONS(414), + [anon_sym_now] = ACTIONS(414), + [anon_sym_type] = ACTIONS(414), + [anon_sym_59] = ACTIONS(414), + [anon_sym_dump] = ACTIONS(414), + [anon_sym_regex] = ACTIONS(414), + [anon_sym_utf] = ACTIONS(414), + [anon_sym_rock] = ACTIONS(414), + [anon_sym_60] = ACTIONS(414), + [anon_sym_surface] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_deep] = ACTIONS(414), + [anon_sym_de] = ACTIONS(412), + [anon_sym_61] = ACTIONS(414), + [anon_sym_abyss] = ACTIONS(414), + [anon_sym_ab] = ACTIONS(412), + [anon_sym_62] = ACTIONS(414), + [anon_sym_seabed] = ACTIONS(414), + [anon_sym_se] = ACTIONS(412), + [anon_sym_63] = ACTIONS(414), + [anon_sym_send] = ACTIONS(414), + [anon_sym_recv] = ACTIONS(414), + [anon_sym_tryrecv] = ACTIONS(414), + [anon_sym_reduce] = ACTIONS(414), + [anon_sym_SLASH] = ACTIONS(414), + [anon_sym_scan] = ACTIONS(414), + [anon_sym_BSLASH] = ACTIONS(414), + [anon_sym_each] = ACTIONS(414), + [anon_sym_64] = ACTIONS(414), + [anon_sym_rows] = ACTIONS(414), + [anon_sym_65] = ACTIONS(414), + [anon_sym_repeat] = ACTIONS(414), + [anon_sym_66] = ACTIONS(414), + [anon_sym_dip] = ACTIONS(414), + [anon_sym_67] = ACTIONS(414), + [anon_sym_gap] = ACTIONS(414), + [anon_sym_68] = ACTIONS(414), + [anon_sym_69] = ACTIONS(414), + [anon_sym_invert] = ACTIONS(414), + [anon_sym_70] = ACTIONS(414), + [anon_sym_spawn] = ACTIONS(414), + [anon_sym_pack] = ACTIONS(414), + [anon_sym_71] = ACTIONS(414), + [anon_sym_tribute] = ACTIONS(414), + [anon_sym_72] = ACTIONS(414), + [anon_sym_reach] = ACTIONS(414), + [anon_sym_fold] = ACTIONS(414), + [anon_sym_73] = ACTIONS(414), + [anon_sym_distribute] = ACTIONS(414), + [anon_sym_74] = ACTIONS(414), + [anon_sym_table] = ACTIONS(414), + [anon_sym_75] = ACTIONS(414), + [anon_sym_cross] = ACTIONS(414), + [anon_sym_76] = ACTIONS(414), + [anon_sym_group] = ACTIONS(414), + [anon_sym_77] = ACTIONS(414), + [anon_sym_partition] = ACTIONS(414), + [anon_sym_78] = ACTIONS(414), + [anon_sym_both] = ACTIONS(414), + [anon_sym_79] = ACTIONS(414), + [anon_sym_bracket] = ACTIONS(414), + [anon_sym_80] = ACTIONS(414), + [anon_sym_fork] = ACTIONS(414), + [anon_sym_81] = ACTIONS(414), + [anon_sym_under] = ACTIONS(414), + [anon_sym_82] = ACTIONS(414), + [anon_sym_level] = ACTIONS(414), + [anon_sym_83] = ACTIONS(414), + [anon_sym_fill] = ACTIONS(414), + [anon_sym_84] = ACTIONS(414), + [anon_sym_bind] = ACTIONS(414), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_QMARK] = ACTIONS(414), + [anon_sym_try] = ACTIONS(412), + [anon_sym_85] = ACTIONS(414), + [anon_sym_combinate] = ACTIONS(414), + [anon_sym_86] = ACTIONS(414), + [anon_sym_87] = ACTIONS(414), + [anon_sym_88] = ACTIONS(414), + [anon_sym_89] = ACTIONS(414), + [anon_sym_90] = ACTIONS(414), + [anon_sym_91] = ACTIONS(414), + [anon_sym_92] = ACTIONS(414), + [anon_sym_93] = ACTIONS(414), [sym__whitespace] = ACTIONS(5), - [sym__end_of_line] = ACTIONS(432), + [sym__end_of_line] = ACTIONS(414), }, [71] = { - [aux_sym_number_token1] = ACTIONS(466), - [anon_sym_os] = ACTIONS(466), - [anon_sym_Family] = ACTIONS(466), - [anon_sym_Arch] = ACTIONS(466), - [anon_sym_ExeExt] = ACTIONS(466), - [anon_sym_PllExt] = ACTIONS(466), - [anon_sym_Sep] = ACTIONS(466), - [aux_sym_character_token1] = ACTIONS(468), - [sym_string] = ACTIONS(468), - [sym_multiLineString] = ACTIONS(468), - [anon_sym_PIPE] = ACTIONS(468), - [sym_identifier] = ACTIONS(466), - [sym_identifier_deprecated] = ACTIONS(466), - [sym_system] = ACTIONS(468), - [sym_comment] = ACTIONS(466), - [sym_openParen] = ACTIONS(468), - [sym_closeParen] = ACTIONS(468), - [sym_openCurly] = ACTIONS(468), - [sym_closeCurly] = ACTIONS(468), - [sym_openBracket] = ACTIONS(468), - [sym_closeBracket] = ACTIONS(468), - [sym_underscore] = ACTIONS(138), - [sym_leftArrow] = ACTIONS(468), - [anon_sym_CARET] = ACTIONS(468), - [anon_sym_eta] = ACTIONS(468), - [anon_sym_] = ACTIONS(466), - [anon_sym_pi] = ACTIONS(466), - [anon_sym_2] = ACTIONS(466), - [anon_sym_tau] = ACTIONS(468), - [anon_sym_3] = ACTIONS(466), - [anon_sym_infinity] = ACTIONS(468), - [anon_sym_4] = ACTIONS(468), - [anon_sym_e] = ACTIONS(466), - [anon_sym_NaN] = ACTIONS(466), - [anon_sym_NumProcs] = ACTIONS(466), - [anon_sym_DOT] = ACTIONS(468), - [anon_sym_COMMA] = ACTIONS(468), - [anon_sym_5] = ACTIONS(468), - [anon_sym_SEMI] = ACTIONS(468), - [anon_sym_identity] = ACTIONS(468), - [anon_sym_id] = ACTIONS(466), - [anon_sym_6] = ACTIONS(468), - [anon_sym_not] = ACTIONS(468), - [anon_sym_7] = ACTIONS(468), - [anon_sym_sign] = ACTIONS(468), - [anon_sym_8] = ACTIONS(468), - [anon_sym_BQUOTE] = ACTIONS(468), - [anon_sym_9] = ACTIONS(468), - [anon_sym_absolutevalue] = ACTIONS(468), - [anon_sym_10] = ACTIONS(468), - [anon_sym_sqrt] = ACTIONS(468), - [anon_sym_11] = ACTIONS(468), - [anon_sym_sine] = ACTIONS(468), - [anon_sym_12] = ACTIONS(468), - [anon_sym_floor] = ACTIONS(468), - [anon_sym_13] = ACTIONS(468), - [anon_sym_ceiling] = ACTIONS(468), - [anon_sym_14] = ACTIONS(468), - [anon_sym_round] = ACTIONS(468), - [anon_sym_15] = ACTIONS(468), - [anon_sym_EQ] = ACTIONS(468), - [anon_sym_BANG_EQ] = ACTIONS(468), - [anon_sym_16] = ACTIONS(468), - [anon_sym_LT] = ACTIONS(466), - [anon_sym_LT_EQ] = ACTIONS(468), - [anon_sym_17] = ACTIONS(468), - [anon_sym_GT] = ACTIONS(466), - [anon_sym_GT_EQ] = ACTIONS(468), - [anon_sym_18] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(468), - [anon_sym_DASH] = ACTIONS(468), - [anon_sym_STAR] = ACTIONS(468), - [anon_sym_19] = ACTIONS(468), - [anon_sym_PERCENT] = ACTIONS(468), - [anon_sym_20] = ACTIONS(468), - [anon_sym_modulus] = ACTIONS(468), - [anon_sym_21] = ACTIONS(468), - [anon_sym_power] = ACTIONS(468), - [anon_sym_22] = ACTIONS(468), - [anon_sym_logarithm] = ACTIONS(468), - [anon_sym_23] = ACTIONS(468), - [anon_sym_minimum] = ACTIONS(468), - [anon_sym_24] = ACTIONS(468), - [anon_sym_maximum] = ACTIONS(468), - [anon_sym_25] = ACTIONS(468), - [anon_sym_atangent] = ACTIONS(468), - [anon_sym_26] = ACTIONS(468), - [anon_sym_length] = ACTIONS(468), - [anon_sym_27] = ACTIONS(468), - [anon_sym_shape] = ACTIONS(468), - [anon_sym_28] = ACTIONS(468), - [anon_sym_range] = ACTIONS(468), - [anon_sym_29] = ACTIONS(468), - [anon_sym_first] = ACTIONS(468), - [anon_sym_30] = ACTIONS(468), - [anon_sym_reverse] = ACTIONS(468), - [anon_sym_31] = ACTIONS(468), - [anon_sym_deshape] = ACTIONS(468), - [anon_sym_32] = ACTIONS(468), - [anon_sym_bits] = ACTIONS(468), - [anon_sym_33] = ACTIONS(468), - [anon_sym_transpose] = ACTIONS(468), - [anon_sym_34] = ACTIONS(468), - [anon_sym_rise] = ACTIONS(468), - [anon_sym_35] = ACTIONS(468), - [anon_sym_fall] = ACTIONS(468), - [anon_sym_36] = ACTIONS(468), - [anon_sym_where] = ACTIONS(468), - [anon_sym_37] = ACTIONS(468), - [anon_sym_classify] = ACTIONS(468), - [anon_sym_38] = ACTIONS(468), - [anon_sym_deduplicate] = ACTIONS(468), - [anon_sym_39] = ACTIONS(468), - [anon_sym_box] = ACTIONS(468), - [anon_sym_40] = ACTIONS(468), - [anon_sym_unbox] = ACTIONS(468), - [anon_sym_41] = ACTIONS(468), - [anon_sym_match] = ACTIONS(468), - [anon_sym_42] = ACTIONS(468), - [anon_sym_couple] = ACTIONS(468), - [anon_sym_43] = ACTIONS(468), - [anon_sym_join] = ACTIONS(468), - [anon_sym_44] = ACTIONS(468), - [anon_sym_select] = ACTIONS(468), - [anon_sym_45] = ACTIONS(468), - [anon_sym_pick] = ACTIONS(468), - [anon_sym_46] = ACTIONS(468), - [anon_sym_reshape] = ACTIONS(468), - [anon_sym_47] = ACTIONS(468), - [anon_sym_take] = ACTIONS(468), - [anon_sym_48] = ACTIONS(468), - [anon_sym_drop] = ACTIONS(468), - [anon_sym_49] = ACTIONS(468), - [anon_sym_rotate] = ACTIONS(468), - [anon_sym_50] = ACTIONS(468), - [anon_sym_windows] = ACTIONS(468), - [anon_sym_51] = ACTIONS(468), - [anon_sym_keep] = ACTIONS(468), - [anon_sym_52] = ACTIONS(468), - [anon_sym_find] = ACTIONS(468), - [anon_sym_53] = ACTIONS(468), - [anon_sym_member] = ACTIONS(468), - [anon_sym_54] = ACTIONS(468), - [anon_sym_indexof] = ACTIONS(468), - [anon_sym_55] = ACTIONS(468), - [anon_sym_assert] = ACTIONS(468), - [anon_sym_56] = ACTIONS(468), - [anon_sym_wait] = ACTIONS(468), - [anon_sym_break] = ACTIONS(468), - [anon_sym_57] = ACTIONS(468), - [anon_sym_parse] = ACTIONS(468), - [anon_sym_random] = ACTIONS(468), - [anon_sym_58] = ACTIONS(468), - [anon_sym_gen] = ACTIONS(468), - [anon_sym_deal] = ACTIONS(468), - [anon_sym_tag] = ACTIONS(468), - [anon_sym_now] = ACTIONS(468), - [anon_sym_type] = ACTIONS(468), - [anon_sym_59] = ACTIONS(468), - [anon_sym_dump] = ACTIONS(468), - [anon_sym_regex] = ACTIONS(468), - [anon_sym_utf] = ACTIONS(468), - [anon_sym_rock] = ACTIONS(468), - [anon_sym_60] = ACTIONS(468), - [anon_sym_surface] = ACTIONS(468), - [anon_sym_TILDE] = ACTIONS(468), - [anon_sym_deep] = ACTIONS(468), - [anon_sym_de] = ACTIONS(466), - [anon_sym_61] = ACTIONS(468), - [anon_sym_abyss] = ACTIONS(468), - [anon_sym_ab] = ACTIONS(466), - [anon_sym_62] = ACTIONS(468), - [anon_sym_seabed] = ACTIONS(468), - [anon_sym_se] = ACTIONS(466), - [anon_sym_63] = ACTIONS(468), - [anon_sym_send] = ACTIONS(468), - [anon_sym_recv] = ACTIONS(468), - [anon_sym_tryrecv] = ACTIONS(468), - [anon_sym_reduce] = ACTIONS(468), - [anon_sym_SLASH] = ACTIONS(468), - [anon_sym_scan] = ACTIONS(468), - [anon_sym_BSLASH] = ACTIONS(468), - [anon_sym_each] = ACTIONS(468), - [anon_sym_64] = ACTIONS(468), - [anon_sym_rows] = ACTIONS(468), - [anon_sym_65] = ACTIONS(468), - [anon_sym_repeat] = ACTIONS(468), - [anon_sym_66] = ACTIONS(468), - [anon_sym_dip] = ACTIONS(468), - [anon_sym_di] = ACTIONS(466), - [anon_sym_67] = ACTIONS(468), - [anon_sym_gap] = ACTIONS(468), - [anon_sym_ga] = ACTIONS(466), - [anon_sym_68] = ACTIONS(468), - [anon_sym_oust] = ACTIONS(468), - [anon_sym_69] = ACTIONS(468), - [anon_sym_invert] = ACTIONS(468), - [anon_sym_70] = ACTIONS(468), - [anon_sym_spawn] = ACTIONS(468), - [anon_sym_pack] = ACTIONS(468), - [anon_sym_71] = ACTIONS(468), - [anon_sym_tribute] = ACTIONS(468), - [anon_sym_72] = ACTIONS(468), - [anon_sym_fold] = ACTIONS(468), - [anon_sym_73] = ACTIONS(468), - [anon_sym_distribute] = ACTIONS(468), - [anon_sym_74] = ACTIONS(468), - [anon_sym_table] = ACTIONS(468), - [anon_sym_75] = ACTIONS(468), - [anon_sym_cross] = ACTIONS(468), - [anon_sym_76] = ACTIONS(468), - [anon_sym_group] = ACTIONS(468), - [anon_sym_77] = ACTIONS(468), - [anon_sym_partition] = ACTIONS(468), - [anon_sym_78] = ACTIONS(468), - [anon_sym_both] = ACTIONS(468), - [anon_sym_79] = ACTIONS(468), - [anon_sym_bracket] = ACTIONS(468), - [anon_sym_80] = ACTIONS(468), - [anon_sym_fork] = ACTIONS(468), - [anon_sym_81] = ACTIONS(468), - [anon_sym_under] = ACTIONS(468), - [anon_sym_82] = ACTIONS(468), - [anon_sym_level] = ACTIONS(468), - [anon_sym_83] = ACTIONS(468), - [anon_sym_fill] = ACTIONS(468), - [anon_sym_84] = ACTIONS(468), - [anon_sym_bind] = ACTIONS(468), - [anon_sym_SQUOTE] = ACTIONS(468), - [anon_sym_QMARK] = ACTIONS(468), - [anon_sym_try] = ACTIONS(466), - [anon_sym_85] = ACTIONS(468), - [anon_sym_combinate] = ACTIONS(468), - [anon_sym_86] = ACTIONS(468), - [anon_sym_87] = ACTIONS(468), - [anon_sym_88] = ACTIONS(468), - [anon_sym_89] = ACTIONS(468), - [anon_sym_90] = ACTIONS(468), - [anon_sym_91] = ACTIONS(468), - [anon_sym_92] = ACTIONS(468), - [anon_sym_93] = ACTIONS(468), + [aux_sym_number_token1] = ACTIONS(448), + [anon_sym_os] = ACTIONS(448), + [anon_sym_Family] = ACTIONS(448), + [anon_sym_Arch] = ACTIONS(448), + [anon_sym_ExeExt] = ACTIONS(448), + [anon_sym_PllExt] = ACTIONS(448), + [anon_sym_Sep] = ACTIONS(448), + [aux_sym_character_token1] = ACTIONS(450), + [sym_string] = ACTIONS(450), + [sym_multiLineString] = ACTIONS(450), + [anon_sym_PIPE] = ACTIONS(450), + [sym_identifier] = ACTIONS(448), + [sym_identifier_deprecated] = ACTIONS(448), + [sym_system] = ACTIONS(450), + [sym_comment] = ACTIONS(448), + [sym_openParen] = ACTIONS(450), + [sym_closeParen] = ACTIONS(450), + [sym_openCurly] = ACTIONS(450), + [sym_closeCurly] = ACTIONS(450), + [sym_openBracket] = ACTIONS(450), + [sym_closeBracket] = ACTIONS(450), + [sym_underscore] = ACTIONS(133), + [sym_leftArrow] = ACTIONS(450), + [anon_sym_CARET] = ACTIONS(450), + [anon_sym_eta] = ACTIONS(450), + [anon_sym_] = ACTIONS(448), + [anon_sym_pi] = ACTIONS(448), + [anon_sym_2] = ACTIONS(448), + [anon_sym_tau] = ACTIONS(450), + [anon_sym_3] = ACTIONS(448), + [anon_sym_infinity] = ACTIONS(450), + [anon_sym_4] = ACTIONS(450), + [anon_sym_e] = ACTIONS(448), + [anon_sym_NaN] = ACTIONS(448), + [anon_sym_NumProcs] = ACTIONS(448), + [anon_sym_DOT] = ACTIONS(450), + [anon_sym_COMMA] = ACTIONS(450), + [anon_sym_5] = ACTIONS(450), + [anon_sym_SEMI] = ACTIONS(450), + [anon_sym_identity] = ACTIONS(450), + [anon_sym_id] = ACTIONS(448), + [anon_sym_6] = ACTIONS(450), + [anon_sym_not] = ACTIONS(450), + [anon_sym_7] = ACTIONS(450), + [anon_sym_sign] = ACTIONS(450), + [anon_sym_8] = ACTIONS(450), + [anon_sym_BQUOTE] = ACTIONS(450), + [anon_sym_9] = ACTIONS(450), + [anon_sym_absolutevalue] = ACTIONS(450), + [anon_sym_10] = ACTIONS(450), + [anon_sym_sqrt] = ACTIONS(450), + [anon_sym_11] = ACTIONS(450), + [anon_sym_sine] = ACTIONS(450), + [anon_sym_12] = ACTIONS(450), + [anon_sym_floor] = ACTIONS(450), + [anon_sym_13] = ACTIONS(450), + [anon_sym_ceiling] = ACTIONS(450), + [anon_sym_14] = ACTIONS(450), + [anon_sym_round] = ACTIONS(450), + [anon_sym_15] = ACTIONS(450), + [anon_sym_EQ] = ACTIONS(450), + [anon_sym_BANG_EQ] = ACTIONS(450), + [anon_sym_16] = ACTIONS(450), + [anon_sym_LT] = ACTIONS(448), + [anon_sym_LT_EQ] = ACTIONS(450), + [anon_sym_17] = ACTIONS(450), + [anon_sym_GT] = ACTIONS(448), + [anon_sym_GT_EQ] = ACTIONS(450), + [anon_sym_18] = ACTIONS(450), + [anon_sym_PLUS] = ACTIONS(450), + [anon_sym_DASH] = ACTIONS(450), + [anon_sym_STAR] = ACTIONS(450), + [anon_sym_19] = ACTIONS(450), + [anon_sym_PERCENT] = ACTIONS(450), + [anon_sym_20] = ACTIONS(450), + [anon_sym_modulus] = ACTIONS(450), + [anon_sym_21] = ACTIONS(450), + [anon_sym_power] = ACTIONS(450), + [anon_sym_22] = ACTIONS(450), + [anon_sym_logarithm] = ACTIONS(450), + [anon_sym_23] = ACTIONS(450), + [anon_sym_minimum] = ACTIONS(450), + [anon_sym_24] = ACTIONS(450), + [anon_sym_maximum] = ACTIONS(450), + [anon_sym_25] = ACTIONS(450), + [anon_sym_atangent] = ACTIONS(450), + [anon_sym_26] = ACTIONS(450), + [anon_sym_length] = ACTIONS(450), + [anon_sym_27] = ACTIONS(450), + [anon_sym_shape] = ACTIONS(450), + [anon_sym_28] = ACTIONS(450), + [anon_sym_range] = ACTIONS(450), + [anon_sym_29] = ACTIONS(450), + [anon_sym_first] = ACTIONS(450), + [anon_sym_30] = ACTIONS(450), + [anon_sym_reverse] = ACTIONS(450), + [anon_sym_31] = ACTIONS(450), + [anon_sym_deshape] = ACTIONS(450), + [anon_sym_32] = ACTIONS(450), + [anon_sym_bits] = ACTIONS(450), + [anon_sym_33] = ACTIONS(450), + [anon_sym_transpose] = ACTIONS(450), + [anon_sym_34] = ACTIONS(450), + [anon_sym_rise] = ACTIONS(450), + [anon_sym_35] = ACTIONS(450), + [anon_sym_fall] = ACTIONS(450), + [anon_sym_36] = ACTIONS(450), + [anon_sym_where] = ACTIONS(450), + [anon_sym_37] = ACTIONS(450), + [anon_sym_classify] = ACTIONS(450), + [anon_sym_38] = ACTIONS(450), + [anon_sym_deduplicate] = ACTIONS(450), + [anon_sym_39] = ACTIONS(450), + [anon_sym_box] = ACTIONS(450), + [anon_sym_40] = ACTIONS(450), + [anon_sym_unbox] = ACTIONS(450), + [anon_sym_41] = ACTIONS(450), + [anon_sym_match] = ACTIONS(450), + [anon_sym_42] = ACTIONS(450), + [anon_sym_couple] = ACTIONS(450), + [anon_sym_43] = ACTIONS(450), + [anon_sym_join] = ACTIONS(450), + [anon_sym_44] = ACTIONS(450), + [anon_sym_select] = ACTIONS(450), + [anon_sym_45] = ACTIONS(450), + [anon_sym_pick] = ACTIONS(450), + [anon_sym_46] = ACTIONS(450), + [anon_sym_reshape] = ACTIONS(450), + [anon_sym_47] = ACTIONS(450), + [anon_sym_take] = ACTIONS(450), + [anon_sym_48] = ACTIONS(450), + [anon_sym_drop] = ACTIONS(450), + [anon_sym_49] = ACTIONS(450), + [anon_sym_rotate] = ACTIONS(450), + [anon_sym_50] = ACTIONS(450), + [anon_sym_windows] = ACTIONS(450), + [anon_sym_51] = ACTIONS(450), + [anon_sym_keep] = ACTIONS(450), + [anon_sym_52] = ACTIONS(450), + [anon_sym_find] = ACTIONS(450), + [anon_sym_53] = ACTIONS(450), + [anon_sym_member] = ACTIONS(450), + [anon_sym_54] = ACTIONS(450), + [anon_sym_indexof] = ACTIONS(450), + [anon_sym_55] = ACTIONS(450), + [anon_sym_assert] = ACTIONS(450), + [anon_sym_56] = ACTIONS(450), + [anon_sym_wait] = ACTIONS(450), + [anon_sym_break] = ACTIONS(450), + [anon_sym_57] = ACTIONS(450), + [anon_sym_parse] = ACTIONS(450), + [anon_sym_random] = ACTIONS(450), + [anon_sym_58] = ACTIONS(450), + [anon_sym_gen] = ACTIONS(450), + [anon_sym_deal] = ACTIONS(450), + [anon_sym_tag] = ACTIONS(450), + [anon_sym_now] = ACTIONS(450), + [anon_sym_type] = ACTIONS(450), + [anon_sym_59] = ACTIONS(450), + [anon_sym_dump] = ACTIONS(450), + [anon_sym_regex] = ACTIONS(450), + [anon_sym_utf] = ACTIONS(450), + [anon_sym_rock] = ACTIONS(450), + [anon_sym_60] = ACTIONS(450), + [anon_sym_surface] = ACTIONS(450), + [anon_sym_TILDE] = ACTIONS(450), + [anon_sym_deep] = ACTIONS(450), + [anon_sym_de] = ACTIONS(448), + [anon_sym_61] = ACTIONS(450), + [anon_sym_abyss] = ACTIONS(450), + [anon_sym_ab] = ACTIONS(448), + [anon_sym_62] = ACTIONS(450), + [anon_sym_seabed] = ACTIONS(450), + [anon_sym_se] = ACTIONS(448), + [anon_sym_63] = ACTIONS(450), + [anon_sym_send] = ACTIONS(450), + [anon_sym_recv] = ACTIONS(450), + [anon_sym_tryrecv] = ACTIONS(450), + [anon_sym_reduce] = ACTIONS(450), + [anon_sym_SLASH] = ACTIONS(450), + [anon_sym_scan] = ACTIONS(450), + [anon_sym_BSLASH] = ACTIONS(450), + [anon_sym_each] = ACTIONS(450), + [anon_sym_64] = ACTIONS(450), + [anon_sym_rows] = ACTIONS(450), + [anon_sym_65] = ACTIONS(450), + [anon_sym_repeat] = ACTIONS(450), + [anon_sym_66] = ACTIONS(450), + [anon_sym_dip] = ACTIONS(450), + [anon_sym_67] = ACTIONS(450), + [anon_sym_gap] = ACTIONS(450), + [anon_sym_68] = ACTIONS(450), + [anon_sym_69] = ACTIONS(450), + [anon_sym_invert] = ACTIONS(450), + [anon_sym_70] = ACTIONS(450), + [anon_sym_spawn] = ACTIONS(450), + [anon_sym_pack] = ACTIONS(450), + [anon_sym_71] = ACTIONS(450), + [anon_sym_tribute] = ACTIONS(450), + [anon_sym_72] = ACTIONS(450), + [anon_sym_reach] = ACTIONS(450), + [anon_sym_fold] = ACTIONS(450), + [anon_sym_73] = ACTIONS(450), + [anon_sym_distribute] = ACTIONS(450), + [anon_sym_74] = ACTIONS(450), + [anon_sym_table] = ACTIONS(450), + [anon_sym_75] = ACTIONS(450), + [anon_sym_cross] = ACTIONS(450), + [anon_sym_76] = ACTIONS(450), + [anon_sym_group] = ACTIONS(450), + [anon_sym_77] = ACTIONS(450), + [anon_sym_partition] = ACTIONS(450), + [anon_sym_78] = ACTIONS(450), + [anon_sym_both] = ACTIONS(450), + [anon_sym_79] = ACTIONS(450), + [anon_sym_bracket] = ACTIONS(450), + [anon_sym_80] = ACTIONS(450), + [anon_sym_fork] = ACTIONS(450), + [anon_sym_81] = ACTIONS(450), + [anon_sym_under] = ACTIONS(450), + [anon_sym_82] = ACTIONS(450), + [anon_sym_level] = ACTIONS(450), + [anon_sym_83] = ACTIONS(450), + [anon_sym_fill] = ACTIONS(450), + [anon_sym_84] = ACTIONS(450), + [anon_sym_bind] = ACTIONS(450), + [anon_sym_SQUOTE] = ACTIONS(450), + [anon_sym_QMARK] = ACTIONS(450), + [anon_sym_try] = ACTIONS(448), + [anon_sym_85] = ACTIONS(450), + [anon_sym_combinate] = ACTIONS(450), + [anon_sym_86] = ACTIONS(450), + [anon_sym_87] = ACTIONS(450), + [anon_sym_88] = ACTIONS(450), + [anon_sym_89] = ACTIONS(450), + [anon_sym_90] = ACTIONS(450), + [anon_sym_91] = ACTIONS(450), + [anon_sym_92] = ACTIONS(450), + [anon_sym_93] = ACTIONS(450), [sym__whitespace] = ACTIONS(5), - [sym__end_of_line] = ACTIONS(468), + [sym__end_of_line] = ACTIONS(450), }, [72] = { - [aux_sym_number_token1] = ACTIONS(470), - [anon_sym_os] = ACTIONS(470), - [anon_sym_Family] = ACTIONS(470), - [anon_sym_Arch] = ACTIONS(470), - [anon_sym_ExeExt] = ACTIONS(470), - [anon_sym_PllExt] = ACTIONS(470), - [anon_sym_Sep] = ACTIONS(470), - [aux_sym_character_token1] = ACTIONS(472), - [sym_string] = ACTIONS(472), - [sym_multiLineString] = ACTIONS(472), - [anon_sym_PIPE] = ACTIONS(472), - [sym_identifier] = ACTIONS(470), - [sym_identifier_deprecated] = ACTIONS(470), - [sym_system] = ACTIONS(472), - [sym_comment] = ACTIONS(470), - [sym_openParen] = ACTIONS(472), - [sym_closeParen] = ACTIONS(472), - [sym_openCurly] = ACTIONS(472), - [sym_closeCurly] = ACTIONS(472), - [sym_openBracket] = ACTIONS(472), - [sym_closeBracket] = ACTIONS(472), - [sym_underscore] = ACTIONS(472), - [sym_leftArrow] = ACTIONS(472), - [anon_sym_CARET] = ACTIONS(472), - [anon_sym_eta] = ACTIONS(472), - [anon_sym_] = ACTIONS(470), - [anon_sym_pi] = ACTIONS(470), - [anon_sym_2] = ACTIONS(470), - [anon_sym_tau] = ACTIONS(472), - [anon_sym_3] = ACTIONS(470), - [anon_sym_infinity] = ACTIONS(472), - [anon_sym_4] = ACTIONS(472), - [anon_sym_e] = ACTIONS(470), - [anon_sym_NaN] = ACTIONS(470), - [anon_sym_NumProcs] = ACTIONS(470), - [anon_sym_DOT] = ACTIONS(472), - [anon_sym_COMMA] = ACTIONS(472), - [anon_sym_5] = ACTIONS(472), - [anon_sym_SEMI] = ACTIONS(472), - [anon_sym_identity] = ACTIONS(472), - [anon_sym_id] = ACTIONS(470), - [anon_sym_6] = ACTIONS(472), - [anon_sym_not] = ACTIONS(472), - [anon_sym_7] = ACTIONS(472), - [anon_sym_sign] = ACTIONS(472), - [anon_sym_8] = ACTIONS(472), - [anon_sym_BQUOTE] = ACTIONS(472), - [anon_sym_9] = ACTIONS(472), - [anon_sym_absolutevalue] = ACTIONS(472), - [anon_sym_10] = ACTIONS(472), - [anon_sym_sqrt] = ACTIONS(472), - [anon_sym_11] = ACTIONS(472), - [anon_sym_sine] = ACTIONS(472), - [anon_sym_12] = ACTIONS(472), - [anon_sym_floor] = ACTIONS(472), - [anon_sym_13] = ACTIONS(472), - [anon_sym_ceiling] = ACTIONS(472), - [anon_sym_14] = ACTIONS(472), - [anon_sym_round] = ACTIONS(472), - [anon_sym_15] = ACTIONS(472), - [anon_sym_EQ] = ACTIONS(472), - [anon_sym_BANG_EQ] = ACTIONS(472), - [anon_sym_16] = ACTIONS(472), - [anon_sym_LT] = ACTIONS(470), - [anon_sym_LT_EQ] = ACTIONS(472), - [anon_sym_17] = ACTIONS(472), - [anon_sym_GT] = ACTIONS(470), - [anon_sym_GT_EQ] = ACTIONS(472), - [anon_sym_18] = ACTIONS(472), - [anon_sym_PLUS] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(472), - [anon_sym_STAR] = ACTIONS(472), - [anon_sym_19] = ACTIONS(472), - [anon_sym_PERCENT] = ACTIONS(472), - [anon_sym_20] = ACTIONS(472), - [anon_sym_modulus] = ACTIONS(472), - [anon_sym_21] = ACTIONS(472), - [anon_sym_power] = ACTIONS(472), - [anon_sym_22] = ACTIONS(472), - [anon_sym_logarithm] = ACTIONS(472), - [anon_sym_23] = ACTIONS(472), - [anon_sym_minimum] = ACTIONS(472), - [anon_sym_24] = ACTIONS(472), - [anon_sym_maximum] = ACTIONS(472), - [anon_sym_25] = ACTIONS(472), - [anon_sym_atangent] = ACTIONS(472), - [anon_sym_26] = ACTIONS(472), - [anon_sym_length] = ACTIONS(472), - [anon_sym_27] = ACTIONS(472), - [anon_sym_shape] = ACTIONS(472), - [anon_sym_28] = ACTIONS(472), - [anon_sym_range] = ACTIONS(472), - [anon_sym_29] = ACTIONS(472), - [anon_sym_first] = ACTIONS(472), - [anon_sym_30] = ACTIONS(472), - [anon_sym_reverse] = ACTIONS(472), - [anon_sym_31] = ACTIONS(472), - [anon_sym_deshape] = ACTIONS(472), - [anon_sym_32] = ACTIONS(472), - [anon_sym_bits] = ACTIONS(472), - [anon_sym_33] = ACTIONS(472), - [anon_sym_transpose] = ACTIONS(472), - [anon_sym_34] = ACTIONS(472), - [anon_sym_rise] = ACTIONS(472), - [anon_sym_35] = ACTIONS(472), - [anon_sym_fall] = ACTIONS(472), - [anon_sym_36] = ACTIONS(472), - [anon_sym_where] = ACTIONS(472), - [anon_sym_37] = ACTIONS(472), - [anon_sym_classify] = ACTIONS(472), - [anon_sym_38] = ACTIONS(472), - [anon_sym_deduplicate] = ACTIONS(472), - [anon_sym_39] = ACTIONS(472), - [anon_sym_box] = ACTIONS(472), - [anon_sym_40] = ACTIONS(472), - [anon_sym_unbox] = ACTIONS(472), - [anon_sym_41] = ACTIONS(472), - [anon_sym_match] = ACTIONS(472), - [anon_sym_42] = ACTIONS(472), - [anon_sym_couple] = ACTIONS(472), - [anon_sym_43] = ACTIONS(472), - [anon_sym_join] = ACTIONS(472), - [anon_sym_44] = ACTIONS(472), - [anon_sym_select] = ACTIONS(472), - [anon_sym_45] = ACTIONS(472), - [anon_sym_pick] = ACTIONS(472), - [anon_sym_46] = ACTIONS(472), - [anon_sym_reshape] = ACTIONS(472), - [anon_sym_47] = ACTIONS(472), - [anon_sym_take] = ACTIONS(472), - [anon_sym_48] = ACTIONS(472), - [anon_sym_drop] = ACTIONS(472), - [anon_sym_49] = ACTIONS(472), - [anon_sym_rotate] = ACTIONS(472), - [anon_sym_50] = ACTIONS(472), - [anon_sym_windows] = ACTIONS(472), - [anon_sym_51] = ACTIONS(472), - [anon_sym_keep] = ACTIONS(472), - [anon_sym_52] = ACTIONS(472), - [anon_sym_find] = ACTIONS(472), - [anon_sym_53] = ACTIONS(472), - [anon_sym_member] = ACTIONS(472), - [anon_sym_54] = ACTIONS(472), - [anon_sym_indexof] = ACTIONS(472), - [anon_sym_55] = ACTIONS(472), - [anon_sym_assert] = ACTIONS(472), - [anon_sym_56] = ACTIONS(472), - [anon_sym_wait] = ACTIONS(472), - [anon_sym_break] = ACTIONS(472), - [anon_sym_57] = ACTIONS(472), - [anon_sym_parse] = ACTIONS(472), - [anon_sym_random] = ACTIONS(472), - [anon_sym_58] = ACTIONS(472), - [anon_sym_gen] = ACTIONS(472), - [anon_sym_deal] = ACTIONS(472), - [anon_sym_tag] = ACTIONS(472), - [anon_sym_now] = ACTIONS(472), - [anon_sym_type] = ACTIONS(472), - [anon_sym_59] = ACTIONS(472), - [anon_sym_dump] = ACTIONS(472), - [anon_sym_regex] = ACTIONS(472), - [anon_sym_utf] = ACTIONS(472), - [anon_sym_rock] = ACTIONS(472), - [anon_sym_60] = ACTIONS(472), - [anon_sym_surface] = ACTIONS(472), - [anon_sym_TILDE] = ACTIONS(472), - [anon_sym_deep] = ACTIONS(472), - [anon_sym_de] = ACTIONS(470), - [anon_sym_61] = ACTIONS(472), - [anon_sym_abyss] = ACTIONS(472), - [anon_sym_ab] = ACTIONS(470), - [anon_sym_62] = ACTIONS(472), - [anon_sym_seabed] = ACTIONS(472), - [anon_sym_se] = ACTIONS(470), - [anon_sym_63] = ACTIONS(472), - [anon_sym_send] = ACTIONS(472), - [anon_sym_recv] = ACTIONS(472), - [anon_sym_tryrecv] = ACTIONS(472), - [anon_sym_reduce] = ACTIONS(472), - [anon_sym_SLASH] = ACTIONS(472), - [anon_sym_scan] = ACTIONS(472), - [anon_sym_BSLASH] = ACTIONS(472), - [anon_sym_each] = ACTIONS(472), - [anon_sym_64] = ACTIONS(472), - [anon_sym_rows] = ACTIONS(472), - [anon_sym_65] = ACTIONS(472), - [anon_sym_repeat] = ACTIONS(472), - [anon_sym_66] = ACTIONS(472), - [anon_sym_dip] = ACTIONS(472), - [anon_sym_di] = ACTIONS(470), - [anon_sym_67] = ACTIONS(472), - [anon_sym_gap] = ACTIONS(472), - [anon_sym_ga] = ACTIONS(470), - [anon_sym_68] = ACTIONS(472), - [anon_sym_oust] = ACTIONS(472), - [anon_sym_69] = ACTIONS(472), - [anon_sym_invert] = ACTIONS(472), - [anon_sym_70] = ACTIONS(472), - [anon_sym_spawn] = ACTIONS(472), - [anon_sym_pack] = ACTIONS(472), - [anon_sym_71] = ACTIONS(472), - [anon_sym_tribute] = ACTIONS(472), - [anon_sym_72] = ACTIONS(472), - [anon_sym_fold] = ACTIONS(472), - [anon_sym_73] = ACTIONS(472), - [anon_sym_distribute] = ACTIONS(472), - [anon_sym_74] = ACTIONS(472), - [anon_sym_table] = ACTIONS(472), - [anon_sym_75] = ACTIONS(472), - [anon_sym_cross] = ACTIONS(472), - [anon_sym_76] = ACTIONS(472), - [anon_sym_group] = ACTIONS(472), - [anon_sym_77] = ACTIONS(472), - [anon_sym_partition] = ACTIONS(472), - [anon_sym_78] = ACTIONS(472), - [anon_sym_both] = ACTIONS(472), - [anon_sym_79] = ACTIONS(472), - [anon_sym_bracket] = ACTIONS(472), - [anon_sym_80] = ACTIONS(472), - [anon_sym_fork] = ACTIONS(472), - [anon_sym_81] = ACTIONS(472), - [anon_sym_under] = ACTIONS(472), - [anon_sym_82] = ACTIONS(472), - [anon_sym_level] = ACTIONS(472), - [anon_sym_83] = ACTIONS(472), - [anon_sym_fill] = ACTIONS(472), - [anon_sym_84] = ACTIONS(472), - [anon_sym_bind] = ACTIONS(472), - [anon_sym_SQUOTE] = ACTIONS(472), - [anon_sym_QMARK] = ACTIONS(472), - [anon_sym_try] = ACTIONS(470), - [anon_sym_85] = ACTIONS(472), - [anon_sym_combinate] = ACTIONS(472), - [anon_sym_86] = ACTIONS(472), - [anon_sym_87] = ACTIONS(472), - [anon_sym_88] = ACTIONS(472), - [anon_sym_89] = ACTIONS(472), - [anon_sym_90] = ACTIONS(472), - [anon_sym_91] = ACTIONS(472), - [anon_sym_92] = ACTIONS(472), - [anon_sym_93] = ACTIONS(472), + [aux_sym_number_token1] = ACTIONS(452), + [anon_sym_os] = ACTIONS(452), + [anon_sym_Family] = ACTIONS(452), + [anon_sym_Arch] = ACTIONS(452), + [anon_sym_ExeExt] = ACTIONS(452), + [anon_sym_PllExt] = ACTIONS(452), + [anon_sym_Sep] = ACTIONS(452), + [aux_sym_character_token1] = ACTIONS(454), + [sym_string] = ACTIONS(454), + [sym_multiLineString] = ACTIONS(454), + [anon_sym_PIPE] = ACTIONS(454), + [sym_identifier] = ACTIONS(452), + [sym_identifier_deprecated] = ACTIONS(452), + [sym_system] = ACTIONS(454), + [sym_comment] = ACTIONS(452), + [sym_openParen] = ACTIONS(454), + [sym_closeParen] = ACTIONS(454), + [sym_openCurly] = ACTIONS(454), + [sym_closeCurly] = ACTIONS(454), + [sym_openBracket] = ACTIONS(454), + [sym_closeBracket] = ACTIONS(454), + [sym_underscore] = ACTIONS(454), + [sym_leftArrow] = ACTIONS(454), + [anon_sym_CARET] = ACTIONS(454), + [anon_sym_eta] = ACTIONS(454), + [anon_sym_] = ACTIONS(452), + [anon_sym_pi] = ACTIONS(452), + [anon_sym_2] = ACTIONS(452), + [anon_sym_tau] = ACTIONS(454), + [anon_sym_3] = ACTIONS(452), + [anon_sym_infinity] = ACTIONS(454), + [anon_sym_4] = ACTIONS(454), + [anon_sym_e] = ACTIONS(452), + [anon_sym_NaN] = ACTIONS(452), + [anon_sym_NumProcs] = ACTIONS(452), + [anon_sym_DOT] = ACTIONS(454), + [anon_sym_COMMA] = ACTIONS(454), + [anon_sym_5] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_identity] = ACTIONS(454), + [anon_sym_id] = ACTIONS(452), + [anon_sym_6] = ACTIONS(454), + [anon_sym_not] = ACTIONS(454), + [anon_sym_7] = ACTIONS(454), + [anon_sym_sign] = ACTIONS(454), + [anon_sym_8] = ACTIONS(454), + [anon_sym_BQUOTE] = ACTIONS(454), + [anon_sym_9] = ACTIONS(454), + [anon_sym_absolutevalue] = ACTIONS(454), + [anon_sym_10] = ACTIONS(454), + [anon_sym_sqrt] = ACTIONS(454), + [anon_sym_11] = ACTIONS(454), + [anon_sym_sine] = ACTIONS(454), + [anon_sym_12] = ACTIONS(454), + [anon_sym_floor] = ACTIONS(454), + [anon_sym_13] = ACTIONS(454), + [anon_sym_ceiling] = ACTIONS(454), + [anon_sym_14] = ACTIONS(454), + [anon_sym_round] = ACTIONS(454), + [anon_sym_15] = ACTIONS(454), + [anon_sym_EQ] = ACTIONS(454), + [anon_sym_BANG_EQ] = ACTIONS(454), + [anon_sym_16] = ACTIONS(454), + [anon_sym_LT] = ACTIONS(452), + [anon_sym_LT_EQ] = ACTIONS(454), + [anon_sym_17] = ACTIONS(454), + [anon_sym_GT] = ACTIONS(452), + [anon_sym_GT_EQ] = ACTIONS(454), + [anon_sym_18] = ACTIONS(454), + [anon_sym_PLUS] = ACTIONS(454), + [anon_sym_DASH] = ACTIONS(454), + [anon_sym_STAR] = ACTIONS(454), + [anon_sym_19] = ACTIONS(454), + [anon_sym_PERCENT] = ACTIONS(454), + [anon_sym_20] = ACTIONS(454), + [anon_sym_modulus] = ACTIONS(454), + [anon_sym_21] = ACTIONS(454), + [anon_sym_power] = ACTIONS(454), + [anon_sym_22] = ACTIONS(454), + [anon_sym_logarithm] = ACTIONS(454), + [anon_sym_23] = ACTIONS(454), + [anon_sym_minimum] = ACTIONS(454), + [anon_sym_24] = ACTIONS(454), + [anon_sym_maximum] = ACTIONS(454), + [anon_sym_25] = ACTIONS(454), + [anon_sym_atangent] = ACTIONS(454), + [anon_sym_26] = ACTIONS(454), + [anon_sym_length] = ACTIONS(454), + [anon_sym_27] = ACTIONS(454), + [anon_sym_shape] = ACTIONS(454), + [anon_sym_28] = ACTIONS(454), + [anon_sym_range] = ACTIONS(454), + [anon_sym_29] = ACTIONS(454), + [anon_sym_first] = ACTIONS(454), + [anon_sym_30] = ACTIONS(454), + [anon_sym_reverse] = ACTIONS(454), + [anon_sym_31] = ACTIONS(454), + [anon_sym_deshape] = ACTIONS(454), + [anon_sym_32] = ACTIONS(454), + [anon_sym_bits] = ACTIONS(454), + [anon_sym_33] = ACTIONS(454), + [anon_sym_transpose] = ACTIONS(454), + [anon_sym_34] = ACTIONS(454), + [anon_sym_rise] = ACTIONS(454), + [anon_sym_35] = ACTIONS(454), + [anon_sym_fall] = ACTIONS(454), + [anon_sym_36] = ACTIONS(454), + [anon_sym_where] = ACTIONS(454), + [anon_sym_37] = ACTIONS(454), + [anon_sym_classify] = ACTIONS(454), + [anon_sym_38] = ACTIONS(454), + [anon_sym_deduplicate] = ACTIONS(454), + [anon_sym_39] = ACTIONS(454), + [anon_sym_box] = ACTIONS(454), + [anon_sym_40] = ACTIONS(454), + [anon_sym_unbox] = ACTIONS(454), + [anon_sym_41] = ACTIONS(454), + [anon_sym_match] = ACTIONS(454), + [anon_sym_42] = ACTIONS(454), + [anon_sym_couple] = ACTIONS(454), + [anon_sym_43] = ACTIONS(454), + [anon_sym_join] = ACTIONS(454), + [anon_sym_44] = ACTIONS(454), + [anon_sym_select] = ACTIONS(454), + [anon_sym_45] = ACTIONS(454), + [anon_sym_pick] = ACTIONS(454), + [anon_sym_46] = ACTIONS(454), + [anon_sym_reshape] = ACTIONS(454), + [anon_sym_47] = ACTIONS(454), + [anon_sym_take] = ACTIONS(454), + [anon_sym_48] = ACTIONS(454), + [anon_sym_drop] = ACTIONS(454), + [anon_sym_49] = ACTIONS(454), + [anon_sym_rotate] = ACTIONS(454), + [anon_sym_50] = ACTIONS(454), + [anon_sym_windows] = ACTIONS(454), + [anon_sym_51] = ACTIONS(454), + [anon_sym_keep] = ACTIONS(454), + [anon_sym_52] = ACTIONS(454), + [anon_sym_find] = ACTIONS(454), + [anon_sym_53] = ACTIONS(454), + [anon_sym_member] = ACTIONS(454), + [anon_sym_54] = ACTIONS(454), + [anon_sym_indexof] = ACTIONS(454), + [anon_sym_55] = ACTIONS(454), + [anon_sym_assert] = ACTIONS(454), + [anon_sym_56] = ACTIONS(454), + [anon_sym_wait] = ACTIONS(454), + [anon_sym_break] = ACTIONS(454), + [anon_sym_57] = ACTIONS(454), + [anon_sym_parse] = ACTIONS(454), + [anon_sym_random] = ACTIONS(454), + [anon_sym_58] = ACTIONS(454), + [anon_sym_gen] = ACTIONS(454), + [anon_sym_deal] = ACTIONS(454), + [anon_sym_tag] = ACTIONS(454), + [anon_sym_now] = ACTIONS(454), + [anon_sym_type] = ACTIONS(454), + [anon_sym_59] = ACTIONS(454), + [anon_sym_dump] = ACTIONS(454), + [anon_sym_regex] = ACTIONS(454), + [anon_sym_utf] = ACTIONS(454), + [anon_sym_rock] = ACTIONS(454), + [anon_sym_60] = ACTIONS(454), + [anon_sym_surface] = ACTIONS(454), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_deep] = ACTIONS(454), + [anon_sym_de] = ACTIONS(452), + [anon_sym_61] = ACTIONS(454), + [anon_sym_abyss] = ACTIONS(454), + [anon_sym_ab] = ACTIONS(452), + [anon_sym_62] = ACTIONS(454), + [anon_sym_seabed] = ACTIONS(454), + [anon_sym_se] = ACTIONS(452), + [anon_sym_63] = ACTIONS(454), + [anon_sym_send] = ACTIONS(454), + [anon_sym_recv] = ACTIONS(454), + [anon_sym_tryrecv] = ACTIONS(454), + [anon_sym_reduce] = ACTIONS(454), + [anon_sym_SLASH] = ACTIONS(454), + [anon_sym_scan] = ACTIONS(454), + [anon_sym_BSLASH] = ACTIONS(454), + [anon_sym_each] = ACTIONS(454), + [anon_sym_64] = ACTIONS(454), + [anon_sym_rows] = ACTIONS(454), + [anon_sym_65] = ACTIONS(454), + [anon_sym_repeat] = ACTIONS(454), + [anon_sym_66] = ACTIONS(454), + [anon_sym_dip] = ACTIONS(454), + [anon_sym_67] = ACTIONS(454), + [anon_sym_gap] = ACTIONS(454), + [anon_sym_68] = ACTIONS(454), + [anon_sym_69] = ACTIONS(454), + [anon_sym_invert] = ACTIONS(454), + [anon_sym_70] = ACTIONS(454), + [anon_sym_spawn] = ACTIONS(454), + [anon_sym_pack] = ACTIONS(454), + [anon_sym_71] = ACTIONS(454), + [anon_sym_tribute] = ACTIONS(454), + [anon_sym_72] = ACTIONS(454), + [anon_sym_reach] = ACTIONS(454), + [anon_sym_fold] = ACTIONS(454), + [anon_sym_73] = ACTIONS(454), + [anon_sym_distribute] = ACTIONS(454), + [anon_sym_74] = ACTIONS(454), + [anon_sym_table] = ACTIONS(454), + [anon_sym_75] = ACTIONS(454), + [anon_sym_cross] = ACTIONS(454), + [anon_sym_76] = ACTIONS(454), + [anon_sym_group] = ACTIONS(454), + [anon_sym_77] = ACTIONS(454), + [anon_sym_partition] = ACTIONS(454), + [anon_sym_78] = ACTIONS(454), + [anon_sym_both] = ACTIONS(454), + [anon_sym_79] = ACTIONS(454), + [anon_sym_bracket] = ACTIONS(454), + [anon_sym_80] = ACTIONS(454), + [anon_sym_fork] = ACTIONS(454), + [anon_sym_81] = ACTIONS(454), + [anon_sym_under] = ACTIONS(454), + [anon_sym_82] = ACTIONS(454), + [anon_sym_level] = ACTIONS(454), + [anon_sym_83] = ACTIONS(454), + [anon_sym_fill] = ACTIONS(454), + [anon_sym_84] = ACTIONS(454), + [anon_sym_bind] = ACTIONS(454), + [anon_sym_SQUOTE] = ACTIONS(454), + [anon_sym_QMARK] = ACTIONS(454), + [anon_sym_try] = ACTIONS(452), + [anon_sym_85] = ACTIONS(454), + [anon_sym_combinate] = ACTIONS(454), + [anon_sym_86] = ACTIONS(454), + [anon_sym_87] = ACTIONS(454), + [anon_sym_88] = ACTIONS(454), + [anon_sym_89] = ACTIONS(454), + [anon_sym_90] = ACTIONS(454), + [anon_sym_91] = ACTIONS(454), + [anon_sym_92] = ACTIONS(454), + [anon_sym_93] = ACTIONS(454), [sym__whitespace] = ACTIONS(5), - [sym__end_of_line] = ACTIONS(472), + [sym__end_of_line] = ACTIONS(454), }, [73] = { - [aux_sym_number_token1] = ACTIONS(474), - [anon_sym_os] = ACTIONS(474), - [anon_sym_Family] = ACTIONS(474), - [anon_sym_Arch] = ACTIONS(474), - [anon_sym_ExeExt] = ACTIONS(474), - [anon_sym_PllExt] = ACTIONS(474), - [anon_sym_Sep] = ACTIONS(474), - [aux_sym_character_token1] = ACTIONS(476), - [sym_string] = ACTIONS(476), - [sym_multiLineString] = ACTIONS(476), - [anon_sym_PIPE] = ACTIONS(476), - [sym_identifier] = ACTIONS(474), - [sym_identifier_deprecated] = ACTIONS(474), - [sym_system] = ACTIONS(476), - [sym_comment] = ACTIONS(474), - [sym_openParen] = ACTIONS(476), - [sym_closeParen] = ACTIONS(476), - [sym_openCurly] = ACTIONS(476), - [sym_closeCurly] = ACTIONS(476), - [sym_openBracket] = ACTIONS(476), - [sym_closeBracket] = ACTIONS(476), - [sym_underscore] = ACTIONS(476), - [sym_leftArrow] = ACTIONS(476), - [anon_sym_CARET] = ACTIONS(476), - [anon_sym_eta] = ACTIONS(476), - [anon_sym_] = ACTIONS(474), - [anon_sym_pi] = ACTIONS(474), - [anon_sym_2] = ACTIONS(474), - [anon_sym_tau] = ACTIONS(476), - [anon_sym_3] = ACTIONS(474), - [anon_sym_infinity] = ACTIONS(476), - [anon_sym_4] = ACTIONS(476), - [anon_sym_e] = ACTIONS(474), - [anon_sym_NaN] = ACTIONS(474), - [anon_sym_NumProcs] = ACTIONS(474), - [anon_sym_DOT] = ACTIONS(476), - [anon_sym_COMMA] = ACTIONS(476), - [anon_sym_5] = ACTIONS(476), - [anon_sym_SEMI] = ACTIONS(476), - [anon_sym_identity] = ACTIONS(476), - [anon_sym_id] = ACTIONS(474), - [anon_sym_6] = ACTIONS(476), - [anon_sym_not] = ACTIONS(476), - [anon_sym_7] = ACTIONS(476), - [anon_sym_sign] = ACTIONS(476), - [anon_sym_8] = ACTIONS(476), - [anon_sym_BQUOTE] = ACTIONS(476), - [anon_sym_9] = ACTIONS(476), - [anon_sym_absolutevalue] = ACTIONS(476), - [anon_sym_10] = ACTIONS(476), - [anon_sym_sqrt] = ACTIONS(476), - [anon_sym_11] = ACTIONS(476), - [anon_sym_sine] = ACTIONS(476), - [anon_sym_12] = ACTIONS(476), - [anon_sym_floor] = ACTIONS(476), - [anon_sym_13] = ACTIONS(476), - [anon_sym_ceiling] = ACTIONS(476), - [anon_sym_14] = ACTIONS(476), - [anon_sym_round] = ACTIONS(476), - [anon_sym_15] = ACTIONS(476), - [anon_sym_EQ] = ACTIONS(476), - [anon_sym_BANG_EQ] = ACTIONS(476), - [anon_sym_16] = ACTIONS(476), - [anon_sym_LT] = ACTIONS(474), - [anon_sym_LT_EQ] = ACTIONS(476), - [anon_sym_17] = ACTIONS(476), - [anon_sym_GT] = ACTIONS(474), - [anon_sym_GT_EQ] = ACTIONS(476), - [anon_sym_18] = ACTIONS(476), - [anon_sym_PLUS] = ACTIONS(476), - [anon_sym_DASH] = ACTIONS(476), - [anon_sym_STAR] = ACTIONS(476), - [anon_sym_19] = ACTIONS(476), - [anon_sym_PERCENT] = ACTIONS(476), - [anon_sym_20] = ACTIONS(476), - [anon_sym_modulus] = ACTIONS(476), - [anon_sym_21] = ACTIONS(476), - [anon_sym_power] = ACTIONS(476), - [anon_sym_22] = ACTIONS(476), - [anon_sym_logarithm] = ACTIONS(476), - [anon_sym_23] = ACTIONS(476), - [anon_sym_minimum] = ACTIONS(476), - [anon_sym_24] = ACTIONS(476), - [anon_sym_maximum] = ACTIONS(476), - [anon_sym_25] = ACTIONS(476), - [anon_sym_atangent] = ACTIONS(476), - [anon_sym_26] = ACTIONS(476), - [anon_sym_length] = ACTIONS(476), - [anon_sym_27] = ACTIONS(476), - [anon_sym_shape] = ACTIONS(476), - [anon_sym_28] = ACTIONS(476), - [anon_sym_range] = ACTIONS(476), - [anon_sym_29] = ACTIONS(476), - [anon_sym_first] = ACTIONS(476), - [anon_sym_30] = ACTIONS(476), - [anon_sym_reverse] = ACTIONS(476), - [anon_sym_31] = ACTIONS(476), - [anon_sym_deshape] = ACTIONS(476), - [anon_sym_32] = ACTIONS(476), - [anon_sym_bits] = ACTIONS(476), - [anon_sym_33] = ACTIONS(476), - [anon_sym_transpose] = ACTIONS(476), - [anon_sym_34] = ACTIONS(476), - [anon_sym_rise] = ACTIONS(476), - [anon_sym_35] = ACTIONS(476), - [anon_sym_fall] = ACTIONS(476), - [anon_sym_36] = ACTIONS(476), - [anon_sym_where] = ACTIONS(476), - [anon_sym_37] = ACTIONS(476), - [anon_sym_classify] = ACTIONS(476), - [anon_sym_38] = ACTIONS(476), - [anon_sym_deduplicate] = ACTIONS(476), - [anon_sym_39] = ACTIONS(476), - [anon_sym_box] = ACTIONS(476), - [anon_sym_40] = ACTIONS(476), - [anon_sym_unbox] = ACTIONS(476), - [anon_sym_41] = ACTIONS(476), - [anon_sym_match] = ACTIONS(476), - [anon_sym_42] = ACTIONS(476), - [anon_sym_couple] = ACTIONS(476), - [anon_sym_43] = ACTIONS(476), - [anon_sym_join] = ACTIONS(476), - [anon_sym_44] = ACTIONS(476), - [anon_sym_select] = ACTIONS(476), - [anon_sym_45] = ACTIONS(476), - [anon_sym_pick] = ACTIONS(476), - [anon_sym_46] = ACTIONS(476), - [anon_sym_reshape] = ACTIONS(476), - [anon_sym_47] = ACTIONS(476), - [anon_sym_take] = ACTIONS(476), - [anon_sym_48] = ACTIONS(476), - [anon_sym_drop] = ACTIONS(476), - [anon_sym_49] = ACTIONS(476), - [anon_sym_rotate] = ACTIONS(476), - [anon_sym_50] = ACTIONS(476), - [anon_sym_windows] = ACTIONS(476), - [anon_sym_51] = ACTIONS(476), - [anon_sym_keep] = ACTIONS(476), - [anon_sym_52] = ACTIONS(476), - [anon_sym_find] = ACTIONS(476), - [anon_sym_53] = ACTIONS(476), - [anon_sym_member] = ACTIONS(476), - [anon_sym_54] = ACTIONS(476), - [anon_sym_indexof] = ACTIONS(476), - [anon_sym_55] = ACTIONS(476), - [anon_sym_assert] = ACTIONS(476), - [anon_sym_56] = ACTIONS(476), - [anon_sym_wait] = ACTIONS(476), - [anon_sym_break] = ACTIONS(476), - [anon_sym_57] = ACTIONS(476), - [anon_sym_parse] = ACTIONS(476), - [anon_sym_random] = ACTIONS(476), - [anon_sym_58] = ACTIONS(476), - [anon_sym_gen] = ACTIONS(476), - [anon_sym_deal] = ACTIONS(476), - [anon_sym_tag] = ACTIONS(476), - [anon_sym_now] = ACTIONS(476), - [anon_sym_type] = ACTIONS(476), - [anon_sym_59] = ACTIONS(476), - [anon_sym_dump] = ACTIONS(476), - [anon_sym_regex] = ACTIONS(476), - [anon_sym_utf] = ACTIONS(476), - [anon_sym_rock] = ACTIONS(476), - [anon_sym_60] = ACTIONS(476), - [anon_sym_surface] = ACTIONS(476), - [anon_sym_TILDE] = ACTIONS(476), - [anon_sym_deep] = ACTIONS(476), - [anon_sym_de] = ACTIONS(474), - [anon_sym_61] = ACTIONS(476), - [anon_sym_abyss] = ACTIONS(476), - [anon_sym_ab] = ACTIONS(474), - [anon_sym_62] = ACTIONS(476), - [anon_sym_seabed] = ACTIONS(476), - [anon_sym_se] = ACTIONS(474), - [anon_sym_63] = ACTIONS(476), - [anon_sym_send] = ACTIONS(476), - [anon_sym_recv] = ACTIONS(476), - [anon_sym_tryrecv] = ACTIONS(476), - [anon_sym_reduce] = ACTIONS(476), - [anon_sym_SLASH] = ACTIONS(476), - [anon_sym_scan] = ACTIONS(476), - [anon_sym_BSLASH] = ACTIONS(476), - [anon_sym_each] = ACTIONS(476), - [anon_sym_64] = ACTIONS(476), - [anon_sym_rows] = ACTIONS(476), - [anon_sym_65] = ACTIONS(476), - [anon_sym_repeat] = ACTIONS(476), - [anon_sym_66] = ACTIONS(476), - [anon_sym_dip] = ACTIONS(476), - [anon_sym_di] = ACTIONS(474), - [anon_sym_67] = ACTIONS(476), - [anon_sym_gap] = ACTIONS(476), - [anon_sym_ga] = ACTIONS(474), - [anon_sym_68] = ACTIONS(476), - [anon_sym_oust] = ACTIONS(476), - [anon_sym_69] = ACTIONS(476), - [anon_sym_invert] = ACTIONS(476), - [anon_sym_70] = ACTIONS(476), - [anon_sym_spawn] = ACTIONS(476), - [anon_sym_pack] = ACTIONS(476), - [anon_sym_71] = ACTIONS(476), - [anon_sym_tribute] = ACTIONS(476), - [anon_sym_72] = ACTIONS(476), - [anon_sym_fold] = ACTIONS(476), - [anon_sym_73] = ACTIONS(476), - [anon_sym_distribute] = ACTIONS(476), - [anon_sym_74] = ACTIONS(476), - [anon_sym_table] = ACTIONS(476), - [anon_sym_75] = ACTIONS(476), - [anon_sym_cross] = ACTIONS(476), - [anon_sym_76] = ACTIONS(476), - [anon_sym_group] = ACTIONS(476), - [anon_sym_77] = ACTIONS(476), - [anon_sym_partition] = ACTIONS(476), - [anon_sym_78] = ACTIONS(476), - [anon_sym_both] = ACTIONS(476), - [anon_sym_79] = ACTIONS(476), - [anon_sym_bracket] = ACTIONS(476), - [anon_sym_80] = ACTIONS(476), - [anon_sym_fork] = ACTIONS(476), - [anon_sym_81] = ACTIONS(476), - [anon_sym_under] = ACTIONS(476), - [anon_sym_82] = ACTIONS(476), - [anon_sym_level] = ACTIONS(476), - [anon_sym_83] = ACTIONS(476), - [anon_sym_fill] = ACTIONS(476), - [anon_sym_84] = ACTIONS(476), - [anon_sym_bind] = ACTIONS(476), - [anon_sym_SQUOTE] = ACTIONS(476), - [anon_sym_QMARK] = ACTIONS(476), - [anon_sym_try] = ACTIONS(474), - [anon_sym_85] = ACTIONS(476), - [anon_sym_combinate] = ACTIONS(476), - [anon_sym_86] = ACTIONS(476), - [anon_sym_87] = ACTIONS(476), - [anon_sym_88] = ACTIONS(476), - [anon_sym_89] = ACTIONS(476), - [anon_sym_90] = ACTIONS(476), - [anon_sym_91] = ACTIONS(476), - [anon_sym_92] = ACTIONS(476), - [anon_sym_93] = ACTIONS(476), + [aux_sym_number_token1] = ACTIONS(456), + [anon_sym_os] = ACTIONS(456), + [anon_sym_Family] = ACTIONS(456), + [anon_sym_Arch] = ACTIONS(456), + [anon_sym_ExeExt] = ACTIONS(456), + [anon_sym_PllExt] = ACTIONS(456), + [anon_sym_Sep] = ACTIONS(456), + [aux_sym_character_token1] = ACTIONS(458), + [sym_string] = ACTIONS(458), + [sym_multiLineString] = ACTIONS(458), + [anon_sym_PIPE] = ACTIONS(458), + [sym_identifier] = ACTIONS(456), + [sym_identifier_deprecated] = ACTIONS(456), + [sym_system] = ACTIONS(458), + [sym_comment] = ACTIONS(456), + [sym_openParen] = ACTIONS(458), + [sym_closeParen] = ACTIONS(458), + [sym_openCurly] = ACTIONS(458), + [sym_closeCurly] = ACTIONS(458), + [sym_openBracket] = ACTIONS(458), + [sym_closeBracket] = ACTIONS(458), + [sym_underscore] = ACTIONS(458), + [sym_leftArrow] = ACTIONS(458), + [anon_sym_CARET] = ACTIONS(458), + [anon_sym_eta] = ACTIONS(458), + [anon_sym_] = ACTIONS(456), + [anon_sym_pi] = ACTIONS(456), + [anon_sym_2] = ACTIONS(456), + [anon_sym_tau] = ACTIONS(458), + [anon_sym_3] = ACTIONS(456), + [anon_sym_infinity] = ACTIONS(458), + [anon_sym_4] = ACTIONS(458), + [anon_sym_e] = ACTIONS(456), + [anon_sym_NaN] = ACTIONS(456), + [anon_sym_NumProcs] = ACTIONS(456), + [anon_sym_DOT] = ACTIONS(458), + [anon_sym_COMMA] = ACTIONS(458), + [anon_sym_5] = ACTIONS(458), + [anon_sym_SEMI] = ACTIONS(458), + [anon_sym_identity] = ACTIONS(458), + [anon_sym_id] = ACTIONS(456), + [anon_sym_6] = ACTIONS(458), + [anon_sym_not] = ACTIONS(458), + [anon_sym_7] = ACTIONS(458), + [anon_sym_sign] = ACTIONS(458), + [anon_sym_8] = ACTIONS(458), + [anon_sym_BQUOTE] = ACTIONS(458), + [anon_sym_9] = ACTIONS(458), + [anon_sym_absolutevalue] = ACTIONS(458), + [anon_sym_10] = ACTIONS(458), + [anon_sym_sqrt] = ACTIONS(458), + [anon_sym_11] = ACTIONS(458), + [anon_sym_sine] = ACTIONS(458), + [anon_sym_12] = ACTIONS(458), + [anon_sym_floor] = ACTIONS(458), + [anon_sym_13] = ACTIONS(458), + [anon_sym_ceiling] = ACTIONS(458), + [anon_sym_14] = ACTIONS(458), + [anon_sym_round] = ACTIONS(458), + [anon_sym_15] = ACTIONS(458), + [anon_sym_EQ] = ACTIONS(458), + [anon_sym_BANG_EQ] = ACTIONS(458), + [anon_sym_16] = ACTIONS(458), + [anon_sym_LT] = ACTIONS(456), + [anon_sym_LT_EQ] = ACTIONS(458), + [anon_sym_17] = ACTIONS(458), + [anon_sym_GT] = ACTIONS(456), + [anon_sym_GT_EQ] = ACTIONS(458), + [anon_sym_18] = ACTIONS(458), + [anon_sym_PLUS] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(458), + [anon_sym_STAR] = ACTIONS(458), + [anon_sym_19] = ACTIONS(458), + [anon_sym_PERCENT] = ACTIONS(458), + [anon_sym_20] = ACTIONS(458), + [anon_sym_modulus] = ACTIONS(458), + [anon_sym_21] = ACTIONS(458), + [anon_sym_power] = ACTIONS(458), + [anon_sym_22] = ACTIONS(458), + [anon_sym_logarithm] = ACTIONS(458), + [anon_sym_23] = ACTIONS(458), + [anon_sym_minimum] = ACTIONS(458), + [anon_sym_24] = ACTIONS(458), + [anon_sym_maximum] = ACTIONS(458), + [anon_sym_25] = ACTIONS(458), + [anon_sym_atangent] = ACTIONS(458), + [anon_sym_26] = ACTIONS(458), + [anon_sym_length] = ACTIONS(458), + [anon_sym_27] = ACTIONS(458), + [anon_sym_shape] = ACTIONS(458), + [anon_sym_28] = ACTIONS(458), + [anon_sym_range] = ACTIONS(458), + [anon_sym_29] = ACTIONS(458), + [anon_sym_first] = ACTIONS(458), + [anon_sym_30] = ACTIONS(458), + [anon_sym_reverse] = ACTIONS(458), + [anon_sym_31] = ACTIONS(458), + [anon_sym_deshape] = ACTIONS(458), + [anon_sym_32] = ACTIONS(458), + [anon_sym_bits] = ACTIONS(458), + [anon_sym_33] = ACTIONS(458), + [anon_sym_transpose] = ACTIONS(458), + [anon_sym_34] = ACTIONS(458), + [anon_sym_rise] = ACTIONS(458), + [anon_sym_35] = ACTIONS(458), + [anon_sym_fall] = ACTIONS(458), + [anon_sym_36] = ACTIONS(458), + [anon_sym_where] = ACTIONS(458), + [anon_sym_37] = ACTIONS(458), + [anon_sym_classify] = ACTIONS(458), + [anon_sym_38] = ACTIONS(458), + [anon_sym_deduplicate] = ACTIONS(458), + [anon_sym_39] = ACTIONS(458), + [anon_sym_box] = ACTIONS(458), + [anon_sym_40] = ACTIONS(458), + [anon_sym_unbox] = ACTIONS(458), + [anon_sym_41] = ACTIONS(458), + [anon_sym_match] = ACTIONS(458), + [anon_sym_42] = ACTIONS(458), + [anon_sym_couple] = ACTIONS(458), + [anon_sym_43] = ACTIONS(458), + [anon_sym_join] = ACTIONS(458), + [anon_sym_44] = ACTIONS(458), + [anon_sym_select] = ACTIONS(458), + [anon_sym_45] = ACTIONS(458), + [anon_sym_pick] = ACTIONS(458), + [anon_sym_46] = ACTIONS(458), + [anon_sym_reshape] = ACTIONS(458), + [anon_sym_47] = ACTIONS(458), + [anon_sym_take] = ACTIONS(458), + [anon_sym_48] = ACTIONS(458), + [anon_sym_drop] = ACTIONS(458), + [anon_sym_49] = ACTIONS(458), + [anon_sym_rotate] = ACTIONS(458), + [anon_sym_50] = ACTIONS(458), + [anon_sym_windows] = ACTIONS(458), + [anon_sym_51] = ACTIONS(458), + [anon_sym_keep] = ACTIONS(458), + [anon_sym_52] = ACTIONS(458), + [anon_sym_find] = ACTIONS(458), + [anon_sym_53] = ACTIONS(458), + [anon_sym_member] = ACTIONS(458), + [anon_sym_54] = ACTIONS(458), + [anon_sym_indexof] = ACTIONS(458), + [anon_sym_55] = ACTIONS(458), + [anon_sym_assert] = ACTIONS(458), + [anon_sym_56] = ACTIONS(458), + [anon_sym_wait] = ACTIONS(458), + [anon_sym_break] = ACTIONS(458), + [anon_sym_57] = ACTIONS(458), + [anon_sym_parse] = ACTIONS(458), + [anon_sym_random] = ACTIONS(458), + [anon_sym_58] = ACTIONS(458), + [anon_sym_gen] = ACTIONS(458), + [anon_sym_deal] = ACTIONS(458), + [anon_sym_tag] = ACTIONS(458), + [anon_sym_now] = ACTIONS(458), + [anon_sym_type] = ACTIONS(458), + [anon_sym_59] = ACTIONS(458), + [anon_sym_dump] = ACTIONS(458), + [anon_sym_regex] = ACTIONS(458), + [anon_sym_utf] = ACTIONS(458), + [anon_sym_rock] = ACTIONS(458), + [anon_sym_60] = ACTIONS(458), + [anon_sym_surface] = ACTIONS(458), + [anon_sym_TILDE] = ACTIONS(458), + [anon_sym_deep] = ACTIONS(458), + [anon_sym_de] = ACTIONS(456), + [anon_sym_61] = ACTIONS(458), + [anon_sym_abyss] = ACTIONS(458), + [anon_sym_ab] = ACTIONS(456), + [anon_sym_62] = ACTIONS(458), + [anon_sym_seabed] = ACTIONS(458), + [anon_sym_se] = ACTIONS(456), + [anon_sym_63] = ACTIONS(458), + [anon_sym_send] = ACTIONS(458), + [anon_sym_recv] = ACTIONS(458), + [anon_sym_tryrecv] = ACTIONS(458), + [anon_sym_reduce] = ACTIONS(458), + [anon_sym_SLASH] = ACTIONS(458), + [anon_sym_scan] = ACTIONS(458), + [anon_sym_BSLASH] = ACTIONS(458), + [anon_sym_each] = ACTIONS(458), + [anon_sym_64] = ACTIONS(458), + [anon_sym_rows] = ACTIONS(458), + [anon_sym_65] = ACTIONS(458), + [anon_sym_repeat] = ACTIONS(458), + [anon_sym_66] = ACTIONS(458), + [anon_sym_dip] = ACTIONS(458), + [anon_sym_67] = ACTIONS(458), + [anon_sym_gap] = ACTIONS(458), + [anon_sym_68] = ACTIONS(458), + [anon_sym_69] = ACTIONS(458), + [anon_sym_invert] = ACTIONS(458), + [anon_sym_70] = ACTIONS(458), + [anon_sym_spawn] = ACTIONS(458), + [anon_sym_pack] = ACTIONS(458), + [anon_sym_71] = ACTIONS(458), + [anon_sym_tribute] = ACTIONS(458), + [anon_sym_72] = ACTIONS(458), + [anon_sym_reach] = ACTIONS(458), + [anon_sym_fold] = ACTIONS(458), + [anon_sym_73] = ACTIONS(458), + [anon_sym_distribute] = ACTIONS(458), + [anon_sym_74] = ACTIONS(458), + [anon_sym_table] = ACTIONS(458), + [anon_sym_75] = ACTIONS(458), + [anon_sym_cross] = ACTIONS(458), + [anon_sym_76] = ACTIONS(458), + [anon_sym_group] = ACTIONS(458), + [anon_sym_77] = ACTIONS(458), + [anon_sym_partition] = ACTIONS(458), + [anon_sym_78] = ACTIONS(458), + [anon_sym_both] = ACTIONS(458), + [anon_sym_79] = ACTIONS(458), + [anon_sym_bracket] = ACTIONS(458), + [anon_sym_80] = ACTIONS(458), + [anon_sym_fork] = ACTIONS(458), + [anon_sym_81] = ACTIONS(458), + [anon_sym_under] = ACTIONS(458), + [anon_sym_82] = ACTIONS(458), + [anon_sym_level] = ACTIONS(458), + [anon_sym_83] = ACTIONS(458), + [anon_sym_fill] = ACTIONS(458), + [anon_sym_84] = ACTIONS(458), + [anon_sym_bind] = ACTIONS(458), + [anon_sym_SQUOTE] = ACTIONS(458), + [anon_sym_QMARK] = ACTIONS(458), + [anon_sym_try] = ACTIONS(456), + [anon_sym_85] = ACTIONS(458), + [anon_sym_combinate] = ACTIONS(458), + [anon_sym_86] = ACTIONS(458), + [anon_sym_87] = ACTIONS(458), + [anon_sym_88] = ACTIONS(458), + [anon_sym_89] = ACTIONS(458), + [anon_sym_90] = ACTIONS(458), + [anon_sym_91] = ACTIONS(458), + [anon_sym_92] = ACTIONS(458), + [anon_sym_93] = ACTIONS(458), [sym__whitespace] = ACTIONS(5), - [sym__end_of_line] = ACTIONS(476), + [sym__end_of_line] = ACTIONS(458), }, [74] = { - [aux_sym_number_token1] = ACTIONS(478), - [anon_sym_os] = ACTIONS(478), - [anon_sym_Family] = ACTIONS(478), - [anon_sym_Arch] = ACTIONS(478), - [anon_sym_ExeExt] = ACTIONS(478), - [anon_sym_PllExt] = ACTIONS(478), - [anon_sym_Sep] = ACTIONS(478), - [aux_sym_character_token1] = ACTIONS(480), - [sym_string] = ACTIONS(480), - [sym_multiLineString] = ACTIONS(480), - [anon_sym_PIPE] = ACTIONS(480), - [sym_identifier] = ACTIONS(478), - [sym_identifier_deprecated] = ACTIONS(478), - [sym_system] = ACTIONS(480), - [sym_comment] = ACTIONS(478), - [sym_openParen] = ACTIONS(480), - [sym_closeParen] = ACTIONS(480), - [sym_openCurly] = ACTIONS(480), - [sym_closeCurly] = ACTIONS(480), - [sym_openBracket] = ACTIONS(480), - [sym_closeBracket] = ACTIONS(480), - [sym_underscore] = ACTIONS(480), - [sym_leftArrow] = ACTIONS(480), - [anon_sym_CARET] = ACTIONS(480), - [anon_sym_eta] = ACTIONS(480), - [anon_sym_] = ACTIONS(478), - [anon_sym_pi] = ACTIONS(478), - [anon_sym_2] = ACTIONS(478), - [anon_sym_tau] = ACTIONS(480), - [anon_sym_3] = ACTIONS(478), - [anon_sym_infinity] = ACTIONS(480), - [anon_sym_4] = ACTIONS(480), - [anon_sym_e] = ACTIONS(478), - [anon_sym_NaN] = ACTIONS(478), - [anon_sym_NumProcs] = ACTIONS(478), - [anon_sym_DOT] = ACTIONS(480), - [anon_sym_COMMA] = ACTIONS(480), - [anon_sym_5] = ACTIONS(480), - [anon_sym_SEMI] = ACTIONS(480), - [anon_sym_identity] = ACTIONS(480), - [anon_sym_id] = ACTIONS(478), - [anon_sym_6] = ACTIONS(480), - [anon_sym_not] = ACTIONS(480), - [anon_sym_7] = ACTIONS(480), - [anon_sym_sign] = ACTIONS(480), - [anon_sym_8] = ACTIONS(480), - [anon_sym_BQUOTE] = ACTIONS(480), - [anon_sym_9] = ACTIONS(480), - [anon_sym_absolutevalue] = ACTIONS(480), - [anon_sym_10] = ACTIONS(480), - [anon_sym_sqrt] = ACTIONS(480), - [anon_sym_11] = ACTIONS(480), - [anon_sym_sine] = ACTIONS(480), - [anon_sym_12] = ACTIONS(480), - [anon_sym_floor] = ACTIONS(480), - [anon_sym_13] = ACTIONS(480), - [anon_sym_ceiling] = ACTIONS(480), - [anon_sym_14] = ACTIONS(480), - [anon_sym_round] = ACTIONS(480), - [anon_sym_15] = ACTIONS(480), - [anon_sym_EQ] = ACTIONS(480), - [anon_sym_BANG_EQ] = ACTIONS(480), - [anon_sym_16] = ACTIONS(480), - [anon_sym_LT] = ACTIONS(478), - [anon_sym_LT_EQ] = ACTIONS(480), - [anon_sym_17] = ACTIONS(480), - [anon_sym_GT] = ACTIONS(478), - [anon_sym_GT_EQ] = ACTIONS(480), - [anon_sym_18] = ACTIONS(480), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_STAR] = ACTIONS(480), - [anon_sym_19] = ACTIONS(480), - [anon_sym_PERCENT] = ACTIONS(480), - [anon_sym_20] = ACTIONS(480), - [anon_sym_modulus] = ACTIONS(480), - [anon_sym_21] = ACTIONS(480), - [anon_sym_power] = ACTIONS(480), - [anon_sym_22] = ACTIONS(480), - [anon_sym_logarithm] = ACTIONS(480), - [anon_sym_23] = ACTIONS(480), - [anon_sym_minimum] = ACTIONS(480), - [anon_sym_24] = ACTIONS(480), - [anon_sym_maximum] = ACTIONS(480), - [anon_sym_25] = ACTIONS(480), - [anon_sym_atangent] = ACTIONS(480), - [anon_sym_26] = ACTIONS(480), - [anon_sym_length] = ACTIONS(480), - [anon_sym_27] = ACTIONS(480), - [anon_sym_shape] = ACTIONS(480), - [anon_sym_28] = ACTIONS(480), - [anon_sym_range] = ACTIONS(480), - [anon_sym_29] = ACTIONS(480), - [anon_sym_first] = ACTIONS(480), - [anon_sym_30] = ACTIONS(480), - [anon_sym_reverse] = ACTIONS(480), - [anon_sym_31] = ACTIONS(480), - [anon_sym_deshape] = ACTIONS(480), - [anon_sym_32] = ACTIONS(480), - [anon_sym_bits] = ACTIONS(480), - [anon_sym_33] = ACTIONS(480), - [anon_sym_transpose] = ACTIONS(480), - [anon_sym_34] = ACTIONS(480), - [anon_sym_rise] = ACTIONS(480), - [anon_sym_35] = ACTIONS(480), - [anon_sym_fall] = ACTIONS(480), - [anon_sym_36] = ACTIONS(480), - [anon_sym_where] = ACTIONS(480), - [anon_sym_37] = ACTIONS(480), - [anon_sym_classify] = ACTIONS(480), - [anon_sym_38] = ACTIONS(480), - [anon_sym_deduplicate] = ACTIONS(480), - [anon_sym_39] = ACTIONS(480), - [anon_sym_box] = ACTIONS(480), - [anon_sym_40] = ACTIONS(480), - [anon_sym_unbox] = ACTIONS(480), - [anon_sym_41] = ACTIONS(480), - [anon_sym_match] = ACTIONS(480), - [anon_sym_42] = ACTIONS(480), - [anon_sym_couple] = ACTIONS(480), - [anon_sym_43] = ACTIONS(480), - [anon_sym_join] = ACTIONS(480), - [anon_sym_44] = ACTIONS(480), - [anon_sym_select] = ACTIONS(480), - [anon_sym_45] = ACTIONS(480), - [anon_sym_pick] = ACTIONS(480), - [anon_sym_46] = ACTIONS(480), - [anon_sym_reshape] = ACTIONS(480), - [anon_sym_47] = ACTIONS(480), - [anon_sym_take] = ACTIONS(480), - [anon_sym_48] = ACTIONS(480), - [anon_sym_drop] = ACTIONS(480), - [anon_sym_49] = ACTIONS(480), - [anon_sym_rotate] = ACTIONS(480), - [anon_sym_50] = ACTIONS(480), - [anon_sym_windows] = ACTIONS(480), - [anon_sym_51] = ACTIONS(480), - [anon_sym_keep] = ACTIONS(480), - [anon_sym_52] = ACTIONS(480), - [anon_sym_find] = ACTIONS(480), - [anon_sym_53] = ACTIONS(480), - [anon_sym_member] = ACTIONS(480), - [anon_sym_54] = ACTIONS(480), - [anon_sym_indexof] = ACTIONS(480), - [anon_sym_55] = ACTIONS(480), - [anon_sym_assert] = ACTIONS(480), - [anon_sym_56] = ACTIONS(480), - [anon_sym_wait] = ACTIONS(480), - [anon_sym_break] = ACTIONS(480), - [anon_sym_57] = ACTIONS(480), - [anon_sym_parse] = ACTIONS(480), - [anon_sym_random] = ACTIONS(480), - [anon_sym_58] = ACTIONS(480), - [anon_sym_gen] = ACTIONS(480), - [anon_sym_deal] = ACTIONS(480), - [anon_sym_tag] = ACTIONS(480), - [anon_sym_now] = ACTIONS(480), - [anon_sym_type] = ACTIONS(480), - [anon_sym_59] = ACTIONS(480), - [anon_sym_dump] = ACTIONS(480), - [anon_sym_regex] = ACTIONS(480), - [anon_sym_utf] = ACTIONS(480), - [anon_sym_rock] = ACTIONS(480), - [anon_sym_60] = ACTIONS(480), - [anon_sym_surface] = ACTIONS(480), - [anon_sym_TILDE] = ACTIONS(480), - [anon_sym_deep] = ACTIONS(480), - [anon_sym_de] = ACTIONS(478), - [anon_sym_61] = ACTIONS(480), - [anon_sym_abyss] = ACTIONS(480), - [anon_sym_ab] = ACTIONS(478), - [anon_sym_62] = ACTIONS(480), - [anon_sym_seabed] = ACTIONS(480), - [anon_sym_se] = ACTIONS(478), - [anon_sym_63] = ACTIONS(480), - [anon_sym_send] = ACTIONS(480), - [anon_sym_recv] = ACTIONS(480), - [anon_sym_tryrecv] = ACTIONS(480), - [anon_sym_reduce] = ACTIONS(480), - [anon_sym_SLASH] = ACTIONS(480), - [anon_sym_scan] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(480), - [anon_sym_each] = ACTIONS(480), - [anon_sym_64] = ACTIONS(480), - [anon_sym_rows] = ACTIONS(480), - [anon_sym_65] = ACTIONS(480), - [anon_sym_repeat] = ACTIONS(480), - [anon_sym_66] = ACTIONS(480), - [anon_sym_dip] = ACTIONS(480), - [anon_sym_di] = ACTIONS(478), - [anon_sym_67] = ACTIONS(480), - [anon_sym_gap] = ACTIONS(480), - [anon_sym_ga] = ACTIONS(478), - [anon_sym_68] = ACTIONS(480), - [anon_sym_oust] = ACTIONS(480), - [anon_sym_69] = ACTIONS(480), - [anon_sym_invert] = ACTIONS(480), - [anon_sym_70] = ACTIONS(480), - [anon_sym_spawn] = ACTIONS(480), - [anon_sym_pack] = ACTIONS(480), - [anon_sym_71] = ACTIONS(480), - [anon_sym_tribute] = ACTIONS(480), - [anon_sym_72] = ACTIONS(480), - [anon_sym_fold] = ACTIONS(480), - [anon_sym_73] = ACTIONS(480), - [anon_sym_distribute] = ACTIONS(480), - [anon_sym_74] = ACTIONS(480), - [anon_sym_table] = ACTIONS(480), - [anon_sym_75] = ACTIONS(480), - [anon_sym_cross] = ACTIONS(480), - [anon_sym_76] = ACTIONS(480), - [anon_sym_group] = ACTIONS(480), - [anon_sym_77] = ACTIONS(480), - [anon_sym_partition] = ACTIONS(480), - [anon_sym_78] = ACTIONS(480), - [anon_sym_both] = ACTIONS(480), - [anon_sym_79] = ACTIONS(480), - [anon_sym_bracket] = ACTIONS(480), - [anon_sym_80] = ACTIONS(480), - [anon_sym_fork] = ACTIONS(480), - [anon_sym_81] = ACTIONS(480), - [anon_sym_under] = ACTIONS(480), - [anon_sym_82] = ACTIONS(480), - [anon_sym_level] = ACTIONS(480), - [anon_sym_83] = ACTIONS(480), - [anon_sym_fill] = ACTIONS(480), - [anon_sym_84] = ACTIONS(480), - [anon_sym_bind] = ACTIONS(480), - [anon_sym_SQUOTE] = ACTIONS(480), - [anon_sym_QMARK] = ACTIONS(480), - [anon_sym_try] = ACTIONS(478), - [anon_sym_85] = ACTIONS(480), - [anon_sym_combinate] = ACTIONS(480), - [anon_sym_86] = ACTIONS(480), - [anon_sym_87] = ACTIONS(480), - [anon_sym_88] = ACTIONS(480), - [anon_sym_89] = ACTIONS(480), - [anon_sym_90] = ACTIONS(480), - [anon_sym_91] = ACTIONS(480), - [anon_sym_92] = ACTIONS(480), - [anon_sym_93] = ACTIONS(480), + [aux_sym_number_token1] = ACTIONS(460), + [anon_sym_os] = ACTIONS(460), + [anon_sym_Family] = ACTIONS(460), + [anon_sym_Arch] = ACTIONS(460), + [anon_sym_ExeExt] = ACTIONS(460), + [anon_sym_PllExt] = ACTIONS(460), + [anon_sym_Sep] = ACTIONS(460), + [aux_sym_character_token1] = ACTIONS(462), + [sym_string] = ACTIONS(462), + [sym_multiLineString] = ACTIONS(462), + [anon_sym_PIPE] = ACTIONS(462), + [sym_identifier] = ACTIONS(460), + [sym_identifier_deprecated] = ACTIONS(460), + [sym_system] = ACTIONS(462), + [sym_comment] = ACTIONS(460), + [sym_openParen] = ACTIONS(462), + [sym_closeParen] = ACTIONS(462), + [sym_openCurly] = ACTIONS(462), + [sym_closeCurly] = ACTIONS(462), + [sym_openBracket] = ACTIONS(462), + [sym_closeBracket] = ACTIONS(462), + [sym_underscore] = ACTIONS(462), + [sym_leftArrow] = ACTIONS(462), + [anon_sym_CARET] = ACTIONS(462), + [anon_sym_eta] = ACTIONS(462), + [anon_sym_] = ACTIONS(460), + [anon_sym_pi] = ACTIONS(460), + [anon_sym_2] = ACTIONS(460), + [anon_sym_tau] = ACTIONS(462), + [anon_sym_3] = ACTIONS(460), + [anon_sym_infinity] = ACTIONS(462), + [anon_sym_4] = ACTIONS(462), + [anon_sym_e] = ACTIONS(460), + [anon_sym_NaN] = ACTIONS(460), + [anon_sym_NumProcs] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_COMMA] = ACTIONS(462), + [anon_sym_5] = ACTIONS(462), + [anon_sym_SEMI] = ACTIONS(462), + [anon_sym_identity] = ACTIONS(462), + [anon_sym_id] = ACTIONS(460), + [anon_sym_6] = ACTIONS(462), + [anon_sym_not] = ACTIONS(462), + [anon_sym_7] = ACTIONS(462), + [anon_sym_sign] = ACTIONS(462), + [anon_sym_8] = ACTIONS(462), + [anon_sym_BQUOTE] = ACTIONS(462), + [anon_sym_9] = ACTIONS(462), + [anon_sym_absolutevalue] = ACTIONS(462), + [anon_sym_10] = ACTIONS(462), + [anon_sym_sqrt] = ACTIONS(462), + [anon_sym_11] = ACTIONS(462), + [anon_sym_sine] = ACTIONS(462), + [anon_sym_12] = ACTIONS(462), + [anon_sym_floor] = ACTIONS(462), + [anon_sym_13] = ACTIONS(462), + [anon_sym_ceiling] = ACTIONS(462), + [anon_sym_14] = ACTIONS(462), + [anon_sym_round] = ACTIONS(462), + [anon_sym_15] = ACTIONS(462), + [anon_sym_EQ] = ACTIONS(462), + [anon_sym_BANG_EQ] = ACTIONS(462), + [anon_sym_16] = ACTIONS(462), + [anon_sym_LT] = ACTIONS(460), + [anon_sym_LT_EQ] = ACTIONS(462), + [anon_sym_17] = ACTIONS(462), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_GT_EQ] = ACTIONS(462), + [anon_sym_18] = ACTIONS(462), + [anon_sym_PLUS] = ACTIONS(462), + [anon_sym_DASH] = ACTIONS(462), + [anon_sym_STAR] = ACTIONS(462), + [anon_sym_19] = ACTIONS(462), + [anon_sym_PERCENT] = ACTIONS(462), + [anon_sym_20] = ACTIONS(462), + [anon_sym_modulus] = ACTIONS(462), + [anon_sym_21] = ACTIONS(462), + [anon_sym_power] = ACTIONS(462), + [anon_sym_22] = ACTIONS(462), + [anon_sym_logarithm] = ACTIONS(462), + [anon_sym_23] = ACTIONS(462), + [anon_sym_minimum] = ACTIONS(462), + [anon_sym_24] = ACTIONS(462), + [anon_sym_maximum] = ACTIONS(462), + [anon_sym_25] = ACTIONS(462), + [anon_sym_atangent] = ACTIONS(462), + [anon_sym_26] = ACTIONS(462), + [anon_sym_length] = ACTIONS(462), + [anon_sym_27] = ACTIONS(462), + [anon_sym_shape] = ACTIONS(462), + [anon_sym_28] = ACTIONS(462), + [anon_sym_range] = ACTIONS(462), + [anon_sym_29] = ACTIONS(462), + [anon_sym_first] = ACTIONS(462), + [anon_sym_30] = ACTIONS(462), + [anon_sym_reverse] = ACTIONS(462), + [anon_sym_31] = ACTIONS(462), + [anon_sym_deshape] = ACTIONS(462), + [anon_sym_32] = ACTIONS(462), + [anon_sym_bits] = ACTIONS(462), + [anon_sym_33] = ACTIONS(462), + [anon_sym_transpose] = ACTIONS(462), + [anon_sym_34] = ACTIONS(462), + [anon_sym_rise] = ACTIONS(462), + [anon_sym_35] = ACTIONS(462), + [anon_sym_fall] = ACTIONS(462), + [anon_sym_36] = ACTIONS(462), + [anon_sym_where] = ACTIONS(462), + [anon_sym_37] = ACTIONS(462), + [anon_sym_classify] = ACTIONS(462), + [anon_sym_38] = ACTIONS(462), + [anon_sym_deduplicate] = ACTIONS(462), + [anon_sym_39] = ACTIONS(462), + [anon_sym_box] = ACTIONS(462), + [anon_sym_40] = ACTIONS(462), + [anon_sym_unbox] = ACTIONS(462), + [anon_sym_41] = ACTIONS(462), + [anon_sym_match] = ACTIONS(462), + [anon_sym_42] = ACTIONS(462), + [anon_sym_couple] = ACTIONS(462), + [anon_sym_43] = ACTIONS(462), + [anon_sym_join] = ACTIONS(462), + [anon_sym_44] = ACTIONS(462), + [anon_sym_select] = ACTIONS(462), + [anon_sym_45] = ACTIONS(462), + [anon_sym_pick] = ACTIONS(462), + [anon_sym_46] = ACTIONS(462), + [anon_sym_reshape] = ACTIONS(462), + [anon_sym_47] = ACTIONS(462), + [anon_sym_take] = ACTIONS(462), + [anon_sym_48] = ACTIONS(462), + [anon_sym_drop] = ACTIONS(462), + [anon_sym_49] = ACTIONS(462), + [anon_sym_rotate] = ACTIONS(462), + [anon_sym_50] = ACTIONS(462), + [anon_sym_windows] = ACTIONS(462), + [anon_sym_51] = ACTIONS(462), + [anon_sym_keep] = ACTIONS(462), + [anon_sym_52] = ACTIONS(462), + [anon_sym_find] = ACTIONS(462), + [anon_sym_53] = ACTIONS(462), + [anon_sym_member] = ACTIONS(462), + [anon_sym_54] = ACTIONS(462), + [anon_sym_indexof] = ACTIONS(462), + [anon_sym_55] = ACTIONS(462), + [anon_sym_assert] = ACTIONS(462), + [anon_sym_56] = ACTIONS(462), + [anon_sym_wait] = ACTIONS(462), + [anon_sym_break] = ACTIONS(462), + [anon_sym_57] = ACTIONS(462), + [anon_sym_parse] = ACTIONS(462), + [anon_sym_random] = ACTIONS(462), + [anon_sym_58] = ACTIONS(462), + [anon_sym_gen] = ACTIONS(462), + [anon_sym_deal] = ACTIONS(462), + [anon_sym_tag] = ACTIONS(462), + [anon_sym_now] = ACTIONS(462), + [anon_sym_type] = ACTIONS(462), + [anon_sym_59] = ACTIONS(462), + [anon_sym_dump] = ACTIONS(462), + [anon_sym_regex] = ACTIONS(462), + [anon_sym_utf] = ACTIONS(462), + [anon_sym_rock] = ACTIONS(462), + [anon_sym_60] = ACTIONS(462), + [anon_sym_surface] = ACTIONS(462), + [anon_sym_TILDE] = ACTIONS(462), + [anon_sym_deep] = ACTIONS(462), + [anon_sym_de] = ACTIONS(460), + [anon_sym_61] = ACTIONS(462), + [anon_sym_abyss] = ACTIONS(462), + [anon_sym_ab] = ACTIONS(460), + [anon_sym_62] = ACTIONS(462), + [anon_sym_seabed] = ACTIONS(462), + [anon_sym_se] = ACTIONS(460), + [anon_sym_63] = ACTIONS(462), + [anon_sym_send] = ACTIONS(462), + [anon_sym_recv] = ACTIONS(462), + [anon_sym_tryrecv] = ACTIONS(462), + [anon_sym_reduce] = ACTIONS(462), + [anon_sym_SLASH] = ACTIONS(462), + [anon_sym_scan] = ACTIONS(462), + [anon_sym_BSLASH] = ACTIONS(462), + [anon_sym_each] = ACTIONS(462), + [anon_sym_64] = ACTIONS(462), + [anon_sym_rows] = ACTIONS(462), + [anon_sym_65] = ACTIONS(462), + [anon_sym_repeat] = ACTIONS(462), + [anon_sym_66] = ACTIONS(462), + [anon_sym_dip] = ACTIONS(462), + [anon_sym_67] = ACTIONS(462), + [anon_sym_gap] = ACTIONS(462), + [anon_sym_68] = ACTIONS(462), + [anon_sym_69] = ACTIONS(462), + [anon_sym_invert] = ACTIONS(462), + [anon_sym_70] = ACTIONS(462), + [anon_sym_spawn] = ACTIONS(462), + [anon_sym_pack] = ACTIONS(462), + [anon_sym_71] = ACTIONS(462), + [anon_sym_tribute] = ACTIONS(462), + [anon_sym_72] = ACTIONS(462), + [anon_sym_reach] = ACTIONS(462), + [anon_sym_fold] = ACTIONS(462), + [anon_sym_73] = ACTIONS(462), + [anon_sym_distribute] = ACTIONS(462), + [anon_sym_74] = ACTIONS(462), + [anon_sym_table] = ACTIONS(462), + [anon_sym_75] = ACTIONS(462), + [anon_sym_cross] = ACTIONS(462), + [anon_sym_76] = ACTIONS(462), + [anon_sym_group] = ACTIONS(462), + [anon_sym_77] = ACTIONS(462), + [anon_sym_partition] = ACTIONS(462), + [anon_sym_78] = ACTIONS(462), + [anon_sym_both] = ACTIONS(462), + [anon_sym_79] = ACTIONS(462), + [anon_sym_bracket] = ACTIONS(462), + [anon_sym_80] = ACTIONS(462), + [anon_sym_fork] = ACTIONS(462), + [anon_sym_81] = ACTIONS(462), + [anon_sym_under] = ACTIONS(462), + [anon_sym_82] = ACTIONS(462), + [anon_sym_level] = ACTIONS(462), + [anon_sym_83] = ACTIONS(462), + [anon_sym_fill] = ACTIONS(462), + [anon_sym_84] = ACTIONS(462), + [anon_sym_bind] = ACTIONS(462), + [anon_sym_SQUOTE] = ACTIONS(462), + [anon_sym_QMARK] = ACTIONS(462), + [anon_sym_try] = ACTIONS(460), + [anon_sym_85] = ACTIONS(462), + [anon_sym_combinate] = ACTIONS(462), + [anon_sym_86] = ACTIONS(462), + [anon_sym_87] = ACTIONS(462), + [anon_sym_88] = ACTIONS(462), + [anon_sym_89] = ACTIONS(462), + [anon_sym_90] = ACTIONS(462), + [anon_sym_91] = ACTIONS(462), + [anon_sym_92] = ACTIONS(462), + [anon_sym_93] = ACTIONS(462), [sym__whitespace] = ACTIONS(5), - [sym__end_of_line] = ACTIONS(480), + [sym__end_of_line] = ACTIONS(462), }, [75] = { - [aux_sym_number_token1] = ACTIONS(482), - [anon_sym_os] = ACTIONS(482), - [anon_sym_Family] = ACTIONS(482), - [anon_sym_Arch] = ACTIONS(482), - [anon_sym_ExeExt] = ACTIONS(482), - [anon_sym_PllExt] = ACTIONS(482), - [anon_sym_Sep] = ACTIONS(482), - [aux_sym_character_token1] = ACTIONS(484), - [sym_string] = ACTIONS(484), - [sym_multiLineString] = ACTIONS(484), - [anon_sym_PIPE] = ACTIONS(484), - [sym_identifier] = ACTIONS(482), - [sym_identifier_deprecated] = ACTIONS(482), - [sym_system] = ACTIONS(484), - [sym_comment] = ACTIONS(482), - [sym_openParen] = ACTIONS(484), - [sym_closeParen] = ACTIONS(484), - [sym_openCurly] = ACTIONS(484), - [sym_closeCurly] = ACTIONS(484), - [sym_openBracket] = ACTIONS(484), - [sym_closeBracket] = ACTIONS(484), - [sym_underscore] = ACTIONS(484), - [sym_leftArrow] = ACTIONS(484), - [anon_sym_CARET] = ACTIONS(484), - [anon_sym_eta] = ACTIONS(484), - [anon_sym_] = ACTIONS(482), - [anon_sym_pi] = ACTIONS(482), - [anon_sym_2] = ACTIONS(482), - [anon_sym_tau] = ACTIONS(484), - [anon_sym_3] = ACTIONS(482), - [anon_sym_infinity] = ACTIONS(484), - [anon_sym_4] = ACTIONS(484), - [anon_sym_e] = ACTIONS(482), - [anon_sym_NaN] = ACTIONS(482), - [anon_sym_NumProcs] = ACTIONS(482), - [anon_sym_DOT] = ACTIONS(484), - [anon_sym_COMMA] = ACTIONS(484), - [anon_sym_5] = ACTIONS(484), - [anon_sym_SEMI] = ACTIONS(484), - [anon_sym_identity] = ACTIONS(484), - [anon_sym_id] = ACTIONS(482), - [anon_sym_6] = ACTIONS(484), - [anon_sym_not] = ACTIONS(484), - [anon_sym_7] = ACTIONS(484), - [anon_sym_sign] = ACTIONS(484), - [anon_sym_8] = ACTIONS(484), - [anon_sym_BQUOTE] = ACTIONS(484), - [anon_sym_9] = ACTIONS(484), - [anon_sym_absolutevalue] = ACTIONS(484), - [anon_sym_10] = ACTIONS(484), - [anon_sym_sqrt] = ACTIONS(484), - [anon_sym_11] = ACTIONS(484), - [anon_sym_sine] = ACTIONS(484), - [anon_sym_12] = ACTIONS(484), - [anon_sym_floor] = ACTIONS(484), - [anon_sym_13] = ACTIONS(484), - [anon_sym_ceiling] = ACTIONS(484), - [anon_sym_14] = ACTIONS(484), - [anon_sym_round] = ACTIONS(484), - [anon_sym_15] = ACTIONS(484), - [anon_sym_EQ] = ACTIONS(484), - [anon_sym_BANG_EQ] = ACTIONS(484), - [anon_sym_16] = ACTIONS(484), - [anon_sym_LT] = ACTIONS(482), - [anon_sym_LT_EQ] = ACTIONS(484), - [anon_sym_17] = ACTIONS(484), - [anon_sym_GT] = ACTIONS(482), - [anon_sym_GT_EQ] = ACTIONS(484), - [anon_sym_18] = ACTIONS(484), - [anon_sym_PLUS] = ACTIONS(484), - [anon_sym_DASH] = ACTIONS(484), - [anon_sym_STAR] = ACTIONS(484), - [anon_sym_19] = ACTIONS(484), - [anon_sym_PERCENT] = ACTIONS(484), - [anon_sym_20] = ACTIONS(484), - [anon_sym_modulus] = ACTIONS(484), - [anon_sym_21] = ACTIONS(484), - [anon_sym_power] = ACTIONS(484), - [anon_sym_22] = ACTIONS(484), - [anon_sym_logarithm] = ACTIONS(484), - [anon_sym_23] = ACTIONS(484), - [anon_sym_minimum] = ACTIONS(484), - [anon_sym_24] = ACTIONS(484), - [anon_sym_maximum] = ACTIONS(484), - [anon_sym_25] = ACTIONS(484), - [anon_sym_atangent] = ACTIONS(484), - [anon_sym_26] = ACTIONS(484), - [anon_sym_length] = ACTIONS(484), - [anon_sym_27] = ACTIONS(484), - [anon_sym_shape] = ACTIONS(484), - [anon_sym_28] = ACTIONS(484), - [anon_sym_range] = ACTIONS(484), - [anon_sym_29] = ACTIONS(484), - [anon_sym_first] = ACTIONS(484), - [anon_sym_30] = ACTIONS(484), - [anon_sym_reverse] = ACTIONS(484), - [anon_sym_31] = ACTIONS(484), - [anon_sym_deshape] = ACTIONS(484), - [anon_sym_32] = ACTIONS(484), - [anon_sym_bits] = ACTIONS(484), - [anon_sym_33] = ACTIONS(484), - [anon_sym_transpose] = ACTIONS(484), - [anon_sym_34] = ACTIONS(484), - [anon_sym_rise] = ACTIONS(484), - [anon_sym_35] = ACTIONS(484), - [anon_sym_fall] = ACTIONS(484), - [anon_sym_36] = ACTIONS(484), - [anon_sym_where] = ACTIONS(484), - [anon_sym_37] = ACTIONS(484), - [anon_sym_classify] = ACTIONS(484), - [anon_sym_38] = ACTIONS(484), - [anon_sym_deduplicate] = ACTIONS(484), - [anon_sym_39] = ACTIONS(484), - [anon_sym_box] = ACTIONS(484), - [anon_sym_40] = ACTIONS(484), - [anon_sym_unbox] = ACTIONS(484), - [anon_sym_41] = ACTIONS(484), - [anon_sym_match] = ACTIONS(484), - [anon_sym_42] = ACTIONS(484), - [anon_sym_couple] = ACTIONS(484), - [anon_sym_43] = ACTIONS(484), - [anon_sym_join] = ACTIONS(484), - [anon_sym_44] = ACTIONS(484), - [anon_sym_select] = ACTIONS(484), - [anon_sym_45] = ACTIONS(484), - [anon_sym_pick] = ACTIONS(484), - [anon_sym_46] = ACTIONS(484), - [anon_sym_reshape] = ACTIONS(484), - [anon_sym_47] = ACTIONS(484), - [anon_sym_take] = ACTIONS(484), - [anon_sym_48] = ACTIONS(484), - [anon_sym_drop] = ACTIONS(484), - [anon_sym_49] = ACTIONS(484), - [anon_sym_rotate] = ACTIONS(484), - [anon_sym_50] = ACTIONS(484), - [anon_sym_windows] = ACTIONS(484), - [anon_sym_51] = ACTIONS(484), - [anon_sym_keep] = ACTIONS(484), - [anon_sym_52] = ACTIONS(484), - [anon_sym_find] = ACTIONS(484), - [anon_sym_53] = ACTIONS(484), - [anon_sym_member] = ACTIONS(484), - [anon_sym_54] = ACTIONS(484), - [anon_sym_indexof] = ACTIONS(484), - [anon_sym_55] = ACTIONS(484), - [anon_sym_assert] = ACTIONS(484), - [anon_sym_56] = ACTIONS(484), - [anon_sym_wait] = ACTIONS(484), - [anon_sym_break] = ACTIONS(484), - [anon_sym_57] = ACTIONS(484), - [anon_sym_parse] = ACTIONS(484), - [anon_sym_random] = ACTIONS(484), - [anon_sym_58] = ACTIONS(484), - [anon_sym_gen] = ACTIONS(484), - [anon_sym_deal] = ACTIONS(484), - [anon_sym_tag] = ACTIONS(484), - [anon_sym_now] = ACTIONS(484), - [anon_sym_type] = ACTIONS(484), - [anon_sym_59] = ACTIONS(484), - [anon_sym_dump] = ACTIONS(484), - [anon_sym_regex] = ACTIONS(484), - [anon_sym_utf] = ACTIONS(484), - [anon_sym_rock] = ACTIONS(484), - [anon_sym_60] = ACTIONS(484), - [anon_sym_surface] = ACTIONS(484), - [anon_sym_TILDE] = ACTIONS(484), - [anon_sym_deep] = ACTIONS(484), - [anon_sym_de] = ACTIONS(482), - [anon_sym_61] = ACTIONS(484), - [anon_sym_abyss] = ACTIONS(484), - [anon_sym_ab] = ACTIONS(482), - [anon_sym_62] = ACTIONS(484), - [anon_sym_seabed] = ACTIONS(484), - [anon_sym_se] = ACTIONS(482), - [anon_sym_63] = ACTIONS(484), - [anon_sym_send] = ACTIONS(484), - [anon_sym_recv] = ACTIONS(484), - [anon_sym_tryrecv] = ACTIONS(484), - [anon_sym_reduce] = ACTIONS(484), - [anon_sym_SLASH] = ACTIONS(484), - [anon_sym_scan] = ACTIONS(484), - [anon_sym_BSLASH] = ACTIONS(484), - [anon_sym_each] = ACTIONS(484), - [anon_sym_64] = ACTIONS(484), - [anon_sym_rows] = ACTIONS(484), - [anon_sym_65] = ACTIONS(484), - [anon_sym_repeat] = ACTIONS(484), - [anon_sym_66] = ACTIONS(484), - [anon_sym_dip] = ACTIONS(484), - [anon_sym_di] = ACTIONS(482), - [anon_sym_67] = ACTIONS(484), - [anon_sym_gap] = ACTIONS(484), - [anon_sym_ga] = ACTIONS(482), - [anon_sym_68] = ACTIONS(484), - [anon_sym_oust] = ACTIONS(484), - [anon_sym_69] = ACTIONS(484), - [anon_sym_invert] = ACTIONS(484), - [anon_sym_70] = ACTIONS(484), - [anon_sym_spawn] = ACTIONS(484), - [anon_sym_pack] = ACTIONS(484), - [anon_sym_71] = ACTIONS(484), - [anon_sym_tribute] = ACTIONS(484), - [anon_sym_72] = ACTIONS(484), - [anon_sym_fold] = ACTIONS(484), - [anon_sym_73] = ACTIONS(484), - [anon_sym_distribute] = ACTIONS(484), - [anon_sym_74] = ACTIONS(484), - [anon_sym_table] = ACTIONS(484), - [anon_sym_75] = ACTIONS(484), - [anon_sym_cross] = ACTIONS(484), - [anon_sym_76] = ACTIONS(484), - [anon_sym_group] = ACTIONS(484), - [anon_sym_77] = ACTIONS(484), - [anon_sym_partition] = ACTIONS(484), - [anon_sym_78] = ACTIONS(484), - [anon_sym_both] = ACTIONS(484), - [anon_sym_79] = ACTIONS(484), - [anon_sym_bracket] = ACTIONS(484), - [anon_sym_80] = ACTIONS(484), - [anon_sym_fork] = ACTIONS(484), - [anon_sym_81] = ACTIONS(484), - [anon_sym_under] = ACTIONS(484), - [anon_sym_82] = ACTIONS(484), - [anon_sym_level] = ACTIONS(484), - [anon_sym_83] = ACTIONS(484), - [anon_sym_fill] = ACTIONS(484), - [anon_sym_84] = ACTIONS(484), - [anon_sym_bind] = ACTIONS(484), - [anon_sym_SQUOTE] = ACTIONS(484), - [anon_sym_QMARK] = ACTIONS(484), - [anon_sym_try] = ACTIONS(482), - [anon_sym_85] = ACTIONS(484), - [anon_sym_combinate] = ACTIONS(484), - [anon_sym_86] = ACTIONS(484), - [anon_sym_87] = ACTIONS(484), - [anon_sym_88] = ACTIONS(484), - [anon_sym_89] = ACTIONS(484), - [anon_sym_90] = ACTIONS(484), - [anon_sym_91] = ACTIONS(484), - [anon_sym_92] = ACTIONS(484), - [anon_sym_93] = ACTIONS(484), + [aux_sym_number_token1] = ACTIONS(464), + [anon_sym_os] = ACTIONS(464), + [anon_sym_Family] = ACTIONS(464), + [anon_sym_Arch] = ACTIONS(464), + [anon_sym_ExeExt] = ACTIONS(464), + [anon_sym_PllExt] = ACTIONS(464), + [anon_sym_Sep] = ACTIONS(464), + [aux_sym_character_token1] = ACTIONS(466), + [sym_string] = ACTIONS(466), + [sym_multiLineString] = ACTIONS(466), + [anon_sym_PIPE] = ACTIONS(466), + [sym_identifier] = ACTIONS(464), + [sym_identifier_deprecated] = ACTIONS(464), + [sym_system] = ACTIONS(466), + [sym_comment] = ACTIONS(464), + [sym_openParen] = ACTIONS(466), + [sym_closeParen] = ACTIONS(466), + [sym_openCurly] = ACTIONS(466), + [sym_closeCurly] = ACTIONS(466), + [sym_openBracket] = ACTIONS(466), + [sym_closeBracket] = ACTIONS(466), + [sym_underscore] = ACTIONS(466), + [sym_leftArrow] = ACTIONS(466), + [anon_sym_CARET] = ACTIONS(466), + [anon_sym_eta] = ACTIONS(466), + [anon_sym_] = ACTIONS(464), + [anon_sym_pi] = ACTIONS(464), + [anon_sym_2] = ACTIONS(464), + [anon_sym_tau] = ACTIONS(466), + [anon_sym_3] = ACTIONS(464), + [anon_sym_infinity] = ACTIONS(466), + [anon_sym_4] = ACTIONS(466), + [anon_sym_e] = ACTIONS(464), + [anon_sym_NaN] = ACTIONS(464), + [anon_sym_NumProcs] = ACTIONS(464), + [anon_sym_DOT] = ACTIONS(466), + [anon_sym_COMMA] = ACTIONS(466), + [anon_sym_5] = ACTIONS(466), + [anon_sym_SEMI] = ACTIONS(466), + [anon_sym_identity] = ACTIONS(466), + [anon_sym_id] = ACTIONS(464), + [anon_sym_6] = ACTIONS(466), + [anon_sym_not] = ACTIONS(466), + [anon_sym_7] = ACTIONS(466), + [anon_sym_sign] = ACTIONS(466), + [anon_sym_8] = ACTIONS(466), + [anon_sym_BQUOTE] = ACTIONS(466), + [anon_sym_9] = ACTIONS(466), + [anon_sym_absolutevalue] = ACTIONS(466), + [anon_sym_10] = ACTIONS(466), + [anon_sym_sqrt] = ACTIONS(466), + [anon_sym_11] = ACTIONS(466), + [anon_sym_sine] = ACTIONS(466), + [anon_sym_12] = ACTIONS(466), + [anon_sym_floor] = ACTIONS(466), + [anon_sym_13] = ACTIONS(466), + [anon_sym_ceiling] = ACTIONS(466), + [anon_sym_14] = ACTIONS(466), + [anon_sym_round] = ACTIONS(466), + [anon_sym_15] = ACTIONS(466), + [anon_sym_EQ] = ACTIONS(466), + [anon_sym_BANG_EQ] = ACTIONS(466), + [anon_sym_16] = ACTIONS(466), + [anon_sym_LT] = ACTIONS(464), + [anon_sym_LT_EQ] = ACTIONS(466), + [anon_sym_17] = ACTIONS(466), + [anon_sym_GT] = ACTIONS(464), + [anon_sym_GT_EQ] = ACTIONS(466), + [anon_sym_18] = ACTIONS(466), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(466), + [anon_sym_STAR] = ACTIONS(466), + [anon_sym_19] = ACTIONS(466), + [anon_sym_PERCENT] = ACTIONS(466), + [anon_sym_20] = ACTIONS(466), + [anon_sym_modulus] = ACTIONS(466), + [anon_sym_21] = ACTIONS(466), + [anon_sym_power] = ACTIONS(466), + [anon_sym_22] = ACTIONS(466), + [anon_sym_logarithm] = ACTIONS(466), + [anon_sym_23] = ACTIONS(466), + [anon_sym_minimum] = ACTIONS(466), + [anon_sym_24] = ACTIONS(466), + [anon_sym_maximum] = ACTIONS(466), + [anon_sym_25] = ACTIONS(466), + [anon_sym_atangent] = ACTIONS(466), + [anon_sym_26] = ACTIONS(466), + [anon_sym_length] = ACTIONS(466), + [anon_sym_27] = ACTIONS(466), + [anon_sym_shape] = ACTIONS(466), + [anon_sym_28] = ACTIONS(466), + [anon_sym_range] = ACTIONS(466), + [anon_sym_29] = ACTIONS(466), + [anon_sym_first] = ACTIONS(466), + [anon_sym_30] = ACTIONS(466), + [anon_sym_reverse] = ACTIONS(466), + [anon_sym_31] = ACTIONS(466), + [anon_sym_deshape] = ACTIONS(466), + [anon_sym_32] = ACTIONS(466), + [anon_sym_bits] = ACTIONS(466), + [anon_sym_33] = ACTIONS(466), + [anon_sym_transpose] = ACTIONS(466), + [anon_sym_34] = ACTIONS(466), + [anon_sym_rise] = ACTIONS(466), + [anon_sym_35] = ACTIONS(466), + [anon_sym_fall] = ACTIONS(466), + [anon_sym_36] = ACTIONS(466), + [anon_sym_where] = ACTIONS(466), + [anon_sym_37] = ACTIONS(466), + [anon_sym_classify] = ACTIONS(466), + [anon_sym_38] = ACTIONS(466), + [anon_sym_deduplicate] = ACTIONS(466), + [anon_sym_39] = ACTIONS(466), + [anon_sym_box] = ACTIONS(466), + [anon_sym_40] = ACTIONS(466), + [anon_sym_unbox] = ACTIONS(466), + [anon_sym_41] = ACTIONS(466), + [anon_sym_match] = ACTIONS(466), + [anon_sym_42] = ACTIONS(466), + [anon_sym_couple] = ACTIONS(466), + [anon_sym_43] = ACTIONS(466), + [anon_sym_join] = ACTIONS(466), + [anon_sym_44] = ACTIONS(466), + [anon_sym_select] = ACTIONS(466), + [anon_sym_45] = ACTIONS(466), + [anon_sym_pick] = ACTIONS(466), + [anon_sym_46] = ACTIONS(466), + [anon_sym_reshape] = ACTIONS(466), + [anon_sym_47] = ACTIONS(466), + [anon_sym_take] = ACTIONS(466), + [anon_sym_48] = ACTIONS(466), + [anon_sym_drop] = ACTIONS(466), + [anon_sym_49] = ACTIONS(466), + [anon_sym_rotate] = ACTIONS(466), + [anon_sym_50] = ACTIONS(466), + [anon_sym_windows] = ACTIONS(466), + [anon_sym_51] = ACTIONS(466), + [anon_sym_keep] = ACTIONS(466), + [anon_sym_52] = ACTIONS(466), + [anon_sym_find] = ACTIONS(466), + [anon_sym_53] = ACTIONS(466), + [anon_sym_member] = ACTIONS(466), + [anon_sym_54] = ACTIONS(466), + [anon_sym_indexof] = ACTIONS(466), + [anon_sym_55] = ACTIONS(466), + [anon_sym_assert] = ACTIONS(466), + [anon_sym_56] = ACTIONS(466), + [anon_sym_wait] = ACTIONS(466), + [anon_sym_break] = ACTIONS(466), + [anon_sym_57] = ACTIONS(466), + [anon_sym_parse] = ACTIONS(466), + [anon_sym_random] = ACTIONS(466), + [anon_sym_58] = ACTIONS(466), + [anon_sym_gen] = ACTIONS(466), + [anon_sym_deal] = ACTIONS(466), + [anon_sym_tag] = ACTIONS(466), + [anon_sym_now] = ACTIONS(466), + [anon_sym_type] = ACTIONS(466), + [anon_sym_59] = ACTIONS(466), + [anon_sym_dump] = ACTIONS(466), + [anon_sym_regex] = ACTIONS(466), + [anon_sym_utf] = ACTIONS(466), + [anon_sym_rock] = ACTIONS(466), + [anon_sym_60] = ACTIONS(466), + [anon_sym_surface] = ACTIONS(466), + [anon_sym_TILDE] = ACTIONS(466), + [anon_sym_deep] = ACTIONS(466), + [anon_sym_de] = ACTIONS(464), + [anon_sym_61] = ACTIONS(466), + [anon_sym_abyss] = ACTIONS(466), + [anon_sym_ab] = ACTIONS(464), + [anon_sym_62] = ACTIONS(466), + [anon_sym_seabed] = ACTIONS(466), + [anon_sym_se] = ACTIONS(464), + [anon_sym_63] = ACTIONS(466), + [anon_sym_send] = ACTIONS(466), + [anon_sym_recv] = ACTIONS(466), + [anon_sym_tryrecv] = ACTIONS(466), + [anon_sym_reduce] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(466), + [anon_sym_scan] = ACTIONS(466), + [anon_sym_BSLASH] = ACTIONS(466), + [anon_sym_each] = ACTIONS(466), + [anon_sym_64] = ACTIONS(466), + [anon_sym_rows] = ACTIONS(466), + [anon_sym_65] = ACTIONS(466), + [anon_sym_repeat] = ACTIONS(466), + [anon_sym_66] = ACTIONS(466), + [anon_sym_dip] = ACTIONS(466), + [anon_sym_67] = ACTIONS(466), + [anon_sym_gap] = ACTIONS(466), + [anon_sym_68] = ACTIONS(466), + [anon_sym_69] = ACTIONS(466), + [anon_sym_invert] = ACTIONS(466), + [anon_sym_70] = ACTIONS(466), + [anon_sym_spawn] = ACTIONS(466), + [anon_sym_pack] = ACTIONS(466), + [anon_sym_71] = ACTIONS(466), + [anon_sym_tribute] = ACTIONS(466), + [anon_sym_72] = ACTIONS(466), + [anon_sym_reach] = ACTIONS(466), + [anon_sym_fold] = ACTIONS(466), + [anon_sym_73] = ACTIONS(466), + [anon_sym_distribute] = ACTIONS(466), + [anon_sym_74] = ACTIONS(466), + [anon_sym_table] = ACTIONS(466), + [anon_sym_75] = ACTIONS(466), + [anon_sym_cross] = ACTIONS(466), + [anon_sym_76] = ACTIONS(466), + [anon_sym_group] = ACTIONS(466), + [anon_sym_77] = ACTIONS(466), + [anon_sym_partition] = ACTIONS(466), + [anon_sym_78] = ACTIONS(466), + [anon_sym_both] = ACTIONS(466), + [anon_sym_79] = ACTIONS(466), + [anon_sym_bracket] = ACTIONS(466), + [anon_sym_80] = ACTIONS(466), + [anon_sym_fork] = ACTIONS(466), + [anon_sym_81] = ACTIONS(466), + [anon_sym_under] = ACTIONS(466), + [anon_sym_82] = ACTIONS(466), + [anon_sym_level] = ACTIONS(466), + [anon_sym_83] = ACTIONS(466), + [anon_sym_fill] = ACTIONS(466), + [anon_sym_84] = ACTIONS(466), + [anon_sym_bind] = ACTIONS(466), + [anon_sym_SQUOTE] = ACTIONS(466), + [anon_sym_QMARK] = ACTIONS(466), + [anon_sym_try] = ACTIONS(464), + [anon_sym_85] = ACTIONS(466), + [anon_sym_combinate] = ACTIONS(466), + [anon_sym_86] = ACTIONS(466), + [anon_sym_87] = ACTIONS(466), + [anon_sym_88] = ACTIONS(466), + [anon_sym_89] = ACTIONS(466), + [anon_sym_90] = ACTIONS(466), + [anon_sym_91] = ACTIONS(466), + [anon_sym_92] = ACTIONS(466), + [anon_sym_93] = ACTIONS(466), [sym__whitespace] = ACTIONS(5), - [sym__end_of_line] = ACTIONS(484), + [sym__end_of_line] = ACTIONS(466), }, [76] = { - [aux_sym_number_token1] = ACTIONS(486), - [anon_sym_os] = ACTIONS(486), - [anon_sym_Family] = ACTIONS(486), - [anon_sym_Arch] = ACTIONS(486), - [anon_sym_ExeExt] = ACTIONS(486), - [anon_sym_PllExt] = ACTIONS(486), - [anon_sym_Sep] = ACTIONS(486), - [aux_sym_character_token1] = ACTIONS(488), - [sym_string] = ACTIONS(488), - [sym_multiLineString] = ACTIONS(488), - [anon_sym_PIPE] = ACTIONS(488), - [sym_identifier] = ACTIONS(486), - [sym_identifier_deprecated] = ACTIONS(486), - [sym_system] = ACTIONS(488), - [sym_comment] = ACTIONS(486), - [sym_openParen] = ACTIONS(488), - [sym_closeParen] = ACTIONS(488), - [sym_openCurly] = ACTIONS(488), - [sym_closeCurly] = ACTIONS(488), - [sym_openBracket] = ACTIONS(488), - [sym_closeBracket] = ACTIONS(488), - [sym_underscore] = ACTIONS(488), - [sym_leftArrow] = ACTIONS(488), - [anon_sym_CARET] = ACTIONS(488), - [anon_sym_eta] = ACTIONS(488), - [anon_sym_] = ACTIONS(486), - [anon_sym_pi] = ACTIONS(486), - [anon_sym_2] = ACTIONS(486), - [anon_sym_tau] = ACTIONS(488), - [anon_sym_3] = ACTIONS(486), - [anon_sym_infinity] = ACTIONS(488), - [anon_sym_4] = ACTIONS(488), - [anon_sym_e] = ACTIONS(486), - [anon_sym_NaN] = ACTIONS(486), - [anon_sym_NumProcs] = ACTIONS(486), - [anon_sym_DOT] = ACTIONS(488), - [anon_sym_COMMA] = ACTIONS(488), - [anon_sym_5] = ACTIONS(488), - [anon_sym_SEMI] = ACTIONS(488), - [anon_sym_identity] = ACTIONS(488), - [anon_sym_id] = ACTIONS(486), - [anon_sym_6] = ACTIONS(488), - [anon_sym_not] = ACTIONS(488), - [anon_sym_7] = ACTIONS(488), - [anon_sym_sign] = ACTIONS(488), - [anon_sym_8] = ACTIONS(488), - [anon_sym_BQUOTE] = ACTIONS(488), - [anon_sym_9] = ACTIONS(488), - [anon_sym_absolutevalue] = ACTIONS(488), - [anon_sym_10] = ACTIONS(488), - [anon_sym_sqrt] = ACTIONS(488), - [anon_sym_11] = ACTIONS(488), - [anon_sym_sine] = ACTIONS(488), - [anon_sym_12] = ACTIONS(488), - [anon_sym_floor] = ACTIONS(488), - [anon_sym_13] = ACTIONS(488), - [anon_sym_ceiling] = ACTIONS(488), - [anon_sym_14] = ACTIONS(488), - [anon_sym_round] = ACTIONS(488), - [anon_sym_15] = ACTIONS(488), - [anon_sym_EQ] = ACTIONS(488), - [anon_sym_BANG_EQ] = ACTIONS(488), - [anon_sym_16] = ACTIONS(488), - [anon_sym_LT] = ACTIONS(486), - [anon_sym_LT_EQ] = ACTIONS(488), - [anon_sym_17] = ACTIONS(488), - [anon_sym_GT] = ACTIONS(486), - [anon_sym_GT_EQ] = ACTIONS(488), - [anon_sym_18] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(488), - [anon_sym_DASH] = ACTIONS(488), - [anon_sym_STAR] = ACTIONS(488), - [anon_sym_19] = ACTIONS(488), - [anon_sym_PERCENT] = ACTIONS(488), - [anon_sym_20] = ACTIONS(488), - [anon_sym_modulus] = ACTIONS(488), - [anon_sym_21] = ACTIONS(488), - [anon_sym_power] = ACTIONS(488), - [anon_sym_22] = ACTIONS(488), - [anon_sym_logarithm] = ACTIONS(488), - [anon_sym_23] = ACTIONS(488), - [anon_sym_minimum] = ACTIONS(488), - [anon_sym_24] = ACTIONS(488), - [anon_sym_maximum] = ACTIONS(488), - [anon_sym_25] = ACTIONS(488), - [anon_sym_atangent] = ACTIONS(488), - [anon_sym_26] = ACTIONS(488), - [anon_sym_length] = ACTIONS(488), - [anon_sym_27] = ACTIONS(488), - [anon_sym_shape] = ACTIONS(488), - [anon_sym_28] = ACTIONS(488), - [anon_sym_range] = ACTIONS(488), - [anon_sym_29] = ACTIONS(488), - [anon_sym_first] = ACTIONS(488), - [anon_sym_30] = ACTIONS(488), - [anon_sym_reverse] = ACTIONS(488), - [anon_sym_31] = ACTIONS(488), - [anon_sym_deshape] = ACTIONS(488), - [anon_sym_32] = ACTIONS(488), - [anon_sym_bits] = ACTIONS(488), - [anon_sym_33] = ACTIONS(488), - [anon_sym_transpose] = ACTIONS(488), - [anon_sym_34] = ACTIONS(488), - [anon_sym_rise] = ACTIONS(488), - [anon_sym_35] = ACTIONS(488), - [anon_sym_fall] = ACTIONS(488), - [anon_sym_36] = ACTIONS(488), - [anon_sym_where] = ACTIONS(488), - [anon_sym_37] = ACTIONS(488), - [anon_sym_classify] = ACTIONS(488), - [anon_sym_38] = ACTIONS(488), - [anon_sym_deduplicate] = ACTIONS(488), - [anon_sym_39] = ACTIONS(488), - [anon_sym_box] = ACTIONS(488), - [anon_sym_40] = ACTIONS(488), - [anon_sym_unbox] = ACTIONS(488), - [anon_sym_41] = ACTIONS(488), - [anon_sym_match] = ACTIONS(488), - [anon_sym_42] = ACTIONS(488), - [anon_sym_couple] = ACTIONS(488), - [anon_sym_43] = ACTIONS(488), - [anon_sym_join] = ACTIONS(488), - [anon_sym_44] = ACTIONS(488), - [anon_sym_select] = ACTIONS(488), - [anon_sym_45] = ACTIONS(488), - [anon_sym_pick] = ACTIONS(488), - [anon_sym_46] = ACTIONS(488), - [anon_sym_reshape] = ACTIONS(488), - [anon_sym_47] = ACTIONS(488), - [anon_sym_take] = ACTIONS(488), - [anon_sym_48] = ACTIONS(488), - [anon_sym_drop] = ACTIONS(488), - [anon_sym_49] = ACTIONS(488), - [anon_sym_rotate] = ACTIONS(488), - [anon_sym_50] = ACTIONS(488), - [anon_sym_windows] = ACTIONS(488), - [anon_sym_51] = ACTIONS(488), - [anon_sym_keep] = ACTIONS(488), - [anon_sym_52] = ACTIONS(488), - [anon_sym_find] = ACTIONS(488), - [anon_sym_53] = ACTIONS(488), - [anon_sym_member] = ACTIONS(488), - [anon_sym_54] = ACTIONS(488), - [anon_sym_indexof] = ACTIONS(488), - [anon_sym_55] = ACTIONS(488), - [anon_sym_assert] = ACTIONS(488), - [anon_sym_56] = ACTIONS(488), - [anon_sym_wait] = ACTIONS(488), - [anon_sym_break] = ACTIONS(488), - [anon_sym_57] = ACTIONS(488), - [anon_sym_parse] = ACTIONS(488), - [anon_sym_random] = ACTIONS(488), - [anon_sym_58] = ACTIONS(488), - [anon_sym_gen] = ACTIONS(488), - [anon_sym_deal] = ACTIONS(488), - [anon_sym_tag] = ACTIONS(488), - [anon_sym_now] = ACTIONS(488), - [anon_sym_type] = ACTIONS(488), - [anon_sym_59] = ACTIONS(488), - [anon_sym_dump] = ACTIONS(488), - [anon_sym_regex] = ACTIONS(488), - [anon_sym_utf] = ACTIONS(488), - [anon_sym_rock] = ACTIONS(488), - [anon_sym_60] = ACTIONS(488), - [anon_sym_surface] = ACTIONS(488), - [anon_sym_TILDE] = ACTIONS(488), - [anon_sym_deep] = ACTIONS(488), - [anon_sym_de] = ACTIONS(486), - [anon_sym_61] = ACTIONS(488), - [anon_sym_abyss] = ACTIONS(488), - [anon_sym_ab] = ACTIONS(486), - [anon_sym_62] = ACTIONS(488), - [anon_sym_seabed] = ACTIONS(488), - [anon_sym_se] = ACTIONS(486), - [anon_sym_63] = ACTIONS(488), - [anon_sym_send] = ACTIONS(488), - [anon_sym_recv] = ACTIONS(488), - [anon_sym_tryrecv] = ACTIONS(488), - [anon_sym_reduce] = ACTIONS(488), - [anon_sym_SLASH] = ACTIONS(488), - [anon_sym_scan] = ACTIONS(488), - [anon_sym_BSLASH] = ACTIONS(488), - [anon_sym_each] = ACTIONS(488), - [anon_sym_64] = ACTIONS(488), - [anon_sym_rows] = ACTIONS(488), - [anon_sym_65] = ACTIONS(488), - [anon_sym_repeat] = ACTIONS(488), - [anon_sym_66] = ACTIONS(488), - [anon_sym_dip] = ACTIONS(488), - [anon_sym_di] = ACTIONS(486), - [anon_sym_67] = ACTIONS(488), - [anon_sym_gap] = ACTIONS(488), - [anon_sym_ga] = ACTIONS(486), - [anon_sym_68] = ACTIONS(488), - [anon_sym_oust] = ACTIONS(488), - [anon_sym_69] = ACTIONS(488), - [anon_sym_invert] = ACTIONS(488), - [anon_sym_70] = ACTIONS(488), - [anon_sym_spawn] = ACTIONS(488), - [anon_sym_pack] = ACTIONS(488), - [anon_sym_71] = ACTIONS(488), - [anon_sym_tribute] = ACTIONS(488), - [anon_sym_72] = ACTIONS(488), - [anon_sym_fold] = ACTIONS(488), - [anon_sym_73] = ACTIONS(488), - [anon_sym_distribute] = ACTIONS(488), - [anon_sym_74] = ACTIONS(488), - [anon_sym_table] = ACTIONS(488), - [anon_sym_75] = ACTIONS(488), - [anon_sym_cross] = ACTIONS(488), - [anon_sym_76] = ACTIONS(488), - [anon_sym_group] = ACTIONS(488), - [anon_sym_77] = ACTIONS(488), - [anon_sym_partition] = ACTIONS(488), - [anon_sym_78] = ACTIONS(488), - [anon_sym_both] = ACTIONS(488), - [anon_sym_79] = ACTIONS(488), - [anon_sym_bracket] = ACTIONS(488), - [anon_sym_80] = ACTIONS(488), - [anon_sym_fork] = ACTIONS(488), - [anon_sym_81] = ACTIONS(488), - [anon_sym_under] = ACTIONS(488), - [anon_sym_82] = ACTIONS(488), - [anon_sym_level] = ACTIONS(488), - [anon_sym_83] = ACTIONS(488), - [anon_sym_fill] = ACTIONS(488), - [anon_sym_84] = ACTIONS(488), - [anon_sym_bind] = ACTIONS(488), - [anon_sym_SQUOTE] = ACTIONS(488), - [anon_sym_QMARK] = ACTIONS(488), - [anon_sym_try] = ACTIONS(486), - [anon_sym_85] = ACTIONS(488), - [anon_sym_combinate] = ACTIONS(488), - [anon_sym_86] = ACTIONS(488), - [anon_sym_87] = ACTIONS(488), - [anon_sym_88] = ACTIONS(488), - [anon_sym_89] = ACTIONS(488), - [anon_sym_90] = ACTIONS(488), - [anon_sym_91] = ACTIONS(488), - [anon_sym_92] = ACTIONS(488), - [anon_sym_93] = ACTIONS(488), + [aux_sym_number_token1] = ACTIONS(468), + [anon_sym_os] = ACTIONS(468), + [anon_sym_Family] = ACTIONS(468), + [anon_sym_Arch] = ACTIONS(468), + [anon_sym_ExeExt] = ACTIONS(468), + [anon_sym_PllExt] = ACTIONS(468), + [anon_sym_Sep] = ACTIONS(468), + [aux_sym_character_token1] = ACTIONS(470), + [sym_string] = ACTIONS(470), + [sym_multiLineString] = ACTIONS(470), + [anon_sym_PIPE] = ACTIONS(470), + [sym_identifier] = ACTIONS(468), + [sym_identifier_deprecated] = ACTIONS(468), + [sym_system] = ACTIONS(470), + [sym_comment] = ACTIONS(468), + [sym_openParen] = ACTIONS(470), + [sym_closeParen] = ACTIONS(470), + [sym_openCurly] = ACTIONS(470), + [sym_closeCurly] = ACTIONS(470), + [sym_openBracket] = ACTIONS(470), + [sym_closeBracket] = ACTIONS(470), + [sym_underscore] = ACTIONS(470), + [sym_leftArrow] = ACTIONS(470), + [anon_sym_CARET] = ACTIONS(470), + [anon_sym_eta] = ACTIONS(470), + [anon_sym_] = ACTIONS(468), + [anon_sym_pi] = ACTIONS(468), + [anon_sym_2] = ACTIONS(468), + [anon_sym_tau] = ACTIONS(470), + [anon_sym_3] = ACTIONS(468), + [anon_sym_infinity] = ACTIONS(470), + [anon_sym_4] = ACTIONS(470), + [anon_sym_e] = ACTIONS(468), + [anon_sym_NaN] = ACTIONS(468), + [anon_sym_NumProcs] = ACTIONS(468), + [anon_sym_DOT] = ACTIONS(470), + [anon_sym_COMMA] = ACTIONS(470), + [anon_sym_5] = ACTIONS(470), + [anon_sym_SEMI] = ACTIONS(470), + [anon_sym_identity] = ACTIONS(470), + [anon_sym_id] = ACTIONS(468), + [anon_sym_6] = ACTIONS(470), + [anon_sym_not] = ACTIONS(470), + [anon_sym_7] = ACTIONS(470), + [anon_sym_sign] = ACTIONS(470), + [anon_sym_8] = ACTIONS(470), + [anon_sym_BQUOTE] = ACTIONS(470), + [anon_sym_9] = ACTIONS(470), + [anon_sym_absolutevalue] = ACTIONS(470), + [anon_sym_10] = ACTIONS(470), + [anon_sym_sqrt] = ACTIONS(470), + [anon_sym_11] = ACTIONS(470), + [anon_sym_sine] = ACTIONS(470), + [anon_sym_12] = ACTIONS(470), + [anon_sym_floor] = ACTIONS(470), + [anon_sym_13] = ACTIONS(470), + [anon_sym_ceiling] = ACTIONS(470), + [anon_sym_14] = ACTIONS(470), + [anon_sym_round] = ACTIONS(470), + [anon_sym_15] = ACTIONS(470), + [anon_sym_EQ] = ACTIONS(470), + [anon_sym_BANG_EQ] = ACTIONS(470), + [anon_sym_16] = ACTIONS(470), + [anon_sym_LT] = ACTIONS(468), + [anon_sym_LT_EQ] = ACTIONS(470), + [anon_sym_17] = ACTIONS(470), + [anon_sym_GT] = ACTIONS(468), + [anon_sym_GT_EQ] = ACTIONS(470), + [anon_sym_18] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(470), + [anon_sym_DASH] = ACTIONS(470), + [anon_sym_STAR] = ACTIONS(470), + [anon_sym_19] = ACTIONS(470), + [anon_sym_PERCENT] = ACTIONS(470), + [anon_sym_20] = ACTIONS(470), + [anon_sym_modulus] = ACTIONS(470), + [anon_sym_21] = ACTIONS(470), + [anon_sym_power] = ACTIONS(470), + [anon_sym_22] = ACTIONS(470), + [anon_sym_logarithm] = ACTIONS(470), + [anon_sym_23] = ACTIONS(470), + [anon_sym_minimum] = ACTIONS(470), + [anon_sym_24] = ACTIONS(470), + [anon_sym_maximum] = ACTIONS(470), + [anon_sym_25] = ACTIONS(470), + [anon_sym_atangent] = ACTIONS(470), + [anon_sym_26] = ACTIONS(470), + [anon_sym_length] = ACTIONS(470), + [anon_sym_27] = ACTIONS(470), + [anon_sym_shape] = ACTIONS(470), + [anon_sym_28] = ACTIONS(470), + [anon_sym_range] = ACTIONS(470), + [anon_sym_29] = ACTIONS(470), + [anon_sym_first] = ACTIONS(470), + [anon_sym_30] = ACTIONS(470), + [anon_sym_reverse] = ACTIONS(470), + [anon_sym_31] = ACTIONS(470), + [anon_sym_deshape] = ACTIONS(470), + [anon_sym_32] = ACTIONS(470), + [anon_sym_bits] = ACTIONS(470), + [anon_sym_33] = ACTIONS(470), + [anon_sym_transpose] = ACTIONS(470), + [anon_sym_34] = ACTIONS(470), + [anon_sym_rise] = ACTIONS(470), + [anon_sym_35] = ACTIONS(470), + [anon_sym_fall] = ACTIONS(470), + [anon_sym_36] = ACTIONS(470), + [anon_sym_where] = ACTIONS(470), + [anon_sym_37] = ACTIONS(470), + [anon_sym_classify] = ACTIONS(470), + [anon_sym_38] = ACTIONS(470), + [anon_sym_deduplicate] = ACTIONS(470), + [anon_sym_39] = ACTIONS(470), + [anon_sym_box] = ACTIONS(470), + [anon_sym_40] = ACTIONS(470), + [anon_sym_unbox] = ACTIONS(470), + [anon_sym_41] = ACTIONS(470), + [anon_sym_match] = ACTIONS(470), + [anon_sym_42] = ACTIONS(470), + [anon_sym_couple] = ACTIONS(470), + [anon_sym_43] = ACTIONS(470), + [anon_sym_join] = ACTIONS(470), + [anon_sym_44] = ACTIONS(470), + [anon_sym_select] = ACTIONS(470), + [anon_sym_45] = ACTIONS(470), + [anon_sym_pick] = ACTIONS(470), + [anon_sym_46] = ACTIONS(470), + [anon_sym_reshape] = ACTIONS(470), + [anon_sym_47] = ACTIONS(470), + [anon_sym_take] = ACTIONS(470), + [anon_sym_48] = ACTIONS(470), + [anon_sym_drop] = ACTIONS(470), + [anon_sym_49] = ACTIONS(470), + [anon_sym_rotate] = ACTIONS(470), + [anon_sym_50] = ACTIONS(470), + [anon_sym_windows] = ACTIONS(470), + [anon_sym_51] = ACTIONS(470), + [anon_sym_keep] = ACTIONS(470), + [anon_sym_52] = ACTIONS(470), + [anon_sym_find] = ACTIONS(470), + [anon_sym_53] = ACTIONS(470), + [anon_sym_member] = ACTIONS(470), + [anon_sym_54] = ACTIONS(470), + [anon_sym_indexof] = ACTIONS(470), + [anon_sym_55] = ACTIONS(470), + [anon_sym_assert] = ACTIONS(470), + [anon_sym_56] = ACTIONS(470), + [anon_sym_wait] = ACTIONS(470), + [anon_sym_break] = ACTIONS(470), + [anon_sym_57] = ACTIONS(470), + [anon_sym_parse] = ACTIONS(470), + [anon_sym_random] = ACTIONS(470), + [anon_sym_58] = ACTIONS(470), + [anon_sym_gen] = ACTIONS(470), + [anon_sym_deal] = ACTIONS(470), + [anon_sym_tag] = ACTIONS(470), + [anon_sym_now] = ACTIONS(470), + [anon_sym_type] = ACTIONS(470), + [anon_sym_59] = ACTIONS(470), + [anon_sym_dump] = ACTIONS(470), + [anon_sym_regex] = ACTIONS(470), + [anon_sym_utf] = ACTIONS(470), + [anon_sym_rock] = ACTIONS(470), + [anon_sym_60] = ACTIONS(470), + [anon_sym_surface] = ACTIONS(470), + [anon_sym_TILDE] = ACTIONS(470), + [anon_sym_deep] = ACTIONS(470), + [anon_sym_de] = ACTIONS(468), + [anon_sym_61] = ACTIONS(470), + [anon_sym_abyss] = ACTIONS(470), + [anon_sym_ab] = ACTIONS(468), + [anon_sym_62] = ACTIONS(470), + [anon_sym_seabed] = ACTIONS(470), + [anon_sym_se] = ACTIONS(468), + [anon_sym_63] = ACTIONS(470), + [anon_sym_send] = ACTIONS(470), + [anon_sym_recv] = ACTIONS(470), + [anon_sym_tryrecv] = ACTIONS(470), + [anon_sym_reduce] = ACTIONS(470), + [anon_sym_SLASH] = ACTIONS(470), + [anon_sym_scan] = ACTIONS(470), + [anon_sym_BSLASH] = ACTIONS(470), + [anon_sym_each] = ACTIONS(470), + [anon_sym_64] = ACTIONS(470), + [anon_sym_rows] = ACTIONS(470), + [anon_sym_65] = ACTIONS(470), + [anon_sym_repeat] = ACTIONS(470), + [anon_sym_66] = ACTIONS(470), + [anon_sym_dip] = ACTIONS(470), + [anon_sym_67] = ACTIONS(470), + [anon_sym_gap] = ACTIONS(470), + [anon_sym_68] = ACTIONS(470), + [anon_sym_69] = ACTIONS(470), + [anon_sym_invert] = ACTIONS(470), + [anon_sym_70] = ACTIONS(470), + [anon_sym_spawn] = ACTIONS(470), + [anon_sym_pack] = ACTIONS(470), + [anon_sym_71] = ACTIONS(470), + [anon_sym_tribute] = ACTIONS(470), + [anon_sym_72] = ACTIONS(470), + [anon_sym_reach] = ACTIONS(470), + [anon_sym_fold] = ACTIONS(470), + [anon_sym_73] = ACTIONS(470), + [anon_sym_distribute] = ACTIONS(470), + [anon_sym_74] = ACTIONS(470), + [anon_sym_table] = ACTIONS(470), + [anon_sym_75] = ACTIONS(470), + [anon_sym_cross] = ACTIONS(470), + [anon_sym_76] = ACTIONS(470), + [anon_sym_group] = ACTIONS(470), + [anon_sym_77] = ACTIONS(470), + [anon_sym_partition] = ACTIONS(470), + [anon_sym_78] = ACTIONS(470), + [anon_sym_both] = ACTIONS(470), + [anon_sym_79] = ACTIONS(470), + [anon_sym_bracket] = ACTIONS(470), + [anon_sym_80] = ACTIONS(470), + [anon_sym_fork] = ACTIONS(470), + [anon_sym_81] = ACTIONS(470), + [anon_sym_under] = ACTIONS(470), + [anon_sym_82] = ACTIONS(470), + [anon_sym_level] = ACTIONS(470), + [anon_sym_83] = ACTIONS(470), + [anon_sym_fill] = ACTIONS(470), + [anon_sym_84] = ACTIONS(470), + [anon_sym_bind] = ACTIONS(470), + [anon_sym_SQUOTE] = ACTIONS(470), + [anon_sym_QMARK] = ACTIONS(470), + [anon_sym_try] = ACTIONS(468), + [anon_sym_85] = ACTIONS(470), + [anon_sym_combinate] = ACTIONS(470), + [anon_sym_86] = ACTIONS(470), + [anon_sym_87] = ACTIONS(470), + [anon_sym_88] = ACTIONS(470), + [anon_sym_89] = ACTIONS(470), + [anon_sym_90] = ACTIONS(470), + [anon_sym_91] = ACTIONS(470), + [anon_sym_92] = ACTIONS(470), + [anon_sym_93] = ACTIONS(470), [sym__whitespace] = ACTIONS(5), - [sym__end_of_line] = ACTIONS(488), + [sym__end_of_line] = ACTIONS(470), }, [77] = { - [aux_sym_number_token1] = ACTIONS(490), - [anon_sym_os] = ACTIONS(490), - [anon_sym_Family] = ACTIONS(490), - [anon_sym_Arch] = ACTIONS(490), - [anon_sym_ExeExt] = ACTIONS(490), - [anon_sym_PllExt] = ACTIONS(490), - [anon_sym_Sep] = ACTIONS(490), - [aux_sym_character_token1] = ACTIONS(492), - [sym_string] = ACTIONS(492), - [sym_multiLineString] = ACTIONS(492), - [anon_sym_PIPE] = ACTIONS(492), - [sym_identifier] = ACTIONS(490), - [sym_identifier_deprecated] = ACTIONS(490), - [sym_system] = ACTIONS(492), - [sym_comment] = ACTIONS(490), - [sym_openParen] = ACTIONS(492), - [sym_closeParen] = ACTIONS(492), - [sym_openCurly] = ACTIONS(492), - [sym_closeCurly] = ACTIONS(492), - [sym_openBracket] = ACTIONS(492), - [sym_closeBracket] = ACTIONS(492), - [sym_underscore] = ACTIONS(492), - [sym_leftArrow] = ACTIONS(492), - [anon_sym_CARET] = ACTIONS(492), - [anon_sym_eta] = ACTIONS(492), - [anon_sym_] = ACTIONS(490), - [anon_sym_pi] = ACTIONS(490), - [anon_sym_2] = ACTIONS(490), - [anon_sym_tau] = ACTIONS(492), - [anon_sym_3] = ACTIONS(490), - [anon_sym_infinity] = ACTIONS(492), - [anon_sym_4] = ACTIONS(492), - [anon_sym_e] = ACTIONS(490), - [anon_sym_NaN] = ACTIONS(490), - [anon_sym_NumProcs] = ACTIONS(490), - [anon_sym_DOT] = ACTIONS(492), - [anon_sym_COMMA] = ACTIONS(492), - [anon_sym_5] = ACTIONS(492), - [anon_sym_SEMI] = ACTIONS(492), - [anon_sym_identity] = ACTIONS(492), - [anon_sym_id] = ACTIONS(490), - [anon_sym_6] = ACTIONS(492), - [anon_sym_not] = ACTIONS(492), - [anon_sym_7] = ACTIONS(492), - [anon_sym_sign] = ACTIONS(492), - [anon_sym_8] = ACTIONS(492), - [anon_sym_BQUOTE] = ACTIONS(492), - [anon_sym_9] = ACTIONS(492), - [anon_sym_absolutevalue] = ACTIONS(492), - [anon_sym_10] = ACTIONS(492), - [anon_sym_sqrt] = ACTIONS(492), - [anon_sym_11] = ACTIONS(492), - [anon_sym_sine] = ACTIONS(492), - [anon_sym_12] = ACTIONS(492), - [anon_sym_floor] = ACTIONS(492), - [anon_sym_13] = ACTIONS(492), - [anon_sym_ceiling] = ACTIONS(492), - [anon_sym_14] = ACTIONS(492), - [anon_sym_round] = ACTIONS(492), - [anon_sym_15] = ACTIONS(492), - [anon_sym_EQ] = ACTIONS(492), - [anon_sym_BANG_EQ] = ACTIONS(492), - [anon_sym_16] = ACTIONS(492), - [anon_sym_LT] = ACTIONS(490), - [anon_sym_LT_EQ] = ACTIONS(492), - [anon_sym_17] = ACTIONS(492), - [anon_sym_GT] = ACTIONS(490), - [anon_sym_GT_EQ] = ACTIONS(492), - [anon_sym_18] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(492), - [anon_sym_DASH] = ACTIONS(492), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_19] = ACTIONS(492), - [anon_sym_PERCENT] = ACTIONS(492), - [anon_sym_20] = ACTIONS(492), - [anon_sym_modulus] = ACTIONS(492), - [anon_sym_21] = ACTIONS(492), - [anon_sym_power] = ACTIONS(492), - [anon_sym_22] = ACTIONS(492), - [anon_sym_logarithm] = ACTIONS(492), - [anon_sym_23] = ACTIONS(492), - [anon_sym_minimum] = ACTIONS(492), - [anon_sym_24] = ACTIONS(492), - [anon_sym_maximum] = ACTIONS(492), - [anon_sym_25] = ACTIONS(492), - [anon_sym_atangent] = ACTIONS(492), - [anon_sym_26] = ACTIONS(492), - [anon_sym_length] = ACTIONS(492), - [anon_sym_27] = ACTIONS(492), - [anon_sym_shape] = ACTIONS(492), - [anon_sym_28] = ACTIONS(492), - [anon_sym_range] = ACTIONS(492), - [anon_sym_29] = ACTIONS(492), - [anon_sym_first] = ACTIONS(492), - [anon_sym_30] = ACTIONS(492), - [anon_sym_reverse] = ACTIONS(492), - [anon_sym_31] = ACTIONS(492), - [anon_sym_deshape] = ACTIONS(492), - [anon_sym_32] = ACTIONS(492), - [anon_sym_bits] = ACTIONS(492), - [anon_sym_33] = ACTIONS(492), - [anon_sym_transpose] = ACTIONS(492), - [anon_sym_34] = ACTIONS(492), - [anon_sym_rise] = ACTIONS(492), - [anon_sym_35] = ACTIONS(492), - [anon_sym_fall] = ACTIONS(492), - [anon_sym_36] = ACTIONS(492), - [anon_sym_where] = ACTIONS(492), - [anon_sym_37] = ACTIONS(492), - [anon_sym_classify] = ACTIONS(492), - [anon_sym_38] = ACTIONS(492), - [anon_sym_deduplicate] = ACTIONS(492), - [anon_sym_39] = ACTIONS(492), - [anon_sym_box] = ACTIONS(492), - [anon_sym_40] = ACTIONS(492), - [anon_sym_unbox] = ACTIONS(492), - [anon_sym_41] = ACTIONS(492), - [anon_sym_match] = ACTIONS(492), - [anon_sym_42] = ACTIONS(492), - [anon_sym_couple] = ACTIONS(492), - [anon_sym_43] = ACTIONS(492), - [anon_sym_join] = ACTIONS(492), - [anon_sym_44] = ACTIONS(492), - [anon_sym_select] = ACTIONS(492), - [anon_sym_45] = ACTIONS(492), - [anon_sym_pick] = ACTIONS(492), - [anon_sym_46] = ACTIONS(492), - [anon_sym_reshape] = ACTIONS(492), - [anon_sym_47] = ACTIONS(492), - [anon_sym_take] = ACTIONS(492), - [anon_sym_48] = ACTIONS(492), - [anon_sym_drop] = ACTIONS(492), - [anon_sym_49] = ACTIONS(492), - [anon_sym_rotate] = ACTIONS(492), - [anon_sym_50] = ACTIONS(492), - [anon_sym_windows] = ACTIONS(492), - [anon_sym_51] = ACTIONS(492), - [anon_sym_keep] = ACTIONS(492), - [anon_sym_52] = ACTIONS(492), - [anon_sym_find] = ACTIONS(492), - [anon_sym_53] = ACTIONS(492), - [anon_sym_member] = ACTIONS(492), - [anon_sym_54] = ACTIONS(492), - [anon_sym_indexof] = ACTIONS(492), - [anon_sym_55] = ACTIONS(492), - [anon_sym_assert] = ACTIONS(492), - [anon_sym_56] = ACTIONS(492), - [anon_sym_wait] = ACTIONS(492), - [anon_sym_break] = ACTIONS(492), - [anon_sym_57] = ACTIONS(492), - [anon_sym_parse] = ACTIONS(492), - [anon_sym_random] = ACTIONS(492), - [anon_sym_58] = ACTIONS(492), - [anon_sym_gen] = ACTIONS(492), - [anon_sym_deal] = ACTIONS(492), - [anon_sym_tag] = ACTIONS(492), - [anon_sym_now] = ACTIONS(492), - [anon_sym_type] = ACTIONS(492), - [anon_sym_59] = ACTIONS(492), - [anon_sym_dump] = ACTIONS(492), - [anon_sym_regex] = ACTIONS(492), - [anon_sym_utf] = ACTIONS(492), - [anon_sym_rock] = ACTIONS(492), - [anon_sym_60] = ACTIONS(492), - [anon_sym_surface] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(492), - [anon_sym_deep] = ACTIONS(492), - [anon_sym_de] = ACTIONS(490), - [anon_sym_61] = ACTIONS(492), - [anon_sym_abyss] = ACTIONS(492), - [anon_sym_ab] = ACTIONS(490), - [anon_sym_62] = ACTIONS(492), - [anon_sym_seabed] = ACTIONS(492), - [anon_sym_se] = ACTIONS(490), - [anon_sym_63] = ACTIONS(492), - [anon_sym_send] = ACTIONS(492), - [anon_sym_recv] = ACTIONS(492), - [anon_sym_tryrecv] = ACTIONS(492), - [anon_sym_reduce] = ACTIONS(492), - [anon_sym_SLASH] = ACTIONS(492), - [anon_sym_scan] = ACTIONS(492), - [anon_sym_BSLASH] = ACTIONS(492), - [anon_sym_each] = ACTIONS(492), - [anon_sym_64] = ACTIONS(492), - [anon_sym_rows] = ACTIONS(492), - [anon_sym_65] = ACTIONS(492), - [anon_sym_repeat] = ACTIONS(492), - [anon_sym_66] = ACTIONS(492), - [anon_sym_dip] = ACTIONS(492), - [anon_sym_di] = ACTIONS(490), - [anon_sym_67] = ACTIONS(492), - [anon_sym_gap] = ACTIONS(492), - [anon_sym_ga] = ACTIONS(490), - [anon_sym_68] = ACTIONS(492), - [anon_sym_oust] = ACTIONS(492), - [anon_sym_69] = ACTIONS(492), - [anon_sym_invert] = ACTIONS(492), - [anon_sym_70] = ACTIONS(492), - [anon_sym_spawn] = ACTIONS(492), - [anon_sym_pack] = ACTIONS(492), - [anon_sym_71] = ACTIONS(492), - [anon_sym_tribute] = ACTIONS(492), - [anon_sym_72] = ACTIONS(492), - [anon_sym_fold] = ACTIONS(492), - [anon_sym_73] = ACTIONS(492), - [anon_sym_distribute] = ACTIONS(492), - [anon_sym_74] = ACTIONS(492), - [anon_sym_table] = ACTIONS(492), - [anon_sym_75] = ACTIONS(492), - [anon_sym_cross] = ACTIONS(492), - [anon_sym_76] = ACTIONS(492), - [anon_sym_group] = ACTIONS(492), - [anon_sym_77] = ACTIONS(492), - [anon_sym_partition] = ACTIONS(492), - [anon_sym_78] = ACTIONS(492), - [anon_sym_both] = ACTIONS(492), - [anon_sym_79] = ACTIONS(492), - [anon_sym_bracket] = ACTIONS(492), - [anon_sym_80] = ACTIONS(492), - [anon_sym_fork] = ACTIONS(492), - [anon_sym_81] = ACTIONS(492), - [anon_sym_under] = ACTIONS(492), - [anon_sym_82] = ACTIONS(492), - [anon_sym_level] = ACTIONS(492), - [anon_sym_83] = ACTIONS(492), - [anon_sym_fill] = ACTIONS(492), - [anon_sym_84] = ACTIONS(492), - [anon_sym_bind] = ACTIONS(492), - [anon_sym_SQUOTE] = ACTIONS(492), - [anon_sym_QMARK] = ACTIONS(492), - [anon_sym_try] = ACTIONS(490), - [anon_sym_85] = ACTIONS(492), - [anon_sym_combinate] = ACTIONS(492), - [anon_sym_86] = ACTIONS(492), - [anon_sym_87] = ACTIONS(492), - [anon_sym_88] = ACTIONS(492), - [anon_sym_89] = ACTIONS(492), - [anon_sym_90] = ACTIONS(492), - [anon_sym_91] = ACTIONS(492), - [anon_sym_92] = ACTIONS(492), - [anon_sym_93] = ACTIONS(492), + [aux_sym_number_token1] = ACTIONS(472), + [anon_sym_os] = ACTIONS(472), + [anon_sym_Family] = ACTIONS(472), + [anon_sym_Arch] = ACTIONS(472), + [anon_sym_ExeExt] = ACTIONS(472), + [anon_sym_PllExt] = ACTIONS(472), + [anon_sym_Sep] = ACTIONS(472), + [aux_sym_character_token1] = ACTIONS(474), + [sym_string] = ACTIONS(474), + [sym_multiLineString] = ACTIONS(474), + [anon_sym_PIPE] = ACTIONS(474), + [sym_identifier] = ACTIONS(472), + [sym_identifier_deprecated] = ACTIONS(472), + [sym_system] = ACTIONS(474), + [sym_comment] = ACTIONS(472), + [sym_openParen] = ACTIONS(474), + [sym_closeParen] = ACTIONS(474), + [sym_openCurly] = ACTIONS(474), + [sym_closeCurly] = ACTIONS(474), + [sym_openBracket] = ACTIONS(474), + [sym_closeBracket] = ACTIONS(474), + [sym_underscore] = ACTIONS(474), + [sym_leftArrow] = ACTIONS(474), + [anon_sym_CARET] = ACTIONS(474), + [anon_sym_eta] = ACTIONS(474), + [anon_sym_] = ACTIONS(472), + [anon_sym_pi] = ACTIONS(472), + [anon_sym_2] = ACTIONS(472), + [anon_sym_tau] = ACTIONS(474), + [anon_sym_3] = ACTIONS(472), + [anon_sym_infinity] = ACTIONS(474), + [anon_sym_4] = ACTIONS(474), + [anon_sym_e] = ACTIONS(472), + [anon_sym_NaN] = ACTIONS(472), + [anon_sym_NumProcs] = ACTIONS(472), + [anon_sym_DOT] = ACTIONS(474), + [anon_sym_COMMA] = ACTIONS(474), + [anon_sym_5] = ACTIONS(474), + [anon_sym_SEMI] = ACTIONS(474), + [anon_sym_identity] = ACTIONS(474), + [anon_sym_id] = ACTIONS(472), + [anon_sym_6] = ACTIONS(474), + [anon_sym_not] = ACTIONS(474), + [anon_sym_7] = ACTIONS(474), + [anon_sym_sign] = ACTIONS(474), + [anon_sym_8] = ACTIONS(474), + [anon_sym_BQUOTE] = ACTIONS(474), + [anon_sym_9] = ACTIONS(474), + [anon_sym_absolutevalue] = ACTIONS(474), + [anon_sym_10] = ACTIONS(474), + [anon_sym_sqrt] = ACTIONS(474), + [anon_sym_11] = ACTIONS(474), + [anon_sym_sine] = ACTIONS(474), + [anon_sym_12] = ACTIONS(474), + [anon_sym_floor] = ACTIONS(474), + [anon_sym_13] = ACTIONS(474), + [anon_sym_ceiling] = ACTIONS(474), + [anon_sym_14] = ACTIONS(474), + [anon_sym_round] = ACTIONS(474), + [anon_sym_15] = ACTIONS(474), + [anon_sym_EQ] = ACTIONS(474), + [anon_sym_BANG_EQ] = ACTIONS(474), + [anon_sym_16] = ACTIONS(474), + [anon_sym_LT] = ACTIONS(472), + [anon_sym_LT_EQ] = ACTIONS(474), + [anon_sym_17] = ACTIONS(474), + [anon_sym_GT] = ACTIONS(472), + [anon_sym_GT_EQ] = ACTIONS(474), + [anon_sym_18] = ACTIONS(474), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_STAR] = ACTIONS(474), + [anon_sym_19] = ACTIONS(474), + [anon_sym_PERCENT] = ACTIONS(474), + [anon_sym_20] = ACTIONS(474), + [anon_sym_modulus] = ACTIONS(474), + [anon_sym_21] = ACTIONS(474), + [anon_sym_power] = ACTIONS(474), + [anon_sym_22] = ACTIONS(474), + [anon_sym_logarithm] = ACTIONS(474), + [anon_sym_23] = ACTIONS(474), + [anon_sym_minimum] = ACTIONS(474), + [anon_sym_24] = ACTIONS(474), + [anon_sym_maximum] = ACTIONS(474), + [anon_sym_25] = ACTIONS(474), + [anon_sym_atangent] = ACTIONS(474), + [anon_sym_26] = ACTIONS(474), + [anon_sym_length] = ACTIONS(474), + [anon_sym_27] = ACTIONS(474), + [anon_sym_shape] = ACTIONS(474), + [anon_sym_28] = ACTIONS(474), + [anon_sym_range] = ACTIONS(474), + [anon_sym_29] = ACTIONS(474), + [anon_sym_first] = ACTIONS(474), + [anon_sym_30] = ACTIONS(474), + [anon_sym_reverse] = ACTIONS(474), + [anon_sym_31] = ACTIONS(474), + [anon_sym_deshape] = ACTIONS(474), + [anon_sym_32] = ACTIONS(474), + [anon_sym_bits] = ACTIONS(474), + [anon_sym_33] = ACTIONS(474), + [anon_sym_transpose] = ACTIONS(474), + [anon_sym_34] = ACTIONS(474), + [anon_sym_rise] = ACTIONS(474), + [anon_sym_35] = ACTIONS(474), + [anon_sym_fall] = ACTIONS(474), + [anon_sym_36] = ACTIONS(474), + [anon_sym_where] = ACTIONS(474), + [anon_sym_37] = ACTIONS(474), + [anon_sym_classify] = ACTIONS(474), + [anon_sym_38] = ACTIONS(474), + [anon_sym_deduplicate] = ACTIONS(474), + [anon_sym_39] = ACTIONS(474), + [anon_sym_box] = ACTIONS(474), + [anon_sym_40] = ACTIONS(474), + [anon_sym_unbox] = ACTIONS(474), + [anon_sym_41] = ACTIONS(474), + [anon_sym_match] = ACTIONS(474), + [anon_sym_42] = ACTIONS(474), + [anon_sym_couple] = ACTIONS(474), + [anon_sym_43] = ACTIONS(474), + [anon_sym_join] = ACTIONS(474), + [anon_sym_44] = ACTIONS(474), + [anon_sym_select] = ACTIONS(474), + [anon_sym_45] = ACTIONS(474), + [anon_sym_pick] = ACTIONS(474), + [anon_sym_46] = ACTIONS(474), + [anon_sym_reshape] = ACTIONS(474), + [anon_sym_47] = ACTIONS(474), + [anon_sym_take] = ACTIONS(474), + [anon_sym_48] = ACTIONS(474), + [anon_sym_drop] = ACTIONS(474), + [anon_sym_49] = ACTIONS(474), + [anon_sym_rotate] = ACTIONS(474), + [anon_sym_50] = ACTIONS(474), + [anon_sym_windows] = ACTIONS(474), + [anon_sym_51] = ACTIONS(474), + [anon_sym_keep] = ACTIONS(474), + [anon_sym_52] = ACTIONS(474), + [anon_sym_find] = ACTIONS(474), + [anon_sym_53] = ACTIONS(474), + [anon_sym_member] = ACTIONS(474), + [anon_sym_54] = ACTIONS(474), + [anon_sym_indexof] = ACTIONS(474), + [anon_sym_55] = ACTIONS(474), + [anon_sym_assert] = ACTIONS(474), + [anon_sym_56] = ACTIONS(474), + [anon_sym_wait] = ACTIONS(474), + [anon_sym_break] = ACTIONS(474), + [anon_sym_57] = ACTIONS(474), + [anon_sym_parse] = ACTIONS(474), + [anon_sym_random] = ACTIONS(474), + [anon_sym_58] = ACTIONS(474), + [anon_sym_gen] = ACTIONS(474), + [anon_sym_deal] = ACTIONS(474), + [anon_sym_tag] = ACTIONS(474), + [anon_sym_now] = ACTIONS(474), + [anon_sym_type] = ACTIONS(474), + [anon_sym_59] = ACTIONS(474), + [anon_sym_dump] = ACTIONS(474), + [anon_sym_regex] = ACTIONS(474), + [anon_sym_utf] = ACTIONS(474), + [anon_sym_rock] = ACTIONS(474), + [anon_sym_60] = ACTIONS(474), + [anon_sym_surface] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_deep] = ACTIONS(474), + [anon_sym_de] = ACTIONS(472), + [anon_sym_61] = ACTIONS(474), + [anon_sym_abyss] = ACTIONS(474), + [anon_sym_ab] = ACTIONS(472), + [anon_sym_62] = ACTIONS(474), + [anon_sym_seabed] = ACTIONS(474), + [anon_sym_se] = ACTIONS(472), + [anon_sym_63] = ACTIONS(474), + [anon_sym_send] = ACTIONS(474), + [anon_sym_recv] = ACTIONS(474), + [anon_sym_tryrecv] = ACTIONS(474), + [anon_sym_reduce] = ACTIONS(474), + [anon_sym_SLASH] = ACTIONS(474), + [anon_sym_scan] = ACTIONS(474), + [anon_sym_BSLASH] = ACTIONS(474), + [anon_sym_each] = ACTIONS(474), + [anon_sym_64] = ACTIONS(474), + [anon_sym_rows] = ACTIONS(474), + [anon_sym_65] = ACTIONS(474), + [anon_sym_repeat] = ACTIONS(474), + [anon_sym_66] = ACTIONS(474), + [anon_sym_dip] = ACTIONS(474), + [anon_sym_67] = ACTIONS(474), + [anon_sym_gap] = ACTIONS(474), + [anon_sym_68] = ACTIONS(474), + [anon_sym_69] = ACTIONS(474), + [anon_sym_invert] = ACTIONS(474), + [anon_sym_70] = ACTIONS(474), + [anon_sym_spawn] = ACTIONS(474), + [anon_sym_pack] = ACTIONS(474), + [anon_sym_71] = ACTIONS(474), + [anon_sym_tribute] = ACTIONS(474), + [anon_sym_72] = ACTIONS(474), + [anon_sym_reach] = ACTIONS(474), + [anon_sym_fold] = ACTIONS(474), + [anon_sym_73] = ACTIONS(474), + [anon_sym_distribute] = ACTIONS(474), + [anon_sym_74] = ACTIONS(474), + [anon_sym_table] = ACTIONS(474), + [anon_sym_75] = ACTIONS(474), + [anon_sym_cross] = ACTIONS(474), + [anon_sym_76] = ACTIONS(474), + [anon_sym_group] = ACTIONS(474), + [anon_sym_77] = ACTIONS(474), + [anon_sym_partition] = ACTIONS(474), + [anon_sym_78] = ACTIONS(474), + [anon_sym_both] = ACTIONS(474), + [anon_sym_79] = ACTIONS(474), + [anon_sym_bracket] = ACTIONS(474), + [anon_sym_80] = ACTIONS(474), + [anon_sym_fork] = ACTIONS(474), + [anon_sym_81] = ACTIONS(474), + [anon_sym_under] = ACTIONS(474), + [anon_sym_82] = ACTIONS(474), + [anon_sym_level] = ACTIONS(474), + [anon_sym_83] = ACTIONS(474), + [anon_sym_fill] = ACTIONS(474), + [anon_sym_84] = ACTIONS(474), + [anon_sym_bind] = ACTIONS(474), + [anon_sym_SQUOTE] = ACTIONS(474), + [anon_sym_QMARK] = ACTIONS(474), + [anon_sym_try] = ACTIONS(472), + [anon_sym_85] = ACTIONS(474), + [anon_sym_combinate] = ACTIONS(474), + [anon_sym_86] = ACTIONS(474), + [anon_sym_87] = ACTIONS(474), + [anon_sym_88] = ACTIONS(474), + [anon_sym_89] = ACTIONS(474), + [anon_sym_90] = ACTIONS(474), + [anon_sym_91] = ACTIONS(474), + [anon_sym_92] = ACTIONS(474), + [anon_sym_93] = ACTIONS(474), [sym__whitespace] = ACTIONS(5), - [sym__end_of_line] = ACTIONS(492), + [sym__end_of_line] = ACTIONS(474), }, [78] = { - [aux_sym_number_token1] = ACTIONS(494), - [anon_sym_os] = ACTIONS(494), - [anon_sym_Family] = ACTIONS(494), - [anon_sym_Arch] = ACTIONS(494), - [anon_sym_ExeExt] = ACTIONS(494), - [anon_sym_PllExt] = ACTIONS(494), - [anon_sym_Sep] = ACTIONS(494), - [aux_sym_character_token1] = ACTIONS(496), - [sym_string] = ACTIONS(496), - [sym_multiLineString] = ACTIONS(496), - [anon_sym_PIPE] = ACTIONS(496), - [sym_identifier] = ACTIONS(494), - [sym_identifier_deprecated] = ACTIONS(494), - [sym_system] = ACTIONS(496), - [sym_comment] = ACTIONS(494), - [sym_openParen] = ACTIONS(496), - [sym_closeParen] = ACTIONS(496), - [sym_openCurly] = ACTIONS(496), - [sym_closeCurly] = ACTIONS(496), - [sym_openBracket] = ACTIONS(496), - [sym_closeBracket] = ACTIONS(496), - [sym_underscore] = ACTIONS(496), - [sym_leftArrow] = ACTIONS(496), - [anon_sym_CARET] = ACTIONS(496), - [anon_sym_eta] = ACTIONS(496), - [anon_sym_] = ACTIONS(494), - [anon_sym_pi] = ACTIONS(494), - [anon_sym_2] = ACTIONS(494), - [anon_sym_tau] = ACTIONS(496), - [anon_sym_3] = ACTIONS(494), - [anon_sym_infinity] = ACTIONS(496), - [anon_sym_4] = ACTIONS(496), - [anon_sym_e] = ACTIONS(494), - [anon_sym_NaN] = ACTIONS(494), - [anon_sym_NumProcs] = ACTIONS(494), - [anon_sym_DOT] = ACTIONS(496), - [anon_sym_COMMA] = ACTIONS(496), - [anon_sym_5] = ACTIONS(496), - [anon_sym_SEMI] = ACTIONS(496), - [anon_sym_identity] = ACTIONS(496), - [anon_sym_id] = ACTIONS(494), - [anon_sym_6] = ACTIONS(496), - [anon_sym_not] = ACTIONS(496), - [anon_sym_7] = ACTIONS(496), - [anon_sym_sign] = ACTIONS(496), - [anon_sym_8] = ACTIONS(496), - [anon_sym_BQUOTE] = ACTIONS(496), - [anon_sym_9] = ACTIONS(496), - [anon_sym_absolutevalue] = ACTIONS(496), - [anon_sym_10] = ACTIONS(496), - [anon_sym_sqrt] = ACTIONS(496), - [anon_sym_11] = ACTIONS(496), - [anon_sym_sine] = ACTIONS(496), - [anon_sym_12] = ACTIONS(496), - [anon_sym_floor] = ACTIONS(496), - [anon_sym_13] = ACTIONS(496), - [anon_sym_ceiling] = ACTIONS(496), - [anon_sym_14] = ACTIONS(496), - [anon_sym_round] = ACTIONS(496), - [anon_sym_15] = ACTIONS(496), - [anon_sym_EQ] = ACTIONS(496), - [anon_sym_BANG_EQ] = ACTIONS(496), - [anon_sym_16] = ACTIONS(496), - [anon_sym_LT] = ACTIONS(494), - [anon_sym_LT_EQ] = ACTIONS(496), - [anon_sym_17] = ACTIONS(496), - [anon_sym_GT] = ACTIONS(494), - [anon_sym_GT_EQ] = ACTIONS(496), - [anon_sym_18] = ACTIONS(496), - [anon_sym_PLUS] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(496), - [anon_sym_STAR] = ACTIONS(496), - [anon_sym_19] = ACTIONS(496), - [anon_sym_PERCENT] = ACTIONS(496), - [anon_sym_20] = ACTIONS(496), - [anon_sym_modulus] = ACTIONS(496), - [anon_sym_21] = ACTIONS(496), - [anon_sym_power] = ACTIONS(496), - [anon_sym_22] = ACTIONS(496), - [anon_sym_logarithm] = ACTIONS(496), - [anon_sym_23] = ACTIONS(496), - [anon_sym_minimum] = ACTIONS(496), - [anon_sym_24] = ACTIONS(496), - [anon_sym_maximum] = ACTIONS(496), - [anon_sym_25] = ACTIONS(496), - [anon_sym_atangent] = ACTIONS(496), - [anon_sym_26] = ACTIONS(496), - [anon_sym_length] = ACTIONS(496), - [anon_sym_27] = ACTIONS(496), - [anon_sym_shape] = ACTIONS(496), - [anon_sym_28] = ACTIONS(496), - [anon_sym_range] = ACTIONS(496), - [anon_sym_29] = ACTIONS(496), - [anon_sym_first] = ACTIONS(496), - [anon_sym_30] = ACTIONS(496), - [anon_sym_reverse] = ACTIONS(496), - [anon_sym_31] = ACTIONS(496), - [anon_sym_deshape] = ACTIONS(496), - [anon_sym_32] = ACTIONS(496), - [anon_sym_bits] = ACTIONS(496), - [anon_sym_33] = ACTIONS(496), - [anon_sym_transpose] = ACTIONS(496), - [anon_sym_34] = ACTIONS(496), - [anon_sym_rise] = ACTIONS(496), - [anon_sym_35] = ACTIONS(496), - [anon_sym_fall] = ACTIONS(496), - [anon_sym_36] = ACTIONS(496), - [anon_sym_where] = ACTIONS(496), - [anon_sym_37] = ACTIONS(496), - [anon_sym_classify] = ACTIONS(496), - [anon_sym_38] = ACTIONS(496), - [anon_sym_deduplicate] = ACTIONS(496), - [anon_sym_39] = ACTIONS(496), - [anon_sym_box] = ACTIONS(496), - [anon_sym_40] = ACTIONS(496), - [anon_sym_unbox] = ACTIONS(496), - [anon_sym_41] = ACTIONS(496), - [anon_sym_match] = ACTIONS(496), - [anon_sym_42] = ACTIONS(496), - [anon_sym_couple] = ACTIONS(496), - [anon_sym_43] = ACTIONS(496), - [anon_sym_join] = ACTIONS(496), - [anon_sym_44] = ACTIONS(496), - [anon_sym_select] = ACTIONS(496), - [anon_sym_45] = ACTIONS(496), - [anon_sym_pick] = ACTIONS(496), - [anon_sym_46] = ACTIONS(496), - [anon_sym_reshape] = ACTIONS(496), - [anon_sym_47] = ACTIONS(496), - [anon_sym_take] = ACTIONS(496), - [anon_sym_48] = ACTIONS(496), - [anon_sym_drop] = ACTIONS(496), - [anon_sym_49] = ACTIONS(496), - [anon_sym_rotate] = ACTIONS(496), - [anon_sym_50] = ACTIONS(496), - [anon_sym_windows] = ACTIONS(496), - [anon_sym_51] = ACTIONS(496), - [anon_sym_keep] = ACTIONS(496), - [anon_sym_52] = ACTIONS(496), - [anon_sym_find] = ACTIONS(496), - [anon_sym_53] = ACTIONS(496), - [anon_sym_member] = ACTIONS(496), - [anon_sym_54] = ACTIONS(496), - [anon_sym_indexof] = ACTIONS(496), - [anon_sym_55] = ACTIONS(496), - [anon_sym_assert] = ACTIONS(496), - [anon_sym_56] = ACTIONS(496), - [anon_sym_wait] = ACTIONS(496), - [anon_sym_break] = ACTIONS(496), - [anon_sym_57] = ACTIONS(496), - [anon_sym_parse] = ACTIONS(496), - [anon_sym_random] = ACTIONS(496), - [anon_sym_58] = ACTIONS(496), - [anon_sym_gen] = ACTIONS(496), - [anon_sym_deal] = ACTIONS(496), - [anon_sym_tag] = ACTIONS(496), - [anon_sym_now] = ACTIONS(496), - [anon_sym_type] = ACTIONS(496), - [anon_sym_59] = ACTIONS(496), - [anon_sym_dump] = ACTIONS(496), - [anon_sym_regex] = ACTIONS(496), - [anon_sym_utf] = ACTIONS(496), - [anon_sym_rock] = ACTIONS(496), - [anon_sym_60] = ACTIONS(496), - [anon_sym_surface] = ACTIONS(496), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_deep] = ACTIONS(496), - [anon_sym_de] = ACTIONS(494), - [anon_sym_61] = ACTIONS(496), - [anon_sym_abyss] = ACTIONS(496), - [anon_sym_ab] = ACTIONS(494), - [anon_sym_62] = ACTIONS(496), - [anon_sym_seabed] = ACTIONS(496), - [anon_sym_se] = ACTIONS(494), - [anon_sym_63] = ACTIONS(496), - [anon_sym_send] = ACTIONS(496), - [anon_sym_recv] = ACTIONS(496), - [anon_sym_tryrecv] = ACTIONS(496), - [anon_sym_reduce] = ACTIONS(496), - [anon_sym_SLASH] = ACTIONS(496), - [anon_sym_scan] = ACTIONS(496), - [anon_sym_BSLASH] = ACTIONS(496), - [anon_sym_each] = ACTIONS(496), - [anon_sym_64] = ACTIONS(496), - [anon_sym_rows] = ACTIONS(496), - [anon_sym_65] = ACTIONS(496), - [anon_sym_repeat] = ACTIONS(496), - [anon_sym_66] = ACTIONS(496), - [anon_sym_dip] = ACTIONS(496), - [anon_sym_di] = ACTIONS(494), - [anon_sym_67] = ACTIONS(496), - [anon_sym_gap] = ACTIONS(496), - [anon_sym_ga] = ACTIONS(494), - [anon_sym_68] = ACTIONS(496), - [anon_sym_oust] = ACTIONS(496), - [anon_sym_69] = ACTIONS(496), - [anon_sym_invert] = ACTIONS(496), - [anon_sym_70] = ACTIONS(496), - [anon_sym_spawn] = ACTIONS(496), - [anon_sym_pack] = ACTIONS(496), - [anon_sym_71] = ACTIONS(496), - [anon_sym_tribute] = ACTIONS(496), - [anon_sym_72] = ACTIONS(496), - [anon_sym_fold] = ACTIONS(496), - [anon_sym_73] = ACTIONS(496), - [anon_sym_distribute] = ACTIONS(496), - [anon_sym_74] = ACTIONS(496), - [anon_sym_table] = ACTIONS(496), - [anon_sym_75] = ACTIONS(496), - [anon_sym_cross] = ACTIONS(496), - [anon_sym_76] = ACTIONS(496), - [anon_sym_group] = ACTIONS(496), - [anon_sym_77] = ACTIONS(496), - [anon_sym_partition] = ACTIONS(496), - [anon_sym_78] = ACTIONS(496), - [anon_sym_both] = ACTIONS(496), - [anon_sym_79] = ACTIONS(496), - [anon_sym_bracket] = ACTIONS(496), - [anon_sym_80] = ACTIONS(496), - [anon_sym_fork] = ACTIONS(496), - [anon_sym_81] = ACTIONS(496), - [anon_sym_under] = ACTIONS(496), - [anon_sym_82] = ACTIONS(496), - [anon_sym_level] = ACTIONS(496), - [anon_sym_83] = ACTIONS(496), - [anon_sym_fill] = ACTIONS(496), - [anon_sym_84] = ACTIONS(496), - [anon_sym_bind] = ACTIONS(496), - [anon_sym_SQUOTE] = ACTIONS(496), - [anon_sym_QMARK] = ACTIONS(496), - [anon_sym_try] = ACTIONS(494), - [anon_sym_85] = ACTIONS(496), - [anon_sym_combinate] = ACTIONS(496), - [anon_sym_86] = ACTIONS(496), - [anon_sym_87] = ACTIONS(496), - [anon_sym_88] = ACTIONS(496), - [anon_sym_89] = ACTIONS(496), - [anon_sym_90] = ACTIONS(496), - [anon_sym_91] = ACTIONS(496), - [anon_sym_92] = ACTIONS(496), - [anon_sym_93] = ACTIONS(496), + [aux_sym_number_token1] = ACTIONS(476), + [anon_sym_os] = ACTIONS(476), + [anon_sym_Family] = ACTIONS(476), + [anon_sym_Arch] = ACTIONS(476), + [anon_sym_ExeExt] = ACTIONS(476), + [anon_sym_PllExt] = ACTIONS(476), + [anon_sym_Sep] = ACTIONS(476), + [aux_sym_character_token1] = ACTIONS(478), + [sym_string] = ACTIONS(478), + [sym_multiLineString] = ACTIONS(478), + [anon_sym_PIPE] = ACTIONS(478), + [sym_identifier] = ACTIONS(476), + [sym_identifier_deprecated] = ACTIONS(476), + [sym_system] = ACTIONS(478), + [sym_comment] = ACTIONS(476), + [sym_openParen] = ACTIONS(478), + [sym_closeParen] = ACTIONS(478), + [sym_openCurly] = ACTIONS(478), + [sym_closeCurly] = ACTIONS(478), + [sym_openBracket] = ACTIONS(478), + [sym_closeBracket] = ACTIONS(478), + [sym_underscore] = ACTIONS(478), + [sym_leftArrow] = ACTIONS(478), + [anon_sym_CARET] = ACTIONS(478), + [anon_sym_eta] = ACTIONS(478), + [anon_sym_] = ACTIONS(476), + [anon_sym_pi] = ACTIONS(476), + [anon_sym_2] = ACTIONS(476), + [anon_sym_tau] = ACTIONS(478), + [anon_sym_3] = ACTIONS(476), + [anon_sym_infinity] = ACTIONS(478), + [anon_sym_4] = ACTIONS(478), + [anon_sym_e] = ACTIONS(476), + [anon_sym_NaN] = ACTIONS(476), + [anon_sym_NumProcs] = ACTIONS(476), + [anon_sym_DOT] = ACTIONS(478), + [anon_sym_COMMA] = ACTIONS(478), + [anon_sym_5] = ACTIONS(478), + [anon_sym_SEMI] = ACTIONS(478), + [anon_sym_identity] = ACTIONS(478), + [anon_sym_id] = ACTIONS(476), + [anon_sym_6] = ACTIONS(478), + [anon_sym_not] = ACTIONS(478), + [anon_sym_7] = ACTIONS(478), + [anon_sym_sign] = ACTIONS(478), + [anon_sym_8] = ACTIONS(478), + [anon_sym_BQUOTE] = ACTIONS(478), + [anon_sym_9] = ACTIONS(478), + [anon_sym_absolutevalue] = ACTIONS(478), + [anon_sym_10] = ACTIONS(478), + [anon_sym_sqrt] = ACTIONS(478), + [anon_sym_11] = ACTIONS(478), + [anon_sym_sine] = ACTIONS(478), + [anon_sym_12] = ACTIONS(478), + [anon_sym_floor] = ACTIONS(478), + [anon_sym_13] = ACTIONS(478), + [anon_sym_ceiling] = ACTIONS(478), + [anon_sym_14] = ACTIONS(478), + [anon_sym_round] = ACTIONS(478), + [anon_sym_15] = ACTIONS(478), + [anon_sym_EQ] = ACTIONS(478), + [anon_sym_BANG_EQ] = ACTIONS(478), + [anon_sym_16] = ACTIONS(478), + [anon_sym_LT] = ACTIONS(476), + [anon_sym_LT_EQ] = ACTIONS(478), + [anon_sym_17] = ACTIONS(478), + [anon_sym_GT] = ACTIONS(476), + [anon_sym_GT_EQ] = ACTIONS(478), + [anon_sym_18] = ACTIONS(478), + [anon_sym_PLUS] = ACTIONS(478), + [anon_sym_DASH] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(478), + [anon_sym_19] = ACTIONS(478), + [anon_sym_PERCENT] = ACTIONS(478), + [anon_sym_20] = ACTIONS(478), + [anon_sym_modulus] = ACTIONS(478), + [anon_sym_21] = ACTIONS(478), + [anon_sym_power] = ACTIONS(478), + [anon_sym_22] = ACTIONS(478), + [anon_sym_logarithm] = ACTIONS(478), + [anon_sym_23] = ACTIONS(478), + [anon_sym_minimum] = ACTIONS(478), + [anon_sym_24] = ACTIONS(478), + [anon_sym_maximum] = ACTIONS(478), + [anon_sym_25] = ACTIONS(478), + [anon_sym_atangent] = ACTIONS(478), + [anon_sym_26] = ACTIONS(478), + [anon_sym_length] = ACTIONS(478), + [anon_sym_27] = ACTIONS(478), + [anon_sym_shape] = ACTIONS(478), + [anon_sym_28] = ACTIONS(478), + [anon_sym_range] = ACTIONS(478), + [anon_sym_29] = ACTIONS(478), + [anon_sym_first] = ACTIONS(478), + [anon_sym_30] = ACTIONS(478), + [anon_sym_reverse] = ACTIONS(478), + [anon_sym_31] = ACTIONS(478), + [anon_sym_deshape] = ACTIONS(478), + [anon_sym_32] = ACTIONS(478), + [anon_sym_bits] = ACTIONS(478), + [anon_sym_33] = ACTIONS(478), + [anon_sym_transpose] = ACTIONS(478), + [anon_sym_34] = ACTIONS(478), + [anon_sym_rise] = ACTIONS(478), + [anon_sym_35] = ACTIONS(478), + [anon_sym_fall] = ACTIONS(478), + [anon_sym_36] = ACTIONS(478), + [anon_sym_where] = ACTIONS(478), + [anon_sym_37] = ACTIONS(478), + [anon_sym_classify] = ACTIONS(478), + [anon_sym_38] = ACTIONS(478), + [anon_sym_deduplicate] = ACTIONS(478), + [anon_sym_39] = ACTIONS(478), + [anon_sym_box] = ACTIONS(478), + [anon_sym_40] = ACTIONS(478), + [anon_sym_unbox] = ACTIONS(478), + [anon_sym_41] = ACTIONS(478), + [anon_sym_match] = ACTIONS(478), + [anon_sym_42] = ACTIONS(478), + [anon_sym_couple] = ACTIONS(478), + [anon_sym_43] = ACTIONS(478), + [anon_sym_join] = ACTIONS(478), + [anon_sym_44] = ACTIONS(478), + [anon_sym_select] = ACTIONS(478), + [anon_sym_45] = ACTIONS(478), + [anon_sym_pick] = ACTIONS(478), + [anon_sym_46] = ACTIONS(478), + [anon_sym_reshape] = ACTIONS(478), + [anon_sym_47] = ACTIONS(478), + [anon_sym_take] = ACTIONS(478), + [anon_sym_48] = ACTIONS(478), + [anon_sym_drop] = ACTIONS(478), + [anon_sym_49] = ACTIONS(478), + [anon_sym_rotate] = ACTIONS(478), + [anon_sym_50] = ACTIONS(478), + [anon_sym_windows] = ACTIONS(478), + [anon_sym_51] = ACTIONS(478), + [anon_sym_keep] = ACTIONS(478), + [anon_sym_52] = ACTIONS(478), + [anon_sym_find] = ACTIONS(478), + [anon_sym_53] = ACTIONS(478), + [anon_sym_member] = ACTIONS(478), + [anon_sym_54] = ACTIONS(478), + [anon_sym_indexof] = ACTIONS(478), + [anon_sym_55] = ACTIONS(478), + [anon_sym_assert] = ACTIONS(478), + [anon_sym_56] = ACTIONS(478), + [anon_sym_wait] = ACTIONS(478), + [anon_sym_break] = ACTIONS(478), + [anon_sym_57] = ACTIONS(478), + [anon_sym_parse] = ACTIONS(478), + [anon_sym_random] = ACTIONS(478), + [anon_sym_58] = ACTIONS(478), + [anon_sym_gen] = ACTIONS(478), + [anon_sym_deal] = ACTIONS(478), + [anon_sym_tag] = ACTIONS(478), + [anon_sym_now] = ACTIONS(478), + [anon_sym_type] = ACTIONS(478), + [anon_sym_59] = ACTIONS(478), + [anon_sym_dump] = ACTIONS(478), + [anon_sym_regex] = ACTIONS(478), + [anon_sym_utf] = ACTIONS(478), + [anon_sym_rock] = ACTIONS(478), + [anon_sym_60] = ACTIONS(478), + [anon_sym_surface] = ACTIONS(478), + [anon_sym_TILDE] = ACTIONS(478), + [anon_sym_deep] = ACTIONS(478), + [anon_sym_de] = ACTIONS(476), + [anon_sym_61] = ACTIONS(478), + [anon_sym_abyss] = ACTIONS(478), + [anon_sym_ab] = ACTIONS(476), + [anon_sym_62] = ACTIONS(478), + [anon_sym_seabed] = ACTIONS(478), + [anon_sym_se] = ACTIONS(476), + [anon_sym_63] = ACTIONS(478), + [anon_sym_send] = ACTIONS(478), + [anon_sym_recv] = ACTIONS(478), + [anon_sym_tryrecv] = ACTIONS(478), + [anon_sym_reduce] = ACTIONS(478), + [anon_sym_SLASH] = ACTIONS(478), + [anon_sym_scan] = ACTIONS(478), + [anon_sym_BSLASH] = ACTIONS(478), + [anon_sym_each] = ACTIONS(478), + [anon_sym_64] = ACTIONS(478), + [anon_sym_rows] = ACTIONS(478), + [anon_sym_65] = ACTIONS(478), + [anon_sym_repeat] = ACTIONS(478), + [anon_sym_66] = ACTIONS(478), + [anon_sym_dip] = ACTIONS(478), + [anon_sym_67] = ACTIONS(478), + [anon_sym_gap] = ACTIONS(478), + [anon_sym_68] = ACTIONS(478), + [anon_sym_69] = ACTIONS(478), + [anon_sym_invert] = ACTIONS(478), + [anon_sym_70] = ACTIONS(478), + [anon_sym_spawn] = ACTIONS(478), + [anon_sym_pack] = ACTIONS(478), + [anon_sym_71] = ACTIONS(478), + [anon_sym_tribute] = ACTIONS(478), + [anon_sym_72] = ACTIONS(478), + [anon_sym_reach] = ACTIONS(478), + [anon_sym_fold] = ACTIONS(478), + [anon_sym_73] = ACTIONS(478), + [anon_sym_distribute] = ACTIONS(478), + [anon_sym_74] = ACTIONS(478), + [anon_sym_table] = ACTIONS(478), + [anon_sym_75] = ACTIONS(478), + [anon_sym_cross] = ACTIONS(478), + [anon_sym_76] = ACTIONS(478), + [anon_sym_group] = ACTIONS(478), + [anon_sym_77] = ACTIONS(478), + [anon_sym_partition] = ACTIONS(478), + [anon_sym_78] = ACTIONS(478), + [anon_sym_both] = ACTIONS(478), + [anon_sym_79] = ACTIONS(478), + [anon_sym_bracket] = ACTIONS(478), + [anon_sym_80] = ACTIONS(478), + [anon_sym_fork] = ACTIONS(478), + [anon_sym_81] = ACTIONS(478), + [anon_sym_under] = ACTIONS(478), + [anon_sym_82] = ACTIONS(478), + [anon_sym_level] = ACTIONS(478), + [anon_sym_83] = ACTIONS(478), + [anon_sym_fill] = ACTIONS(478), + [anon_sym_84] = ACTIONS(478), + [anon_sym_bind] = ACTIONS(478), + [anon_sym_SQUOTE] = ACTIONS(478), + [anon_sym_QMARK] = ACTIONS(478), + [anon_sym_try] = ACTIONS(476), + [anon_sym_85] = ACTIONS(478), + [anon_sym_combinate] = ACTIONS(478), + [anon_sym_86] = ACTIONS(478), + [anon_sym_87] = ACTIONS(478), + [anon_sym_88] = ACTIONS(478), + [anon_sym_89] = ACTIONS(478), + [anon_sym_90] = ACTIONS(478), + [anon_sym_91] = ACTIONS(478), + [anon_sym_92] = ACTIONS(478), + [anon_sym_93] = ACTIONS(478), [sym__whitespace] = ACTIONS(5), - [sym__end_of_line] = ACTIONS(496), + [sym__end_of_line] = ACTIONS(478), }, [79] = { - [aux_sym_number_token1] = ACTIONS(498), - [anon_sym_os] = ACTIONS(498), - [anon_sym_Family] = ACTIONS(498), - [anon_sym_Arch] = ACTIONS(498), - [anon_sym_ExeExt] = ACTIONS(498), - [anon_sym_PllExt] = ACTIONS(498), - [anon_sym_Sep] = ACTIONS(498), - [aux_sym_character_token1] = ACTIONS(500), - [sym_string] = ACTIONS(500), - [sym_multiLineString] = ACTIONS(500), - [anon_sym_PIPE] = ACTIONS(500), - [sym_identifier] = ACTIONS(498), - [sym_identifier_deprecated] = ACTIONS(498), - [sym_system] = ACTIONS(500), - [sym_comment] = ACTIONS(498), - [sym_openParen] = ACTIONS(500), - [sym_closeParen] = ACTIONS(500), - [sym_openCurly] = ACTIONS(500), - [sym_closeCurly] = ACTIONS(500), - [sym_openBracket] = ACTIONS(500), - [sym_closeBracket] = ACTIONS(500), - [sym_underscore] = ACTIONS(500), - [sym_leftArrow] = ACTIONS(500), - [anon_sym_CARET] = ACTIONS(500), - [anon_sym_eta] = ACTIONS(500), - [anon_sym_] = ACTIONS(498), - [anon_sym_pi] = ACTIONS(498), - [anon_sym_2] = ACTIONS(498), - [anon_sym_tau] = ACTIONS(500), - [anon_sym_3] = ACTIONS(498), - [anon_sym_infinity] = ACTIONS(500), - [anon_sym_4] = ACTIONS(500), - [anon_sym_e] = ACTIONS(498), - [anon_sym_NaN] = ACTIONS(498), - [anon_sym_NumProcs] = ACTIONS(498), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_COMMA] = ACTIONS(500), - [anon_sym_5] = ACTIONS(500), - [anon_sym_SEMI] = ACTIONS(500), - [anon_sym_identity] = ACTIONS(500), - [anon_sym_id] = ACTIONS(498), - [anon_sym_6] = ACTIONS(500), - [anon_sym_not] = ACTIONS(500), - [anon_sym_7] = ACTIONS(500), - [anon_sym_sign] = ACTIONS(500), - [anon_sym_8] = ACTIONS(500), - [anon_sym_BQUOTE] = ACTIONS(500), - [anon_sym_9] = ACTIONS(500), - [anon_sym_absolutevalue] = ACTIONS(500), - [anon_sym_10] = ACTIONS(500), - [anon_sym_sqrt] = ACTIONS(500), - [anon_sym_11] = ACTIONS(500), - [anon_sym_sine] = ACTIONS(500), - [anon_sym_12] = ACTIONS(500), - [anon_sym_floor] = ACTIONS(500), - [anon_sym_13] = ACTIONS(500), - [anon_sym_ceiling] = ACTIONS(500), - [anon_sym_14] = ACTIONS(500), - [anon_sym_round] = ACTIONS(500), - [anon_sym_15] = ACTIONS(500), - [anon_sym_EQ] = ACTIONS(500), - [anon_sym_BANG_EQ] = ACTIONS(500), - [anon_sym_16] = ACTIONS(500), - [anon_sym_LT] = ACTIONS(498), - [anon_sym_LT_EQ] = ACTIONS(500), - [anon_sym_17] = ACTIONS(500), - [anon_sym_GT] = ACTIONS(498), - [anon_sym_GT_EQ] = ACTIONS(500), - [anon_sym_18] = ACTIONS(500), - [anon_sym_PLUS] = ACTIONS(500), - [anon_sym_DASH] = ACTIONS(500), - [anon_sym_STAR] = ACTIONS(500), - [anon_sym_19] = ACTIONS(500), - [anon_sym_PERCENT] = ACTIONS(500), - [anon_sym_20] = ACTIONS(500), - [anon_sym_modulus] = ACTIONS(500), - [anon_sym_21] = ACTIONS(500), - [anon_sym_power] = ACTIONS(500), - [anon_sym_22] = ACTIONS(500), - [anon_sym_logarithm] = ACTIONS(500), - [anon_sym_23] = ACTIONS(500), - [anon_sym_minimum] = ACTIONS(500), - [anon_sym_24] = ACTIONS(500), - [anon_sym_maximum] = ACTIONS(500), - [anon_sym_25] = ACTIONS(500), - [anon_sym_atangent] = ACTIONS(500), - [anon_sym_26] = ACTIONS(500), - [anon_sym_length] = ACTIONS(500), - [anon_sym_27] = ACTIONS(500), - [anon_sym_shape] = ACTIONS(500), - [anon_sym_28] = ACTIONS(500), - [anon_sym_range] = ACTIONS(500), - [anon_sym_29] = ACTIONS(500), - [anon_sym_first] = ACTIONS(500), - [anon_sym_30] = ACTIONS(500), - [anon_sym_reverse] = ACTIONS(500), - [anon_sym_31] = ACTIONS(500), - [anon_sym_deshape] = ACTIONS(500), - [anon_sym_32] = ACTIONS(500), - [anon_sym_bits] = ACTIONS(500), - [anon_sym_33] = ACTIONS(500), - [anon_sym_transpose] = ACTIONS(500), - [anon_sym_34] = ACTIONS(500), - [anon_sym_rise] = ACTIONS(500), - [anon_sym_35] = ACTIONS(500), - [anon_sym_fall] = ACTIONS(500), - [anon_sym_36] = ACTIONS(500), - [anon_sym_where] = ACTIONS(500), - [anon_sym_37] = ACTIONS(500), - [anon_sym_classify] = ACTIONS(500), - [anon_sym_38] = ACTIONS(500), - [anon_sym_deduplicate] = ACTIONS(500), - [anon_sym_39] = ACTIONS(500), - [anon_sym_box] = ACTIONS(500), - [anon_sym_40] = ACTIONS(500), - [anon_sym_unbox] = ACTIONS(500), - [anon_sym_41] = ACTIONS(500), - [anon_sym_match] = ACTIONS(500), - [anon_sym_42] = ACTIONS(500), - [anon_sym_couple] = ACTIONS(500), - [anon_sym_43] = ACTIONS(500), - [anon_sym_join] = ACTIONS(500), - [anon_sym_44] = ACTIONS(500), - [anon_sym_select] = ACTIONS(500), - [anon_sym_45] = ACTIONS(500), - [anon_sym_pick] = ACTIONS(500), - [anon_sym_46] = ACTIONS(500), - [anon_sym_reshape] = ACTIONS(500), - [anon_sym_47] = ACTIONS(500), - [anon_sym_take] = ACTIONS(500), - [anon_sym_48] = ACTIONS(500), - [anon_sym_drop] = ACTIONS(500), - [anon_sym_49] = ACTIONS(500), - [anon_sym_rotate] = ACTIONS(500), - [anon_sym_50] = ACTIONS(500), - [anon_sym_windows] = ACTIONS(500), - [anon_sym_51] = ACTIONS(500), - [anon_sym_keep] = ACTIONS(500), - [anon_sym_52] = ACTIONS(500), - [anon_sym_find] = ACTIONS(500), - [anon_sym_53] = ACTIONS(500), - [anon_sym_member] = ACTIONS(500), - [anon_sym_54] = ACTIONS(500), - [anon_sym_indexof] = ACTIONS(500), - [anon_sym_55] = ACTIONS(500), - [anon_sym_assert] = ACTIONS(500), - [anon_sym_56] = ACTIONS(500), - [anon_sym_wait] = ACTIONS(500), - [anon_sym_break] = ACTIONS(500), - [anon_sym_57] = ACTIONS(500), - [anon_sym_parse] = ACTIONS(500), - [anon_sym_random] = ACTIONS(500), - [anon_sym_58] = ACTIONS(500), - [anon_sym_gen] = ACTIONS(500), - [anon_sym_deal] = ACTIONS(500), - [anon_sym_tag] = ACTIONS(500), - [anon_sym_now] = ACTIONS(500), - [anon_sym_type] = ACTIONS(500), - [anon_sym_59] = ACTIONS(500), - [anon_sym_dump] = ACTIONS(500), - [anon_sym_regex] = ACTIONS(500), - [anon_sym_utf] = ACTIONS(500), - [anon_sym_rock] = ACTIONS(500), - [anon_sym_60] = ACTIONS(500), - [anon_sym_surface] = ACTIONS(500), - [anon_sym_TILDE] = ACTIONS(500), - [anon_sym_deep] = ACTIONS(500), - [anon_sym_de] = ACTIONS(498), - [anon_sym_61] = ACTIONS(500), - [anon_sym_abyss] = ACTIONS(500), - [anon_sym_ab] = ACTIONS(498), - [anon_sym_62] = ACTIONS(500), - [anon_sym_seabed] = ACTIONS(500), - [anon_sym_se] = ACTIONS(498), - [anon_sym_63] = ACTIONS(500), - [anon_sym_send] = ACTIONS(500), - [anon_sym_recv] = ACTIONS(500), - [anon_sym_tryrecv] = ACTIONS(500), - [anon_sym_reduce] = ACTIONS(500), - [anon_sym_SLASH] = ACTIONS(500), - [anon_sym_scan] = ACTIONS(500), - [anon_sym_BSLASH] = ACTIONS(500), - [anon_sym_each] = ACTIONS(500), - [anon_sym_64] = ACTIONS(500), - [anon_sym_rows] = ACTIONS(500), - [anon_sym_65] = ACTIONS(500), - [anon_sym_repeat] = ACTIONS(500), - [anon_sym_66] = ACTIONS(500), - [anon_sym_dip] = ACTIONS(500), - [anon_sym_di] = ACTIONS(498), - [anon_sym_67] = ACTIONS(500), - [anon_sym_gap] = ACTIONS(500), - [anon_sym_ga] = ACTIONS(498), - [anon_sym_68] = ACTIONS(500), - [anon_sym_oust] = ACTIONS(500), - [anon_sym_69] = ACTIONS(500), - [anon_sym_invert] = ACTIONS(500), - [anon_sym_70] = ACTIONS(500), - [anon_sym_spawn] = ACTIONS(500), - [anon_sym_pack] = ACTIONS(500), - [anon_sym_71] = ACTIONS(500), - [anon_sym_tribute] = ACTIONS(500), - [anon_sym_72] = ACTIONS(500), - [anon_sym_fold] = ACTIONS(500), - [anon_sym_73] = ACTIONS(500), - [anon_sym_distribute] = ACTIONS(500), - [anon_sym_74] = ACTIONS(500), - [anon_sym_table] = ACTIONS(500), - [anon_sym_75] = ACTIONS(500), - [anon_sym_cross] = ACTIONS(500), - [anon_sym_76] = ACTIONS(500), - [anon_sym_group] = ACTIONS(500), - [anon_sym_77] = ACTIONS(500), - [anon_sym_partition] = ACTIONS(500), - [anon_sym_78] = ACTIONS(500), - [anon_sym_both] = ACTIONS(500), - [anon_sym_79] = ACTIONS(500), - [anon_sym_bracket] = ACTIONS(500), - [anon_sym_80] = ACTIONS(500), - [anon_sym_fork] = ACTIONS(500), - [anon_sym_81] = ACTIONS(500), - [anon_sym_under] = ACTIONS(500), - [anon_sym_82] = ACTIONS(500), - [anon_sym_level] = ACTIONS(500), - [anon_sym_83] = ACTIONS(500), - [anon_sym_fill] = ACTIONS(500), - [anon_sym_84] = ACTIONS(500), - [anon_sym_bind] = ACTIONS(500), - [anon_sym_SQUOTE] = ACTIONS(500), - [anon_sym_QMARK] = ACTIONS(500), - [anon_sym_try] = ACTIONS(498), - [anon_sym_85] = ACTIONS(500), - [anon_sym_combinate] = ACTIONS(500), - [anon_sym_86] = ACTIONS(500), - [anon_sym_87] = ACTIONS(500), - [anon_sym_88] = ACTIONS(500), - [anon_sym_89] = ACTIONS(500), - [anon_sym_90] = ACTIONS(500), - [anon_sym_91] = ACTIONS(500), - [anon_sym_92] = ACTIONS(500), - [anon_sym_93] = ACTIONS(500), + [aux_sym_number_token1] = ACTIONS(480), + [anon_sym_os] = ACTIONS(480), + [anon_sym_Family] = ACTIONS(480), + [anon_sym_Arch] = ACTIONS(480), + [anon_sym_ExeExt] = ACTIONS(480), + [anon_sym_PllExt] = ACTIONS(480), + [anon_sym_Sep] = ACTIONS(480), + [aux_sym_character_token1] = ACTIONS(482), + [sym_string] = ACTIONS(482), + [sym_multiLineString] = ACTIONS(482), + [anon_sym_PIPE] = ACTIONS(482), + [sym_identifier] = ACTIONS(480), + [sym_identifier_deprecated] = ACTIONS(480), + [sym_system] = ACTIONS(482), + [sym_comment] = ACTIONS(480), + [sym_openParen] = ACTIONS(482), + [sym_closeParen] = ACTIONS(482), + [sym_openCurly] = ACTIONS(482), + [sym_closeCurly] = ACTIONS(482), + [sym_openBracket] = ACTIONS(482), + [sym_closeBracket] = ACTIONS(482), + [sym_underscore] = ACTIONS(482), + [sym_leftArrow] = ACTIONS(482), + [anon_sym_CARET] = ACTIONS(482), + [anon_sym_eta] = ACTIONS(482), + [anon_sym_] = ACTIONS(480), + [anon_sym_pi] = ACTIONS(480), + [anon_sym_2] = ACTIONS(480), + [anon_sym_tau] = ACTIONS(482), + [anon_sym_3] = ACTIONS(480), + [anon_sym_infinity] = ACTIONS(482), + [anon_sym_4] = ACTIONS(482), + [anon_sym_e] = ACTIONS(480), + [anon_sym_NaN] = ACTIONS(480), + [anon_sym_NumProcs] = ACTIONS(480), + [anon_sym_DOT] = ACTIONS(482), + [anon_sym_COMMA] = ACTIONS(482), + [anon_sym_5] = ACTIONS(482), + [anon_sym_SEMI] = ACTIONS(482), + [anon_sym_identity] = ACTIONS(482), + [anon_sym_id] = ACTIONS(480), + [anon_sym_6] = ACTIONS(482), + [anon_sym_not] = ACTIONS(482), + [anon_sym_7] = ACTIONS(482), + [anon_sym_sign] = ACTIONS(482), + [anon_sym_8] = ACTIONS(482), + [anon_sym_BQUOTE] = ACTIONS(482), + [anon_sym_9] = ACTIONS(482), + [anon_sym_absolutevalue] = ACTIONS(482), + [anon_sym_10] = ACTIONS(482), + [anon_sym_sqrt] = ACTIONS(482), + [anon_sym_11] = ACTIONS(482), + [anon_sym_sine] = ACTIONS(482), + [anon_sym_12] = ACTIONS(482), + [anon_sym_floor] = ACTIONS(482), + [anon_sym_13] = ACTIONS(482), + [anon_sym_ceiling] = ACTIONS(482), + [anon_sym_14] = ACTIONS(482), + [anon_sym_round] = ACTIONS(482), + [anon_sym_15] = ACTIONS(482), + [anon_sym_EQ] = ACTIONS(482), + [anon_sym_BANG_EQ] = ACTIONS(482), + [anon_sym_16] = ACTIONS(482), + [anon_sym_LT] = ACTIONS(480), + [anon_sym_LT_EQ] = ACTIONS(482), + [anon_sym_17] = ACTIONS(482), + [anon_sym_GT] = ACTIONS(480), + [anon_sym_GT_EQ] = ACTIONS(482), + [anon_sym_18] = ACTIONS(482), + [anon_sym_PLUS] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(482), + [anon_sym_STAR] = ACTIONS(482), + [anon_sym_19] = ACTIONS(482), + [anon_sym_PERCENT] = ACTIONS(482), + [anon_sym_20] = ACTIONS(482), + [anon_sym_modulus] = ACTIONS(482), + [anon_sym_21] = ACTIONS(482), + [anon_sym_power] = ACTIONS(482), + [anon_sym_22] = ACTIONS(482), + [anon_sym_logarithm] = ACTIONS(482), + [anon_sym_23] = ACTIONS(482), + [anon_sym_minimum] = ACTIONS(482), + [anon_sym_24] = ACTIONS(482), + [anon_sym_maximum] = ACTIONS(482), + [anon_sym_25] = ACTIONS(482), + [anon_sym_atangent] = ACTIONS(482), + [anon_sym_26] = ACTIONS(482), + [anon_sym_length] = ACTIONS(482), + [anon_sym_27] = ACTIONS(482), + [anon_sym_shape] = ACTIONS(482), + [anon_sym_28] = ACTIONS(482), + [anon_sym_range] = ACTIONS(482), + [anon_sym_29] = ACTIONS(482), + [anon_sym_first] = ACTIONS(482), + [anon_sym_30] = ACTIONS(482), + [anon_sym_reverse] = ACTIONS(482), + [anon_sym_31] = ACTIONS(482), + [anon_sym_deshape] = ACTIONS(482), + [anon_sym_32] = ACTIONS(482), + [anon_sym_bits] = ACTIONS(482), + [anon_sym_33] = ACTIONS(482), + [anon_sym_transpose] = ACTIONS(482), + [anon_sym_34] = ACTIONS(482), + [anon_sym_rise] = ACTIONS(482), + [anon_sym_35] = ACTIONS(482), + [anon_sym_fall] = ACTIONS(482), + [anon_sym_36] = ACTIONS(482), + [anon_sym_where] = ACTIONS(482), + [anon_sym_37] = ACTIONS(482), + [anon_sym_classify] = ACTIONS(482), + [anon_sym_38] = ACTIONS(482), + [anon_sym_deduplicate] = ACTIONS(482), + [anon_sym_39] = ACTIONS(482), + [anon_sym_box] = ACTIONS(482), + [anon_sym_40] = ACTIONS(482), + [anon_sym_unbox] = ACTIONS(482), + [anon_sym_41] = ACTIONS(482), + [anon_sym_match] = ACTIONS(482), + [anon_sym_42] = ACTIONS(482), + [anon_sym_couple] = ACTIONS(482), + [anon_sym_43] = ACTIONS(482), + [anon_sym_join] = ACTIONS(482), + [anon_sym_44] = ACTIONS(482), + [anon_sym_select] = ACTIONS(482), + [anon_sym_45] = ACTIONS(482), + [anon_sym_pick] = ACTIONS(482), + [anon_sym_46] = ACTIONS(482), + [anon_sym_reshape] = ACTIONS(482), + [anon_sym_47] = ACTIONS(482), + [anon_sym_take] = ACTIONS(482), + [anon_sym_48] = ACTIONS(482), + [anon_sym_drop] = ACTIONS(482), + [anon_sym_49] = ACTIONS(482), + [anon_sym_rotate] = ACTIONS(482), + [anon_sym_50] = ACTIONS(482), + [anon_sym_windows] = ACTIONS(482), + [anon_sym_51] = ACTIONS(482), + [anon_sym_keep] = ACTIONS(482), + [anon_sym_52] = ACTIONS(482), + [anon_sym_find] = ACTIONS(482), + [anon_sym_53] = ACTIONS(482), + [anon_sym_member] = ACTIONS(482), + [anon_sym_54] = ACTIONS(482), + [anon_sym_indexof] = ACTIONS(482), + [anon_sym_55] = ACTIONS(482), + [anon_sym_assert] = ACTIONS(482), + [anon_sym_56] = ACTIONS(482), + [anon_sym_wait] = ACTIONS(482), + [anon_sym_break] = ACTIONS(482), + [anon_sym_57] = ACTIONS(482), + [anon_sym_parse] = ACTIONS(482), + [anon_sym_random] = ACTIONS(482), + [anon_sym_58] = ACTIONS(482), + [anon_sym_gen] = ACTIONS(482), + [anon_sym_deal] = ACTIONS(482), + [anon_sym_tag] = ACTIONS(482), + [anon_sym_now] = ACTIONS(482), + [anon_sym_type] = ACTIONS(482), + [anon_sym_59] = ACTIONS(482), + [anon_sym_dump] = ACTIONS(482), + [anon_sym_regex] = ACTIONS(482), + [anon_sym_utf] = ACTIONS(482), + [anon_sym_rock] = ACTIONS(482), + [anon_sym_60] = ACTIONS(482), + [anon_sym_surface] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_deep] = ACTIONS(482), + [anon_sym_de] = ACTIONS(480), + [anon_sym_61] = ACTIONS(482), + [anon_sym_abyss] = ACTIONS(482), + [anon_sym_ab] = ACTIONS(480), + [anon_sym_62] = ACTIONS(482), + [anon_sym_seabed] = ACTIONS(482), + [anon_sym_se] = ACTIONS(480), + [anon_sym_63] = ACTIONS(482), + [anon_sym_send] = ACTIONS(482), + [anon_sym_recv] = ACTIONS(482), + [anon_sym_tryrecv] = ACTIONS(482), + [anon_sym_reduce] = ACTIONS(482), + [anon_sym_SLASH] = ACTIONS(482), + [anon_sym_scan] = ACTIONS(482), + [anon_sym_BSLASH] = ACTIONS(482), + [anon_sym_each] = ACTIONS(482), + [anon_sym_64] = ACTIONS(482), + [anon_sym_rows] = ACTIONS(482), + [anon_sym_65] = ACTIONS(482), + [anon_sym_repeat] = ACTIONS(482), + [anon_sym_66] = ACTIONS(482), + [anon_sym_dip] = ACTIONS(482), + [anon_sym_67] = ACTIONS(482), + [anon_sym_gap] = ACTIONS(482), + [anon_sym_68] = ACTIONS(482), + [anon_sym_69] = ACTIONS(482), + [anon_sym_invert] = ACTIONS(482), + [anon_sym_70] = ACTIONS(482), + [anon_sym_spawn] = ACTIONS(482), + [anon_sym_pack] = ACTIONS(482), + [anon_sym_71] = ACTIONS(482), + [anon_sym_tribute] = ACTIONS(482), + [anon_sym_72] = ACTIONS(482), + [anon_sym_reach] = ACTIONS(482), + [anon_sym_fold] = ACTIONS(482), + [anon_sym_73] = ACTIONS(482), + [anon_sym_distribute] = ACTIONS(482), + [anon_sym_74] = ACTIONS(482), + [anon_sym_table] = ACTIONS(482), + [anon_sym_75] = ACTIONS(482), + [anon_sym_cross] = ACTIONS(482), + [anon_sym_76] = ACTIONS(482), + [anon_sym_group] = ACTIONS(482), + [anon_sym_77] = ACTIONS(482), + [anon_sym_partition] = ACTIONS(482), + [anon_sym_78] = ACTIONS(482), + [anon_sym_both] = ACTIONS(482), + [anon_sym_79] = ACTIONS(482), + [anon_sym_bracket] = ACTIONS(482), + [anon_sym_80] = ACTIONS(482), + [anon_sym_fork] = ACTIONS(482), + [anon_sym_81] = ACTIONS(482), + [anon_sym_under] = ACTIONS(482), + [anon_sym_82] = ACTIONS(482), + [anon_sym_level] = ACTIONS(482), + [anon_sym_83] = ACTIONS(482), + [anon_sym_fill] = ACTIONS(482), + [anon_sym_84] = ACTIONS(482), + [anon_sym_bind] = ACTIONS(482), + [anon_sym_SQUOTE] = ACTIONS(482), + [anon_sym_QMARK] = ACTIONS(482), + [anon_sym_try] = ACTIONS(480), + [anon_sym_85] = ACTIONS(482), + [anon_sym_combinate] = ACTIONS(482), + [anon_sym_86] = ACTIONS(482), + [anon_sym_87] = ACTIONS(482), + [anon_sym_88] = ACTIONS(482), + [anon_sym_89] = ACTIONS(482), + [anon_sym_90] = ACTIONS(482), + [anon_sym_91] = ACTIONS(482), + [anon_sym_92] = ACTIONS(482), + [anon_sym_93] = ACTIONS(482), [sym__whitespace] = ACTIONS(5), - [sym__end_of_line] = ACTIONS(500), + [sym__end_of_line] = ACTIONS(482), }, [80] = { - [aux_sym_number_token1] = ACTIONS(502), - [anon_sym_os] = ACTIONS(502), - [anon_sym_Family] = ACTIONS(502), - [anon_sym_Arch] = ACTIONS(502), - [anon_sym_ExeExt] = ACTIONS(502), - [anon_sym_PllExt] = ACTIONS(502), - [anon_sym_Sep] = ACTIONS(502), - [aux_sym_character_token1] = ACTIONS(504), - [sym_string] = ACTIONS(504), - [sym_multiLineString] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(504), - [sym_identifier] = ACTIONS(502), - [sym_identifier_deprecated] = ACTIONS(502), - [sym_system] = ACTIONS(504), - [sym_comment] = ACTIONS(502), - [sym_openParen] = ACTIONS(504), - [sym_closeParen] = ACTIONS(504), - [sym_openCurly] = ACTIONS(504), - [sym_closeCurly] = ACTIONS(504), - [sym_openBracket] = ACTIONS(504), - [sym_closeBracket] = ACTIONS(504), - [sym_underscore] = ACTIONS(504), - [sym_leftArrow] = ACTIONS(504), - [anon_sym_CARET] = ACTIONS(504), - [anon_sym_eta] = ACTIONS(504), - [anon_sym_] = ACTIONS(502), - [anon_sym_pi] = ACTIONS(502), - [anon_sym_2] = ACTIONS(502), - [anon_sym_tau] = ACTIONS(504), - [anon_sym_3] = ACTIONS(502), - [anon_sym_infinity] = ACTIONS(504), - [anon_sym_4] = ACTIONS(504), - [anon_sym_e] = ACTIONS(502), - [anon_sym_NaN] = ACTIONS(502), - [anon_sym_NumProcs] = ACTIONS(502), - [anon_sym_DOT] = ACTIONS(504), - [anon_sym_COMMA] = ACTIONS(504), - [anon_sym_5] = ACTIONS(504), - [anon_sym_SEMI] = ACTIONS(504), - [anon_sym_identity] = ACTIONS(504), - [anon_sym_id] = ACTIONS(502), - [anon_sym_6] = ACTIONS(504), - [anon_sym_not] = ACTIONS(504), - [anon_sym_7] = ACTIONS(504), - [anon_sym_sign] = ACTIONS(504), - [anon_sym_8] = ACTIONS(504), - [anon_sym_BQUOTE] = ACTIONS(504), - [anon_sym_9] = ACTIONS(504), - [anon_sym_absolutevalue] = ACTIONS(504), - [anon_sym_10] = ACTIONS(504), - [anon_sym_sqrt] = ACTIONS(504), - [anon_sym_11] = ACTIONS(504), - [anon_sym_sine] = ACTIONS(504), - [anon_sym_12] = ACTIONS(504), - [anon_sym_floor] = ACTIONS(504), - [anon_sym_13] = ACTIONS(504), - [anon_sym_ceiling] = ACTIONS(504), - [anon_sym_14] = ACTIONS(504), - [anon_sym_round] = ACTIONS(504), - [anon_sym_15] = ACTIONS(504), - [anon_sym_EQ] = ACTIONS(504), - [anon_sym_BANG_EQ] = ACTIONS(504), - [anon_sym_16] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(502), - [anon_sym_LT_EQ] = ACTIONS(504), - [anon_sym_17] = ACTIONS(504), - [anon_sym_GT] = ACTIONS(502), - [anon_sym_GT_EQ] = ACTIONS(504), - [anon_sym_18] = ACTIONS(504), - [anon_sym_PLUS] = ACTIONS(504), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_19] = ACTIONS(504), - [anon_sym_PERCENT] = ACTIONS(504), - [anon_sym_20] = ACTIONS(504), - [anon_sym_modulus] = ACTIONS(504), - [anon_sym_21] = ACTIONS(504), - [anon_sym_power] = ACTIONS(504), - [anon_sym_22] = ACTIONS(504), - [anon_sym_logarithm] = ACTIONS(504), - [anon_sym_23] = ACTIONS(504), - [anon_sym_minimum] = ACTIONS(504), - [anon_sym_24] = ACTIONS(504), - [anon_sym_maximum] = ACTIONS(504), - [anon_sym_25] = ACTIONS(504), - [anon_sym_atangent] = ACTIONS(504), - [anon_sym_26] = ACTIONS(504), - [anon_sym_length] = ACTIONS(504), - [anon_sym_27] = ACTIONS(504), - [anon_sym_shape] = ACTIONS(504), - [anon_sym_28] = ACTIONS(504), - [anon_sym_range] = ACTIONS(504), - [anon_sym_29] = ACTIONS(504), - [anon_sym_first] = ACTIONS(504), - [anon_sym_30] = ACTIONS(504), - [anon_sym_reverse] = ACTIONS(504), - [anon_sym_31] = ACTIONS(504), - [anon_sym_deshape] = ACTIONS(504), - [anon_sym_32] = ACTIONS(504), - [anon_sym_bits] = ACTIONS(504), - [anon_sym_33] = ACTIONS(504), - [anon_sym_transpose] = ACTIONS(504), - [anon_sym_34] = ACTIONS(504), - [anon_sym_rise] = ACTIONS(504), - [anon_sym_35] = ACTIONS(504), - [anon_sym_fall] = ACTIONS(504), - [anon_sym_36] = ACTIONS(504), - [anon_sym_where] = ACTIONS(504), - [anon_sym_37] = ACTIONS(504), - [anon_sym_classify] = ACTIONS(504), - [anon_sym_38] = ACTIONS(504), - [anon_sym_deduplicate] = ACTIONS(504), - [anon_sym_39] = ACTIONS(504), - [anon_sym_box] = ACTIONS(504), - [anon_sym_40] = ACTIONS(504), - [anon_sym_unbox] = ACTIONS(504), - [anon_sym_41] = ACTIONS(504), - [anon_sym_match] = ACTIONS(504), - [anon_sym_42] = ACTIONS(504), - [anon_sym_couple] = ACTIONS(504), - [anon_sym_43] = ACTIONS(504), - [anon_sym_join] = ACTIONS(504), - [anon_sym_44] = ACTIONS(504), - [anon_sym_select] = ACTIONS(504), - [anon_sym_45] = ACTIONS(504), - [anon_sym_pick] = ACTIONS(504), - [anon_sym_46] = ACTIONS(504), - [anon_sym_reshape] = ACTIONS(504), - [anon_sym_47] = ACTIONS(504), - [anon_sym_take] = ACTIONS(504), - [anon_sym_48] = ACTIONS(504), - [anon_sym_drop] = ACTIONS(504), - [anon_sym_49] = ACTIONS(504), - [anon_sym_rotate] = ACTIONS(504), - [anon_sym_50] = ACTIONS(504), - [anon_sym_windows] = ACTIONS(504), - [anon_sym_51] = ACTIONS(504), - [anon_sym_keep] = ACTIONS(504), - [anon_sym_52] = ACTIONS(504), - [anon_sym_find] = ACTIONS(504), - [anon_sym_53] = ACTIONS(504), - [anon_sym_member] = ACTIONS(504), - [anon_sym_54] = ACTIONS(504), - [anon_sym_indexof] = ACTIONS(504), - [anon_sym_55] = ACTIONS(504), - [anon_sym_assert] = ACTIONS(504), - [anon_sym_56] = ACTIONS(504), - [anon_sym_wait] = ACTIONS(504), - [anon_sym_break] = ACTIONS(504), - [anon_sym_57] = ACTIONS(504), - [anon_sym_parse] = ACTIONS(504), - [anon_sym_random] = ACTIONS(504), - [anon_sym_58] = ACTIONS(504), - [anon_sym_gen] = ACTIONS(504), - [anon_sym_deal] = ACTIONS(504), - [anon_sym_tag] = ACTIONS(504), - [anon_sym_now] = ACTIONS(504), - [anon_sym_type] = ACTIONS(504), - [anon_sym_59] = ACTIONS(504), - [anon_sym_dump] = ACTIONS(504), - [anon_sym_regex] = ACTIONS(504), - [anon_sym_utf] = ACTIONS(504), - [anon_sym_rock] = ACTIONS(504), - [anon_sym_60] = ACTIONS(504), - [anon_sym_surface] = ACTIONS(504), - [anon_sym_TILDE] = ACTIONS(504), - [anon_sym_deep] = ACTIONS(504), - [anon_sym_de] = ACTIONS(502), - [anon_sym_61] = ACTIONS(504), - [anon_sym_abyss] = ACTIONS(504), - [anon_sym_ab] = ACTIONS(502), - [anon_sym_62] = ACTIONS(504), - [anon_sym_seabed] = ACTIONS(504), - [anon_sym_se] = ACTIONS(502), - [anon_sym_63] = ACTIONS(504), - [anon_sym_send] = ACTIONS(504), - [anon_sym_recv] = ACTIONS(504), - [anon_sym_tryrecv] = ACTIONS(504), - [anon_sym_reduce] = ACTIONS(504), - [anon_sym_SLASH] = ACTIONS(504), - [anon_sym_scan] = ACTIONS(504), - [anon_sym_BSLASH] = ACTIONS(504), - [anon_sym_each] = ACTIONS(504), - [anon_sym_64] = ACTIONS(504), - [anon_sym_rows] = ACTIONS(504), - [anon_sym_65] = ACTIONS(504), - [anon_sym_repeat] = ACTIONS(504), - [anon_sym_66] = ACTIONS(504), - [anon_sym_dip] = ACTIONS(504), - [anon_sym_di] = ACTIONS(502), - [anon_sym_67] = ACTIONS(504), - [anon_sym_gap] = ACTIONS(504), - [anon_sym_ga] = ACTIONS(502), - [anon_sym_68] = ACTIONS(504), - [anon_sym_oust] = ACTIONS(504), - [anon_sym_69] = ACTIONS(504), - [anon_sym_invert] = ACTIONS(504), - [anon_sym_70] = ACTIONS(504), - [anon_sym_spawn] = ACTIONS(504), - [anon_sym_pack] = ACTIONS(504), - [anon_sym_71] = ACTIONS(504), - [anon_sym_tribute] = ACTIONS(504), - [anon_sym_72] = ACTIONS(504), - [anon_sym_fold] = ACTIONS(504), - [anon_sym_73] = ACTIONS(504), - [anon_sym_distribute] = ACTIONS(504), - [anon_sym_74] = ACTIONS(504), - [anon_sym_table] = ACTIONS(504), - [anon_sym_75] = ACTIONS(504), - [anon_sym_cross] = ACTIONS(504), - [anon_sym_76] = ACTIONS(504), - [anon_sym_group] = ACTIONS(504), - [anon_sym_77] = ACTIONS(504), - [anon_sym_partition] = ACTIONS(504), - [anon_sym_78] = ACTIONS(504), - [anon_sym_both] = ACTIONS(504), - [anon_sym_79] = ACTIONS(504), - [anon_sym_bracket] = ACTIONS(504), - [anon_sym_80] = ACTIONS(504), - [anon_sym_fork] = ACTIONS(504), - [anon_sym_81] = ACTIONS(504), - [anon_sym_under] = ACTIONS(504), - [anon_sym_82] = ACTIONS(504), - [anon_sym_level] = ACTIONS(504), - [anon_sym_83] = ACTIONS(504), - [anon_sym_fill] = ACTIONS(504), - [anon_sym_84] = ACTIONS(504), - [anon_sym_bind] = ACTIONS(504), - [anon_sym_SQUOTE] = ACTIONS(504), - [anon_sym_QMARK] = ACTIONS(504), - [anon_sym_try] = ACTIONS(502), - [anon_sym_85] = ACTIONS(504), - [anon_sym_combinate] = ACTIONS(504), - [anon_sym_86] = ACTIONS(504), - [anon_sym_87] = ACTIONS(504), - [anon_sym_88] = ACTIONS(504), - [anon_sym_89] = ACTIONS(504), - [anon_sym_90] = ACTIONS(504), - [anon_sym_91] = ACTIONS(504), - [anon_sym_92] = ACTIONS(504), - [anon_sym_93] = ACTIONS(504), + [aux_sym_number_token1] = ACTIONS(484), + [anon_sym_os] = ACTIONS(484), + [anon_sym_Family] = ACTIONS(484), + [anon_sym_Arch] = ACTIONS(484), + [anon_sym_ExeExt] = ACTIONS(484), + [anon_sym_PllExt] = ACTIONS(484), + [anon_sym_Sep] = ACTIONS(484), + [aux_sym_character_token1] = ACTIONS(486), + [sym_string] = ACTIONS(486), + [sym_multiLineString] = ACTIONS(486), + [anon_sym_PIPE] = ACTIONS(486), + [sym_identifier] = ACTIONS(484), + [sym_identifier_deprecated] = ACTIONS(484), + [sym_system] = ACTIONS(486), + [sym_comment] = ACTIONS(484), + [sym_openParen] = ACTIONS(486), + [sym_closeParen] = ACTIONS(486), + [sym_openCurly] = ACTIONS(486), + [sym_closeCurly] = ACTIONS(486), + [sym_openBracket] = ACTIONS(486), + [sym_closeBracket] = ACTIONS(486), + [sym_underscore] = ACTIONS(486), + [sym_leftArrow] = ACTIONS(486), + [anon_sym_CARET] = ACTIONS(486), + [anon_sym_eta] = ACTIONS(486), + [anon_sym_] = ACTIONS(484), + [anon_sym_pi] = ACTIONS(484), + [anon_sym_2] = ACTIONS(484), + [anon_sym_tau] = ACTIONS(486), + [anon_sym_3] = ACTIONS(484), + [anon_sym_infinity] = ACTIONS(486), + [anon_sym_4] = ACTIONS(486), + [anon_sym_e] = ACTIONS(484), + [anon_sym_NaN] = ACTIONS(484), + [anon_sym_NumProcs] = ACTIONS(484), + [anon_sym_DOT] = ACTIONS(486), + [anon_sym_COMMA] = ACTIONS(486), + [anon_sym_5] = ACTIONS(486), + [anon_sym_SEMI] = ACTIONS(486), + [anon_sym_identity] = ACTIONS(486), + [anon_sym_id] = ACTIONS(484), + [anon_sym_6] = ACTIONS(486), + [anon_sym_not] = ACTIONS(486), + [anon_sym_7] = ACTIONS(486), + [anon_sym_sign] = ACTIONS(486), + [anon_sym_8] = ACTIONS(486), + [anon_sym_BQUOTE] = ACTIONS(486), + [anon_sym_9] = ACTIONS(486), + [anon_sym_absolutevalue] = ACTIONS(486), + [anon_sym_10] = ACTIONS(486), + [anon_sym_sqrt] = ACTIONS(486), + [anon_sym_11] = ACTIONS(486), + [anon_sym_sine] = ACTIONS(486), + [anon_sym_12] = ACTIONS(486), + [anon_sym_floor] = ACTIONS(486), + [anon_sym_13] = ACTIONS(486), + [anon_sym_ceiling] = ACTIONS(486), + [anon_sym_14] = ACTIONS(486), + [anon_sym_round] = ACTIONS(486), + [anon_sym_15] = ACTIONS(486), + [anon_sym_EQ] = ACTIONS(486), + [anon_sym_BANG_EQ] = ACTIONS(486), + [anon_sym_16] = ACTIONS(486), + [anon_sym_LT] = ACTIONS(484), + [anon_sym_LT_EQ] = ACTIONS(486), + [anon_sym_17] = ACTIONS(486), + [anon_sym_GT] = ACTIONS(484), + [anon_sym_GT_EQ] = ACTIONS(486), + [anon_sym_18] = ACTIONS(486), + [anon_sym_PLUS] = ACTIONS(486), + [anon_sym_DASH] = ACTIONS(486), + [anon_sym_STAR] = ACTIONS(486), + [anon_sym_19] = ACTIONS(486), + [anon_sym_PERCENT] = ACTIONS(486), + [anon_sym_20] = ACTIONS(486), + [anon_sym_modulus] = ACTIONS(486), + [anon_sym_21] = ACTIONS(486), + [anon_sym_power] = ACTIONS(486), + [anon_sym_22] = ACTIONS(486), + [anon_sym_logarithm] = ACTIONS(486), + [anon_sym_23] = ACTIONS(486), + [anon_sym_minimum] = ACTIONS(486), + [anon_sym_24] = ACTIONS(486), + [anon_sym_maximum] = ACTIONS(486), + [anon_sym_25] = ACTIONS(486), + [anon_sym_atangent] = ACTIONS(486), + [anon_sym_26] = ACTIONS(486), + [anon_sym_length] = ACTIONS(486), + [anon_sym_27] = ACTIONS(486), + [anon_sym_shape] = ACTIONS(486), + [anon_sym_28] = ACTIONS(486), + [anon_sym_range] = ACTIONS(486), + [anon_sym_29] = ACTIONS(486), + [anon_sym_first] = ACTIONS(486), + [anon_sym_30] = ACTIONS(486), + [anon_sym_reverse] = ACTIONS(486), + [anon_sym_31] = ACTIONS(486), + [anon_sym_deshape] = ACTIONS(486), + [anon_sym_32] = ACTIONS(486), + [anon_sym_bits] = ACTIONS(486), + [anon_sym_33] = ACTIONS(486), + [anon_sym_transpose] = ACTIONS(486), + [anon_sym_34] = ACTIONS(486), + [anon_sym_rise] = ACTIONS(486), + [anon_sym_35] = ACTIONS(486), + [anon_sym_fall] = ACTIONS(486), + [anon_sym_36] = ACTIONS(486), + [anon_sym_where] = ACTIONS(486), + [anon_sym_37] = ACTIONS(486), + [anon_sym_classify] = ACTIONS(486), + [anon_sym_38] = ACTIONS(486), + [anon_sym_deduplicate] = ACTIONS(486), + [anon_sym_39] = ACTIONS(486), + [anon_sym_box] = ACTIONS(486), + [anon_sym_40] = ACTIONS(486), + [anon_sym_unbox] = ACTIONS(486), + [anon_sym_41] = ACTIONS(486), + [anon_sym_match] = ACTIONS(486), + [anon_sym_42] = ACTIONS(486), + [anon_sym_couple] = ACTIONS(486), + [anon_sym_43] = ACTIONS(486), + [anon_sym_join] = ACTIONS(486), + [anon_sym_44] = ACTIONS(486), + [anon_sym_select] = ACTIONS(486), + [anon_sym_45] = ACTIONS(486), + [anon_sym_pick] = ACTIONS(486), + [anon_sym_46] = ACTIONS(486), + [anon_sym_reshape] = ACTIONS(486), + [anon_sym_47] = ACTIONS(486), + [anon_sym_take] = ACTIONS(486), + [anon_sym_48] = ACTIONS(486), + [anon_sym_drop] = ACTIONS(486), + [anon_sym_49] = ACTIONS(486), + [anon_sym_rotate] = ACTIONS(486), + [anon_sym_50] = ACTIONS(486), + [anon_sym_windows] = ACTIONS(486), + [anon_sym_51] = ACTIONS(486), + [anon_sym_keep] = ACTIONS(486), + [anon_sym_52] = ACTIONS(486), + [anon_sym_find] = ACTIONS(486), + [anon_sym_53] = ACTIONS(486), + [anon_sym_member] = ACTIONS(486), + [anon_sym_54] = ACTIONS(486), + [anon_sym_indexof] = ACTIONS(486), + [anon_sym_55] = ACTIONS(486), + [anon_sym_assert] = ACTIONS(486), + [anon_sym_56] = ACTIONS(486), + [anon_sym_wait] = ACTIONS(486), + [anon_sym_break] = ACTIONS(486), + [anon_sym_57] = ACTIONS(486), + [anon_sym_parse] = ACTIONS(486), + [anon_sym_random] = ACTIONS(486), + [anon_sym_58] = ACTIONS(486), + [anon_sym_gen] = ACTIONS(486), + [anon_sym_deal] = ACTIONS(486), + [anon_sym_tag] = ACTIONS(486), + [anon_sym_now] = ACTIONS(486), + [anon_sym_type] = ACTIONS(486), + [anon_sym_59] = ACTIONS(486), + [anon_sym_dump] = ACTIONS(486), + [anon_sym_regex] = ACTIONS(486), + [anon_sym_utf] = ACTIONS(486), + [anon_sym_rock] = ACTIONS(486), + [anon_sym_60] = ACTIONS(486), + [anon_sym_surface] = ACTIONS(486), + [anon_sym_TILDE] = ACTIONS(486), + [anon_sym_deep] = ACTIONS(486), + [anon_sym_de] = ACTIONS(484), + [anon_sym_61] = ACTIONS(486), + [anon_sym_abyss] = ACTIONS(486), + [anon_sym_ab] = ACTIONS(484), + [anon_sym_62] = ACTIONS(486), + [anon_sym_seabed] = ACTIONS(486), + [anon_sym_se] = ACTIONS(484), + [anon_sym_63] = ACTIONS(486), + [anon_sym_send] = ACTIONS(486), + [anon_sym_recv] = ACTIONS(486), + [anon_sym_tryrecv] = ACTIONS(486), + [anon_sym_reduce] = ACTIONS(486), + [anon_sym_SLASH] = ACTIONS(486), + [anon_sym_scan] = ACTIONS(486), + [anon_sym_BSLASH] = ACTIONS(486), + [anon_sym_each] = ACTIONS(486), + [anon_sym_64] = ACTIONS(486), + [anon_sym_rows] = ACTIONS(486), + [anon_sym_65] = ACTIONS(486), + [anon_sym_repeat] = ACTIONS(486), + [anon_sym_66] = ACTIONS(486), + [anon_sym_dip] = ACTIONS(486), + [anon_sym_67] = ACTIONS(486), + [anon_sym_gap] = ACTIONS(486), + [anon_sym_68] = ACTIONS(486), + [anon_sym_69] = ACTIONS(486), + [anon_sym_invert] = ACTIONS(486), + [anon_sym_70] = ACTIONS(486), + [anon_sym_spawn] = ACTIONS(486), + [anon_sym_pack] = ACTIONS(486), + [anon_sym_71] = ACTIONS(486), + [anon_sym_tribute] = ACTIONS(486), + [anon_sym_72] = ACTIONS(486), + [anon_sym_reach] = ACTIONS(486), + [anon_sym_fold] = ACTIONS(486), + [anon_sym_73] = ACTIONS(486), + [anon_sym_distribute] = ACTIONS(486), + [anon_sym_74] = ACTIONS(486), + [anon_sym_table] = ACTIONS(486), + [anon_sym_75] = ACTIONS(486), + [anon_sym_cross] = ACTIONS(486), + [anon_sym_76] = ACTIONS(486), + [anon_sym_group] = ACTIONS(486), + [anon_sym_77] = ACTIONS(486), + [anon_sym_partition] = ACTIONS(486), + [anon_sym_78] = ACTIONS(486), + [anon_sym_both] = ACTIONS(486), + [anon_sym_79] = ACTIONS(486), + [anon_sym_bracket] = ACTIONS(486), + [anon_sym_80] = ACTIONS(486), + [anon_sym_fork] = ACTIONS(486), + [anon_sym_81] = ACTIONS(486), + [anon_sym_under] = ACTIONS(486), + [anon_sym_82] = ACTIONS(486), + [anon_sym_level] = ACTIONS(486), + [anon_sym_83] = ACTIONS(486), + [anon_sym_fill] = ACTIONS(486), + [anon_sym_84] = ACTIONS(486), + [anon_sym_bind] = ACTIONS(486), + [anon_sym_SQUOTE] = ACTIONS(486), + [anon_sym_QMARK] = ACTIONS(486), + [anon_sym_try] = ACTIONS(484), + [anon_sym_85] = ACTIONS(486), + [anon_sym_combinate] = ACTIONS(486), + [anon_sym_86] = ACTIONS(486), + [anon_sym_87] = ACTIONS(486), + [anon_sym_88] = ACTIONS(486), + [anon_sym_89] = ACTIONS(486), + [anon_sym_90] = ACTIONS(486), + [anon_sym_91] = ACTIONS(486), + [anon_sym_92] = ACTIONS(486), + [anon_sym_93] = ACTIONS(486), [sym__whitespace] = ACTIONS(5), - [sym__end_of_line] = ACTIONS(504), + [sym__end_of_line] = ACTIONS(486), }, [81] = { - [aux_sym_number_token1] = ACTIONS(506), - [anon_sym_os] = ACTIONS(506), - [anon_sym_Family] = ACTIONS(506), - [anon_sym_Arch] = ACTIONS(506), - [anon_sym_ExeExt] = ACTIONS(506), - [anon_sym_PllExt] = ACTIONS(506), - [anon_sym_Sep] = ACTIONS(506), - [aux_sym_character_token1] = ACTIONS(508), - [sym_string] = ACTIONS(508), - [sym_multiLineString] = ACTIONS(508), - [anon_sym_PIPE] = ACTIONS(508), - [sym_identifier] = ACTIONS(506), - [sym_identifier_deprecated] = ACTIONS(506), - [sym_system] = ACTIONS(508), - [sym_comment] = ACTIONS(506), - [sym_openParen] = ACTIONS(508), - [sym_closeParen] = ACTIONS(508), - [sym_openCurly] = ACTIONS(508), - [sym_closeCurly] = ACTIONS(508), - [sym_openBracket] = ACTIONS(508), - [sym_closeBracket] = ACTIONS(508), - [sym_underscore] = ACTIONS(508), - [sym_leftArrow] = ACTIONS(508), - [anon_sym_CARET] = ACTIONS(508), - [anon_sym_eta] = ACTIONS(508), - [anon_sym_] = ACTIONS(506), - [anon_sym_pi] = ACTIONS(506), - [anon_sym_2] = ACTIONS(506), - [anon_sym_tau] = ACTIONS(508), - [anon_sym_3] = ACTIONS(506), - [anon_sym_infinity] = ACTIONS(508), - [anon_sym_4] = ACTIONS(508), - [anon_sym_e] = ACTIONS(506), - [anon_sym_NaN] = ACTIONS(506), - [anon_sym_NumProcs] = ACTIONS(506), - [anon_sym_DOT] = ACTIONS(508), - [anon_sym_COMMA] = ACTIONS(508), - [anon_sym_5] = ACTIONS(508), - [anon_sym_SEMI] = ACTIONS(508), - [anon_sym_identity] = ACTIONS(508), - [anon_sym_id] = ACTIONS(506), - [anon_sym_6] = ACTIONS(508), - [anon_sym_not] = ACTIONS(508), - [anon_sym_7] = ACTIONS(508), - [anon_sym_sign] = ACTIONS(508), - [anon_sym_8] = ACTIONS(508), - [anon_sym_BQUOTE] = ACTIONS(508), - [anon_sym_9] = ACTIONS(508), - [anon_sym_absolutevalue] = ACTIONS(508), - [anon_sym_10] = ACTIONS(508), - [anon_sym_sqrt] = ACTIONS(508), - [anon_sym_11] = ACTIONS(508), - [anon_sym_sine] = ACTIONS(508), - [anon_sym_12] = ACTIONS(508), - [anon_sym_floor] = ACTIONS(508), - [anon_sym_13] = ACTIONS(508), - [anon_sym_ceiling] = ACTIONS(508), - [anon_sym_14] = ACTIONS(508), - [anon_sym_round] = ACTIONS(508), - [anon_sym_15] = ACTIONS(508), - [anon_sym_EQ] = ACTIONS(508), - [anon_sym_BANG_EQ] = ACTIONS(508), - [anon_sym_16] = ACTIONS(508), - [anon_sym_LT] = ACTIONS(506), - [anon_sym_LT_EQ] = ACTIONS(508), - [anon_sym_17] = ACTIONS(508), - [anon_sym_GT] = ACTIONS(506), - [anon_sym_GT_EQ] = ACTIONS(508), - [anon_sym_18] = ACTIONS(508), - [anon_sym_PLUS] = ACTIONS(508), - [anon_sym_DASH] = ACTIONS(508), - [anon_sym_STAR] = ACTIONS(508), - [anon_sym_19] = ACTIONS(508), - [anon_sym_PERCENT] = ACTIONS(508), - [anon_sym_20] = ACTIONS(508), - [anon_sym_modulus] = ACTIONS(508), - [anon_sym_21] = ACTIONS(508), - [anon_sym_power] = ACTIONS(508), - [anon_sym_22] = ACTIONS(508), - [anon_sym_logarithm] = ACTIONS(508), - [anon_sym_23] = ACTIONS(508), - [anon_sym_minimum] = ACTIONS(508), - [anon_sym_24] = ACTIONS(508), - [anon_sym_maximum] = ACTIONS(508), - [anon_sym_25] = ACTIONS(508), - [anon_sym_atangent] = ACTIONS(508), - [anon_sym_26] = ACTIONS(508), - [anon_sym_length] = ACTIONS(508), - [anon_sym_27] = ACTIONS(508), - [anon_sym_shape] = ACTIONS(508), - [anon_sym_28] = ACTIONS(508), - [anon_sym_range] = ACTIONS(508), - [anon_sym_29] = ACTIONS(508), - [anon_sym_first] = ACTIONS(508), - [anon_sym_30] = ACTIONS(508), - [anon_sym_reverse] = ACTIONS(508), - [anon_sym_31] = ACTIONS(508), - [anon_sym_deshape] = ACTIONS(508), - [anon_sym_32] = ACTIONS(508), - [anon_sym_bits] = ACTIONS(508), - [anon_sym_33] = ACTIONS(508), - [anon_sym_transpose] = ACTIONS(508), - [anon_sym_34] = ACTIONS(508), - [anon_sym_rise] = ACTIONS(508), - [anon_sym_35] = ACTIONS(508), - [anon_sym_fall] = ACTIONS(508), - [anon_sym_36] = ACTIONS(508), - [anon_sym_where] = ACTIONS(508), - [anon_sym_37] = ACTIONS(508), - [anon_sym_classify] = ACTIONS(508), - [anon_sym_38] = ACTIONS(508), - [anon_sym_deduplicate] = ACTIONS(508), - [anon_sym_39] = ACTIONS(508), - [anon_sym_box] = ACTIONS(508), - [anon_sym_40] = ACTIONS(508), - [anon_sym_unbox] = ACTIONS(508), - [anon_sym_41] = ACTIONS(508), - [anon_sym_match] = ACTIONS(508), - [anon_sym_42] = ACTIONS(508), - [anon_sym_couple] = ACTIONS(508), - [anon_sym_43] = ACTIONS(508), - [anon_sym_join] = ACTIONS(508), - [anon_sym_44] = ACTIONS(508), - [anon_sym_select] = ACTIONS(508), - [anon_sym_45] = ACTIONS(508), - [anon_sym_pick] = ACTIONS(508), - [anon_sym_46] = ACTIONS(508), - [anon_sym_reshape] = ACTIONS(508), - [anon_sym_47] = ACTIONS(508), - [anon_sym_take] = ACTIONS(508), - [anon_sym_48] = ACTIONS(508), - [anon_sym_drop] = ACTIONS(508), - [anon_sym_49] = ACTIONS(508), - [anon_sym_rotate] = ACTIONS(508), - [anon_sym_50] = ACTIONS(508), - [anon_sym_windows] = ACTIONS(508), - [anon_sym_51] = ACTIONS(508), - [anon_sym_keep] = ACTIONS(508), - [anon_sym_52] = ACTIONS(508), - [anon_sym_find] = ACTIONS(508), - [anon_sym_53] = ACTIONS(508), - [anon_sym_member] = ACTIONS(508), - [anon_sym_54] = ACTIONS(508), - [anon_sym_indexof] = ACTIONS(508), - [anon_sym_55] = ACTIONS(508), - [anon_sym_assert] = ACTIONS(508), - [anon_sym_56] = ACTIONS(508), - [anon_sym_wait] = ACTIONS(508), - [anon_sym_break] = ACTIONS(508), - [anon_sym_57] = ACTIONS(508), - [anon_sym_parse] = ACTIONS(508), - [anon_sym_random] = ACTIONS(508), - [anon_sym_58] = ACTIONS(508), - [anon_sym_gen] = ACTIONS(508), - [anon_sym_deal] = ACTIONS(508), - [anon_sym_tag] = ACTIONS(508), - [anon_sym_now] = ACTIONS(508), - [anon_sym_type] = ACTIONS(508), - [anon_sym_59] = ACTIONS(508), - [anon_sym_dump] = ACTIONS(508), - [anon_sym_regex] = ACTIONS(508), - [anon_sym_utf] = ACTIONS(508), - [anon_sym_rock] = ACTIONS(508), - [anon_sym_60] = ACTIONS(508), - [anon_sym_surface] = ACTIONS(508), - [anon_sym_TILDE] = ACTIONS(508), - [anon_sym_deep] = ACTIONS(508), - [anon_sym_de] = ACTIONS(506), - [anon_sym_61] = ACTIONS(508), - [anon_sym_abyss] = ACTIONS(508), - [anon_sym_ab] = ACTIONS(506), - [anon_sym_62] = ACTIONS(508), - [anon_sym_seabed] = ACTIONS(508), - [anon_sym_se] = ACTIONS(506), - [anon_sym_63] = ACTIONS(508), - [anon_sym_send] = ACTIONS(508), - [anon_sym_recv] = ACTIONS(508), - [anon_sym_tryrecv] = ACTIONS(508), - [anon_sym_reduce] = ACTIONS(508), - [anon_sym_SLASH] = ACTIONS(508), - [anon_sym_scan] = ACTIONS(508), - [anon_sym_BSLASH] = ACTIONS(508), - [anon_sym_each] = ACTIONS(508), - [anon_sym_64] = ACTIONS(508), - [anon_sym_rows] = ACTIONS(508), - [anon_sym_65] = ACTIONS(508), - [anon_sym_repeat] = ACTIONS(508), - [anon_sym_66] = ACTIONS(508), - [anon_sym_dip] = ACTIONS(508), - [anon_sym_di] = ACTIONS(506), - [anon_sym_67] = ACTIONS(508), - [anon_sym_gap] = ACTIONS(508), - [anon_sym_ga] = ACTIONS(506), - [anon_sym_68] = ACTIONS(508), - [anon_sym_oust] = ACTIONS(508), - [anon_sym_69] = ACTIONS(508), - [anon_sym_invert] = ACTIONS(508), - [anon_sym_70] = ACTIONS(508), - [anon_sym_spawn] = ACTIONS(508), - [anon_sym_pack] = ACTIONS(508), - [anon_sym_71] = ACTIONS(508), - [anon_sym_tribute] = ACTIONS(508), - [anon_sym_72] = ACTIONS(508), - [anon_sym_fold] = ACTIONS(508), - [anon_sym_73] = ACTIONS(508), - [anon_sym_distribute] = ACTIONS(508), - [anon_sym_74] = ACTIONS(508), - [anon_sym_table] = ACTIONS(508), - [anon_sym_75] = ACTIONS(508), - [anon_sym_cross] = ACTIONS(508), - [anon_sym_76] = ACTIONS(508), - [anon_sym_group] = ACTIONS(508), - [anon_sym_77] = ACTIONS(508), - [anon_sym_partition] = ACTIONS(508), - [anon_sym_78] = ACTIONS(508), - [anon_sym_both] = ACTIONS(508), - [anon_sym_79] = ACTIONS(508), - [anon_sym_bracket] = ACTIONS(508), - [anon_sym_80] = ACTIONS(508), - [anon_sym_fork] = ACTIONS(508), - [anon_sym_81] = ACTIONS(508), - [anon_sym_under] = ACTIONS(508), - [anon_sym_82] = ACTIONS(508), - [anon_sym_level] = ACTIONS(508), - [anon_sym_83] = ACTIONS(508), - [anon_sym_fill] = ACTIONS(508), - [anon_sym_84] = ACTIONS(508), - [anon_sym_bind] = ACTIONS(508), - [anon_sym_SQUOTE] = ACTIONS(508), - [anon_sym_QMARK] = ACTIONS(508), - [anon_sym_try] = ACTIONS(506), - [anon_sym_85] = ACTIONS(508), - [anon_sym_combinate] = ACTIONS(508), - [anon_sym_86] = ACTIONS(508), - [anon_sym_87] = ACTIONS(508), - [anon_sym_88] = ACTIONS(508), - [anon_sym_89] = ACTIONS(508), - [anon_sym_90] = ACTIONS(508), - [anon_sym_91] = ACTIONS(508), - [anon_sym_92] = ACTIONS(508), - [anon_sym_93] = ACTIONS(508), + [aux_sym_number_token1] = ACTIONS(488), + [anon_sym_os] = ACTIONS(488), + [anon_sym_Family] = ACTIONS(488), + [anon_sym_Arch] = ACTIONS(488), + [anon_sym_ExeExt] = ACTIONS(488), + [anon_sym_PllExt] = ACTIONS(488), + [anon_sym_Sep] = ACTIONS(488), + [aux_sym_character_token1] = ACTIONS(490), + [sym_string] = ACTIONS(490), + [sym_multiLineString] = ACTIONS(490), + [anon_sym_PIPE] = ACTIONS(490), + [sym_identifier] = ACTIONS(488), + [sym_identifier_deprecated] = ACTIONS(488), + [sym_system] = ACTIONS(490), + [sym_comment] = ACTIONS(488), + [sym_openParen] = ACTIONS(490), + [sym_closeParen] = ACTIONS(490), + [sym_openCurly] = ACTIONS(490), + [sym_closeCurly] = ACTIONS(490), + [sym_openBracket] = ACTIONS(490), + [sym_closeBracket] = ACTIONS(490), + [sym_underscore] = ACTIONS(490), + [sym_leftArrow] = ACTIONS(490), + [anon_sym_CARET] = ACTIONS(490), + [anon_sym_eta] = ACTIONS(490), + [anon_sym_] = ACTIONS(488), + [anon_sym_pi] = ACTIONS(488), + [anon_sym_2] = ACTIONS(488), + [anon_sym_tau] = ACTIONS(490), + [anon_sym_3] = ACTIONS(488), + [anon_sym_infinity] = ACTIONS(490), + [anon_sym_4] = ACTIONS(490), + [anon_sym_e] = ACTIONS(488), + [anon_sym_NaN] = ACTIONS(488), + [anon_sym_NumProcs] = ACTIONS(488), + [anon_sym_DOT] = ACTIONS(490), + [anon_sym_COMMA] = ACTIONS(490), + [anon_sym_5] = ACTIONS(490), + [anon_sym_SEMI] = ACTIONS(490), + [anon_sym_identity] = ACTIONS(490), + [anon_sym_id] = ACTIONS(488), + [anon_sym_6] = ACTIONS(490), + [anon_sym_not] = ACTIONS(490), + [anon_sym_7] = ACTIONS(490), + [anon_sym_sign] = ACTIONS(490), + [anon_sym_8] = ACTIONS(490), + [anon_sym_BQUOTE] = ACTIONS(490), + [anon_sym_9] = ACTIONS(490), + [anon_sym_absolutevalue] = ACTIONS(490), + [anon_sym_10] = ACTIONS(490), + [anon_sym_sqrt] = ACTIONS(490), + [anon_sym_11] = ACTIONS(490), + [anon_sym_sine] = ACTIONS(490), + [anon_sym_12] = ACTIONS(490), + [anon_sym_floor] = ACTIONS(490), + [anon_sym_13] = ACTIONS(490), + [anon_sym_ceiling] = ACTIONS(490), + [anon_sym_14] = ACTIONS(490), + [anon_sym_round] = ACTIONS(490), + [anon_sym_15] = ACTIONS(490), + [anon_sym_EQ] = ACTIONS(490), + [anon_sym_BANG_EQ] = ACTIONS(490), + [anon_sym_16] = ACTIONS(490), + [anon_sym_LT] = ACTIONS(488), + [anon_sym_LT_EQ] = ACTIONS(490), + [anon_sym_17] = ACTIONS(490), + [anon_sym_GT] = ACTIONS(488), + [anon_sym_GT_EQ] = ACTIONS(490), + [anon_sym_18] = ACTIONS(490), + [anon_sym_PLUS] = ACTIONS(490), + [anon_sym_DASH] = ACTIONS(490), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_19] = ACTIONS(490), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_20] = ACTIONS(490), + [anon_sym_modulus] = ACTIONS(490), + [anon_sym_21] = ACTIONS(490), + [anon_sym_power] = ACTIONS(490), + [anon_sym_22] = ACTIONS(490), + [anon_sym_logarithm] = ACTIONS(490), + [anon_sym_23] = ACTIONS(490), + [anon_sym_minimum] = ACTIONS(490), + [anon_sym_24] = ACTIONS(490), + [anon_sym_maximum] = ACTIONS(490), + [anon_sym_25] = ACTIONS(490), + [anon_sym_atangent] = ACTIONS(490), + [anon_sym_26] = ACTIONS(490), + [anon_sym_length] = ACTIONS(490), + [anon_sym_27] = ACTIONS(490), + [anon_sym_shape] = ACTIONS(490), + [anon_sym_28] = ACTIONS(490), + [anon_sym_range] = ACTIONS(490), + [anon_sym_29] = ACTIONS(490), + [anon_sym_first] = ACTIONS(490), + [anon_sym_30] = ACTIONS(490), + [anon_sym_reverse] = ACTIONS(490), + [anon_sym_31] = ACTIONS(490), + [anon_sym_deshape] = ACTIONS(490), + [anon_sym_32] = ACTIONS(490), + [anon_sym_bits] = ACTIONS(490), + [anon_sym_33] = ACTIONS(490), + [anon_sym_transpose] = ACTIONS(490), + [anon_sym_34] = ACTIONS(490), + [anon_sym_rise] = ACTIONS(490), + [anon_sym_35] = ACTIONS(490), + [anon_sym_fall] = ACTIONS(490), + [anon_sym_36] = ACTIONS(490), + [anon_sym_where] = ACTIONS(490), + [anon_sym_37] = ACTIONS(490), + [anon_sym_classify] = ACTIONS(490), + [anon_sym_38] = ACTIONS(490), + [anon_sym_deduplicate] = ACTIONS(490), + [anon_sym_39] = ACTIONS(490), + [anon_sym_box] = ACTIONS(490), + [anon_sym_40] = ACTIONS(490), + [anon_sym_unbox] = ACTIONS(490), + [anon_sym_41] = ACTIONS(490), + [anon_sym_match] = ACTIONS(490), + [anon_sym_42] = ACTIONS(490), + [anon_sym_couple] = ACTIONS(490), + [anon_sym_43] = ACTIONS(490), + [anon_sym_join] = ACTIONS(490), + [anon_sym_44] = ACTIONS(490), + [anon_sym_select] = ACTIONS(490), + [anon_sym_45] = ACTIONS(490), + [anon_sym_pick] = ACTIONS(490), + [anon_sym_46] = ACTIONS(490), + [anon_sym_reshape] = ACTIONS(490), + [anon_sym_47] = ACTIONS(490), + [anon_sym_take] = ACTIONS(490), + [anon_sym_48] = ACTIONS(490), + [anon_sym_drop] = ACTIONS(490), + [anon_sym_49] = ACTIONS(490), + [anon_sym_rotate] = ACTIONS(490), + [anon_sym_50] = ACTIONS(490), + [anon_sym_windows] = ACTIONS(490), + [anon_sym_51] = ACTIONS(490), + [anon_sym_keep] = ACTIONS(490), + [anon_sym_52] = ACTIONS(490), + [anon_sym_find] = ACTIONS(490), + [anon_sym_53] = ACTIONS(490), + [anon_sym_member] = ACTIONS(490), + [anon_sym_54] = ACTIONS(490), + [anon_sym_indexof] = ACTIONS(490), + [anon_sym_55] = ACTIONS(490), + [anon_sym_assert] = ACTIONS(490), + [anon_sym_56] = ACTIONS(490), + [anon_sym_wait] = ACTIONS(490), + [anon_sym_break] = ACTIONS(490), + [anon_sym_57] = ACTIONS(490), + [anon_sym_parse] = ACTIONS(490), + [anon_sym_random] = ACTIONS(490), + [anon_sym_58] = ACTIONS(490), + [anon_sym_gen] = ACTIONS(490), + [anon_sym_deal] = ACTIONS(490), + [anon_sym_tag] = ACTIONS(490), + [anon_sym_now] = ACTIONS(490), + [anon_sym_type] = ACTIONS(490), + [anon_sym_59] = ACTIONS(490), + [anon_sym_dump] = ACTIONS(490), + [anon_sym_regex] = ACTIONS(490), + [anon_sym_utf] = ACTIONS(490), + [anon_sym_rock] = ACTIONS(490), + [anon_sym_60] = ACTIONS(490), + [anon_sym_surface] = ACTIONS(490), + [anon_sym_TILDE] = ACTIONS(490), + [anon_sym_deep] = ACTIONS(490), + [anon_sym_de] = ACTIONS(488), + [anon_sym_61] = ACTIONS(490), + [anon_sym_abyss] = ACTIONS(490), + [anon_sym_ab] = ACTIONS(488), + [anon_sym_62] = ACTIONS(490), + [anon_sym_seabed] = ACTIONS(490), + [anon_sym_se] = ACTIONS(488), + [anon_sym_63] = ACTIONS(490), + [anon_sym_send] = ACTIONS(490), + [anon_sym_recv] = ACTIONS(490), + [anon_sym_tryrecv] = ACTIONS(490), + [anon_sym_reduce] = ACTIONS(490), + [anon_sym_SLASH] = ACTIONS(490), + [anon_sym_scan] = ACTIONS(490), + [anon_sym_BSLASH] = ACTIONS(490), + [anon_sym_each] = ACTIONS(490), + [anon_sym_64] = ACTIONS(490), + [anon_sym_rows] = ACTIONS(490), + [anon_sym_65] = ACTIONS(490), + [anon_sym_repeat] = ACTIONS(490), + [anon_sym_66] = ACTIONS(490), + [anon_sym_dip] = ACTIONS(490), + [anon_sym_67] = ACTIONS(490), + [anon_sym_gap] = ACTIONS(490), + [anon_sym_68] = ACTIONS(490), + [anon_sym_69] = ACTIONS(490), + [anon_sym_invert] = ACTIONS(490), + [anon_sym_70] = ACTIONS(490), + [anon_sym_spawn] = ACTIONS(490), + [anon_sym_pack] = ACTIONS(490), + [anon_sym_71] = ACTIONS(490), + [anon_sym_tribute] = ACTIONS(490), + [anon_sym_72] = ACTIONS(490), + [anon_sym_reach] = ACTIONS(490), + [anon_sym_fold] = ACTIONS(490), + [anon_sym_73] = ACTIONS(490), + [anon_sym_distribute] = ACTIONS(490), + [anon_sym_74] = ACTIONS(490), + [anon_sym_table] = ACTIONS(490), + [anon_sym_75] = ACTIONS(490), + [anon_sym_cross] = ACTIONS(490), + [anon_sym_76] = ACTIONS(490), + [anon_sym_group] = ACTIONS(490), + [anon_sym_77] = ACTIONS(490), + [anon_sym_partition] = ACTIONS(490), + [anon_sym_78] = ACTIONS(490), + [anon_sym_both] = ACTIONS(490), + [anon_sym_79] = ACTIONS(490), + [anon_sym_bracket] = ACTIONS(490), + [anon_sym_80] = ACTIONS(490), + [anon_sym_fork] = ACTIONS(490), + [anon_sym_81] = ACTIONS(490), + [anon_sym_under] = ACTIONS(490), + [anon_sym_82] = ACTIONS(490), + [anon_sym_level] = ACTIONS(490), + [anon_sym_83] = ACTIONS(490), + [anon_sym_fill] = ACTIONS(490), + [anon_sym_84] = ACTIONS(490), + [anon_sym_bind] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(490), + [anon_sym_QMARK] = ACTIONS(490), + [anon_sym_try] = ACTIONS(488), + [anon_sym_85] = ACTIONS(490), + [anon_sym_combinate] = ACTIONS(490), + [anon_sym_86] = ACTIONS(490), + [anon_sym_87] = ACTIONS(490), + [anon_sym_88] = ACTIONS(490), + [anon_sym_89] = ACTIONS(490), + [anon_sym_90] = ACTIONS(490), + [anon_sym_91] = ACTIONS(490), + [anon_sym_92] = ACTIONS(490), + [anon_sym_93] = ACTIONS(490), [sym__whitespace] = ACTIONS(5), - [sym__end_of_line] = ACTIONS(508), + [sym__end_of_line] = ACTIONS(490), }, [82] = { - [aux_sym_number_token1] = ACTIONS(510), - [anon_sym_os] = ACTIONS(510), - [anon_sym_Family] = ACTIONS(510), - [anon_sym_Arch] = ACTIONS(510), - [anon_sym_ExeExt] = ACTIONS(510), - [anon_sym_PllExt] = ACTIONS(510), - [anon_sym_Sep] = ACTIONS(510), - [aux_sym_character_token1] = ACTIONS(512), - [sym_string] = ACTIONS(512), - [sym_multiLineString] = ACTIONS(512), - [anon_sym_PIPE] = ACTIONS(512), - [sym_identifier] = ACTIONS(510), - [sym_identifier_deprecated] = ACTIONS(510), - [sym_system] = ACTIONS(512), - [sym_comment] = ACTIONS(510), - [sym_openParen] = ACTIONS(512), - [sym_closeParen] = ACTIONS(512), - [sym_openCurly] = ACTIONS(512), - [sym_closeCurly] = ACTIONS(512), - [sym_openBracket] = ACTIONS(512), - [sym_closeBracket] = ACTIONS(512), - [sym_underscore] = ACTIONS(512), - [sym_leftArrow] = ACTIONS(512), - [anon_sym_CARET] = ACTIONS(512), - [anon_sym_eta] = ACTIONS(512), - [anon_sym_] = ACTIONS(510), - [anon_sym_pi] = ACTIONS(510), - [anon_sym_2] = ACTIONS(510), - [anon_sym_tau] = ACTIONS(512), - [anon_sym_3] = ACTIONS(510), - [anon_sym_infinity] = ACTIONS(512), - [anon_sym_4] = ACTIONS(512), - [anon_sym_e] = ACTIONS(510), - [anon_sym_NaN] = ACTIONS(510), - [anon_sym_NumProcs] = ACTIONS(510), - [anon_sym_DOT] = ACTIONS(512), - [anon_sym_COMMA] = ACTIONS(512), - [anon_sym_5] = ACTIONS(512), - [anon_sym_SEMI] = ACTIONS(512), - [anon_sym_identity] = ACTIONS(512), - [anon_sym_id] = ACTIONS(510), - [anon_sym_6] = ACTIONS(512), - [anon_sym_not] = ACTIONS(512), - [anon_sym_7] = ACTIONS(512), - [anon_sym_sign] = ACTIONS(512), - [anon_sym_8] = ACTIONS(512), - [anon_sym_BQUOTE] = ACTIONS(512), - [anon_sym_9] = ACTIONS(512), - [anon_sym_absolutevalue] = ACTIONS(512), - [anon_sym_10] = ACTIONS(512), - [anon_sym_sqrt] = ACTIONS(512), - [anon_sym_11] = ACTIONS(512), - [anon_sym_sine] = ACTIONS(512), - [anon_sym_12] = ACTIONS(512), - [anon_sym_floor] = ACTIONS(512), - [anon_sym_13] = ACTIONS(512), - [anon_sym_ceiling] = ACTIONS(512), - [anon_sym_14] = ACTIONS(512), - [anon_sym_round] = ACTIONS(512), - [anon_sym_15] = ACTIONS(512), - [anon_sym_EQ] = ACTIONS(512), - [anon_sym_BANG_EQ] = ACTIONS(512), - [anon_sym_16] = ACTIONS(512), - [anon_sym_LT] = ACTIONS(510), - [anon_sym_LT_EQ] = ACTIONS(512), - [anon_sym_17] = ACTIONS(512), - [anon_sym_GT] = ACTIONS(510), - [anon_sym_GT_EQ] = ACTIONS(512), - [anon_sym_18] = ACTIONS(512), - [anon_sym_PLUS] = ACTIONS(512), - [anon_sym_DASH] = ACTIONS(512), - [anon_sym_STAR] = ACTIONS(512), - [anon_sym_19] = ACTIONS(512), - [anon_sym_PERCENT] = ACTIONS(512), - [anon_sym_20] = ACTIONS(512), - [anon_sym_modulus] = ACTIONS(512), - [anon_sym_21] = ACTIONS(512), - [anon_sym_power] = ACTIONS(512), - [anon_sym_22] = ACTIONS(512), - [anon_sym_logarithm] = ACTIONS(512), - [anon_sym_23] = ACTIONS(512), - [anon_sym_minimum] = ACTIONS(512), - [anon_sym_24] = ACTIONS(512), - [anon_sym_maximum] = ACTIONS(512), - [anon_sym_25] = ACTIONS(512), - [anon_sym_atangent] = ACTIONS(512), - [anon_sym_26] = ACTIONS(512), - [anon_sym_length] = ACTIONS(512), - [anon_sym_27] = ACTIONS(512), - [anon_sym_shape] = ACTIONS(512), - [anon_sym_28] = ACTIONS(512), - [anon_sym_range] = ACTIONS(512), - [anon_sym_29] = ACTIONS(512), - [anon_sym_first] = ACTIONS(512), - [anon_sym_30] = ACTIONS(512), - [anon_sym_reverse] = ACTIONS(512), - [anon_sym_31] = ACTIONS(512), - [anon_sym_deshape] = ACTIONS(512), - [anon_sym_32] = ACTIONS(512), - [anon_sym_bits] = ACTIONS(512), - [anon_sym_33] = ACTIONS(512), - [anon_sym_transpose] = ACTIONS(512), - [anon_sym_34] = ACTIONS(512), - [anon_sym_rise] = ACTIONS(512), - [anon_sym_35] = ACTIONS(512), - [anon_sym_fall] = ACTIONS(512), - [anon_sym_36] = ACTIONS(512), - [anon_sym_where] = ACTIONS(512), - [anon_sym_37] = ACTIONS(512), - [anon_sym_classify] = ACTIONS(512), - [anon_sym_38] = ACTIONS(512), - [anon_sym_deduplicate] = ACTIONS(512), - [anon_sym_39] = ACTIONS(512), - [anon_sym_box] = ACTIONS(512), - [anon_sym_40] = ACTIONS(512), - [anon_sym_unbox] = ACTIONS(512), - [anon_sym_41] = ACTIONS(512), - [anon_sym_match] = ACTIONS(512), - [anon_sym_42] = ACTIONS(512), - [anon_sym_couple] = ACTIONS(512), - [anon_sym_43] = ACTIONS(512), - [anon_sym_join] = ACTIONS(512), - [anon_sym_44] = ACTIONS(512), - [anon_sym_select] = ACTIONS(512), - [anon_sym_45] = ACTIONS(512), - [anon_sym_pick] = ACTIONS(512), - [anon_sym_46] = ACTIONS(512), - [anon_sym_reshape] = ACTIONS(512), - [anon_sym_47] = ACTIONS(512), - [anon_sym_take] = ACTIONS(512), - [anon_sym_48] = ACTIONS(512), - [anon_sym_drop] = ACTIONS(512), - [anon_sym_49] = ACTIONS(512), - [anon_sym_rotate] = ACTIONS(512), - [anon_sym_50] = ACTIONS(512), - [anon_sym_windows] = ACTIONS(512), - [anon_sym_51] = ACTIONS(512), - [anon_sym_keep] = ACTIONS(512), - [anon_sym_52] = ACTIONS(512), - [anon_sym_find] = ACTIONS(512), - [anon_sym_53] = ACTIONS(512), - [anon_sym_member] = ACTIONS(512), - [anon_sym_54] = ACTIONS(512), - [anon_sym_indexof] = ACTIONS(512), - [anon_sym_55] = ACTIONS(512), - [anon_sym_assert] = ACTIONS(512), - [anon_sym_56] = ACTIONS(512), - [anon_sym_wait] = ACTIONS(512), - [anon_sym_break] = ACTIONS(512), - [anon_sym_57] = ACTIONS(512), - [anon_sym_parse] = ACTIONS(512), - [anon_sym_random] = ACTIONS(512), - [anon_sym_58] = ACTIONS(512), - [anon_sym_gen] = ACTIONS(512), - [anon_sym_deal] = ACTIONS(512), - [anon_sym_tag] = ACTIONS(512), - [anon_sym_now] = ACTIONS(512), - [anon_sym_type] = ACTIONS(512), - [anon_sym_59] = ACTIONS(512), - [anon_sym_dump] = ACTIONS(512), - [anon_sym_regex] = ACTIONS(512), - [anon_sym_utf] = ACTIONS(512), - [anon_sym_rock] = ACTIONS(512), - [anon_sym_60] = ACTIONS(512), - [anon_sym_surface] = ACTIONS(512), - [anon_sym_TILDE] = ACTIONS(512), - [anon_sym_deep] = ACTIONS(512), - [anon_sym_de] = ACTIONS(510), - [anon_sym_61] = ACTIONS(512), - [anon_sym_abyss] = ACTIONS(512), - [anon_sym_ab] = ACTIONS(510), - [anon_sym_62] = ACTIONS(512), - [anon_sym_seabed] = ACTIONS(512), - [anon_sym_se] = ACTIONS(510), - [anon_sym_63] = ACTIONS(512), - [anon_sym_send] = ACTIONS(512), - [anon_sym_recv] = ACTIONS(512), - [anon_sym_tryrecv] = ACTIONS(512), - [anon_sym_reduce] = ACTIONS(512), - [anon_sym_SLASH] = ACTIONS(512), - [anon_sym_scan] = ACTIONS(512), - [anon_sym_BSLASH] = ACTIONS(512), - [anon_sym_each] = ACTIONS(512), - [anon_sym_64] = ACTIONS(512), - [anon_sym_rows] = ACTIONS(512), - [anon_sym_65] = ACTIONS(512), - [anon_sym_repeat] = ACTIONS(512), - [anon_sym_66] = ACTIONS(512), - [anon_sym_dip] = ACTIONS(512), - [anon_sym_di] = ACTIONS(510), - [anon_sym_67] = ACTIONS(512), - [anon_sym_gap] = ACTIONS(512), - [anon_sym_ga] = ACTIONS(510), - [anon_sym_68] = ACTIONS(512), - [anon_sym_oust] = ACTIONS(512), - [anon_sym_69] = ACTIONS(512), - [anon_sym_invert] = ACTIONS(512), - [anon_sym_70] = ACTIONS(512), - [anon_sym_spawn] = ACTIONS(512), - [anon_sym_pack] = ACTIONS(512), - [anon_sym_71] = ACTIONS(512), - [anon_sym_tribute] = ACTIONS(512), - [anon_sym_72] = ACTIONS(512), - [anon_sym_fold] = ACTIONS(512), - [anon_sym_73] = ACTIONS(512), - [anon_sym_distribute] = ACTIONS(512), - [anon_sym_74] = ACTIONS(512), - [anon_sym_table] = ACTIONS(512), - [anon_sym_75] = ACTIONS(512), - [anon_sym_cross] = ACTIONS(512), - [anon_sym_76] = ACTIONS(512), - [anon_sym_group] = ACTIONS(512), - [anon_sym_77] = ACTIONS(512), - [anon_sym_partition] = ACTIONS(512), - [anon_sym_78] = ACTIONS(512), - [anon_sym_both] = ACTIONS(512), - [anon_sym_79] = ACTIONS(512), - [anon_sym_bracket] = ACTIONS(512), - [anon_sym_80] = ACTIONS(512), - [anon_sym_fork] = ACTIONS(512), - [anon_sym_81] = ACTIONS(512), - [anon_sym_under] = ACTIONS(512), - [anon_sym_82] = ACTIONS(512), - [anon_sym_level] = ACTIONS(512), - [anon_sym_83] = ACTIONS(512), - [anon_sym_fill] = ACTIONS(512), - [anon_sym_84] = ACTIONS(512), - [anon_sym_bind] = ACTIONS(512), - [anon_sym_SQUOTE] = ACTIONS(512), - [anon_sym_QMARK] = ACTIONS(512), - [anon_sym_try] = ACTIONS(510), - [anon_sym_85] = ACTIONS(512), - [anon_sym_combinate] = ACTIONS(512), - [anon_sym_86] = ACTIONS(512), - [anon_sym_87] = ACTIONS(512), - [anon_sym_88] = ACTIONS(512), - [anon_sym_89] = ACTIONS(512), - [anon_sym_90] = ACTIONS(512), - [anon_sym_91] = ACTIONS(512), - [anon_sym_92] = ACTIONS(512), - [anon_sym_93] = ACTIONS(512), + [aux_sym_number_token1] = ACTIONS(492), + [anon_sym_os] = ACTIONS(492), + [anon_sym_Family] = ACTIONS(492), + [anon_sym_Arch] = ACTIONS(492), + [anon_sym_ExeExt] = ACTIONS(492), + [anon_sym_PllExt] = ACTIONS(492), + [anon_sym_Sep] = ACTIONS(492), + [aux_sym_character_token1] = ACTIONS(494), + [sym_string] = ACTIONS(494), + [sym_multiLineString] = ACTIONS(494), + [anon_sym_PIPE] = ACTIONS(494), + [sym_identifier] = ACTIONS(492), + [sym_identifier_deprecated] = ACTIONS(492), + [sym_system] = ACTIONS(494), + [sym_comment] = ACTIONS(492), + [sym_openParen] = ACTIONS(494), + [sym_closeParen] = ACTIONS(494), + [sym_openCurly] = ACTIONS(494), + [sym_closeCurly] = ACTIONS(494), + [sym_openBracket] = ACTIONS(494), + [sym_closeBracket] = ACTIONS(494), + [sym_underscore] = ACTIONS(494), + [sym_leftArrow] = ACTIONS(494), + [anon_sym_CARET] = ACTIONS(494), + [anon_sym_eta] = ACTIONS(494), + [anon_sym_] = ACTIONS(492), + [anon_sym_pi] = ACTIONS(492), + [anon_sym_2] = ACTIONS(492), + [anon_sym_tau] = ACTIONS(494), + [anon_sym_3] = ACTIONS(492), + [anon_sym_infinity] = ACTIONS(494), + [anon_sym_4] = ACTIONS(494), + [anon_sym_e] = ACTIONS(492), + [anon_sym_NaN] = ACTIONS(492), + [anon_sym_NumProcs] = ACTIONS(492), + [anon_sym_DOT] = ACTIONS(494), + [anon_sym_COMMA] = ACTIONS(494), + [anon_sym_5] = ACTIONS(494), + [anon_sym_SEMI] = ACTIONS(494), + [anon_sym_identity] = ACTIONS(494), + [anon_sym_id] = ACTIONS(492), + [anon_sym_6] = ACTIONS(494), + [anon_sym_not] = ACTIONS(494), + [anon_sym_7] = ACTIONS(494), + [anon_sym_sign] = ACTIONS(494), + [anon_sym_8] = ACTIONS(494), + [anon_sym_BQUOTE] = ACTIONS(494), + [anon_sym_9] = ACTIONS(494), + [anon_sym_absolutevalue] = ACTIONS(494), + [anon_sym_10] = ACTIONS(494), + [anon_sym_sqrt] = ACTIONS(494), + [anon_sym_11] = ACTIONS(494), + [anon_sym_sine] = ACTIONS(494), + [anon_sym_12] = ACTIONS(494), + [anon_sym_floor] = ACTIONS(494), + [anon_sym_13] = ACTIONS(494), + [anon_sym_ceiling] = ACTIONS(494), + [anon_sym_14] = ACTIONS(494), + [anon_sym_round] = ACTIONS(494), + [anon_sym_15] = ACTIONS(494), + [anon_sym_EQ] = ACTIONS(494), + [anon_sym_BANG_EQ] = ACTIONS(494), + [anon_sym_16] = ACTIONS(494), + [anon_sym_LT] = ACTIONS(492), + [anon_sym_LT_EQ] = ACTIONS(494), + [anon_sym_17] = ACTIONS(494), + [anon_sym_GT] = ACTIONS(492), + [anon_sym_GT_EQ] = ACTIONS(494), + [anon_sym_18] = ACTIONS(494), + [anon_sym_PLUS] = ACTIONS(494), + [anon_sym_DASH] = ACTIONS(494), + [anon_sym_STAR] = ACTIONS(494), + [anon_sym_19] = ACTIONS(494), + [anon_sym_PERCENT] = ACTIONS(494), + [anon_sym_20] = ACTIONS(494), + [anon_sym_modulus] = ACTIONS(494), + [anon_sym_21] = ACTIONS(494), + [anon_sym_power] = ACTIONS(494), + [anon_sym_22] = ACTIONS(494), + [anon_sym_logarithm] = ACTIONS(494), + [anon_sym_23] = ACTIONS(494), + [anon_sym_minimum] = ACTIONS(494), + [anon_sym_24] = ACTIONS(494), + [anon_sym_maximum] = ACTIONS(494), + [anon_sym_25] = ACTIONS(494), + [anon_sym_atangent] = ACTIONS(494), + [anon_sym_26] = ACTIONS(494), + [anon_sym_length] = ACTIONS(494), + [anon_sym_27] = ACTIONS(494), + [anon_sym_shape] = ACTIONS(494), + [anon_sym_28] = ACTIONS(494), + [anon_sym_range] = ACTIONS(494), + [anon_sym_29] = ACTIONS(494), + [anon_sym_first] = ACTIONS(494), + [anon_sym_30] = ACTIONS(494), + [anon_sym_reverse] = ACTIONS(494), + [anon_sym_31] = ACTIONS(494), + [anon_sym_deshape] = ACTIONS(494), + [anon_sym_32] = ACTIONS(494), + [anon_sym_bits] = ACTIONS(494), + [anon_sym_33] = ACTIONS(494), + [anon_sym_transpose] = ACTIONS(494), + [anon_sym_34] = ACTIONS(494), + [anon_sym_rise] = ACTIONS(494), + [anon_sym_35] = ACTIONS(494), + [anon_sym_fall] = ACTIONS(494), + [anon_sym_36] = ACTIONS(494), + [anon_sym_where] = ACTIONS(494), + [anon_sym_37] = ACTIONS(494), + [anon_sym_classify] = ACTIONS(494), + [anon_sym_38] = ACTIONS(494), + [anon_sym_deduplicate] = ACTIONS(494), + [anon_sym_39] = ACTIONS(494), + [anon_sym_box] = ACTIONS(494), + [anon_sym_40] = ACTIONS(494), + [anon_sym_unbox] = ACTIONS(494), + [anon_sym_41] = ACTIONS(494), + [anon_sym_match] = ACTIONS(494), + [anon_sym_42] = ACTIONS(494), + [anon_sym_couple] = ACTIONS(494), + [anon_sym_43] = ACTIONS(494), + [anon_sym_join] = ACTIONS(494), + [anon_sym_44] = ACTIONS(494), + [anon_sym_select] = ACTIONS(494), + [anon_sym_45] = ACTIONS(494), + [anon_sym_pick] = ACTIONS(494), + [anon_sym_46] = ACTIONS(494), + [anon_sym_reshape] = ACTIONS(494), + [anon_sym_47] = ACTIONS(494), + [anon_sym_take] = ACTIONS(494), + [anon_sym_48] = ACTIONS(494), + [anon_sym_drop] = ACTIONS(494), + [anon_sym_49] = ACTIONS(494), + [anon_sym_rotate] = ACTIONS(494), + [anon_sym_50] = ACTIONS(494), + [anon_sym_windows] = ACTIONS(494), + [anon_sym_51] = ACTIONS(494), + [anon_sym_keep] = ACTIONS(494), + [anon_sym_52] = ACTIONS(494), + [anon_sym_find] = ACTIONS(494), + [anon_sym_53] = ACTIONS(494), + [anon_sym_member] = ACTIONS(494), + [anon_sym_54] = ACTIONS(494), + [anon_sym_indexof] = ACTIONS(494), + [anon_sym_55] = ACTIONS(494), + [anon_sym_assert] = ACTIONS(494), + [anon_sym_56] = ACTIONS(494), + [anon_sym_wait] = ACTIONS(494), + [anon_sym_break] = ACTIONS(494), + [anon_sym_57] = ACTIONS(494), + [anon_sym_parse] = ACTIONS(494), + [anon_sym_random] = ACTIONS(494), + [anon_sym_58] = ACTIONS(494), + [anon_sym_gen] = ACTIONS(494), + [anon_sym_deal] = ACTIONS(494), + [anon_sym_tag] = ACTIONS(494), + [anon_sym_now] = ACTIONS(494), + [anon_sym_type] = ACTIONS(494), + [anon_sym_59] = ACTIONS(494), + [anon_sym_dump] = ACTIONS(494), + [anon_sym_regex] = ACTIONS(494), + [anon_sym_utf] = ACTIONS(494), + [anon_sym_rock] = ACTIONS(494), + [anon_sym_60] = ACTIONS(494), + [anon_sym_surface] = ACTIONS(494), + [anon_sym_TILDE] = ACTIONS(494), + [anon_sym_deep] = ACTIONS(494), + [anon_sym_de] = ACTIONS(492), + [anon_sym_61] = ACTIONS(494), + [anon_sym_abyss] = ACTIONS(494), + [anon_sym_ab] = ACTIONS(492), + [anon_sym_62] = ACTIONS(494), + [anon_sym_seabed] = ACTIONS(494), + [anon_sym_se] = ACTIONS(492), + [anon_sym_63] = ACTIONS(494), + [anon_sym_send] = ACTIONS(494), + [anon_sym_recv] = ACTIONS(494), + [anon_sym_tryrecv] = ACTIONS(494), + [anon_sym_reduce] = ACTIONS(494), + [anon_sym_SLASH] = ACTIONS(494), + [anon_sym_scan] = ACTIONS(494), + [anon_sym_BSLASH] = ACTIONS(494), + [anon_sym_each] = ACTIONS(494), + [anon_sym_64] = ACTIONS(494), + [anon_sym_rows] = ACTIONS(494), + [anon_sym_65] = ACTIONS(494), + [anon_sym_repeat] = ACTIONS(494), + [anon_sym_66] = ACTIONS(494), + [anon_sym_dip] = ACTIONS(494), + [anon_sym_67] = ACTIONS(494), + [anon_sym_gap] = ACTIONS(494), + [anon_sym_68] = ACTIONS(494), + [anon_sym_69] = ACTIONS(494), + [anon_sym_invert] = ACTIONS(494), + [anon_sym_70] = ACTIONS(494), + [anon_sym_spawn] = ACTIONS(494), + [anon_sym_pack] = ACTIONS(494), + [anon_sym_71] = ACTIONS(494), + [anon_sym_tribute] = ACTIONS(494), + [anon_sym_72] = ACTIONS(494), + [anon_sym_reach] = ACTIONS(494), + [anon_sym_fold] = ACTIONS(494), + [anon_sym_73] = ACTIONS(494), + [anon_sym_distribute] = ACTIONS(494), + [anon_sym_74] = ACTIONS(494), + [anon_sym_table] = ACTIONS(494), + [anon_sym_75] = ACTIONS(494), + [anon_sym_cross] = ACTIONS(494), + [anon_sym_76] = ACTIONS(494), + [anon_sym_group] = ACTIONS(494), + [anon_sym_77] = ACTIONS(494), + [anon_sym_partition] = ACTIONS(494), + [anon_sym_78] = ACTIONS(494), + [anon_sym_both] = ACTIONS(494), + [anon_sym_79] = ACTIONS(494), + [anon_sym_bracket] = ACTIONS(494), + [anon_sym_80] = ACTIONS(494), + [anon_sym_fork] = ACTIONS(494), + [anon_sym_81] = ACTIONS(494), + [anon_sym_under] = ACTIONS(494), + [anon_sym_82] = ACTIONS(494), + [anon_sym_level] = ACTIONS(494), + [anon_sym_83] = ACTIONS(494), + [anon_sym_fill] = ACTIONS(494), + [anon_sym_84] = ACTIONS(494), + [anon_sym_bind] = ACTIONS(494), + [anon_sym_SQUOTE] = ACTIONS(494), + [anon_sym_QMARK] = ACTIONS(494), + [anon_sym_try] = ACTIONS(492), + [anon_sym_85] = ACTIONS(494), + [anon_sym_combinate] = ACTIONS(494), + [anon_sym_86] = ACTIONS(494), + [anon_sym_87] = ACTIONS(494), + [anon_sym_88] = ACTIONS(494), + [anon_sym_89] = ACTIONS(494), + [anon_sym_90] = ACTIONS(494), + [anon_sym_91] = ACTIONS(494), + [anon_sym_92] = ACTIONS(494), + [anon_sym_93] = ACTIONS(494), [sym__whitespace] = ACTIONS(5), - [sym__end_of_line] = ACTIONS(512), + [sym__end_of_line] = ACTIONS(494), }, [83] = { [sym_function] = STATE(85), - [ts_builtin_sym_end] = ACTIONS(420), - [aux_sym_number_token1] = ACTIONS(418), - [anon_sym_os] = ACTIONS(418), - [anon_sym_Family] = ACTIONS(418), - [anon_sym_Arch] = ACTIONS(418), - [anon_sym_ExeExt] = ACTIONS(418), - [anon_sym_PllExt] = ACTIONS(418), - [anon_sym_Sep] = ACTIONS(418), - [aux_sym_character_token1] = ACTIONS(420), - [sym_string] = ACTIONS(420), - [sym_multiLineString] = ACTIONS(420), - [anon_sym_PIPE] = ACTIONS(420), - [sym_identifier] = ACTIONS(514), - [sym_identifier_deprecated] = ACTIONS(418), - [sym_system] = ACTIONS(516), - [sym_comment] = ACTIONS(418), - [sym_openParen] = ACTIONS(420), - [sym_openCurly] = ACTIONS(420), - [sym_openBracket] = ACTIONS(420), - [sym_underscore] = ACTIONS(420), - [sym_leftArrow] = ACTIONS(420), - [anon_sym_CARET] = ACTIONS(420), - [anon_sym_eta] = ACTIONS(420), - [anon_sym_] = ACTIONS(418), - [anon_sym_pi] = ACTIONS(418), - [anon_sym_2] = ACTIONS(418), - [anon_sym_tau] = ACTIONS(420), - [anon_sym_3] = ACTIONS(418), - [anon_sym_infinity] = ACTIONS(420), - [anon_sym_4] = ACTIONS(420), - [anon_sym_e] = ACTIONS(418), - [anon_sym_NaN] = ACTIONS(418), - [anon_sym_NumProcs] = ACTIONS(418), + [ts_builtin_sym_end] = ACTIONS(402), + [aux_sym_number_token1] = ACTIONS(400), + [anon_sym_os] = ACTIONS(400), + [anon_sym_Family] = ACTIONS(400), + [anon_sym_Arch] = ACTIONS(400), + [anon_sym_ExeExt] = ACTIONS(400), + [anon_sym_PllExt] = ACTIONS(400), + [anon_sym_Sep] = ACTIONS(400), + [aux_sym_character_token1] = ACTIONS(402), + [sym_string] = ACTIONS(402), + [sym_multiLineString] = ACTIONS(402), + [anon_sym_PIPE] = ACTIONS(402), + [sym_identifier] = ACTIONS(496), + [sym_identifier_deprecated] = ACTIONS(400), + [sym_system] = ACTIONS(498), + [sym_comment] = ACTIONS(400), + [sym_openParen] = ACTIONS(402), + [sym_openCurly] = ACTIONS(402), + [sym_openBracket] = ACTIONS(402), + [sym_underscore] = ACTIONS(402), + [sym_leftArrow] = ACTIONS(402), + [anon_sym_CARET] = ACTIONS(402), + [anon_sym_eta] = ACTIONS(402), + [anon_sym_] = ACTIONS(400), + [anon_sym_pi] = ACTIONS(400), + [anon_sym_2] = ACTIONS(400), + [anon_sym_tau] = ACTIONS(402), + [anon_sym_3] = ACTIONS(400), + [anon_sym_infinity] = ACTIONS(402), + [anon_sym_4] = ACTIONS(402), + [anon_sym_e] = ACTIONS(400), + [anon_sym_NaN] = ACTIONS(400), + [anon_sym_NumProcs] = ACTIONS(400), [anon_sym_DOT] = ACTIONS(37), [anon_sym_COMMA] = ACTIONS(37), [anon_sym_5] = ACTIONS(37), @@ -27835,107 +27651,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_send] = ACTIONS(37), [anon_sym_recv] = ACTIONS(37), [anon_sym_tryrecv] = ACTIONS(37), - [anon_sym_reduce] = ACTIONS(420), - [anon_sym_SLASH] = ACTIONS(420), - [anon_sym_scan] = ACTIONS(420), - [anon_sym_BSLASH] = ACTIONS(420), - [anon_sym_each] = ACTIONS(420), - [anon_sym_64] = ACTIONS(420), - [anon_sym_rows] = ACTIONS(420), - [anon_sym_65] = ACTIONS(420), - [anon_sym_repeat] = ACTIONS(420), - [anon_sym_66] = ACTIONS(420), - [anon_sym_dip] = ACTIONS(420), - [anon_sym_di] = ACTIONS(418), - [anon_sym_67] = ACTIONS(420), - [anon_sym_gap] = ACTIONS(420), - [anon_sym_ga] = ACTIONS(418), - [anon_sym_68] = ACTIONS(420), - [anon_sym_oust] = ACTIONS(420), - [anon_sym_69] = ACTIONS(420), - [anon_sym_invert] = ACTIONS(420), - [anon_sym_70] = ACTIONS(420), - [anon_sym_spawn] = ACTIONS(420), - [anon_sym_pack] = ACTIONS(420), - [anon_sym_71] = ACTIONS(420), - [anon_sym_tribute] = ACTIONS(420), - [anon_sym_72] = ACTIONS(420), - [anon_sym_fold] = ACTIONS(420), - [anon_sym_73] = ACTIONS(420), - [anon_sym_distribute] = ACTIONS(420), - [anon_sym_74] = ACTIONS(420), - [anon_sym_table] = ACTIONS(420), - [anon_sym_75] = ACTIONS(420), - [anon_sym_cross] = ACTIONS(420), - [anon_sym_76] = ACTIONS(420), - [anon_sym_group] = ACTIONS(420), - [anon_sym_77] = ACTIONS(420), - [anon_sym_partition] = ACTIONS(420), - [anon_sym_78] = ACTIONS(420), - [anon_sym_both] = ACTIONS(420), - [anon_sym_79] = ACTIONS(420), - [anon_sym_bracket] = ACTIONS(420), - [anon_sym_80] = ACTIONS(420), - [anon_sym_fork] = ACTIONS(420), - [anon_sym_81] = ACTIONS(420), - [anon_sym_under] = ACTIONS(420), - [anon_sym_82] = ACTIONS(420), - [anon_sym_level] = ACTIONS(420), - [anon_sym_83] = ACTIONS(420), - [anon_sym_fill] = ACTIONS(420), - [anon_sym_84] = ACTIONS(420), - [anon_sym_bind] = ACTIONS(420), - [anon_sym_SQUOTE] = ACTIONS(420), - [anon_sym_QMARK] = ACTIONS(420), - [anon_sym_try] = ACTIONS(418), - [anon_sym_85] = ACTIONS(420), - [anon_sym_combinate] = ACTIONS(420), - [anon_sym_86] = ACTIONS(420), - [anon_sym_87] = ACTIONS(420), - [anon_sym_88] = ACTIONS(420), - [anon_sym_89] = ACTIONS(420), - [anon_sym_90] = ACTIONS(420), - [anon_sym_91] = ACTIONS(420), - [anon_sym_92] = ACTIONS(420), - [anon_sym_93] = ACTIONS(420), + [anon_sym_reduce] = ACTIONS(402), + [anon_sym_SLASH] = ACTIONS(402), + [anon_sym_scan] = ACTIONS(402), + [anon_sym_BSLASH] = ACTIONS(402), + [anon_sym_each] = ACTIONS(402), + [anon_sym_64] = ACTIONS(402), + [anon_sym_rows] = ACTIONS(402), + [anon_sym_65] = ACTIONS(402), + [anon_sym_repeat] = ACTIONS(402), + [anon_sym_66] = ACTIONS(402), + [anon_sym_dip] = ACTIONS(402), + [anon_sym_67] = ACTIONS(402), + [anon_sym_gap] = ACTIONS(402), + [anon_sym_68] = ACTIONS(402), + [anon_sym_69] = ACTIONS(402), + [anon_sym_invert] = ACTIONS(402), + [anon_sym_70] = ACTIONS(402), + [anon_sym_spawn] = ACTIONS(402), + [anon_sym_pack] = ACTIONS(402), + [anon_sym_71] = ACTIONS(402), + [anon_sym_tribute] = ACTIONS(402), + [anon_sym_72] = ACTIONS(402), + [anon_sym_reach] = ACTIONS(402), + [anon_sym_fold] = ACTIONS(402), + [anon_sym_73] = ACTIONS(402), + [anon_sym_distribute] = ACTIONS(402), + [anon_sym_74] = ACTIONS(402), + [anon_sym_table] = ACTIONS(402), + [anon_sym_75] = ACTIONS(402), + [anon_sym_cross] = ACTIONS(402), + [anon_sym_76] = ACTIONS(402), + [anon_sym_group] = ACTIONS(402), + [anon_sym_77] = ACTIONS(402), + [anon_sym_partition] = ACTIONS(402), + [anon_sym_78] = ACTIONS(402), + [anon_sym_both] = ACTIONS(402), + [anon_sym_79] = ACTIONS(402), + [anon_sym_bracket] = ACTIONS(402), + [anon_sym_80] = ACTIONS(402), + [anon_sym_fork] = ACTIONS(402), + [anon_sym_81] = ACTIONS(402), + [anon_sym_under] = ACTIONS(402), + [anon_sym_82] = ACTIONS(402), + [anon_sym_level] = ACTIONS(402), + [anon_sym_83] = ACTIONS(402), + [anon_sym_fill] = ACTIONS(402), + [anon_sym_84] = ACTIONS(402), + [anon_sym_bind] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(402), + [anon_sym_QMARK] = ACTIONS(402), + [anon_sym_try] = ACTIONS(400), + [anon_sym_85] = ACTIONS(402), + [anon_sym_combinate] = ACTIONS(402), + [anon_sym_86] = ACTIONS(402), + [anon_sym_87] = ACTIONS(402), + [anon_sym_88] = ACTIONS(402), + [anon_sym_89] = ACTIONS(402), + [anon_sym_90] = ACTIONS(402), + [anon_sym_91] = ACTIONS(402), + [anon_sym_92] = ACTIONS(402), + [anon_sym_93] = ACTIONS(402), [sym__whitespace] = ACTIONS(5), - [sym__end_of_line] = ACTIONS(420), + [sym__end_of_line] = ACTIONS(402), }, [84] = { [sym_function] = STATE(95), - [ts_builtin_sym_end] = ACTIONS(420), - [aux_sym_number_token1] = ACTIONS(418), - [anon_sym_os] = ACTIONS(418), - [anon_sym_Family] = ACTIONS(418), - [anon_sym_Arch] = ACTIONS(418), - [anon_sym_ExeExt] = ACTIONS(418), - [anon_sym_PllExt] = ACTIONS(418), - [anon_sym_Sep] = ACTIONS(418), - [aux_sym_character_token1] = ACTIONS(420), - [sym_string] = ACTIONS(420), - [sym_multiLineString] = ACTIONS(420), - [anon_sym_PIPE] = ACTIONS(420), - [sym_identifier] = ACTIONS(518), - [sym_identifier_deprecated] = ACTIONS(418), - [sym_system] = ACTIONS(520), - [sym_comment] = ACTIONS(418), - [sym_openParen] = ACTIONS(420), - [sym_openCurly] = ACTIONS(420), - [sym_openBracket] = ACTIONS(420), - [sym_underscore] = ACTIONS(420), - [sym_leftArrow] = ACTIONS(420), - [anon_sym_CARET] = ACTIONS(420), - [anon_sym_eta] = ACTIONS(420), - [anon_sym_] = ACTIONS(418), - [anon_sym_pi] = ACTIONS(418), - [anon_sym_2] = ACTIONS(418), - [anon_sym_tau] = ACTIONS(420), - [anon_sym_3] = ACTIONS(418), - [anon_sym_infinity] = ACTIONS(420), - [anon_sym_4] = ACTIONS(420), - [anon_sym_e] = ACTIONS(418), - [anon_sym_NaN] = ACTIONS(418), - [anon_sym_NumProcs] = ACTIONS(418), + [ts_builtin_sym_end] = ACTIONS(402), + [aux_sym_number_token1] = ACTIONS(400), + [anon_sym_os] = ACTIONS(400), + [anon_sym_Family] = ACTIONS(400), + [anon_sym_Arch] = ACTIONS(400), + [anon_sym_ExeExt] = ACTIONS(400), + [anon_sym_PllExt] = ACTIONS(400), + [anon_sym_Sep] = ACTIONS(400), + [aux_sym_character_token1] = ACTIONS(402), + [sym_string] = ACTIONS(402), + [sym_multiLineString] = ACTIONS(402), + [anon_sym_PIPE] = ACTIONS(402), + [sym_identifier] = ACTIONS(500), + [sym_identifier_deprecated] = ACTIONS(400), + [sym_system] = ACTIONS(502), + [sym_comment] = ACTIONS(400), + [sym_openParen] = ACTIONS(402), + [sym_openCurly] = ACTIONS(402), + [sym_openBracket] = ACTIONS(402), + [sym_underscore] = ACTIONS(402), + [sym_leftArrow] = ACTIONS(402), + [anon_sym_CARET] = ACTIONS(402), + [anon_sym_eta] = ACTIONS(402), + [anon_sym_] = ACTIONS(400), + [anon_sym_pi] = ACTIONS(400), + [anon_sym_2] = ACTIONS(400), + [anon_sym_tau] = ACTIONS(402), + [anon_sym_3] = ACTIONS(400), + [anon_sym_infinity] = ACTIONS(402), + [anon_sym_4] = ACTIONS(402), + [anon_sym_e] = ACTIONS(400), + [anon_sym_NaN] = ACTIONS(400), + [anon_sym_NumProcs] = ACTIONS(400), [anon_sym_DOT] = ACTIONS(37), [anon_sym_COMMA] = ACTIONS(37), [anon_sym_5] = ACTIONS(37), @@ -28079,107 +27893,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_send] = ACTIONS(37), [anon_sym_recv] = ACTIONS(37), [anon_sym_tryrecv] = ACTIONS(37), - [anon_sym_reduce] = ACTIONS(420), - [anon_sym_SLASH] = ACTIONS(420), - [anon_sym_scan] = ACTIONS(420), - [anon_sym_BSLASH] = ACTIONS(420), - [anon_sym_each] = ACTIONS(420), - [anon_sym_64] = ACTIONS(420), - [anon_sym_rows] = ACTIONS(420), - [anon_sym_65] = ACTIONS(420), - [anon_sym_repeat] = ACTIONS(420), - [anon_sym_66] = ACTIONS(420), - [anon_sym_dip] = ACTIONS(420), - [anon_sym_di] = ACTIONS(418), - [anon_sym_67] = ACTIONS(420), - [anon_sym_gap] = ACTIONS(420), - [anon_sym_ga] = ACTIONS(418), - [anon_sym_68] = ACTIONS(420), - [anon_sym_oust] = ACTIONS(420), - [anon_sym_69] = ACTIONS(420), - [anon_sym_invert] = ACTIONS(420), - [anon_sym_70] = ACTIONS(420), - [anon_sym_spawn] = ACTIONS(420), - [anon_sym_pack] = ACTIONS(420), - [anon_sym_71] = ACTIONS(420), - [anon_sym_tribute] = ACTIONS(420), - [anon_sym_72] = ACTIONS(420), - [anon_sym_fold] = ACTIONS(420), - [anon_sym_73] = ACTIONS(420), - [anon_sym_distribute] = ACTIONS(420), - [anon_sym_74] = ACTIONS(420), - [anon_sym_table] = ACTIONS(420), - [anon_sym_75] = ACTIONS(420), - [anon_sym_cross] = ACTIONS(420), - [anon_sym_76] = ACTIONS(420), - [anon_sym_group] = ACTIONS(420), - [anon_sym_77] = ACTIONS(420), - [anon_sym_partition] = ACTIONS(420), - [anon_sym_78] = ACTIONS(420), - [anon_sym_both] = ACTIONS(420), - [anon_sym_79] = ACTIONS(420), - [anon_sym_bracket] = ACTIONS(420), - [anon_sym_80] = ACTIONS(420), - [anon_sym_fork] = ACTIONS(420), - [anon_sym_81] = ACTIONS(420), - [anon_sym_under] = ACTIONS(420), - [anon_sym_82] = ACTIONS(420), - [anon_sym_level] = ACTIONS(420), - [anon_sym_83] = ACTIONS(420), - [anon_sym_fill] = ACTIONS(420), - [anon_sym_84] = ACTIONS(420), - [anon_sym_bind] = ACTIONS(420), - [anon_sym_SQUOTE] = ACTIONS(420), - [anon_sym_QMARK] = ACTIONS(420), - [anon_sym_try] = ACTIONS(418), - [anon_sym_85] = ACTIONS(420), - [anon_sym_combinate] = ACTIONS(420), - [anon_sym_86] = ACTIONS(420), - [anon_sym_87] = ACTIONS(420), - [anon_sym_88] = ACTIONS(420), - [anon_sym_89] = ACTIONS(420), - [anon_sym_90] = ACTIONS(420), - [anon_sym_91] = ACTIONS(420), - [anon_sym_92] = ACTIONS(420), - [anon_sym_93] = ACTIONS(420), + [anon_sym_reduce] = ACTIONS(402), + [anon_sym_SLASH] = ACTIONS(402), + [anon_sym_scan] = ACTIONS(402), + [anon_sym_BSLASH] = ACTIONS(402), + [anon_sym_each] = ACTIONS(402), + [anon_sym_64] = ACTIONS(402), + [anon_sym_rows] = ACTIONS(402), + [anon_sym_65] = ACTIONS(402), + [anon_sym_repeat] = ACTIONS(402), + [anon_sym_66] = ACTIONS(402), + [anon_sym_dip] = ACTIONS(402), + [anon_sym_67] = ACTIONS(402), + [anon_sym_gap] = ACTIONS(402), + [anon_sym_68] = ACTIONS(402), + [anon_sym_69] = ACTIONS(402), + [anon_sym_invert] = ACTIONS(402), + [anon_sym_70] = ACTIONS(402), + [anon_sym_spawn] = ACTIONS(402), + [anon_sym_pack] = ACTIONS(402), + [anon_sym_71] = ACTIONS(402), + [anon_sym_tribute] = ACTIONS(402), + [anon_sym_72] = ACTIONS(402), + [anon_sym_reach] = ACTIONS(402), + [anon_sym_fold] = ACTIONS(402), + [anon_sym_73] = ACTIONS(402), + [anon_sym_distribute] = ACTIONS(402), + [anon_sym_74] = ACTIONS(402), + [anon_sym_table] = ACTIONS(402), + [anon_sym_75] = ACTIONS(402), + [anon_sym_cross] = ACTIONS(402), + [anon_sym_76] = ACTIONS(402), + [anon_sym_group] = ACTIONS(402), + [anon_sym_77] = ACTIONS(402), + [anon_sym_partition] = ACTIONS(402), + [anon_sym_78] = ACTIONS(402), + [anon_sym_both] = ACTIONS(402), + [anon_sym_79] = ACTIONS(402), + [anon_sym_bracket] = ACTIONS(402), + [anon_sym_80] = ACTIONS(402), + [anon_sym_fork] = ACTIONS(402), + [anon_sym_81] = ACTIONS(402), + [anon_sym_under] = ACTIONS(402), + [anon_sym_82] = ACTIONS(402), + [anon_sym_level] = ACTIONS(402), + [anon_sym_83] = ACTIONS(402), + [anon_sym_fill] = ACTIONS(402), + [anon_sym_84] = ACTIONS(402), + [anon_sym_bind] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(402), + [anon_sym_QMARK] = ACTIONS(402), + [anon_sym_try] = ACTIONS(400), + [anon_sym_85] = ACTIONS(402), + [anon_sym_combinate] = ACTIONS(402), + [anon_sym_86] = ACTIONS(402), + [anon_sym_87] = ACTIONS(402), + [anon_sym_88] = ACTIONS(402), + [anon_sym_89] = ACTIONS(402), + [anon_sym_90] = ACTIONS(402), + [anon_sym_91] = ACTIONS(402), + [anon_sym_92] = ACTIONS(402), + [anon_sym_93] = ACTIONS(402), [sym__whitespace] = ACTIONS(5), - [sym__end_of_line] = ACTIONS(420), + [sym__end_of_line] = ACTIONS(402), }, [85] = { [sym_function] = STATE(100), - [ts_builtin_sym_end] = ACTIONS(432), - [aux_sym_number_token1] = ACTIONS(430), - [anon_sym_os] = ACTIONS(430), - [anon_sym_Family] = ACTIONS(430), - [anon_sym_Arch] = ACTIONS(430), - [anon_sym_ExeExt] = ACTIONS(430), - [anon_sym_PllExt] = ACTIONS(430), - [anon_sym_Sep] = ACTIONS(430), - [aux_sym_character_token1] = ACTIONS(432), - [sym_string] = ACTIONS(432), - [sym_multiLineString] = ACTIONS(432), - [anon_sym_PIPE] = ACTIONS(432), - [sym_identifier] = ACTIONS(522), - [sym_identifier_deprecated] = ACTIONS(430), - [sym_system] = ACTIONS(524), - [sym_comment] = ACTIONS(430), - [sym_openParen] = ACTIONS(432), - [sym_openCurly] = ACTIONS(432), - [sym_openBracket] = ACTIONS(432), - [sym_underscore] = ACTIONS(432), - [sym_leftArrow] = ACTIONS(432), - [anon_sym_CARET] = ACTIONS(432), - [anon_sym_eta] = ACTIONS(432), - [anon_sym_] = ACTIONS(430), - [anon_sym_pi] = ACTIONS(430), - [anon_sym_2] = ACTIONS(430), - [anon_sym_tau] = ACTIONS(432), - [anon_sym_3] = ACTIONS(430), - [anon_sym_infinity] = ACTIONS(432), - [anon_sym_4] = ACTIONS(432), - [anon_sym_e] = ACTIONS(430), - [anon_sym_NaN] = ACTIONS(430), - [anon_sym_NumProcs] = ACTIONS(430), + [ts_builtin_sym_end] = ACTIONS(414), + [aux_sym_number_token1] = ACTIONS(412), + [anon_sym_os] = ACTIONS(412), + [anon_sym_Family] = ACTIONS(412), + [anon_sym_Arch] = ACTIONS(412), + [anon_sym_ExeExt] = ACTIONS(412), + [anon_sym_PllExt] = ACTIONS(412), + [anon_sym_Sep] = ACTIONS(412), + [aux_sym_character_token1] = ACTIONS(414), + [sym_string] = ACTIONS(414), + [sym_multiLineString] = ACTIONS(414), + [anon_sym_PIPE] = ACTIONS(414), + [sym_identifier] = ACTIONS(504), + [sym_identifier_deprecated] = ACTIONS(412), + [sym_system] = ACTIONS(506), + [sym_comment] = ACTIONS(412), + [sym_openParen] = ACTIONS(414), + [sym_openCurly] = ACTIONS(414), + [sym_openBracket] = ACTIONS(414), + [sym_underscore] = ACTIONS(414), + [sym_leftArrow] = ACTIONS(414), + [anon_sym_CARET] = ACTIONS(414), + [anon_sym_eta] = ACTIONS(414), + [anon_sym_] = ACTIONS(412), + [anon_sym_pi] = ACTIONS(412), + [anon_sym_2] = ACTIONS(412), + [anon_sym_tau] = ACTIONS(414), + [anon_sym_3] = ACTIONS(412), + [anon_sym_infinity] = ACTIONS(414), + [anon_sym_4] = ACTIONS(414), + [anon_sym_e] = ACTIONS(412), + [anon_sym_NaN] = ACTIONS(412), + [anon_sym_NumProcs] = ACTIONS(412), [anon_sym_DOT] = ACTIONS(37), [anon_sym_COMMA] = ACTIONS(37), [anon_sym_5] = ACTIONS(37), @@ -28323,9324 +28135,10007 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_send] = ACTIONS(37), [anon_sym_recv] = ACTIONS(37), [anon_sym_tryrecv] = ACTIONS(37), - [anon_sym_reduce] = ACTIONS(432), - [anon_sym_SLASH] = ACTIONS(432), - [anon_sym_scan] = ACTIONS(432), - [anon_sym_BSLASH] = ACTIONS(432), - [anon_sym_each] = ACTIONS(432), - [anon_sym_64] = ACTIONS(432), - [anon_sym_rows] = ACTIONS(432), - [anon_sym_65] = ACTIONS(432), - [anon_sym_repeat] = ACTIONS(432), - [anon_sym_66] = ACTIONS(432), - [anon_sym_dip] = ACTIONS(432), - [anon_sym_di] = ACTIONS(430), - [anon_sym_67] = ACTIONS(432), - [anon_sym_gap] = ACTIONS(432), - [anon_sym_ga] = ACTIONS(430), - [anon_sym_68] = ACTIONS(432), - [anon_sym_oust] = ACTIONS(432), - [anon_sym_69] = ACTIONS(432), - [anon_sym_invert] = ACTIONS(432), - [anon_sym_70] = ACTIONS(432), - [anon_sym_spawn] = ACTIONS(432), - [anon_sym_pack] = ACTIONS(432), - [anon_sym_71] = ACTIONS(432), - [anon_sym_tribute] = ACTIONS(432), - [anon_sym_72] = ACTIONS(432), - [anon_sym_fold] = ACTIONS(432), - [anon_sym_73] = ACTIONS(432), - [anon_sym_distribute] = ACTIONS(432), - [anon_sym_74] = ACTIONS(432), - [anon_sym_table] = ACTIONS(432), - [anon_sym_75] = ACTIONS(432), - [anon_sym_cross] = ACTIONS(432), - [anon_sym_76] = ACTIONS(432), - [anon_sym_group] = ACTIONS(432), - [anon_sym_77] = ACTIONS(432), - [anon_sym_partition] = ACTIONS(432), - [anon_sym_78] = ACTIONS(432), - [anon_sym_both] = ACTIONS(432), - [anon_sym_79] = ACTIONS(432), - [anon_sym_bracket] = ACTIONS(432), - [anon_sym_80] = ACTIONS(432), - [anon_sym_fork] = ACTIONS(432), - [anon_sym_81] = ACTIONS(432), - [anon_sym_under] = ACTIONS(432), - [anon_sym_82] = ACTIONS(432), - [anon_sym_level] = ACTIONS(432), - [anon_sym_83] = ACTIONS(432), - [anon_sym_fill] = ACTIONS(432), - [anon_sym_84] = ACTIONS(432), - [anon_sym_bind] = ACTIONS(432), - [anon_sym_SQUOTE] = ACTIONS(432), - [anon_sym_QMARK] = ACTIONS(432), - [anon_sym_try] = ACTIONS(430), - [anon_sym_85] = ACTIONS(432), - [anon_sym_combinate] = ACTIONS(432), - [anon_sym_86] = ACTIONS(432), - [anon_sym_87] = ACTIONS(432), - [anon_sym_88] = ACTIONS(432), - [anon_sym_89] = ACTIONS(432), - [anon_sym_90] = ACTIONS(432), - [anon_sym_91] = ACTIONS(432), - [anon_sym_92] = ACTIONS(432), - [anon_sym_93] = ACTIONS(432), + [anon_sym_reduce] = ACTIONS(414), + [anon_sym_SLASH] = ACTIONS(414), + [anon_sym_scan] = ACTIONS(414), + [anon_sym_BSLASH] = ACTIONS(414), + [anon_sym_each] = ACTIONS(414), + [anon_sym_64] = ACTIONS(414), + [anon_sym_rows] = ACTIONS(414), + [anon_sym_65] = ACTIONS(414), + [anon_sym_repeat] = ACTIONS(414), + [anon_sym_66] = ACTIONS(414), + [anon_sym_dip] = ACTIONS(414), + [anon_sym_67] = ACTIONS(414), + [anon_sym_gap] = ACTIONS(414), + [anon_sym_68] = ACTIONS(414), + [anon_sym_69] = ACTIONS(414), + [anon_sym_invert] = ACTIONS(414), + [anon_sym_70] = ACTIONS(414), + [anon_sym_spawn] = ACTIONS(414), + [anon_sym_pack] = ACTIONS(414), + [anon_sym_71] = ACTIONS(414), + [anon_sym_tribute] = ACTIONS(414), + [anon_sym_72] = ACTIONS(414), + [anon_sym_reach] = ACTIONS(414), + [anon_sym_fold] = ACTIONS(414), + [anon_sym_73] = ACTIONS(414), + [anon_sym_distribute] = ACTIONS(414), + [anon_sym_74] = ACTIONS(414), + [anon_sym_table] = ACTIONS(414), + [anon_sym_75] = ACTIONS(414), + [anon_sym_cross] = ACTIONS(414), + [anon_sym_76] = ACTIONS(414), + [anon_sym_group] = ACTIONS(414), + [anon_sym_77] = ACTIONS(414), + [anon_sym_partition] = ACTIONS(414), + [anon_sym_78] = ACTIONS(414), + [anon_sym_both] = ACTIONS(414), + [anon_sym_79] = ACTIONS(414), + [anon_sym_bracket] = ACTIONS(414), + [anon_sym_80] = ACTIONS(414), + [anon_sym_fork] = ACTIONS(414), + [anon_sym_81] = ACTIONS(414), + [anon_sym_under] = ACTIONS(414), + [anon_sym_82] = ACTIONS(414), + [anon_sym_level] = ACTIONS(414), + [anon_sym_83] = ACTIONS(414), + [anon_sym_fill] = ACTIONS(414), + [anon_sym_84] = ACTIONS(414), + [anon_sym_bind] = ACTIONS(414), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_QMARK] = ACTIONS(414), + [anon_sym_try] = ACTIONS(412), + [anon_sym_85] = ACTIONS(414), + [anon_sym_combinate] = ACTIONS(414), + [anon_sym_86] = ACTIONS(414), + [anon_sym_87] = ACTIONS(414), + [anon_sym_88] = ACTIONS(414), + [anon_sym_89] = ACTIONS(414), + [anon_sym_90] = ACTIONS(414), + [anon_sym_91] = ACTIONS(414), + [anon_sym_92] = ACTIONS(414), + [anon_sym_93] = ACTIONS(414), [sym__whitespace] = ACTIONS(5), - [sym__end_of_line] = ACTIONS(432), + [sym__end_of_line] = ACTIONS(414), }, [86] = { - [aux_sym_number_token1] = ACTIONS(526), - [anon_sym_os] = ACTIONS(526), - [anon_sym_Family] = ACTIONS(526), - [anon_sym_Arch] = ACTIONS(526), - [anon_sym_ExeExt] = ACTIONS(526), - [anon_sym_PllExt] = ACTIONS(526), - [anon_sym_Sep] = ACTIONS(526), - [aux_sym_character_token1] = ACTIONS(528), - [sym_string] = ACTIONS(528), - [sym_multiLineString] = ACTIONS(528), - [anon_sym_PIPE] = ACTIONS(528), - [sym_identifier] = ACTIONS(526), - [sym_identifier_deprecated] = ACTIONS(526), - [sym_system] = ACTIONS(528), - [sym_comment] = ACTIONS(526), - [sym_openParen] = ACTIONS(528), - [sym_openCurly] = ACTIONS(528), - [sym_closeCurly] = ACTIONS(528), - [sym_openBracket] = ACTIONS(528), - [sym_closeBracket] = ACTIONS(528), - [sym_leftArrow] = ACTIONS(528), - [anon_sym_CARET] = ACTIONS(528), - [anon_sym_eta] = ACTIONS(528), - [anon_sym_] = ACTIONS(526), - [anon_sym_pi] = ACTIONS(526), - [anon_sym_2] = ACTIONS(526), - [anon_sym_tau] = ACTIONS(528), - [anon_sym_3] = ACTIONS(526), - [anon_sym_infinity] = ACTIONS(528), - [anon_sym_4] = ACTIONS(528), - [anon_sym_e] = ACTIONS(526), - [anon_sym_NaN] = ACTIONS(526), - [anon_sym_NumProcs] = ACTIONS(526), - [anon_sym_DOT] = ACTIONS(528), - [anon_sym_COMMA] = ACTIONS(528), - [anon_sym_5] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(528), - [anon_sym_identity] = ACTIONS(528), - [anon_sym_id] = ACTIONS(526), - [anon_sym_6] = ACTIONS(528), - [anon_sym_not] = ACTIONS(528), - [anon_sym_7] = ACTIONS(528), - [anon_sym_sign] = ACTIONS(528), - [anon_sym_8] = ACTIONS(528), - [anon_sym_BQUOTE] = ACTIONS(528), - [anon_sym_9] = ACTIONS(528), - [anon_sym_absolutevalue] = ACTIONS(528), - [anon_sym_10] = ACTIONS(528), - [anon_sym_sqrt] = ACTIONS(528), - [anon_sym_11] = ACTIONS(528), - [anon_sym_sine] = ACTIONS(528), - [anon_sym_12] = ACTIONS(528), - [anon_sym_floor] = ACTIONS(528), - [anon_sym_13] = ACTIONS(528), - [anon_sym_ceiling] = ACTIONS(528), - [anon_sym_14] = ACTIONS(528), - [anon_sym_round] = ACTIONS(528), - [anon_sym_15] = ACTIONS(528), - [anon_sym_EQ] = ACTIONS(528), - [anon_sym_BANG_EQ] = ACTIONS(528), - [anon_sym_16] = ACTIONS(528), - [anon_sym_LT] = ACTIONS(526), - [anon_sym_LT_EQ] = ACTIONS(528), - [anon_sym_17] = ACTIONS(528), - [anon_sym_GT] = ACTIONS(526), - [anon_sym_GT_EQ] = ACTIONS(528), - [anon_sym_18] = ACTIONS(528), - [anon_sym_PLUS] = ACTIONS(528), - [anon_sym_DASH] = ACTIONS(528), - [anon_sym_STAR] = ACTIONS(528), - [anon_sym_19] = ACTIONS(528), - [anon_sym_PERCENT] = ACTIONS(528), - [anon_sym_20] = ACTIONS(528), - [anon_sym_modulus] = ACTIONS(528), - [anon_sym_21] = ACTIONS(528), - [anon_sym_power] = ACTIONS(528), - [anon_sym_22] = ACTIONS(528), - [anon_sym_logarithm] = ACTIONS(528), - [anon_sym_23] = ACTIONS(528), - [anon_sym_minimum] = ACTIONS(528), - [anon_sym_24] = ACTIONS(528), - [anon_sym_maximum] = ACTIONS(528), - [anon_sym_25] = ACTIONS(528), - [anon_sym_atangent] = ACTIONS(528), - [anon_sym_26] = ACTIONS(528), - [anon_sym_length] = ACTIONS(528), - [anon_sym_27] = ACTIONS(528), - [anon_sym_shape] = ACTIONS(528), - [anon_sym_28] = ACTIONS(528), - [anon_sym_range] = ACTIONS(528), - [anon_sym_29] = ACTIONS(528), - [anon_sym_first] = ACTIONS(528), - [anon_sym_30] = ACTIONS(528), - [anon_sym_reverse] = ACTIONS(528), - [anon_sym_31] = ACTIONS(528), - [anon_sym_deshape] = ACTIONS(528), - [anon_sym_32] = ACTIONS(528), - [anon_sym_bits] = ACTIONS(528), - [anon_sym_33] = ACTIONS(528), - [anon_sym_transpose] = ACTIONS(528), - [anon_sym_34] = ACTIONS(528), - [anon_sym_rise] = ACTIONS(528), - [anon_sym_35] = ACTIONS(528), - [anon_sym_fall] = ACTIONS(528), - [anon_sym_36] = ACTIONS(528), - [anon_sym_where] = ACTIONS(528), - [anon_sym_37] = ACTIONS(528), - [anon_sym_classify] = ACTIONS(528), - [anon_sym_38] = ACTIONS(528), - [anon_sym_deduplicate] = ACTIONS(528), - [anon_sym_39] = ACTIONS(528), - [anon_sym_box] = ACTIONS(528), - [anon_sym_40] = ACTIONS(528), - [anon_sym_unbox] = ACTIONS(528), - [anon_sym_41] = ACTIONS(528), - [anon_sym_match] = ACTIONS(528), - [anon_sym_42] = ACTIONS(528), - [anon_sym_couple] = ACTIONS(528), - [anon_sym_43] = ACTIONS(528), - [anon_sym_join] = ACTIONS(528), - [anon_sym_44] = ACTIONS(528), - [anon_sym_select] = ACTIONS(528), - [anon_sym_45] = ACTIONS(528), - [anon_sym_pick] = ACTIONS(528), - [anon_sym_46] = ACTIONS(528), - [anon_sym_reshape] = ACTIONS(528), - [anon_sym_47] = ACTIONS(528), - [anon_sym_take] = ACTIONS(528), - [anon_sym_48] = ACTIONS(528), - [anon_sym_drop] = ACTIONS(528), - [anon_sym_49] = ACTIONS(528), - [anon_sym_rotate] = ACTIONS(528), - [anon_sym_50] = ACTIONS(528), - [anon_sym_windows] = ACTIONS(528), - [anon_sym_51] = ACTIONS(528), - [anon_sym_keep] = ACTIONS(528), - [anon_sym_52] = ACTIONS(528), - [anon_sym_find] = ACTIONS(528), - [anon_sym_53] = ACTIONS(528), - [anon_sym_member] = ACTIONS(528), - [anon_sym_54] = ACTIONS(528), - [anon_sym_indexof] = ACTIONS(528), - [anon_sym_55] = ACTIONS(528), - [anon_sym_assert] = ACTIONS(528), - [anon_sym_56] = ACTIONS(528), - [anon_sym_wait] = ACTIONS(528), - [anon_sym_break] = ACTIONS(528), - [anon_sym_57] = ACTIONS(528), - [anon_sym_parse] = ACTIONS(528), - [anon_sym_random] = ACTIONS(528), - [anon_sym_58] = ACTIONS(528), - [anon_sym_gen] = ACTIONS(528), - [anon_sym_deal] = ACTIONS(528), - [anon_sym_tag] = ACTIONS(528), - [anon_sym_now] = ACTIONS(528), - [anon_sym_type] = ACTIONS(528), - [anon_sym_59] = ACTIONS(528), - [anon_sym_dump] = ACTIONS(528), - [anon_sym_regex] = ACTIONS(528), - [anon_sym_utf] = ACTIONS(528), - [anon_sym_rock] = ACTIONS(528), - [anon_sym_60] = ACTIONS(528), - [anon_sym_surface] = ACTIONS(528), - [anon_sym_TILDE] = ACTIONS(528), - [anon_sym_deep] = ACTIONS(528), - [anon_sym_de] = ACTIONS(526), - [anon_sym_61] = ACTIONS(528), - [anon_sym_abyss] = ACTIONS(528), - [anon_sym_ab] = ACTIONS(526), - [anon_sym_62] = ACTIONS(528), - [anon_sym_seabed] = ACTIONS(528), - [anon_sym_se] = ACTIONS(526), - [anon_sym_63] = ACTIONS(528), - [anon_sym_send] = ACTIONS(528), - [anon_sym_recv] = ACTIONS(528), - [anon_sym_tryrecv] = ACTIONS(528), - [anon_sym_reduce] = ACTIONS(528), - [anon_sym_SLASH] = ACTIONS(528), - [anon_sym_scan] = ACTIONS(528), - [anon_sym_BSLASH] = ACTIONS(528), - [anon_sym_each] = ACTIONS(528), - [anon_sym_64] = ACTIONS(528), - [anon_sym_rows] = ACTIONS(528), - [anon_sym_65] = ACTIONS(528), - [anon_sym_repeat] = ACTIONS(528), - [anon_sym_66] = ACTIONS(528), - [anon_sym_dip] = ACTIONS(528), - [anon_sym_di] = ACTIONS(526), - [anon_sym_67] = ACTIONS(528), - [anon_sym_gap] = ACTIONS(528), - [anon_sym_ga] = ACTIONS(526), - [anon_sym_68] = ACTIONS(528), - [anon_sym_oust] = ACTIONS(528), - [anon_sym_69] = ACTIONS(528), - [anon_sym_invert] = ACTIONS(528), - [anon_sym_70] = ACTIONS(528), - [anon_sym_spawn] = ACTIONS(528), - [anon_sym_pack] = ACTIONS(528), - [anon_sym_71] = ACTIONS(528), - [anon_sym_tribute] = ACTIONS(528), - [anon_sym_72] = ACTIONS(528), - [anon_sym_fold] = ACTIONS(528), - [anon_sym_73] = ACTIONS(528), - [anon_sym_distribute] = ACTIONS(528), - [anon_sym_74] = ACTIONS(528), - [anon_sym_table] = ACTIONS(528), - [anon_sym_75] = ACTIONS(528), - [anon_sym_cross] = ACTIONS(528), - [anon_sym_76] = ACTIONS(528), - [anon_sym_group] = ACTIONS(528), - [anon_sym_77] = ACTIONS(528), - [anon_sym_partition] = ACTIONS(528), - [anon_sym_78] = ACTIONS(528), - [anon_sym_both] = ACTIONS(528), - [anon_sym_79] = ACTIONS(528), - [anon_sym_bracket] = ACTIONS(528), - [anon_sym_80] = ACTIONS(528), - [anon_sym_fork] = ACTIONS(528), - [anon_sym_81] = ACTIONS(528), - [anon_sym_under] = ACTIONS(528), - [anon_sym_82] = ACTIONS(528), - [anon_sym_level] = ACTIONS(528), - [anon_sym_83] = ACTIONS(528), - [anon_sym_fill] = ACTIONS(528), - [anon_sym_84] = ACTIONS(528), - [anon_sym_bind] = ACTIONS(528), - [anon_sym_SQUOTE] = ACTIONS(528), - [anon_sym_QMARK] = ACTIONS(528), - [anon_sym_try] = ACTIONS(526), - [anon_sym_85] = ACTIONS(528), - [anon_sym_combinate] = ACTIONS(528), - [anon_sym_86] = ACTIONS(528), - [anon_sym_87] = ACTIONS(528), - [anon_sym_88] = ACTIONS(528), - [anon_sym_89] = ACTIONS(528), - [anon_sym_90] = ACTIONS(528), - [anon_sym_91] = ACTIONS(528), - [anon_sym_92] = ACTIONS(528), - [anon_sym_93] = ACTIONS(528), + [aux_sym_number_token1] = ACTIONS(508), + [anon_sym_os] = ACTIONS(508), + [anon_sym_Family] = ACTIONS(508), + [anon_sym_Arch] = ACTIONS(508), + [anon_sym_ExeExt] = ACTIONS(508), + [anon_sym_PllExt] = ACTIONS(508), + [anon_sym_Sep] = ACTIONS(508), + [aux_sym_character_token1] = ACTIONS(510), + [sym_string] = ACTIONS(510), + [sym_multiLineString] = ACTIONS(510), + [anon_sym_PIPE] = ACTIONS(510), + [sym_identifier] = ACTIONS(508), + [sym_identifier_deprecated] = ACTIONS(508), + [sym_system] = ACTIONS(510), + [sym_comment] = ACTIONS(508), + [sym_openParen] = ACTIONS(510), + [sym_openCurly] = ACTIONS(510), + [sym_closeCurly] = ACTIONS(510), + [sym_openBracket] = ACTIONS(510), + [sym_closeBracket] = ACTIONS(510), + [sym_leftArrow] = ACTIONS(510), + [anon_sym_CARET] = ACTIONS(510), + [anon_sym_eta] = ACTIONS(510), + [anon_sym_] = ACTIONS(508), + [anon_sym_pi] = ACTIONS(508), + [anon_sym_2] = ACTIONS(508), + [anon_sym_tau] = ACTIONS(510), + [anon_sym_3] = ACTIONS(508), + [anon_sym_infinity] = ACTIONS(510), + [anon_sym_4] = ACTIONS(510), + [anon_sym_e] = ACTIONS(508), + [anon_sym_NaN] = ACTIONS(508), + [anon_sym_NumProcs] = ACTIONS(508), + [anon_sym_DOT] = ACTIONS(510), + [anon_sym_COMMA] = ACTIONS(510), + [anon_sym_5] = ACTIONS(510), + [anon_sym_SEMI] = ACTIONS(510), + [anon_sym_identity] = ACTIONS(510), + [anon_sym_id] = ACTIONS(508), + [anon_sym_6] = ACTIONS(510), + [anon_sym_not] = ACTIONS(510), + [anon_sym_7] = ACTIONS(510), + [anon_sym_sign] = ACTIONS(510), + [anon_sym_8] = ACTIONS(510), + [anon_sym_BQUOTE] = ACTIONS(510), + [anon_sym_9] = ACTIONS(510), + [anon_sym_absolutevalue] = ACTIONS(510), + [anon_sym_10] = ACTIONS(510), + [anon_sym_sqrt] = ACTIONS(510), + [anon_sym_11] = ACTIONS(510), + [anon_sym_sine] = ACTIONS(510), + [anon_sym_12] = ACTIONS(510), + [anon_sym_floor] = ACTIONS(510), + [anon_sym_13] = ACTIONS(510), + [anon_sym_ceiling] = ACTIONS(510), + [anon_sym_14] = ACTIONS(510), + [anon_sym_round] = ACTIONS(510), + [anon_sym_15] = ACTIONS(510), + [anon_sym_EQ] = ACTIONS(510), + [anon_sym_BANG_EQ] = ACTIONS(510), + [anon_sym_16] = ACTIONS(510), + [anon_sym_LT] = ACTIONS(508), + [anon_sym_LT_EQ] = ACTIONS(510), + [anon_sym_17] = ACTIONS(510), + [anon_sym_GT] = ACTIONS(508), + [anon_sym_GT_EQ] = ACTIONS(510), + [anon_sym_18] = ACTIONS(510), + [anon_sym_PLUS] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(510), + [anon_sym_STAR] = ACTIONS(510), + [anon_sym_19] = ACTIONS(510), + [anon_sym_PERCENT] = ACTIONS(510), + [anon_sym_20] = ACTIONS(510), + [anon_sym_modulus] = ACTIONS(510), + [anon_sym_21] = ACTIONS(510), + [anon_sym_power] = ACTIONS(510), + [anon_sym_22] = ACTIONS(510), + [anon_sym_logarithm] = ACTIONS(510), + [anon_sym_23] = ACTIONS(510), + [anon_sym_minimum] = ACTIONS(510), + [anon_sym_24] = ACTIONS(510), + [anon_sym_maximum] = ACTIONS(510), + [anon_sym_25] = ACTIONS(510), + [anon_sym_atangent] = ACTIONS(510), + [anon_sym_26] = ACTIONS(510), + [anon_sym_length] = ACTIONS(510), + [anon_sym_27] = ACTIONS(510), + [anon_sym_shape] = ACTIONS(510), + [anon_sym_28] = ACTIONS(510), + [anon_sym_range] = ACTIONS(510), + [anon_sym_29] = ACTIONS(510), + [anon_sym_first] = ACTIONS(510), + [anon_sym_30] = ACTIONS(510), + [anon_sym_reverse] = ACTIONS(510), + [anon_sym_31] = ACTIONS(510), + [anon_sym_deshape] = ACTIONS(510), + [anon_sym_32] = ACTIONS(510), + [anon_sym_bits] = ACTIONS(510), + [anon_sym_33] = ACTIONS(510), + [anon_sym_transpose] = ACTIONS(510), + [anon_sym_34] = ACTIONS(510), + [anon_sym_rise] = ACTIONS(510), + [anon_sym_35] = ACTIONS(510), + [anon_sym_fall] = ACTIONS(510), + [anon_sym_36] = ACTIONS(510), + [anon_sym_where] = ACTIONS(510), + [anon_sym_37] = ACTIONS(510), + [anon_sym_classify] = ACTIONS(510), + [anon_sym_38] = ACTIONS(510), + [anon_sym_deduplicate] = ACTIONS(510), + [anon_sym_39] = ACTIONS(510), + [anon_sym_box] = ACTIONS(510), + [anon_sym_40] = ACTIONS(510), + [anon_sym_unbox] = ACTIONS(510), + [anon_sym_41] = ACTIONS(510), + [anon_sym_match] = ACTIONS(510), + [anon_sym_42] = ACTIONS(510), + [anon_sym_couple] = ACTIONS(510), + [anon_sym_43] = ACTIONS(510), + [anon_sym_join] = ACTIONS(510), + [anon_sym_44] = ACTIONS(510), + [anon_sym_select] = ACTIONS(510), + [anon_sym_45] = ACTIONS(510), + [anon_sym_pick] = ACTIONS(510), + [anon_sym_46] = ACTIONS(510), + [anon_sym_reshape] = ACTIONS(510), + [anon_sym_47] = ACTIONS(510), + [anon_sym_take] = ACTIONS(510), + [anon_sym_48] = ACTIONS(510), + [anon_sym_drop] = ACTIONS(510), + [anon_sym_49] = ACTIONS(510), + [anon_sym_rotate] = ACTIONS(510), + [anon_sym_50] = ACTIONS(510), + [anon_sym_windows] = ACTIONS(510), + [anon_sym_51] = ACTIONS(510), + [anon_sym_keep] = ACTIONS(510), + [anon_sym_52] = ACTIONS(510), + [anon_sym_find] = ACTIONS(510), + [anon_sym_53] = ACTIONS(510), + [anon_sym_member] = ACTIONS(510), + [anon_sym_54] = ACTIONS(510), + [anon_sym_indexof] = ACTIONS(510), + [anon_sym_55] = ACTIONS(510), + [anon_sym_assert] = ACTIONS(510), + [anon_sym_56] = ACTIONS(510), + [anon_sym_wait] = ACTIONS(510), + [anon_sym_break] = ACTIONS(510), + [anon_sym_57] = ACTIONS(510), + [anon_sym_parse] = ACTIONS(510), + [anon_sym_random] = ACTIONS(510), + [anon_sym_58] = ACTIONS(510), + [anon_sym_gen] = ACTIONS(510), + [anon_sym_deal] = ACTIONS(510), + [anon_sym_tag] = ACTIONS(510), + [anon_sym_now] = ACTIONS(510), + [anon_sym_type] = ACTIONS(510), + [anon_sym_59] = ACTIONS(510), + [anon_sym_dump] = ACTIONS(510), + [anon_sym_regex] = ACTIONS(510), + [anon_sym_utf] = ACTIONS(510), + [anon_sym_rock] = ACTIONS(510), + [anon_sym_60] = ACTIONS(510), + [anon_sym_surface] = ACTIONS(510), + [anon_sym_TILDE] = ACTIONS(510), + [anon_sym_deep] = ACTIONS(510), + [anon_sym_de] = ACTIONS(508), + [anon_sym_61] = ACTIONS(510), + [anon_sym_abyss] = ACTIONS(510), + [anon_sym_ab] = ACTIONS(508), + [anon_sym_62] = ACTIONS(510), + [anon_sym_seabed] = ACTIONS(510), + [anon_sym_se] = ACTIONS(508), + [anon_sym_63] = ACTIONS(510), + [anon_sym_send] = ACTIONS(510), + [anon_sym_recv] = ACTIONS(510), + [anon_sym_tryrecv] = ACTIONS(510), + [anon_sym_reduce] = ACTIONS(510), + [anon_sym_SLASH] = ACTIONS(510), + [anon_sym_scan] = ACTIONS(510), + [anon_sym_BSLASH] = ACTIONS(510), + [anon_sym_each] = ACTIONS(510), + [anon_sym_64] = ACTIONS(510), + [anon_sym_rows] = ACTIONS(510), + [anon_sym_65] = ACTIONS(510), + [anon_sym_repeat] = ACTIONS(510), + [anon_sym_66] = ACTIONS(510), + [anon_sym_dip] = ACTIONS(510), + [anon_sym_67] = ACTIONS(510), + [anon_sym_gap] = ACTIONS(510), + [anon_sym_68] = ACTIONS(510), + [anon_sym_69] = ACTIONS(510), + [anon_sym_invert] = ACTIONS(510), + [anon_sym_70] = ACTIONS(510), + [anon_sym_spawn] = ACTIONS(510), + [anon_sym_pack] = ACTIONS(510), + [anon_sym_71] = ACTIONS(510), + [anon_sym_tribute] = ACTIONS(510), + [anon_sym_72] = ACTIONS(510), + [anon_sym_reach] = ACTIONS(510), + [anon_sym_fold] = ACTIONS(510), + [anon_sym_73] = ACTIONS(510), + [anon_sym_distribute] = ACTIONS(510), + [anon_sym_74] = ACTIONS(510), + [anon_sym_table] = ACTIONS(510), + [anon_sym_75] = ACTIONS(510), + [anon_sym_cross] = ACTIONS(510), + [anon_sym_76] = ACTIONS(510), + [anon_sym_group] = ACTIONS(510), + [anon_sym_77] = ACTIONS(510), + [anon_sym_partition] = ACTIONS(510), + [anon_sym_78] = ACTIONS(510), + [anon_sym_both] = ACTIONS(510), + [anon_sym_79] = ACTIONS(510), + [anon_sym_bracket] = ACTIONS(510), + [anon_sym_80] = ACTIONS(510), + [anon_sym_fork] = ACTIONS(510), + [anon_sym_81] = ACTIONS(510), + [anon_sym_under] = ACTIONS(510), + [anon_sym_82] = ACTIONS(510), + [anon_sym_level] = ACTIONS(510), + [anon_sym_83] = ACTIONS(510), + [anon_sym_fill] = ACTIONS(510), + [anon_sym_84] = ACTIONS(510), + [anon_sym_bind] = ACTIONS(510), + [anon_sym_SQUOTE] = ACTIONS(510), + [anon_sym_QMARK] = ACTIONS(510), + [anon_sym_try] = ACTIONS(508), + [anon_sym_85] = ACTIONS(510), + [anon_sym_combinate] = ACTIONS(510), + [anon_sym_86] = ACTIONS(510), + [anon_sym_87] = ACTIONS(510), + [anon_sym_88] = ACTIONS(510), + [anon_sym_89] = ACTIONS(510), + [anon_sym_90] = ACTIONS(510), + [anon_sym_91] = ACTIONS(510), + [anon_sym_92] = ACTIONS(510), + [anon_sym_93] = ACTIONS(510), [sym__whitespace] = ACTIONS(5), - [sym__end_of_line] = ACTIONS(528), + [sym__end_of_line] = ACTIONS(510), }, [87] = { - [ts_builtin_sym_end] = ACTIONS(452), - [aux_sym_number_token1] = ACTIONS(450), - [anon_sym_os] = ACTIONS(450), - [anon_sym_Family] = ACTIONS(450), - [anon_sym_Arch] = ACTIONS(450), - [anon_sym_ExeExt] = ACTIONS(450), - [anon_sym_PllExt] = ACTIONS(450), - [anon_sym_Sep] = ACTIONS(450), - [aux_sym_character_token1] = ACTIONS(452), - [sym_string] = ACTIONS(452), - [sym_multiLineString] = ACTIONS(452), - [anon_sym_PIPE] = ACTIONS(452), - [sym_identifier] = ACTIONS(450), - [sym_identifier_deprecated] = ACTIONS(450), - [sym_system] = ACTIONS(452), - [sym_comment] = ACTIONS(450), - [sym_openParen] = ACTIONS(452), - [sym_openCurly] = ACTIONS(452), - [sym_openBracket] = ACTIONS(452), - [sym_underscore] = ACTIONS(452), - [sym_leftArrow] = ACTIONS(452), - [anon_sym_CARET] = ACTIONS(452), - [anon_sym_eta] = ACTIONS(452), - [anon_sym_] = ACTIONS(450), - [anon_sym_pi] = ACTIONS(450), - [anon_sym_2] = ACTIONS(450), - [anon_sym_tau] = ACTIONS(452), - [anon_sym_3] = ACTIONS(450), - [anon_sym_infinity] = ACTIONS(452), - [anon_sym_4] = ACTIONS(452), - [anon_sym_e] = ACTIONS(450), - [anon_sym_NaN] = ACTIONS(450), - [anon_sym_NumProcs] = ACTIONS(450), - [anon_sym_DOT] = ACTIONS(452), - [anon_sym_COMMA] = ACTIONS(452), - [anon_sym_5] = ACTIONS(452), - [anon_sym_SEMI] = ACTIONS(452), - [anon_sym_identity] = ACTIONS(452), - [anon_sym_id] = ACTIONS(450), - [anon_sym_6] = ACTIONS(452), - [anon_sym_not] = ACTIONS(452), - [anon_sym_7] = ACTIONS(452), - [anon_sym_sign] = ACTIONS(452), - [anon_sym_8] = ACTIONS(452), - [anon_sym_BQUOTE] = ACTIONS(452), - [anon_sym_9] = ACTIONS(452), - [anon_sym_absolutevalue] = ACTIONS(452), - [anon_sym_10] = ACTIONS(452), - [anon_sym_sqrt] = ACTIONS(452), - [anon_sym_11] = ACTIONS(452), - [anon_sym_sine] = ACTIONS(452), - [anon_sym_12] = ACTIONS(452), - [anon_sym_floor] = ACTIONS(452), - [anon_sym_13] = ACTIONS(452), - [anon_sym_ceiling] = ACTIONS(452), - [anon_sym_14] = ACTIONS(452), - [anon_sym_round] = ACTIONS(452), - [anon_sym_15] = ACTIONS(452), - [anon_sym_EQ] = ACTIONS(452), - [anon_sym_BANG_EQ] = ACTIONS(452), - [anon_sym_16] = ACTIONS(452), - [anon_sym_LT] = ACTIONS(450), - [anon_sym_LT_EQ] = ACTIONS(452), - [anon_sym_17] = ACTIONS(452), - [anon_sym_GT] = ACTIONS(450), - [anon_sym_GT_EQ] = ACTIONS(452), - [anon_sym_18] = ACTIONS(452), - [anon_sym_PLUS] = ACTIONS(452), - [anon_sym_DASH] = ACTIONS(452), - [anon_sym_STAR] = ACTIONS(452), - [anon_sym_19] = ACTIONS(452), - [anon_sym_PERCENT] = ACTIONS(452), - [anon_sym_20] = ACTIONS(452), - [anon_sym_modulus] = ACTIONS(452), - [anon_sym_21] = ACTIONS(452), - [anon_sym_power] = ACTIONS(452), - [anon_sym_22] = ACTIONS(452), - [anon_sym_logarithm] = ACTIONS(452), - [anon_sym_23] = ACTIONS(452), - [anon_sym_minimum] = ACTIONS(452), - [anon_sym_24] = ACTIONS(452), - [anon_sym_maximum] = ACTIONS(452), - [anon_sym_25] = ACTIONS(452), - [anon_sym_atangent] = ACTIONS(452), - [anon_sym_26] = ACTIONS(452), - [anon_sym_length] = ACTIONS(452), - [anon_sym_27] = ACTIONS(452), - [anon_sym_shape] = ACTIONS(452), - [anon_sym_28] = ACTIONS(452), - [anon_sym_range] = ACTIONS(452), - [anon_sym_29] = ACTIONS(452), - [anon_sym_first] = ACTIONS(452), - [anon_sym_30] = ACTIONS(452), - [anon_sym_reverse] = ACTIONS(452), - [anon_sym_31] = ACTIONS(452), - [anon_sym_deshape] = ACTIONS(452), - [anon_sym_32] = ACTIONS(452), - [anon_sym_bits] = ACTIONS(452), - [anon_sym_33] = ACTIONS(452), - [anon_sym_transpose] = ACTIONS(452), - [anon_sym_34] = ACTIONS(452), - [anon_sym_rise] = ACTIONS(452), - [anon_sym_35] = ACTIONS(452), - [anon_sym_fall] = ACTIONS(452), - [anon_sym_36] = ACTIONS(452), - [anon_sym_where] = ACTIONS(452), - [anon_sym_37] = ACTIONS(452), - [anon_sym_classify] = ACTIONS(452), - [anon_sym_38] = ACTIONS(452), - [anon_sym_deduplicate] = ACTIONS(452), - [anon_sym_39] = ACTIONS(452), - [anon_sym_box] = ACTIONS(452), - [anon_sym_40] = ACTIONS(452), - [anon_sym_unbox] = ACTIONS(452), - [anon_sym_41] = ACTIONS(452), - [anon_sym_match] = ACTIONS(452), - [anon_sym_42] = ACTIONS(452), - [anon_sym_couple] = ACTIONS(452), - [anon_sym_43] = ACTIONS(452), - [anon_sym_join] = ACTIONS(452), - [anon_sym_44] = ACTIONS(452), - [anon_sym_select] = ACTIONS(452), - [anon_sym_45] = ACTIONS(452), - [anon_sym_pick] = ACTIONS(452), - [anon_sym_46] = ACTIONS(452), - [anon_sym_reshape] = ACTIONS(452), - [anon_sym_47] = ACTIONS(452), - [anon_sym_take] = ACTIONS(452), - [anon_sym_48] = ACTIONS(452), - [anon_sym_drop] = ACTIONS(452), - [anon_sym_49] = ACTIONS(452), - [anon_sym_rotate] = ACTIONS(452), - [anon_sym_50] = ACTIONS(452), - [anon_sym_windows] = ACTIONS(452), - [anon_sym_51] = ACTIONS(452), - [anon_sym_keep] = ACTIONS(452), - [anon_sym_52] = ACTIONS(452), - [anon_sym_find] = ACTIONS(452), - [anon_sym_53] = ACTIONS(452), - [anon_sym_member] = ACTIONS(452), - [anon_sym_54] = ACTIONS(452), - [anon_sym_indexof] = ACTIONS(452), - [anon_sym_55] = ACTIONS(452), - [anon_sym_assert] = ACTIONS(452), - [anon_sym_56] = ACTIONS(452), - [anon_sym_wait] = ACTIONS(452), - [anon_sym_break] = ACTIONS(452), - [anon_sym_57] = ACTIONS(452), - [anon_sym_parse] = ACTIONS(452), - [anon_sym_random] = ACTIONS(452), - [anon_sym_58] = ACTIONS(452), - [anon_sym_gen] = ACTIONS(452), - [anon_sym_deal] = ACTIONS(452), - [anon_sym_tag] = ACTIONS(452), - [anon_sym_now] = ACTIONS(452), - [anon_sym_type] = ACTIONS(452), - [anon_sym_59] = ACTIONS(452), - [anon_sym_dump] = ACTIONS(452), - [anon_sym_regex] = ACTIONS(452), - [anon_sym_utf] = ACTIONS(452), - [anon_sym_rock] = ACTIONS(452), - [anon_sym_60] = ACTIONS(452), - [anon_sym_surface] = ACTIONS(452), - [anon_sym_TILDE] = ACTIONS(452), - [anon_sym_deep] = ACTIONS(452), - [anon_sym_de] = ACTIONS(450), - [anon_sym_61] = ACTIONS(452), - [anon_sym_abyss] = ACTIONS(452), - [anon_sym_ab] = ACTIONS(450), - [anon_sym_62] = ACTIONS(452), - [anon_sym_seabed] = ACTIONS(452), - [anon_sym_se] = ACTIONS(450), - [anon_sym_63] = ACTIONS(452), - [anon_sym_send] = ACTIONS(452), - [anon_sym_recv] = ACTIONS(452), - [anon_sym_tryrecv] = ACTIONS(452), - [anon_sym_reduce] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(452), - [anon_sym_scan] = ACTIONS(452), - [anon_sym_BSLASH] = ACTIONS(452), - [anon_sym_each] = ACTIONS(452), - [anon_sym_64] = ACTIONS(452), - [anon_sym_rows] = ACTIONS(452), - [anon_sym_65] = ACTIONS(452), - [anon_sym_repeat] = ACTIONS(452), - [anon_sym_66] = ACTIONS(452), - [anon_sym_dip] = ACTIONS(452), - [anon_sym_di] = ACTIONS(450), - [anon_sym_67] = ACTIONS(452), - [anon_sym_gap] = ACTIONS(452), - [anon_sym_ga] = ACTIONS(450), - [anon_sym_68] = ACTIONS(452), - [anon_sym_oust] = ACTIONS(452), - [anon_sym_69] = ACTIONS(452), - [anon_sym_invert] = ACTIONS(452), - [anon_sym_70] = ACTIONS(452), - [anon_sym_spawn] = ACTIONS(452), - [anon_sym_pack] = ACTIONS(452), - [anon_sym_71] = ACTIONS(452), - [anon_sym_tribute] = ACTIONS(452), - [anon_sym_72] = ACTIONS(452), - [anon_sym_fold] = ACTIONS(452), - [anon_sym_73] = ACTIONS(452), - [anon_sym_distribute] = ACTIONS(452), - [anon_sym_74] = ACTIONS(452), - [anon_sym_table] = ACTIONS(452), - [anon_sym_75] = ACTIONS(452), - [anon_sym_cross] = ACTIONS(452), - [anon_sym_76] = ACTIONS(452), - [anon_sym_group] = ACTIONS(452), - [anon_sym_77] = ACTIONS(452), - [anon_sym_partition] = ACTIONS(452), - [anon_sym_78] = ACTIONS(452), - [anon_sym_both] = ACTIONS(452), - [anon_sym_79] = ACTIONS(452), - [anon_sym_bracket] = ACTIONS(452), - [anon_sym_80] = ACTIONS(452), - [anon_sym_fork] = ACTIONS(452), - [anon_sym_81] = ACTIONS(452), - [anon_sym_under] = ACTIONS(452), - [anon_sym_82] = ACTIONS(452), - [anon_sym_level] = ACTIONS(452), - [anon_sym_83] = ACTIONS(452), - [anon_sym_fill] = ACTIONS(452), - [anon_sym_84] = ACTIONS(452), - [anon_sym_bind] = ACTIONS(452), - [anon_sym_SQUOTE] = ACTIONS(452), - [anon_sym_QMARK] = ACTIONS(452), - [anon_sym_try] = ACTIONS(450), - [anon_sym_85] = ACTIONS(452), - [anon_sym_combinate] = ACTIONS(452), - [anon_sym_86] = ACTIONS(452), - [anon_sym_87] = ACTIONS(452), - [anon_sym_88] = ACTIONS(452), - [anon_sym_89] = ACTIONS(452), - [anon_sym_90] = ACTIONS(452), - [anon_sym_91] = ACTIONS(452), - [anon_sym_92] = ACTIONS(452), - [anon_sym_93] = ACTIONS(452), + [ts_builtin_sym_end] = ACTIONS(434), + [aux_sym_number_token1] = ACTIONS(432), + [anon_sym_os] = ACTIONS(432), + [anon_sym_Family] = ACTIONS(432), + [anon_sym_Arch] = ACTIONS(432), + [anon_sym_ExeExt] = ACTIONS(432), + [anon_sym_PllExt] = ACTIONS(432), + [anon_sym_Sep] = ACTIONS(432), + [aux_sym_character_token1] = ACTIONS(434), + [sym_string] = ACTIONS(434), + [sym_multiLineString] = ACTIONS(434), + [anon_sym_PIPE] = ACTIONS(434), + [sym_identifier] = ACTIONS(432), + [sym_identifier_deprecated] = ACTIONS(432), + [sym_system] = ACTIONS(434), + [sym_comment] = ACTIONS(432), + [sym_openParen] = ACTIONS(434), + [sym_openCurly] = ACTIONS(434), + [sym_openBracket] = ACTIONS(434), + [sym_underscore] = ACTIONS(434), + [sym_leftArrow] = ACTIONS(434), + [anon_sym_CARET] = ACTIONS(434), + [anon_sym_eta] = ACTIONS(434), + [anon_sym_] = ACTIONS(432), + [anon_sym_pi] = ACTIONS(432), + [anon_sym_2] = ACTIONS(432), + [anon_sym_tau] = ACTIONS(434), + [anon_sym_3] = ACTIONS(432), + [anon_sym_infinity] = ACTIONS(434), + [anon_sym_4] = ACTIONS(434), + [anon_sym_e] = ACTIONS(432), + [anon_sym_NaN] = ACTIONS(432), + [anon_sym_NumProcs] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(434), + [anon_sym_COMMA] = ACTIONS(434), + [anon_sym_5] = ACTIONS(434), + [anon_sym_SEMI] = ACTIONS(434), + [anon_sym_identity] = ACTIONS(434), + [anon_sym_id] = ACTIONS(432), + [anon_sym_6] = ACTIONS(434), + [anon_sym_not] = ACTIONS(434), + [anon_sym_7] = ACTIONS(434), + [anon_sym_sign] = ACTIONS(434), + [anon_sym_8] = ACTIONS(434), + [anon_sym_BQUOTE] = ACTIONS(434), + [anon_sym_9] = ACTIONS(434), + [anon_sym_absolutevalue] = ACTIONS(434), + [anon_sym_10] = ACTIONS(434), + [anon_sym_sqrt] = ACTIONS(434), + [anon_sym_11] = ACTIONS(434), + [anon_sym_sine] = ACTIONS(434), + [anon_sym_12] = ACTIONS(434), + [anon_sym_floor] = ACTIONS(434), + [anon_sym_13] = ACTIONS(434), + [anon_sym_ceiling] = ACTIONS(434), + [anon_sym_14] = ACTIONS(434), + [anon_sym_round] = ACTIONS(434), + [anon_sym_15] = ACTIONS(434), + [anon_sym_EQ] = ACTIONS(434), + [anon_sym_BANG_EQ] = ACTIONS(434), + [anon_sym_16] = ACTIONS(434), + [anon_sym_LT] = ACTIONS(432), + [anon_sym_LT_EQ] = ACTIONS(434), + [anon_sym_17] = ACTIONS(434), + [anon_sym_GT] = ACTIONS(432), + [anon_sym_GT_EQ] = ACTIONS(434), + [anon_sym_18] = ACTIONS(434), + [anon_sym_PLUS] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(434), + [anon_sym_STAR] = ACTIONS(434), + [anon_sym_19] = ACTIONS(434), + [anon_sym_PERCENT] = ACTIONS(434), + [anon_sym_20] = ACTIONS(434), + [anon_sym_modulus] = ACTIONS(434), + [anon_sym_21] = ACTIONS(434), + [anon_sym_power] = ACTIONS(434), + [anon_sym_22] = ACTIONS(434), + [anon_sym_logarithm] = ACTIONS(434), + [anon_sym_23] = ACTIONS(434), + [anon_sym_minimum] = ACTIONS(434), + [anon_sym_24] = ACTIONS(434), + [anon_sym_maximum] = ACTIONS(434), + [anon_sym_25] = ACTIONS(434), + [anon_sym_atangent] = ACTIONS(434), + [anon_sym_26] = ACTIONS(434), + [anon_sym_length] = ACTIONS(434), + [anon_sym_27] = ACTIONS(434), + [anon_sym_shape] = ACTIONS(434), + [anon_sym_28] = ACTIONS(434), + [anon_sym_range] = ACTIONS(434), + [anon_sym_29] = ACTIONS(434), + [anon_sym_first] = ACTIONS(434), + [anon_sym_30] = ACTIONS(434), + [anon_sym_reverse] = ACTIONS(434), + [anon_sym_31] = ACTIONS(434), + [anon_sym_deshape] = ACTIONS(434), + [anon_sym_32] = ACTIONS(434), + [anon_sym_bits] = ACTIONS(434), + [anon_sym_33] = ACTIONS(434), + [anon_sym_transpose] = ACTIONS(434), + [anon_sym_34] = ACTIONS(434), + [anon_sym_rise] = ACTIONS(434), + [anon_sym_35] = ACTIONS(434), + [anon_sym_fall] = ACTIONS(434), + [anon_sym_36] = ACTIONS(434), + [anon_sym_where] = ACTIONS(434), + [anon_sym_37] = ACTIONS(434), + [anon_sym_classify] = ACTIONS(434), + [anon_sym_38] = ACTIONS(434), + [anon_sym_deduplicate] = ACTIONS(434), + [anon_sym_39] = ACTIONS(434), + [anon_sym_box] = ACTIONS(434), + [anon_sym_40] = ACTIONS(434), + [anon_sym_unbox] = ACTIONS(434), + [anon_sym_41] = ACTIONS(434), + [anon_sym_match] = ACTIONS(434), + [anon_sym_42] = ACTIONS(434), + [anon_sym_couple] = ACTIONS(434), + [anon_sym_43] = ACTIONS(434), + [anon_sym_join] = ACTIONS(434), + [anon_sym_44] = ACTIONS(434), + [anon_sym_select] = ACTIONS(434), + [anon_sym_45] = ACTIONS(434), + [anon_sym_pick] = ACTIONS(434), + [anon_sym_46] = ACTIONS(434), + [anon_sym_reshape] = ACTIONS(434), + [anon_sym_47] = ACTIONS(434), + [anon_sym_take] = ACTIONS(434), + [anon_sym_48] = ACTIONS(434), + [anon_sym_drop] = ACTIONS(434), + [anon_sym_49] = ACTIONS(434), + [anon_sym_rotate] = ACTIONS(434), + [anon_sym_50] = ACTIONS(434), + [anon_sym_windows] = ACTIONS(434), + [anon_sym_51] = ACTIONS(434), + [anon_sym_keep] = ACTIONS(434), + [anon_sym_52] = ACTIONS(434), + [anon_sym_find] = ACTIONS(434), + [anon_sym_53] = ACTIONS(434), + [anon_sym_member] = ACTIONS(434), + [anon_sym_54] = ACTIONS(434), + [anon_sym_indexof] = ACTIONS(434), + [anon_sym_55] = ACTIONS(434), + [anon_sym_assert] = ACTIONS(434), + [anon_sym_56] = ACTIONS(434), + [anon_sym_wait] = ACTIONS(434), + [anon_sym_break] = ACTIONS(434), + [anon_sym_57] = ACTIONS(434), + [anon_sym_parse] = ACTIONS(434), + [anon_sym_random] = ACTIONS(434), + [anon_sym_58] = ACTIONS(434), + [anon_sym_gen] = ACTIONS(434), + [anon_sym_deal] = ACTIONS(434), + [anon_sym_tag] = ACTIONS(434), + [anon_sym_now] = ACTIONS(434), + [anon_sym_type] = ACTIONS(434), + [anon_sym_59] = ACTIONS(434), + [anon_sym_dump] = ACTIONS(434), + [anon_sym_regex] = ACTIONS(434), + [anon_sym_utf] = ACTIONS(434), + [anon_sym_rock] = ACTIONS(434), + [anon_sym_60] = ACTIONS(434), + [anon_sym_surface] = ACTIONS(434), + [anon_sym_TILDE] = ACTIONS(434), + [anon_sym_deep] = ACTIONS(434), + [anon_sym_de] = ACTIONS(432), + [anon_sym_61] = ACTIONS(434), + [anon_sym_abyss] = ACTIONS(434), + [anon_sym_ab] = ACTIONS(432), + [anon_sym_62] = ACTIONS(434), + [anon_sym_seabed] = ACTIONS(434), + [anon_sym_se] = ACTIONS(432), + [anon_sym_63] = ACTIONS(434), + [anon_sym_send] = ACTIONS(434), + [anon_sym_recv] = ACTIONS(434), + [anon_sym_tryrecv] = ACTIONS(434), + [anon_sym_reduce] = ACTIONS(434), + [anon_sym_SLASH] = ACTIONS(434), + [anon_sym_scan] = ACTIONS(434), + [anon_sym_BSLASH] = ACTIONS(434), + [anon_sym_each] = ACTIONS(434), + [anon_sym_64] = ACTIONS(434), + [anon_sym_rows] = ACTIONS(434), + [anon_sym_65] = ACTIONS(434), + [anon_sym_repeat] = ACTIONS(434), + [anon_sym_66] = ACTIONS(434), + [anon_sym_dip] = ACTIONS(434), + [anon_sym_67] = ACTIONS(434), + [anon_sym_gap] = ACTIONS(434), + [anon_sym_68] = ACTIONS(434), + [anon_sym_69] = ACTIONS(434), + [anon_sym_invert] = ACTIONS(434), + [anon_sym_70] = ACTIONS(434), + [anon_sym_spawn] = ACTIONS(434), + [anon_sym_pack] = ACTIONS(434), + [anon_sym_71] = ACTIONS(434), + [anon_sym_tribute] = ACTIONS(434), + [anon_sym_72] = ACTIONS(434), + [anon_sym_reach] = ACTIONS(434), + [anon_sym_fold] = ACTIONS(434), + [anon_sym_73] = ACTIONS(434), + [anon_sym_distribute] = ACTIONS(434), + [anon_sym_74] = ACTIONS(434), + [anon_sym_table] = ACTIONS(434), + [anon_sym_75] = ACTIONS(434), + [anon_sym_cross] = ACTIONS(434), + [anon_sym_76] = ACTIONS(434), + [anon_sym_group] = ACTIONS(434), + [anon_sym_77] = ACTIONS(434), + [anon_sym_partition] = ACTIONS(434), + [anon_sym_78] = ACTIONS(434), + [anon_sym_both] = ACTIONS(434), + [anon_sym_79] = ACTIONS(434), + [anon_sym_bracket] = ACTIONS(434), + [anon_sym_80] = ACTIONS(434), + [anon_sym_fork] = ACTIONS(434), + [anon_sym_81] = ACTIONS(434), + [anon_sym_under] = ACTIONS(434), + [anon_sym_82] = ACTIONS(434), + [anon_sym_level] = ACTIONS(434), + [anon_sym_83] = ACTIONS(434), + [anon_sym_fill] = ACTIONS(434), + [anon_sym_84] = ACTIONS(434), + [anon_sym_bind] = ACTIONS(434), + [anon_sym_SQUOTE] = ACTIONS(434), + [anon_sym_QMARK] = ACTIONS(434), + [anon_sym_try] = ACTIONS(432), + [anon_sym_85] = ACTIONS(434), + [anon_sym_combinate] = ACTIONS(434), + [anon_sym_86] = ACTIONS(434), + [anon_sym_87] = ACTIONS(434), + [anon_sym_88] = ACTIONS(434), + [anon_sym_89] = ACTIONS(434), + [anon_sym_90] = ACTIONS(434), + [anon_sym_91] = ACTIONS(434), + [anon_sym_92] = ACTIONS(434), + [anon_sym_93] = ACTIONS(434), [sym__whitespace] = ACTIONS(5), - [sym__end_of_line] = ACTIONS(452), + [sym__end_of_line] = ACTIONS(434), }, [88] = { - [ts_builtin_sym_end] = ACTIONS(440), - [aux_sym_number_token1] = ACTIONS(438), - [anon_sym_os] = ACTIONS(438), - [anon_sym_Family] = ACTIONS(438), - [anon_sym_Arch] = ACTIONS(438), - [anon_sym_ExeExt] = ACTIONS(438), - [anon_sym_PllExt] = ACTIONS(438), - [anon_sym_Sep] = ACTIONS(438), - [aux_sym_character_token1] = ACTIONS(440), - [sym_string] = ACTIONS(440), - [sym_multiLineString] = ACTIONS(440), - [anon_sym_PIPE] = ACTIONS(440), - [sym_identifier] = ACTIONS(438), - [sym_identifier_deprecated] = ACTIONS(438), - [sym_system] = ACTIONS(440), - [sym_comment] = ACTIONS(438), - [sym_openParen] = ACTIONS(440), - [sym_openCurly] = ACTIONS(440), - [sym_openBracket] = ACTIONS(440), - [sym_underscore] = ACTIONS(440), - [sym_leftArrow] = ACTIONS(440), - [anon_sym_CARET] = ACTIONS(440), - [anon_sym_eta] = ACTIONS(440), - [anon_sym_] = ACTIONS(438), - [anon_sym_pi] = ACTIONS(438), - [anon_sym_2] = ACTIONS(438), - [anon_sym_tau] = ACTIONS(440), - [anon_sym_3] = ACTIONS(438), - [anon_sym_infinity] = ACTIONS(440), - [anon_sym_4] = ACTIONS(440), - [anon_sym_e] = ACTIONS(438), - [anon_sym_NaN] = ACTIONS(438), - [anon_sym_NumProcs] = ACTIONS(438), - [anon_sym_DOT] = ACTIONS(440), - [anon_sym_COMMA] = ACTIONS(440), - [anon_sym_5] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(440), - [anon_sym_identity] = ACTIONS(440), - [anon_sym_id] = ACTIONS(438), - [anon_sym_6] = ACTIONS(440), - [anon_sym_not] = ACTIONS(440), - [anon_sym_7] = ACTIONS(440), - [anon_sym_sign] = ACTIONS(440), - [anon_sym_8] = ACTIONS(440), - [anon_sym_BQUOTE] = ACTIONS(440), - [anon_sym_9] = ACTIONS(440), - [anon_sym_absolutevalue] = ACTIONS(440), - [anon_sym_10] = ACTIONS(440), - [anon_sym_sqrt] = ACTIONS(440), - [anon_sym_11] = ACTIONS(440), - [anon_sym_sine] = ACTIONS(440), - [anon_sym_12] = ACTIONS(440), - [anon_sym_floor] = ACTIONS(440), - [anon_sym_13] = ACTIONS(440), - [anon_sym_ceiling] = ACTIONS(440), - [anon_sym_14] = ACTIONS(440), - [anon_sym_round] = ACTIONS(440), - [anon_sym_15] = ACTIONS(440), - [anon_sym_EQ] = ACTIONS(440), - [anon_sym_BANG_EQ] = ACTIONS(440), - [anon_sym_16] = ACTIONS(440), - [anon_sym_LT] = ACTIONS(438), - [anon_sym_LT_EQ] = ACTIONS(440), - [anon_sym_17] = ACTIONS(440), - [anon_sym_GT] = ACTIONS(438), - [anon_sym_GT_EQ] = ACTIONS(440), - [anon_sym_18] = ACTIONS(440), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_STAR] = ACTIONS(440), - [anon_sym_19] = ACTIONS(440), - [anon_sym_PERCENT] = ACTIONS(440), - [anon_sym_20] = ACTIONS(440), - [anon_sym_modulus] = ACTIONS(440), - [anon_sym_21] = ACTIONS(440), - [anon_sym_power] = ACTIONS(440), - [anon_sym_22] = ACTIONS(440), - [anon_sym_logarithm] = ACTIONS(440), - [anon_sym_23] = ACTIONS(440), - [anon_sym_minimum] = ACTIONS(440), - [anon_sym_24] = ACTIONS(440), - [anon_sym_maximum] = ACTIONS(440), - [anon_sym_25] = ACTIONS(440), - [anon_sym_atangent] = ACTIONS(440), - [anon_sym_26] = ACTIONS(440), - [anon_sym_length] = ACTIONS(440), - [anon_sym_27] = ACTIONS(440), - [anon_sym_shape] = ACTIONS(440), - [anon_sym_28] = ACTIONS(440), - [anon_sym_range] = ACTIONS(440), - [anon_sym_29] = ACTIONS(440), - [anon_sym_first] = ACTIONS(440), - [anon_sym_30] = ACTIONS(440), - [anon_sym_reverse] = ACTIONS(440), - [anon_sym_31] = ACTIONS(440), - [anon_sym_deshape] = ACTIONS(440), - [anon_sym_32] = ACTIONS(440), - [anon_sym_bits] = ACTIONS(440), - [anon_sym_33] = ACTIONS(440), - [anon_sym_transpose] = ACTIONS(440), - [anon_sym_34] = ACTIONS(440), - [anon_sym_rise] = ACTIONS(440), - [anon_sym_35] = ACTIONS(440), - [anon_sym_fall] = ACTIONS(440), - [anon_sym_36] = ACTIONS(440), - [anon_sym_where] = ACTIONS(440), - [anon_sym_37] = ACTIONS(440), - [anon_sym_classify] = ACTIONS(440), - [anon_sym_38] = ACTIONS(440), - [anon_sym_deduplicate] = ACTIONS(440), - [anon_sym_39] = ACTIONS(440), - [anon_sym_box] = ACTIONS(440), - [anon_sym_40] = ACTIONS(440), - [anon_sym_unbox] = ACTIONS(440), - [anon_sym_41] = ACTIONS(440), - [anon_sym_match] = ACTIONS(440), - [anon_sym_42] = ACTIONS(440), - [anon_sym_couple] = ACTIONS(440), - [anon_sym_43] = ACTIONS(440), - [anon_sym_join] = ACTIONS(440), - [anon_sym_44] = ACTIONS(440), - [anon_sym_select] = ACTIONS(440), - [anon_sym_45] = ACTIONS(440), - [anon_sym_pick] = ACTIONS(440), - [anon_sym_46] = ACTIONS(440), - [anon_sym_reshape] = ACTIONS(440), - [anon_sym_47] = ACTIONS(440), - [anon_sym_take] = ACTIONS(440), - [anon_sym_48] = ACTIONS(440), - [anon_sym_drop] = ACTIONS(440), - [anon_sym_49] = ACTIONS(440), - [anon_sym_rotate] = ACTIONS(440), - [anon_sym_50] = ACTIONS(440), - [anon_sym_windows] = ACTIONS(440), - [anon_sym_51] = ACTIONS(440), - [anon_sym_keep] = ACTIONS(440), - [anon_sym_52] = ACTIONS(440), - [anon_sym_find] = ACTIONS(440), - [anon_sym_53] = ACTIONS(440), - [anon_sym_member] = ACTIONS(440), - [anon_sym_54] = ACTIONS(440), - [anon_sym_indexof] = ACTIONS(440), - [anon_sym_55] = ACTIONS(440), - [anon_sym_assert] = ACTIONS(440), - [anon_sym_56] = ACTIONS(440), - [anon_sym_wait] = ACTIONS(440), - [anon_sym_break] = ACTIONS(440), - [anon_sym_57] = ACTIONS(440), - [anon_sym_parse] = ACTIONS(440), - [anon_sym_random] = ACTIONS(440), - [anon_sym_58] = ACTIONS(440), - [anon_sym_gen] = ACTIONS(440), - [anon_sym_deal] = ACTIONS(440), - [anon_sym_tag] = ACTIONS(440), - [anon_sym_now] = ACTIONS(440), - [anon_sym_type] = ACTIONS(440), - [anon_sym_59] = ACTIONS(440), - [anon_sym_dump] = ACTIONS(440), - [anon_sym_regex] = ACTIONS(440), - [anon_sym_utf] = ACTIONS(440), - [anon_sym_rock] = ACTIONS(440), - [anon_sym_60] = ACTIONS(440), - [anon_sym_surface] = ACTIONS(440), - [anon_sym_TILDE] = ACTIONS(440), - [anon_sym_deep] = ACTIONS(440), - [anon_sym_de] = ACTIONS(438), - [anon_sym_61] = ACTIONS(440), - [anon_sym_abyss] = ACTIONS(440), - [anon_sym_ab] = ACTIONS(438), - [anon_sym_62] = ACTIONS(440), - [anon_sym_seabed] = ACTIONS(440), - [anon_sym_se] = ACTIONS(438), - [anon_sym_63] = ACTIONS(440), - [anon_sym_send] = ACTIONS(440), - [anon_sym_recv] = ACTIONS(440), - [anon_sym_tryrecv] = ACTIONS(440), - [anon_sym_reduce] = ACTIONS(440), - [anon_sym_SLASH] = ACTIONS(440), - [anon_sym_scan] = ACTIONS(440), - [anon_sym_BSLASH] = ACTIONS(440), - [anon_sym_each] = ACTIONS(440), - [anon_sym_64] = ACTIONS(440), - [anon_sym_rows] = ACTIONS(440), - [anon_sym_65] = ACTIONS(440), - [anon_sym_repeat] = ACTIONS(440), - [anon_sym_66] = ACTIONS(440), - [anon_sym_dip] = ACTIONS(440), - [anon_sym_di] = ACTIONS(438), - [anon_sym_67] = ACTIONS(440), - [anon_sym_gap] = ACTIONS(440), - [anon_sym_ga] = ACTIONS(438), - [anon_sym_68] = ACTIONS(440), - [anon_sym_oust] = ACTIONS(440), - [anon_sym_69] = ACTIONS(440), - [anon_sym_invert] = ACTIONS(440), - [anon_sym_70] = ACTIONS(440), - [anon_sym_spawn] = ACTIONS(440), - [anon_sym_pack] = ACTIONS(440), - [anon_sym_71] = ACTIONS(440), - [anon_sym_tribute] = ACTIONS(440), - [anon_sym_72] = ACTIONS(440), - [anon_sym_fold] = ACTIONS(440), - [anon_sym_73] = ACTIONS(440), - [anon_sym_distribute] = ACTIONS(440), - [anon_sym_74] = ACTIONS(440), - [anon_sym_table] = ACTIONS(440), - [anon_sym_75] = ACTIONS(440), - [anon_sym_cross] = ACTIONS(440), - [anon_sym_76] = ACTIONS(440), - [anon_sym_group] = ACTIONS(440), - [anon_sym_77] = ACTIONS(440), - [anon_sym_partition] = ACTIONS(440), - [anon_sym_78] = ACTIONS(440), - [anon_sym_both] = ACTIONS(440), - [anon_sym_79] = ACTIONS(440), - [anon_sym_bracket] = ACTIONS(440), - [anon_sym_80] = ACTIONS(440), - [anon_sym_fork] = ACTIONS(440), - [anon_sym_81] = ACTIONS(440), - [anon_sym_under] = ACTIONS(440), - [anon_sym_82] = ACTIONS(440), - [anon_sym_level] = ACTIONS(440), - [anon_sym_83] = ACTIONS(440), - [anon_sym_fill] = ACTIONS(440), - [anon_sym_84] = ACTIONS(440), - [anon_sym_bind] = ACTIONS(440), - [anon_sym_SQUOTE] = ACTIONS(440), - [anon_sym_QMARK] = ACTIONS(440), - [anon_sym_try] = ACTIONS(438), - [anon_sym_85] = ACTIONS(440), - [anon_sym_combinate] = ACTIONS(440), - [anon_sym_86] = ACTIONS(440), - [anon_sym_87] = ACTIONS(440), - [anon_sym_88] = ACTIONS(440), - [anon_sym_89] = ACTIONS(440), - [anon_sym_90] = ACTIONS(440), - [anon_sym_91] = ACTIONS(440), - [anon_sym_92] = ACTIONS(440), - [anon_sym_93] = ACTIONS(440), + [ts_builtin_sym_end] = ACTIONS(422), + [aux_sym_number_token1] = ACTIONS(420), + [anon_sym_os] = ACTIONS(420), + [anon_sym_Family] = ACTIONS(420), + [anon_sym_Arch] = ACTIONS(420), + [anon_sym_ExeExt] = ACTIONS(420), + [anon_sym_PllExt] = ACTIONS(420), + [anon_sym_Sep] = ACTIONS(420), + [aux_sym_character_token1] = ACTIONS(422), + [sym_string] = ACTIONS(422), + [sym_multiLineString] = ACTIONS(422), + [anon_sym_PIPE] = ACTIONS(422), + [sym_identifier] = ACTIONS(420), + [sym_identifier_deprecated] = ACTIONS(420), + [sym_system] = ACTIONS(422), + [sym_comment] = ACTIONS(420), + [sym_openParen] = ACTIONS(422), + [sym_openCurly] = ACTIONS(422), + [sym_openBracket] = ACTIONS(422), + [sym_underscore] = ACTIONS(422), + [sym_leftArrow] = ACTIONS(422), + [anon_sym_CARET] = ACTIONS(422), + [anon_sym_eta] = ACTIONS(422), + [anon_sym_] = ACTIONS(420), + [anon_sym_pi] = ACTIONS(420), + [anon_sym_2] = ACTIONS(420), + [anon_sym_tau] = ACTIONS(422), + [anon_sym_3] = ACTIONS(420), + [anon_sym_infinity] = ACTIONS(422), + [anon_sym_4] = ACTIONS(422), + [anon_sym_e] = ACTIONS(420), + [anon_sym_NaN] = ACTIONS(420), + [anon_sym_NumProcs] = ACTIONS(420), + [anon_sym_DOT] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(422), + [anon_sym_5] = ACTIONS(422), + [anon_sym_SEMI] = ACTIONS(422), + [anon_sym_identity] = ACTIONS(422), + [anon_sym_id] = ACTIONS(420), + [anon_sym_6] = ACTIONS(422), + [anon_sym_not] = ACTIONS(422), + [anon_sym_7] = ACTIONS(422), + [anon_sym_sign] = ACTIONS(422), + [anon_sym_8] = ACTIONS(422), + [anon_sym_BQUOTE] = ACTIONS(422), + [anon_sym_9] = ACTIONS(422), + [anon_sym_absolutevalue] = ACTIONS(422), + [anon_sym_10] = ACTIONS(422), + [anon_sym_sqrt] = ACTIONS(422), + [anon_sym_11] = ACTIONS(422), + [anon_sym_sine] = ACTIONS(422), + [anon_sym_12] = ACTIONS(422), + [anon_sym_floor] = ACTIONS(422), + [anon_sym_13] = ACTIONS(422), + [anon_sym_ceiling] = ACTIONS(422), + [anon_sym_14] = ACTIONS(422), + [anon_sym_round] = ACTIONS(422), + [anon_sym_15] = ACTIONS(422), + [anon_sym_EQ] = ACTIONS(422), + [anon_sym_BANG_EQ] = ACTIONS(422), + [anon_sym_16] = ACTIONS(422), + [anon_sym_LT] = ACTIONS(420), + [anon_sym_LT_EQ] = ACTIONS(422), + [anon_sym_17] = ACTIONS(422), + [anon_sym_GT] = ACTIONS(420), + [anon_sym_GT_EQ] = ACTIONS(422), + [anon_sym_18] = ACTIONS(422), + [anon_sym_PLUS] = ACTIONS(422), + [anon_sym_DASH] = ACTIONS(422), + [anon_sym_STAR] = ACTIONS(422), + [anon_sym_19] = ACTIONS(422), + [anon_sym_PERCENT] = ACTIONS(422), + [anon_sym_20] = ACTIONS(422), + [anon_sym_modulus] = ACTIONS(422), + [anon_sym_21] = ACTIONS(422), + [anon_sym_power] = ACTIONS(422), + [anon_sym_22] = ACTIONS(422), + [anon_sym_logarithm] = ACTIONS(422), + [anon_sym_23] = ACTIONS(422), + [anon_sym_minimum] = ACTIONS(422), + [anon_sym_24] = ACTIONS(422), + [anon_sym_maximum] = ACTIONS(422), + [anon_sym_25] = ACTIONS(422), + [anon_sym_atangent] = ACTIONS(422), + [anon_sym_26] = ACTIONS(422), + [anon_sym_length] = ACTIONS(422), + [anon_sym_27] = ACTIONS(422), + [anon_sym_shape] = ACTIONS(422), + [anon_sym_28] = ACTIONS(422), + [anon_sym_range] = ACTIONS(422), + [anon_sym_29] = ACTIONS(422), + [anon_sym_first] = ACTIONS(422), + [anon_sym_30] = ACTIONS(422), + [anon_sym_reverse] = ACTIONS(422), + [anon_sym_31] = ACTIONS(422), + [anon_sym_deshape] = ACTIONS(422), + [anon_sym_32] = ACTIONS(422), + [anon_sym_bits] = ACTIONS(422), + [anon_sym_33] = ACTIONS(422), + [anon_sym_transpose] = ACTIONS(422), + [anon_sym_34] = ACTIONS(422), + [anon_sym_rise] = ACTIONS(422), + [anon_sym_35] = ACTIONS(422), + [anon_sym_fall] = ACTIONS(422), + [anon_sym_36] = ACTIONS(422), + [anon_sym_where] = ACTIONS(422), + [anon_sym_37] = ACTIONS(422), + [anon_sym_classify] = ACTIONS(422), + [anon_sym_38] = ACTIONS(422), + [anon_sym_deduplicate] = ACTIONS(422), + [anon_sym_39] = ACTIONS(422), + [anon_sym_box] = ACTIONS(422), + [anon_sym_40] = ACTIONS(422), + [anon_sym_unbox] = ACTIONS(422), + [anon_sym_41] = ACTIONS(422), + [anon_sym_match] = ACTIONS(422), + [anon_sym_42] = ACTIONS(422), + [anon_sym_couple] = ACTIONS(422), + [anon_sym_43] = ACTIONS(422), + [anon_sym_join] = ACTIONS(422), + [anon_sym_44] = ACTIONS(422), + [anon_sym_select] = ACTIONS(422), + [anon_sym_45] = ACTIONS(422), + [anon_sym_pick] = ACTIONS(422), + [anon_sym_46] = ACTIONS(422), + [anon_sym_reshape] = ACTIONS(422), + [anon_sym_47] = ACTIONS(422), + [anon_sym_take] = ACTIONS(422), + [anon_sym_48] = ACTIONS(422), + [anon_sym_drop] = ACTIONS(422), + [anon_sym_49] = ACTIONS(422), + [anon_sym_rotate] = ACTIONS(422), + [anon_sym_50] = ACTIONS(422), + [anon_sym_windows] = ACTIONS(422), + [anon_sym_51] = ACTIONS(422), + [anon_sym_keep] = ACTIONS(422), + [anon_sym_52] = ACTIONS(422), + [anon_sym_find] = ACTIONS(422), + [anon_sym_53] = ACTIONS(422), + [anon_sym_member] = ACTIONS(422), + [anon_sym_54] = ACTIONS(422), + [anon_sym_indexof] = ACTIONS(422), + [anon_sym_55] = ACTIONS(422), + [anon_sym_assert] = ACTIONS(422), + [anon_sym_56] = ACTIONS(422), + [anon_sym_wait] = ACTIONS(422), + [anon_sym_break] = ACTIONS(422), + [anon_sym_57] = ACTIONS(422), + [anon_sym_parse] = ACTIONS(422), + [anon_sym_random] = ACTIONS(422), + [anon_sym_58] = ACTIONS(422), + [anon_sym_gen] = ACTIONS(422), + [anon_sym_deal] = ACTIONS(422), + [anon_sym_tag] = ACTIONS(422), + [anon_sym_now] = ACTIONS(422), + [anon_sym_type] = ACTIONS(422), + [anon_sym_59] = ACTIONS(422), + [anon_sym_dump] = ACTIONS(422), + [anon_sym_regex] = ACTIONS(422), + [anon_sym_utf] = ACTIONS(422), + [anon_sym_rock] = ACTIONS(422), + [anon_sym_60] = ACTIONS(422), + [anon_sym_surface] = ACTIONS(422), + [anon_sym_TILDE] = ACTIONS(422), + [anon_sym_deep] = ACTIONS(422), + [anon_sym_de] = ACTIONS(420), + [anon_sym_61] = ACTIONS(422), + [anon_sym_abyss] = ACTIONS(422), + [anon_sym_ab] = ACTIONS(420), + [anon_sym_62] = ACTIONS(422), + [anon_sym_seabed] = ACTIONS(422), + [anon_sym_se] = ACTIONS(420), + [anon_sym_63] = ACTIONS(422), + [anon_sym_send] = ACTIONS(422), + [anon_sym_recv] = ACTIONS(422), + [anon_sym_tryrecv] = ACTIONS(422), + [anon_sym_reduce] = ACTIONS(422), + [anon_sym_SLASH] = ACTIONS(422), + [anon_sym_scan] = ACTIONS(422), + [anon_sym_BSLASH] = ACTIONS(422), + [anon_sym_each] = ACTIONS(422), + [anon_sym_64] = ACTIONS(422), + [anon_sym_rows] = ACTIONS(422), + [anon_sym_65] = ACTIONS(422), + [anon_sym_repeat] = ACTIONS(422), + [anon_sym_66] = ACTIONS(422), + [anon_sym_dip] = ACTIONS(422), + [anon_sym_67] = ACTIONS(422), + [anon_sym_gap] = ACTIONS(422), + [anon_sym_68] = ACTIONS(422), + [anon_sym_69] = ACTIONS(422), + [anon_sym_invert] = ACTIONS(422), + [anon_sym_70] = ACTIONS(422), + [anon_sym_spawn] = ACTIONS(422), + [anon_sym_pack] = ACTIONS(422), + [anon_sym_71] = ACTIONS(422), + [anon_sym_tribute] = ACTIONS(422), + [anon_sym_72] = ACTIONS(422), + [anon_sym_reach] = ACTIONS(422), + [anon_sym_fold] = ACTIONS(422), + [anon_sym_73] = ACTIONS(422), + [anon_sym_distribute] = ACTIONS(422), + [anon_sym_74] = ACTIONS(422), + [anon_sym_table] = ACTIONS(422), + [anon_sym_75] = ACTIONS(422), + [anon_sym_cross] = ACTIONS(422), + [anon_sym_76] = ACTIONS(422), + [anon_sym_group] = ACTIONS(422), + [anon_sym_77] = ACTIONS(422), + [anon_sym_partition] = ACTIONS(422), + [anon_sym_78] = ACTIONS(422), + [anon_sym_both] = ACTIONS(422), + [anon_sym_79] = ACTIONS(422), + [anon_sym_bracket] = ACTIONS(422), + [anon_sym_80] = ACTIONS(422), + [anon_sym_fork] = ACTIONS(422), + [anon_sym_81] = ACTIONS(422), + [anon_sym_under] = ACTIONS(422), + [anon_sym_82] = ACTIONS(422), + [anon_sym_level] = ACTIONS(422), + [anon_sym_83] = ACTIONS(422), + [anon_sym_fill] = ACTIONS(422), + [anon_sym_84] = ACTIONS(422), + [anon_sym_bind] = ACTIONS(422), + [anon_sym_SQUOTE] = ACTIONS(422), + [anon_sym_QMARK] = ACTIONS(422), + [anon_sym_try] = ACTIONS(420), + [anon_sym_85] = ACTIONS(422), + [anon_sym_combinate] = ACTIONS(422), + [anon_sym_86] = ACTIONS(422), + [anon_sym_87] = ACTIONS(422), + [anon_sym_88] = ACTIONS(422), + [anon_sym_89] = ACTIONS(422), + [anon_sym_90] = ACTIONS(422), + [anon_sym_91] = ACTIONS(422), + [anon_sym_92] = ACTIONS(422), + [anon_sym_93] = ACTIONS(422), [sym__whitespace] = ACTIONS(5), - [sym__end_of_line] = ACTIONS(440), + [sym__end_of_line] = ACTIONS(422), }, [89] = { - [ts_builtin_sym_end] = ACTIONS(448), - [aux_sym_number_token1] = ACTIONS(446), - [anon_sym_os] = ACTIONS(446), - [anon_sym_Family] = ACTIONS(446), - [anon_sym_Arch] = ACTIONS(446), - [anon_sym_ExeExt] = ACTIONS(446), - [anon_sym_PllExt] = ACTIONS(446), - [anon_sym_Sep] = ACTIONS(446), - [aux_sym_character_token1] = ACTIONS(448), - [sym_string] = ACTIONS(448), - [sym_multiLineString] = ACTIONS(448), - [anon_sym_PIPE] = ACTIONS(448), - [sym_identifier] = ACTIONS(446), - [sym_identifier_deprecated] = ACTIONS(446), - [sym_system] = ACTIONS(448), - [sym_comment] = ACTIONS(446), - [sym_openParen] = ACTIONS(448), - [sym_openCurly] = ACTIONS(448), - [sym_openBracket] = ACTIONS(448), - [sym_underscore] = ACTIONS(448), - [sym_leftArrow] = ACTIONS(448), - [anon_sym_CARET] = ACTIONS(448), - [anon_sym_eta] = ACTIONS(448), - [anon_sym_] = ACTIONS(446), - [anon_sym_pi] = ACTIONS(446), - [anon_sym_2] = ACTIONS(446), - [anon_sym_tau] = ACTIONS(448), - [anon_sym_3] = ACTIONS(446), - [anon_sym_infinity] = ACTIONS(448), - [anon_sym_4] = ACTIONS(448), - [anon_sym_e] = ACTIONS(446), - [anon_sym_NaN] = ACTIONS(446), - [anon_sym_NumProcs] = ACTIONS(446), - [anon_sym_DOT] = ACTIONS(448), - [anon_sym_COMMA] = ACTIONS(448), - [anon_sym_5] = ACTIONS(448), - [anon_sym_SEMI] = ACTIONS(448), - [anon_sym_identity] = ACTIONS(448), - [anon_sym_id] = ACTIONS(446), - [anon_sym_6] = ACTIONS(448), - [anon_sym_not] = ACTIONS(448), - [anon_sym_7] = ACTIONS(448), - [anon_sym_sign] = ACTIONS(448), - [anon_sym_8] = ACTIONS(448), - [anon_sym_BQUOTE] = ACTIONS(448), - [anon_sym_9] = ACTIONS(448), - [anon_sym_absolutevalue] = ACTIONS(448), - [anon_sym_10] = ACTIONS(448), - [anon_sym_sqrt] = ACTIONS(448), - [anon_sym_11] = ACTIONS(448), - [anon_sym_sine] = ACTIONS(448), - [anon_sym_12] = ACTIONS(448), - [anon_sym_floor] = ACTIONS(448), - [anon_sym_13] = ACTIONS(448), - [anon_sym_ceiling] = ACTIONS(448), - [anon_sym_14] = ACTIONS(448), - [anon_sym_round] = ACTIONS(448), - [anon_sym_15] = ACTIONS(448), - [anon_sym_EQ] = ACTIONS(448), - [anon_sym_BANG_EQ] = ACTIONS(448), - [anon_sym_16] = ACTIONS(448), - [anon_sym_LT] = ACTIONS(446), - [anon_sym_LT_EQ] = ACTIONS(448), - [anon_sym_17] = ACTIONS(448), - [anon_sym_GT] = ACTIONS(446), - [anon_sym_GT_EQ] = ACTIONS(448), - [anon_sym_18] = ACTIONS(448), - [anon_sym_PLUS] = ACTIONS(448), - [anon_sym_DASH] = ACTIONS(448), - [anon_sym_STAR] = ACTIONS(448), - [anon_sym_19] = ACTIONS(448), - [anon_sym_PERCENT] = ACTIONS(448), - [anon_sym_20] = ACTIONS(448), - [anon_sym_modulus] = ACTIONS(448), - [anon_sym_21] = ACTIONS(448), - [anon_sym_power] = ACTIONS(448), - [anon_sym_22] = ACTIONS(448), - [anon_sym_logarithm] = ACTIONS(448), - [anon_sym_23] = ACTIONS(448), - [anon_sym_minimum] = ACTIONS(448), - [anon_sym_24] = ACTIONS(448), - [anon_sym_maximum] = ACTIONS(448), - [anon_sym_25] = ACTIONS(448), - [anon_sym_atangent] = ACTIONS(448), - [anon_sym_26] = ACTIONS(448), - [anon_sym_length] = ACTIONS(448), - [anon_sym_27] = ACTIONS(448), - [anon_sym_shape] = ACTIONS(448), - [anon_sym_28] = ACTIONS(448), - [anon_sym_range] = ACTIONS(448), - [anon_sym_29] = ACTIONS(448), - [anon_sym_first] = ACTIONS(448), - [anon_sym_30] = ACTIONS(448), - [anon_sym_reverse] = ACTIONS(448), - [anon_sym_31] = ACTIONS(448), - [anon_sym_deshape] = ACTIONS(448), - [anon_sym_32] = ACTIONS(448), - [anon_sym_bits] = ACTIONS(448), - [anon_sym_33] = ACTIONS(448), - [anon_sym_transpose] = ACTIONS(448), - [anon_sym_34] = ACTIONS(448), - [anon_sym_rise] = ACTIONS(448), - [anon_sym_35] = ACTIONS(448), - [anon_sym_fall] = ACTIONS(448), - [anon_sym_36] = ACTIONS(448), - [anon_sym_where] = ACTIONS(448), - [anon_sym_37] = ACTIONS(448), - [anon_sym_classify] = ACTIONS(448), - [anon_sym_38] = ACTIONS(448), - [anon_sym_deduplicate] = ACTIONS(448), - [anon_sym_39] = ACTIONS(448), - [anon_sym_box] = ACTIONS(448), - [anon_sym_40] = ACTIONS(448), - [anon_sym_unbox] = ACTIONS(448), - [anon_sym_41] = ACTIONS(448), - [anon_sym_match] = ACTIONS(448), - [anon_sym_42] = ACTIONS(448), - [anon_sym_couple] = ACTIONS(448), - [anon_sym_43] = ACTIONS(448), - [anon_sym_join] = ACTIONS(448), - [anon_sym_44] = ACTIONS(448), - [anon_sym_select] = ACTIONS(448), - [anon_sym_45] = ACTIONS(448), - [anon_sym_pick] = ACTIONS(448), - [anon_sym_46] = ACTIONS(448), - [anon_sym_reshape] = ACTIONS(448), - [anon_sym_47] = ACTIONS(448), - [anon_sym_take] = ACTIONS(448), - [anon_sym_48] = ACTIONS(448), - [anon_sym_drop] = ACTIONS(448), - [anon_sym_49] = ACTIONS(448), - [anon_sym_rotate] = ACTIONS(448), - [anon_sym_50] = ACTIONS(448), - [anon_sym_windows] = ACTIONS(448), - [anon_sym_51] = ACTIONS(448), - [anon_sym_keep] = ACTIONS(448), - [anon_sym_52] = ACTIONS(448), - [anon_sym_find] = ACTIONS(448), - [anon_sym_53] = ACTIONS(448), - [anon_sym_member] = ACTIONS(448), - [anon_sym_54] = ACTIONS(448), - [anon_sym_indexof] = ACTIONS(448), - [anon_sym_55] = ACTIONS(448), - [anon_sym_assert] = ACTIONS(448), - [anon_sym_56] = ACTIONS(448), - [anon_sym_wait] = ACTIONS(448), - [anon_sym_break] = ACTIONS(448), - [anon_sym_57] = ACTIONS(448), - [anon_sym_parse] = ACTIONS(448), - [anon_sym_random] = ACTIONS(448), - [anon_sym_58] = ACTIONS(448), - [anon_sym_gen] = ACTIONS(448), - [anon_sym_deal] = ACTIONS(448), - [anon_sym_tag] = ACTIONS(448), - [anon_sym_now] = ACTIONS(448), - [anon_sym_type] = ACTIONS(448), - [anon_sym_59] = ACTIONS(448), - [anon_sym_dump] = ACTIONS(448), - [anon_sym_regex] = ACTIONS(448), - [anon_sym_utf] = ACTIONS(448), - [anon_sym_rock] = ACTIONS(448), - [anon_sym_60] = ACTIONS(448), - [anon_sym_surface] = ACTIONS(448), - [anon_sym_TILDE] = ACTIONS(448), - [anon_sym_deep] = ACTIONS(448), - [anon_sym_de] = ACTIONS(446), - [anon_sym_61] = ACTIONS(448), - [anon_sym_abyss] = ACTIONS(448), - [anon_sym_ab] = ACTIONS(446), - [anon_sym_62] = ACTIONS(448), - [anon_sym_seabed] = ACTIONS(448), - [anon_sym_se] = ACTIONS(446), - [anon_sym_63] = ACTIONS(448), - [anon_sym_send] = ACTIONS(448), - [anon_sym_recv] = ACTIONS(448), - [anon_sym_tryrecv] = ACTIONS(448), - [anon_sym_reduce] = ACTIONS(448), - [anon_sym_SLASH] = ACTIONS(448), - [anon_sym_scan] = ACTIONS(448), - [anon_sym_BSLASH] = ACTIONS(448), - [anon_sym_each] = ACTIONS(448), - [anon_sym_64] = ACTIONS(448), - [anon_sym_rows] = ACTIONS(448), - [anon_sym_65] = ACTIONS(448), - [anon_sym_repeat] = ACTIONS(448), - [anon_sym_66] = ACTIONS(448), - [anon_sym_dip] = ACTIONS(448), - [anon_sym_di] = ACTIONS(446), - [anon_sym_67] = ACTIONS(448), - [anon_sym_gap] = ACTIONS(448), - [anon_sym_ga] = ACTIONS(446), - [anon_sym_68] = ACTIONS(448), - [anon_sym_oust] = ACTIONS(448), - [anon_sym_69] = ACTIONS(448), - [anon_sym_invert] = ACTIONS(448), - [anon_sym_70] = ACTIONS(448), - [anon_sym_spawn] = ACTIONS(448), - [anon_sym_pack] = ACTIONS(448), - [anon_sym_71] = ACTIONS(448), - [anon_sym_tribute] = ACTIONS(448), - [anon_sym_72] = ACTIONS(448), - [anon_sym_fold] = ACTIONS(448), - [anon_sym_73] = ACTIONS(448), - [anon_sym_distribute] = ACTIONS(448), - [anon_sym_74] = ACTIONS(448), - [anon_sym_table] = ACTIONS(448), - [anon_sym_75] = ACTIONS(448), - [anon_sym_cross] = ACTIONS(448), - [anon_sym_76] = ACTIONS(448), - [anon_sym_group] = ACTIONS(448), - [anon_sym_77] = ACTIONS(448), - [anon_sym_partition] = ACTIONS(448), - [anon_sym_78] = ACTIONS(448), - [anon_sym_both] = ACTIONS(448), - [anon_sym_79] = ACTIONS(448), - [anon_sym_bracket] = ACTIONS(448), - [anon_sym_80] = ACTIONS(448), - [anon_sym_fork] = ACTIONS(448), - [anon_sym_81] = ACTIONS(448), - [anon_sym_under] = ACTIONS(448), - [anon_sym_82] = ACTIONS(448), - [anon_sym_level] = ACTIONS(448), - [anon_sym_83] = ACTIONS(448), - [anon_sym_fill] = ACTIONS(448), - [anon_sym_84] = ACTIONS(448), - [anon_sym_bind] = ACTIONS(448), - [anon_sym_SQUOTE] = ACTIONS(448), - [anon_sym_QMARK] = ACTIONS(448), - [anon_sym_try] = ACTIONS(446), - [anon_sym_85] = ACTIONS(448), - [anon_sym_combinate] = ACTIONS(448), - [anon_sym_86] = ACTIONS(448), - [anon_sym_87] = ACTIONS(448), - [anon_sym_88] = ACTIONS(448), - [anon_sym_89] = ACTIONS(448), - [anon_sym_90] = ACTIONS(448), - [anon_sym_91] = ACTIONS(448), - [anon_sym_92] = ACTIONS(448), - [anon_sym_93] = ACTIONS(448), + [ts_builtin_sym_end] = ACTIONS(430), + [aux_sym_number_token1] = ACTIONS(428), + [anon_sym_os] = ACTIONS(428), + [anon_sym_Family] = ACTIONS(428), + [anon_sym_Arch] = ACTIONS(428), + [anon_sym_ExeExt] = ACTIONS(428), + [anon_sym_PllExt] = ACTIONS(428), + [anon_sym_Sep] = ACTIONS(428), + [aux_sym_character_token1] = ACTIONS(430), + [sym_string] = ACTIONS(430), + [sym_multiLineString] = ACTIONS(430), + [anon_sym_PIPE] = ACTIONS(430), + [sym_identifier] = ACTIONS(428), + [sym_identifier_deprecated] = ACTIONS(428), + [sym_system] = ACTIONS(430), + [sym_comment] = ACTIONS(428), + [sym_openParen] = ACTIONS(430), + [sym_openCurly] = ACTIONS(430), + [sym_openBracket] = ACTIONS(430), + [sym_underscore] = ACTIONS(430), + [sym_leftArrow] = ACTIONS(430), + [anon_sym_CARET] = ACTIONS(430), + [anon_sym_eta] = ACTIONS(430), + [anon_sym_] = ACTIONS(428), + [anon_sym_pi] = ACTIONS(428), + [anon_sym_2] = ACTIONS(428), + [anon_sym_tau] = ACTIONS(430), + [anon_sym_3] = ACTIONS(428), + [anon_sym_infinity] = ACTIONS(430), + [anon_sym_4] = ACTIONS(430), + [anon_sym_e] = ACTIONS(428), + [anon_sym_NaN] = ACTIONS(428), + [anon_sym_NumProcs] = ACTIONS(428), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_COMMA] = ACTIONS(430), + [anon_sym_5] = ACTIONS(430), + [anon_sym_SEMI] = ACTIONS(430), + [anon_sym_identity] = ACTIONS(430), + [anon_sym_id] = ACTIONS(428), + [anon_sym_6] = ACTIONS(430), + [anon_sym_not] = ACTIONS(430), + [anon_sym_7] = ACTIONS(430), + [anon_sym_sign] = ACTIONS(430), + [anon_sym_8] = ACTIONS(430), + [anon_sym_BQUOTE] = ACTIONS(430), + [anon_sym_9] = ACTIONS(430), + [anon_sym_absolutevalue] = ACTIONS(430), + [anon_sym_10] = ACTIONS(430), + [anon_sym_sqrt] = ACTIONS(430), + [anon_sym_11] = ACTIONS(430), + [anon_sym_sine] = ACTIONS(430), + [anon_sym_12] = ACTIONS(430), + [anon_sym_floor] = ACTIONS(430), + [anon_sym_13] = ACTIONS(430), + [anon_sym_ceiling] = ACTIONS(430), + [anon_sym_14] = ACTIONS(430), + [anon_sym_round] = ACTIONS(430), + [anon_sym_15] = ACTIONS(430), + [anon_sym_EQ] = ACTIONS(430), + [anon_sym_BANG_EQ] = ACTIONS(430), + [anon_sym_16] = ACTIONS(430), + [anon_sym_LT] = ACTIONS(428), + [anon_sym_LT_EQ] = ACTIONS(430), + [anon_sym_17] = ACTIONS(430), + [anon_sym_GT] = ACTIONS(428), + [anon_sym_GT_EQ] = ACTIONS(430), + [anon_sym_18] = ACTIONS(430), + [anon_sym_PLUS] = ACTIONS(430), + [anon_sym_DASH] = ACTIONS(430), + [anon_sym_STAR] = ACTIONS(430), + [anon_sym_19] = ACTIONS(430), + [anon_sym_PERCENT] = ACTIONS(430), + [anon_sym_20] = ACTIONS(430), + [anon_sym_modulus] = ACTIONS(430), + [anon_sym_21] = ACTIONS(430), + [anon_sym_power] = ACTIONS(430), + [anon_sym_22] = ACTIONS(430), + [anon_sym_logarithm] = ACTIONS(430), + [anon_sym_23] = ACTIONS(430), + [anon_sym_minimum] = ACTIONS(430), + [anon_sym_24] = ACTIONS(430), + [anon_sym_maximum] = ACTIONS(430), + [anon_sym_25] = ACTIONS(430), + [anon_sym_atangent] = ACTIONS(430), + [anon_sym_26] = ACTIONS(430), + [anon_sym_length] = ACTIONS(430), + [anon_sym_27] = ACTIONS(430), + [anon_sym_shape] = ACTIONS(430), + [anon_sym_28] = ACTIONS(430), + [anon_sym_range] = ACTIONS(430), + [anon_sym_29] = ACTIONS(430), + [anon_sym_first] = ACTIONS(430), + [anon_sym_30] = ACTIONS(430), + [anon_sym_reverse] = ACTIONS(430), + [anon_sym_31] = ACTIONS(430), + [anon_sym_deshape] = ACTIONS(430), + [anon_sym_32] = ACTIONS(430), + [anon_sym_bits] = ACTIONS(430), + [anon_sym_33] = ACTIONS(430), + [anon_sym_transpose] = ACTIONS(430), + [anon_sym_34] = ACTIONS(430), + [anon_sym_rise] = ACTIONS(430), + [anon_sym_35] = ACTIONS(430), + [anon_sym_fall] = ACTIONS(430), + [anon_sym_36] = ACTIONS(430), + [anon_sym_where] = ACTIONS(430), + [anon_sym_37] = ACTIONS(430), + [anon_sym_classify] = ACTIONS(430), + [anon_sym_38] = ACTIONS(430), + [anon_sym_deduplicate] = ACTIONS(430), + [anon_sym_39] = ACTIONS(430), + [anon_sym_box] = ACTIONS(430), + [anon_sym_40] = ACTIONS(430), + [anon_sym_unbox] = ACTIONS(430), + [anon_sym_41] = ACTIONS(430), + [anon_sym_match] = ACTIONS(430), + [anon_sym_42] = ACTIONS(430), + [anon_sym_couple] = ACTIONS(430), + [anon_sym_43] = ACTIONS(430), + [anon_sym_join] = ACTIONS(430), + [anon_sym_44] = ACTIONS(430), + [anon_sym_select] = ACTIONS(430), + [anon_sym_45] = ACTIONS(430), + [anon_sym_pick] = ACTIONS(430), + [anon_sym_46] = ACTIONS(430), + [anon_sym_reshape] = ACTIONS(430), + [anon_sym_47] = ACTIONS(430), + [anon_sym_take] = ACTIONS(430), + [anon_sym_48] = ACTIONS(430), + [anon_sym_drop] = ACTIONS(430), + [anon_sym_49] = ACTIONS(430), + [anon_sym_rotate] = ACTIONS(430), + [anon_sym_50] = ACTIONS(430), + [anon_sym_windows] = ACTIONS(430), + [anon_sym_51] = ACTIONS(430), + [anon_sym_keep] = ACTIONS(430), + [anon_sym_52] = ACTIONS(430), + [anon_sym_find] = ACTIONS(430), + [anon_sym_53] = ACTIONS(430), + [anon_sym_member] = ACTIONS(430), + [anon_sym_54] = ACTIONS(430), + [anon_sym_indexof] = ACTIONS(430), + [anon_sym_55] = ACTIONS(430), + [anon_sym_assert] = ACTIONS(430), + [anon_sym_56] = ACTIONS(430), + [anon_sym_wait] = ACTIONS(430), + [anon_sym_break] = ACTIONS(430), + [anon_sym_57] = ACTIONS(430), + [anon_sym_parse] = ACTIONS(430), + [anon_sym_random] = ACTIONS(430), + [anon_sym_58] = ACTIONS(430), + [anon_sym_gen] = ACTIONS(430), + [anon_sym_deal] = ACTIONS(430), + [anon_sym_tag] = ACTIONS(430), + [anon_sym_now] = ACTIONS(430), + [anon_sym_type] = ACTIONS(430), + [anon_sym_59] = ACTIONS(430), + [anon_sym_dump] = ACTIONS(430), + [anon_sym_regex] = ACTIONS(430), + [anon_sym_utf] = ACTIONS(430), + [anon_sym_rock] = ACTIONS(430), + [anon_sym_60] = ACTIONS(430), + [anon_sym_surface] = ACTIONS(430), + [anon_sym_TILDE] = ACTIONS(430), + [anon_sym_deep] = ACTIONS(430), + [anon_sym_de] = ACTIONS(428), + [anon_sym_61] = ACTIONS(430), + [anon_sym_abyss] = ACTIONS(430), + [anon_sym_ab] = ACTIONS(428), + [anon_sym_62] = ACTIONS(430), + [anon_sym_seabed] = ACTIONS(430), + [anon_sym_se] = ACTIONS(428), + [anon_sym_63] = ACTIONS(430), + [anon_sym_send] = ACTIONS(430), + [anon_sym_recv] = ACTIONS(430), + [anon_sym_tryrecv] = ACTIONS(430), + [anon_sym_reduce] = ACTIONS(430), + [anon_sym_SLASH] = ACTIONS(430), + [anon_sym_scan] = ACTIONS(430), + [anon_sym_BSLASH] = ACTIONS(430), + [anon_sym_each] = ACTIONS(430), + [anon_sym_64] = ACTIONS(430), + [anon_sym_rows] = ACTIONS(430), + [anon_sym_65] = ACTIONS(430), + [anon_sym_repeat] = ACTIONS(430), + [anon_sym_66] = ACTIONS(430), + [anon_sym_dip] = ACTIONS(430), + [anon_sym_67] = ACTIONS(430), + [anon_sym_gap] = ACTIONS(430), + [anon_sym_68] = ACTIONS(430), + [anon_sym_69] = ACTIONS(430), + [anon_sym_invert] = ACTIONS(430), + [anon_sym_70] = ACTIONS(430), + [anon_sym_spawn] = ACTIONS(430), + [anon_sym_pack] = ACTIONS(430), + [anon_sym_71] = ACTIONS(430), + [anon_sym_tribute] = ACTIONS(430), + [anon_sym_72] = ACTIONS(430), + [anon_sym_reach] = ACTIONS(430), + [anon_sym_fold] = ACTIONS(430), + [anon_sym_73] = ACTIONS(430), + [anon_sym_distribute] = ACTIONS(430), + [anon_sym_74] = ACTIONS(430), + [anon_sym_table] = ACTIONS(430), + [anon_sym_75] = ACTIONS(430), + [anon_sym_cross] = ACTIONS(430), + [anon_sym_76] = ACTIONS(430), + [anon_sym_group] = ACTIONS(430), + [anon_sym_77] = ACTIONS(430), + [anon_sym_partition] = ACTIONS(430), + [anon_sym_78] = ACTIONS(430), + [anon_sym_both] = ACTIONS(430), + [anon_sym_79] = ACTIONS(430), + [anon_sym_bracket] = ACTIONS(430), + [anon_sym_80] = ACTIONS(430), + [anon_sym_fork] = ACTIONS(430), + [anon_sym_81] = ACTIONS(430), + [anon_sym_under] = ACTIONS(430), + [anon_sym_82] = ACTIONS(430), + [anon_sym_level] = ACTIONS(430), + [anon_sym_83] = ACTIONS(430), + [anon_sym_fill] = ACTIONS(430), + [anon_sym_84] = ACTIONS(430), + [anon_sym_bind] = ACTIONS(430), + [anon_sym_SQUOTE] = ACTIONS(430), + [anon_sym_QMARK] = ACTIONS(430), + [anon_sym_try] = ACTIONS(428), + [anon_sym_85] = ACTIONS(430), + [anon_sym_combinate] = ACTIONS(430), + [anon_sym_86] = ACTIONS(430), + [anon_sym_87] = ACTIONS(430), + [anon_sym_88] = ACTIONS(430), + [anon_sym_89] = ACTIONS(430), + [anon_sym_90] = ACTIONS(430), + [anon_sym_91] = ACTIONS(430), + [anon_sym_92] = ACTIONS(430), + [anon_sym_93] = ACTIONS(430), [sym__whitespace] = ACTIONS(5), - [sym__end_of_line] = ACTIONS(448), + [sym__end_of_line] = ACTIONS(430), }, [90] = { - [ts_builtin_sym_end] = ACTIONS(504), - [aux_sym_number_token1] = ACTIONS(502), - [anon_sym_os] = ACTIONS(502), - [anon_sym_Family] = ACTIONS(502), - [anon_sym_Arch] = ACTIONS(502), - [anon_sym_ExeExt] = ACTIONS(502), - [anon_sym_PllExt] = ACTIONS(502), - [anon_sym_Sep] = ACTIONS(502), - [aux_sym_character_token1] = ACTIONS(504), - [sym_string] = ACTIONS(504), - [sym_multiLineString] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(504), - [sym_identifier] = ACTIONS(502), - [sym_identifier_deprecated] = ACTIONS(502), - [sym_system] = ACTIONS(504), - [sym_comment] = ACTIONS(502), - [sym_openParen] = ACTIONS(504), - [sym_openCurly] = ACTIONS(504), - [sym_openBracket] = ACTIONS(504), - [sym_underscore] = ACTIONS(504), - [sym_leftArrow] = ACTIONS(504), - [anon_sym_CARET] = ACTIONS(504), - [anon_sym_eta] = ACTIONS(504), - [anon_sym_] = ACTIONS(502), - [anon_sym_pi] = ACTIONS(502), - [anon_sym_2] = ACTIONS(502), - [anon_sym_tau] = ACTIONS(504), - [anon_sym_3] = ACTIONS(502), - [anon_sym_infinity] = ACTIONS(504), - [anon_sym_4] = ACTIONS(504), - [anon_sym_e] = ACTIONS(502), - [anon_sym_NaN] = ACTIONS(502), - [anon_sym_NumProcs] = ACTIONS(502), - [anon_sym_DOT] = ACTIONS(504), - [anon_sym_COMMA] = ACTIONS(504), - [anon_sym_5] = ACTIONS(504), - [anon_sym_SEMI] = ACTIONS(504), - [anon_sym_identity] = ACTIONS(504), - [anon_sym_id] = ACTIONS(502), - [anon_sym_6] = ACTIONS(504), - [anon_sym_not] = ACTIONS(504), - [anon_sym_7] = ACTIONS(504), - [anon_sym_sign] = ACTIONS(504), - [anon_sym_8] = ACTIONS(504), - [anon_sym_BQUOTE] = ACTIONS(504), - [anon_sym_9] = ACTIONS(504), - [anon_sym_absolutevalue] = ACTIONS(504), - [anon_sym_10] = ACTIONS(504), - [anon_sym_sqrt] = ACTIONS(504), - [anon_sym_11] = ACTIONS(504), - [anon_sym_sine] = ACTIONS(504), - [anon_sym_12] = ACTIONS(504), - [anon_sym_floor] = ACTIONS(504), - [anon_sym_13] = ACTIONS(504), - [anon_sym_ceiling] = ACTIONS(504), - [anon_sym_14] = ACTIONS(504), - [anon_sym_round] = ACTIONS(504), - [anon_sym_15] = ACTIONS(504), - [anon_sym_EQ] = ACTIONS(504), - [anon_sym_BANG_EQ] = ACTIONS(504), - [anon_sym_16] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(502), - [anon_sym_LT_EQ] = ACTIONS(504), - [anon_sym_17] = ACTIONS(504), - [anon_sym_GT] = ACTIONS(502), - [anon_sym_GT_EQ] = ACTIONS(504), - [anon_sym_18] = ACTIONS(504), - [anon_sym_PLUS] = ACTIONS(504), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_19] = ACTIONS(504), - [anon_sym_PERCENT] = ACTIONS(504), - [anon_sym_20] = ACTIONS(504), - [anon_sym_modulus] = ACTIONS(504), - [anon_sym_21] = ACTIONS(504), - [anon_sym_power] = ACTIONS(504), - [anon_sym_22] = ACTIONS(504), - [anon_sym_logarithm] = ACTIONS(504), - [anon_sym_23] = ACTIONS(504), - [anon_sym_minimum] = ACTIONS(504), - [anon_sym_24] = ACTIONS(504), - [anon_sym_maximum] = ACTIONS(504), - [anon_sym_25] = ACTIONS(504), - [anon_sym_atangent] = ACTIONS(504), - [anon_sym_26] = ACTIONS(504), - [anon_sym_length] = ACTIONS(504), - [anon_sym_27] = ACTIONS(504), - [anon_sym_shape] = ACTIONS(504), - [anon_sym_28] = ACTIONS(504), - [anon_sym_range] = ACTIONS(504), - [anon_sym_29] = ACTIONS(504), - [anon_sym_first] = ACTIONS(504), - [anon_sym_30] = ACTIONS(504), - [anon_sym_reverse] = ACTIONS(504), - [anon_sym_31] = ACTIONS(504), - [anon_sym_deshape] = ACTIONS(504), - [anon_sym_32] = ACTIONS(504), - [anon_sym_bits] = ACTIONS(504), - [anon_sym_33] = ACTIONS(504), - [anon_sym_transpose] = ACTIONS(504), - [anon_sym_34] = ACTIONS(504), - [anon_sym_rise] = ACTIONS(504), - [anon_sym_35] = ACTIONS(504), - [anon_sym_fall] = ACTIONS(504), - [anon_sym_36] = ACTIONS(504), - [anon_sym_where] = ACTIONS(504), - [anon_sym_37] = ACTIONS(504), - [anon_sym_classify] = ACTIONS(504), - [anon_sym_38] = ACTIONS(504), - [anon_sym_deduplicate] = ACTIONS(504), - [anon_sym_39] = ACTIONS(504), - [anon_sym_box] = ACTIONS(504), - [anon_sym_40] = ACTIONS(504), - [anon_sym_unbox] = ACTIONS(504), - [anon_sym_41] = ACTIONS(504), - [anon_sym_match] = ACTIONS(504), - [anon_sym_42] = ACTIONS(504), - [anon_sym_couple] = ACTIONS(504), - [anon_sym_43] = ACTIONS(504), - [anon_sym_join] = ACTIONS(504), - [anon_sym_44] = ACTIONS(504), - [anon_sym_select] = ACTIONS(504), - [anon_sym_45] = ACTIONS(504), - [anon_sym_pick] = ACTIONS(504), - [anon_sym_46] = ACTIONS(504), - [anon_sym_reshape] = ACTIONS(504), - [anon_sym_47] = ACTIONS(504), - [anon_sym_take] = ACTIONS(504), - [anon_sym_48] = ACTIONS(504), - [anon_sym_drop] = ACTIONS(504), - [anon_sym_49] = ACTIONS(504), - [anon_sym_rotate] = ACTIONS(504), - [anon_sym_50] = ACTIONS(504), - [anon_sym_windows] = ACTIONS(504), - [anon_sym_51] = ACTIONS(504), - [anon_sym_keep] = ACTIONS(504), - [anon_sym_52] = ACTIONS(504), - [anon_sym_find] = ACTIONS(504), - [anon_sym_53] = ACTIONS(504), - [anon_sym_member] = ACTIONS(504), - [anon_sym_54] = ACTIONS(504), - [anon_sym_indexof] = ACTIONS(504), - [anon_sym_55] = ACTIONS(504), - [anon_sym_assert] = ACTIONS(504), - [anon_sym_56] = ACTIONS(504), - [anon_sym_wait] = ACTIONS(504), - [anon_sym_break] = ACTIONS(504), - [anon_sym_57] = ACTIONS(504), - [anon_sym_parse] = ACTIONS(504), - [anon_sym_random] = ACTIONS(504), - [anon_sym_58] = ACTIONS(504), - [anon_sym_gen] = ACTIONS(504), - [anon_sym_deal] = ACTIONS(504), - [anon_sym_tag] = ACTIONS(504), - [anon_sym_now] = ACTIONS(504), - [anon_sym_type] = ACTIONS(504), - [anon_sym_59] = ACTIONS(504), - [anon_sym_dump] = ACTIONS(504), - [anon_sym_regex] = ACTIONS(504), - [anon_sym_utf] = ACTIONS(504), - [anon_sym_rock] = ACTIONS(504), - [anon_sym_60] = ACTIONS(504), - [anon_sym_surface] = ACTIONS(504), - [anon_sym_TILDE] = ACTIONS(504), - [anon_sym_deep] = ACTIONS(504), - [anon_sym_de] = ACTIONS(502), - [anon_sym_61] = ACTIONS(504), - [anon_sym_abyss] = ACTIONS(504), - [anon_sym_ab] = ACTIONS(502), - [anon_sym_62] = ACTIONS(504), - [anon_sym_seabed] = ACTIONS(504), - [anon_sym_se] = ACTIONS(502), - [anon_sym_63] = ACTIONS(504), - [anon_sym_send] = ACTIONS(504), - [anon_sym_recv] = ACTIONS(504), - [anon_sym_tryrecv] = ACTIONS(504), - [anon_sym_reduce] = ACTIONS(504), - [anon_sym_SLASH] = ACTIONS(504), - [anon_sym_scan] = ACTIONS(504), - [anon_sym_BSLASH] = ACTIONS(504), - [anon_sym_each] = ACTIONS(504), - [anon_sym_64] = ACTIONS(504), - [anon_sym_rows] = ACTIONS(504), - [anon_sym_65] = ACTIONS(504), - [anon_sym_repeat] = ACTIONS(504), - [anon_sym_66] = ACTIONS(504), - [anon_sym_dip] = ACTIONS(504), - [anon_sym_di] = ACTIONS(502), - [anon_sym_67] = ACTIONS(504), - [anon_sym_gap] = ACTIONS(504), - [anon_sym_ga] = ACTIONS(502), - [anon_sym_68] = ACTIONS(504), - [anon_sym_oust] = ACTIONS(504), - [anon_sym_69] = ACTIONS(504), - [anon_sym_invert] = ACTIONS(504), - [anon_sym_70] = ACTIONS(504), - [anon_sym_spawn] = ACTIONS(504), - [anon_sym_pack] = ACTIONS(504), - [anon_sym_71] = ACTIONS(504), - [anon_sym_tribute] = ACTIONS(504), - [anon_sym_72] = ACTIONS(504), - [anon_sym_fold] = ACTIONS(504), - [anon_sym_73] = ACTIONS(504), - [anon_sym_distribute] = ACTIONS(504), - [anon_sym_74] = ACTIONS(504), - [anon_sym_table] = ACTIONS(504), - [anon_sym_75] = ACTIONS(504), - [anon_sym_cross] = ACTIONS(504), - [anon_sym_76] = ACTIONS(504), - [anon_sym_group] = ACTIONS(504), - [anon_sym_77] = ACTIONS(504), - [anon_sym_partition] = ACTIONS(504), - [anon_sym_78] = ACTIONS(504), - [anon_sym_both] = ACTIONS(504), - [anon_sym_79] = ACTIONS(504), - [anon_sym_bracket] = ACTIONS(504), - [anon_sym_80] = ACTIONS(504), - [anon_sym_fork] = ACTIONS(504), - [anon_sym_81] = ACTIONS(504), - [anon_sym_under] = ACTIONS(504), - [anon_sym_82] = ACTIONS(504), - [anon_sym_level] = ACTIONS(504), - [anon_sym_83] = ACTIONS(504), - [anon_sym_fill] = ACTIONS(504), - [anon_sym_84] = ACTIONS(504), - [anon_sym_bind] = ACTIONS(504), - [anon_sym_SQUOTE] = ACTIONS(504), - [anon_sym_QMARK] = ACTIONS(504), - [anon_sym_try] = ACTIONS(502), - [anon_sym_85] = ACTIONS(504), - [anon_sym_combinate] = ACTIONS(504), - [anon_sym_86] = ACTIONS(504), - [anon_sym_87] = ACTIONS(504), - [anon_sym_88] = ACTIONS(504), - [anon_sym_89] = ACTIONS(504), - [anon_sym_90] = ACTIONS(504), - [anon_sym_91] = ACTIONS(504), - [anon_sym_92] = ACTIONS(504), - [anon_sym_93] = ACTIONS(504), + [ts_builtin_sym_end] = ACTIONS(486), + [aux_sym_number_token1] = ACTIONS(484), + [anon_sym_os] = ACTIONS(484), + [anon_sym_Family] = ACTIONS(484), + [anon_sym_Arch] = ACTIONS(484), + [anon_sym_ExeExt] = ACTIONS(484), + [anon_sym_PllExt] = ACTIONS(484), + [anon_sym_Sep] = ACTIONS(484), + [aux_sym_character_token1] = ACTIONS(486), + [sym_string] = ACTIONS(486), + [sym_multiLineString] = ACTIONS(486), + [anon_sym_PIPE] = ACTIONS(486), + [sym_identifier] = ACTIONS(484), + [sym_identifier_deprecated] = ACTIONS(484), + [sym_system] = ACTIONS(486), + [sym_comment] = ACTIONS(484), + [sym_openParen] = ACTIONS(486), + [sym_openCurly] = ACTIONS(486), + [sym_openBracket] = ACTIONS(486), + [sym_underscore] = ACTIONS(486), + [sym_leftArrow] = ACTIONS(486), + [anon_sym_CARET] = ACTIONS(486), + [anon_sym_eta] = ACTIONS(486), + [anon_sym_] = ACTIONS(484), + [anon_sym_pi] = ACTIONS(484), + [anon_sym_2] = ACTIONS(484), + [anon_sym_tau] = ACTIONS(486), + [anon_sym_3] = ACTIONS(484), + [anon_sym_infinity] = ACTIONS(486), + [anon_sym_4] = ACTIONS(486), + [anon_sym_e] = ACTIONS(484), + [anon_sym_NaN] = ACTIONS(484), + [anon_sym_NumProcs] = ACTIONS(484), + [anon_sym_DOT] = ACTIONS(486), + [anon_sym_COMMA] = ACTIONS(486), + [anon_sym_5] = ACTIONS(486), + [anon_sym_SEMI] = ACTIONS(486), + [anon_sym_identity] = ACTIONS(486), + [anon_sym_id] = ACTIONS(484), + [anon_sym_6] = ACTIONS(486), + [anon_sym_not] = ACTIONS(486), + [anon_sym_7] = ACTIONS(486), + [anon_sym_sign] = ACTIONS(486), + [anon_sym_8] = ACTIONS(486), + [anon_sym_BQUOTE] = ACTIONS(486), + [anon_sym_9] = ACTIONS(486), + [anon_sym_absolutevalue] = ACTIONS(486), + [anon_sym_10] = ACTIONS(486), + [anon_sym_sqrt] = ACTIONS(486), + [anon_sym_11] = ACTIONS(486), + [anon_sym_sine] = ACTIONS(486), + [anon_sym_12] = ACTIONS(486), + [anon_sym_floor] = ACTIONS(486), + [anon_sym_13] = ACTIONS(486), + [anon_sym_ceiling] = ACTIONS(486), + [anon_sym_14] = ACTIONS(486), + [anon_sym_round] = ACTIONS(486), + [anon_sym_15] = ACTIONS(486), + [anon_sym_EQ] = ACTIONS(486), + [anon_sym_BANG_EQ] = ACTIONS(486), + [anon_sym_16] = ACTIONS(486), + [anon_sym_LT] = ACTIONS(484), + [anon_sym_LT_EQ] = ACTIONS(486), + [anon_sym_17] = ACTIONS(486), + [anon_sym_GT] = ACTIONS(484), + [anon_sym_GT_EQ] = ACTIONS(486), + [anon_sym_18] = ACTIONS(486), + [anon_sym_PLUS] = ACTIONS(486), + [anon_sym_DASH] = ACTIONS(486), + [anon_sym_STAR] = ACTIONS(486), + [anon_sym_19] = ACTIONS(486), + [anon_sym_PERCENT] = ACTIONS(486), + [anon_sym_20] = ACTIONS(486), + [anon_sym_modulus] = ACTIONS(486), + [anon_sym_21] = ACTIONS(486), + [anon_sym_power] = ACTIONS(486), + [anon_sym_22] = ACTIONS(486), + [anon_sym_logarithm] = ACTIONS(486), + [anon_sym_23] = ACTIONS(486), + [anon_sym_minimum] = ACTIONS(486), + [anon_sym_24] = ACTIONS(486), + [anon_sym_maximum] = ACTIONS(486), + [anon_sym_25] = ACTIONS(486), + [anon_sym_atangent] = ACTIONS(486), + [anon_sym_26] = ACTIONS(486), + [anon_sym_length] = ACTIONS(486), + [anon_sym_27] = ACTIONS(486), + [anon_sym_shape] = ACTIONS(486), + [anon_sym_28] = ACTIONS(486), + [anon_sym_range] = ACTIONS(486), + [anon_sym_29] = ACTIONS(486), + [anon_sym_first] = ACTIONS(486), + [anon_sym_30] = ACTIONS(486), + [anon_sym_reverse] = ACTIONS(486), + [anon_sym_31] = ACTIONS(486), + [anon_sym_deshape] = ACTIONS(486), + [anon_sym_32] = ACTIONS(486), + [anon_sym_bits] = ACTIONS(486), + [anon_sym_33] = ACTIONS(486), + [anon_sym_transpose] = ACTIONS(486), + [anon_sym_34] = ACTIONS(486), + [anon_sym_rise] = ACTIONS(486), + [anon_sym_35] = ACTIONS(486), + [anon_sym_fall] = ACTIONS(486), + [anon_sym_36] = ACTIONS(486), + [anon_sym_where] = ACTIONS(486), + [anon_sym_37] = ACTIONS(486), + [anon_sym_classify] = ACTIONS(486), + [anon_sym_38] = ACTIONS(486), + [anon_sym_deduplicate] = ACTIONS(486), + [anon_sym_39] = ACTIONS(486), + [anon_sym_box] = ACTIONS(486), + [anon_sym_40] = ACTIONS(486), + [anon_sym_unbox] = ACTIONS(486), + [anon_sym_41] = ACTIONS(486), + [anon_sym_match] = ACTIONS(486), + [anon_sym_42] = ACTIONS(486), + [anon_sym_couple] = ACTIONS(486), + [anon_sym_43] = ACTIONS(486), + [anon_sym_join] = ACTIONS(486), + [anon_sym_44] = ACTIONS(486), + [anon_sym_select] = ACTIONS(486), + [anon_sym_45] = ACTIONS(486), + [anon_sym_pick] = ACTIONS(486), + [anon_sym_46] = ACTIONS(486), + [anon_sym_reshape] = ACTIONS(486), + [anon_sym_47] = ACTIONS(486), + [anon_sym_take] = ACTIONS(486), + [anon_sym_48] = ACTIONS(486), + [anon_sym_drop] = ACTIONS(486), + [anon_sym_49] = ACTIONS(486), + [anon_sym_rotate] = ACTIONS(486), + [anon_sym_50] = ACTIONS(486), + [anon_sym_windows] = ACTIONS(486), + [anon_sym_51] = ACTIONS(486), + [anon_sym_keep] = ACTIONS(486), + [anon_sym_52] = ACTIONS(486), + [anon_sym_find] = ACTIONS(486), + [anon_sym_53] = ACTIONS(486), + [anon_sym_member] = ACTIONS(486), + [anon_sym_54] = ACTIONS(486), + [anon_sym_indexof] = ACTIONS(486), + [anon_sym_55] = ACTIONS(486), + [anon_sym_assert] = ACTIONS(486), + [anon_sym_56] = ACTIONS(486), + [anon_sym_wait] = ACTIONS(486), + [anon_sym_break] = ACTIONS(486), + [anon_sym_57] = ACTIONS(486), + [anon_sym_parse] = ACTIONS(486), + [anon_sym_random] = ACTIONS(486), + [anon_sym_58] = ACTIONS(486), + [anon_sym_gen] = ACTIONS(486), + [anon_sym_deal] = ACTIONS(486), + [anon_sym_tag] = ACTIONS(486), + [anon_sym_now] = ACTIONS(486), + [anon_sym_type] = ACTIONS(486), + [anon_sym_59] = ACTIONS(486), + [anon_sym_dump] = ACTIONS(486), + [anon_sym_regex] = ACTIONS(486), + [anon_sym_utf] = ACTIONS(486), + [anon_sym_rock] = ACTIONS(486), + [anon_sym_60] = ACTIONS(486), + [anon_sym_surface] = ACTIONS(486), + [anon_sym_TILDE] = ACTIONS(486), + [anon_sym_deep] = ACTIONS(486), + [anon_sym_de] = ACTIONS(484), + [anon_sym_61] = ACTIONS(486), + [anon_sym_abyss] = ACTIONS(486), + [anon_sym_ab] = ACTIONS(484), + [anon_sym_62] = ACTIONS(486), + [anon_sym_seabed] = ACTIONS(486), + [anon_sym_se] = ACTIONS(484), + [anon_sym_63] = ACTIONS(486), + [anon_sym_send] = ACTIONS(486), + [anon_sym_recv] = ACTIONS(486), + [anon_sym_tryrecv] = ACTIONS(486), + [anon_sym_reduce] = ACTIONS(486), + [anon_sym_SLASH] = ACTIONS(486), + [anon_sym_scan] = ACTIONS(486), + [anon_sym_BSLASH] = ACTIONS(486), + [anon_sym_each] = ACTIONS(486), + [anon_sym_64] = ACTIONS(486), + [anon_sym_rows] = ACTIONS(486), + [anon_sym_65] = ACTIONS(486), + [anon_sym_repeat] = ACTIONS(486), + [anon_sym_66] = ACTIONS(486), + [anon_sym_dip] = ACTIONS(486), + [anon_sym_67] = ACTIONS(486), + [anon_sym_gap] = ACTIONS(486), + [anon_sym_68] = ACTIONS(486), + [anon_sym_69] = ACTIONS(486), + [anon_sym_invert] = ACTIONS(486), + [anon_sym_70] = ACTIONS(486), + [anon_sym_spawn] = ACTIONS(486), + [anon_sym_pack] = ACTIONS(486), + [anon_sym_71] = ACTIONS(486), + [anon_sym_tribute] = ACTIONS(486), + [anon_sym_72] = ACTIONS(486), + [anon_sym_reach] = ACTIONS(486), + [anon_sym_fold] = ACTIONS(486), + [anon_sym_73] = ACTIONS(486), + [anon_sym_distribute] = ACTIONS(486), + [anon_sym_74] = ACTIONS(486), + [anon_sym_table] = ACTIONS(486), + [anon_sym_75] = ACTIONS(486), + [anon_sym_cross] = ACTIONS(486), + [anon_sym_76] = ACTIONS(486), + [anon_sym_group] = ACTIONS(486), + [anon_sym_77] = ACTIONS(486), + [anon_sym_partition] = ACTIONS(486), + [anon_sym_78] = ACTIONS(486), + [anon_sym_both] = ACTIONS(486), + [anon_sym_79] = ACTIONS(486), + [anon_sym_bracket] = ACTIONS(486), + [anon_sym_80] = ACTIONS(486), + [anon_sym_fork] = ACTIONS(486), + [anon_sym_81] = ACTIONS(486), + [anon_sym_under] = ACTIONS(486), + [anon_sym_82] = ACTIONS(486), + [anon_sym_level] = ACTIONS(486), + [anon_sym_83] = ACTIONS(486), + [anon_sym_fill] = ACTIONS(486), + [anon_sym_84] = ACTIONS(486), + [anon_sym_bind] = ACTIONS(486), + [anon_sym_SQUOTE] = ACTIONS(486), + [anon_sym_QMARK] = ACTIONS(486), + [anon_sym_try] = ACTIONS(484), + [anon_sym_85] = ACTIONS(486), + [anon_sym_combinate] = ACTIONS(486), + [anon_sym_86] = ACTIONS(486), + [anon_sym_87] = ACTIONS(486), + [anon_sym_88] = ACTIONS(486), + [anon_sym_89] = ACTIONS(486), + [anon_sym_90] = ACTIONS(486), + [anon_sym_91] = ACTIONS(486), + [anon_sym_92] = ACTIONS(486), + [anon_sym_93] = ACTIONS(486), [sym__whitespace] = ACTIONS(5), - [sym__end_of_line] = ACTIONS(504), + [sym__end_of_line] = ACTIONS(486), }, [91] = { - [ts_builtin_sym_end] = ACTIONS(512), - [aux_sym_number_token1] = ACTIONS(510), - [anon_sym_os] = ACTIONS(510), - [anon_sym_Family] = ACTIONS(510), - [anon_sym_Arch] = ACTIONS(510), - [anon_sym_ExeExt] = ACTIONS(510), - [anon_sym_PllExt] = ACTIONS(510), - [anon_sym_Sep] = ACTIONS(510), - [aux_sym_character_token1] = ACTIONS(512), - [sym_string] = ACTIONS(512), - [sym_multiLineString] = ACTIONS(512), - [anon_sym_PIPE] = ACTIONS(512), - [sym_identifier] = ACTIONS(510), - [sym_identifier_deprecated] = ACTIONS(510), - [sym_system] = ACTIONS(512), - [sym_comment] = ACTIONS(510), - [sym_openParen] = ACTIONS(512), - [sym_openCurly] = ACTIONS(512), - [sym_openBracket] = ACTIONS(512), - [sym_underscore] = ACTIONS(512), - [sym_leftArrow] = ACTIONS(512), - [anon_sym_CARET] = ACTIONS(512), - [anon_sym_eta] = ACTIONS(512), - [anon_sym_] = ACTIONS(510), - [anon_sym_pi] = ACTIONS(510), - [anon_sym_2] = ACTIONS(510), - [anon_sym_tau] = ACTIONS(512), - [anon_sym_3] = ACTIONS(510), - [anon_sym_infinity] = ACTIONS(512), - [anon_sym_4] = ACTIONS(512), - [anon_sym_e] = ACTIONS(510), - [anon_sym_NaN] = ACTIONS(510), - [anon_sym_NumProcs] = ACTIONS(510), - [anon_sym_DOT] = ACTIONS(512), - [anon_sym_COMMA] = ACTIONS(512), - [anon_sym_5] = ACTIONS(512), - [anon_sym_SEMI] = ACTIONS(512), - [anon_sym_identity] = ACTIONS(512), - [anon_sym_id] = ACTIONS(510), - [anon_sym_6] = ACTIONS(512), - [anon_sym_not] = ACTIONS(512), - [anon_sym_7] = ACTIONS(512), - [anon_sym_sign] = ACTIONS(512), - [anon_sym_8] = ACTIONS(512), - [anon_sym_BQUOTE] = ACTIONS(512), - [anon_sym_9] = ACTIONS(512), - [anon_sym_absolutevalue] = ACTIONS(512), - [anon_sym_10] = ACTIONS(512), - [anon_sym_sqrt] = ACTIONS(512), - [anon_sym_11] = ACTIONS(512), - [anon_sym_sine] = ACTIONS(512), - [anon_sym_12] = ACTIONS(512), - [anon_sym_floor] = ACTIONS(512), - [anon_sym_13] = ACTIONS(512), - [anon_sym_ceiling] = ACTIONS(512), - [anon_sym_14] = ACTIONS(512), - [anon_sym_round] = ACTIONS(512), - [anon_sym_15] = ACTIONS(512), - [anon_sym_EQ] = ACTIONS(512), - [anon_sym_BANG_EQ] = ACTIONS(512), - [anon_sym_16] = ACTIONS(512), - [anon_sym_LT] = ACTIONS(510), - [anon_sym_LT_EQ] = ACTIONS(512), - [anon_sym_17] = ACTIONS(512), - [anon_sym_GT] = ACTIONS(510), - [anon_sym_GT_EQ] = ACTIONS(512), - [anon_sym_18] = ACTIONS(512), - [anon_sym_PLUS] = ACTIONS(512), - [anon_sym_DASH] = ACTIONS(512), - [anon_sym_STAR] = ACTIONS(512), - [anon_sym_19] = ACTIONS(512), - [anon_sym_PERCENT] = ACTIONS(512), - [anon_sym_20] = ACTIONS(512), - [anon_sym_modulus] = ACTIONS(512), - [anon_sym_21] = ACTIONS(512), - [anon_sym_power] = ACTIONS(512), - [anon_sym_22] = ACTIONS(512), - [anon_sym_logarithm] = ACTIONS(512), - [anon_sym_23] = ACTIONS(512), - [anon_sym_minimum] = ACTIONS(512), - [anon_sym_24] = ACTIONS(512), - [anon_sym_maximum] = ACTIONS(512), - [anon_sym_25] = ACTIONS(512), - [anon_sym_atangent] = ACTIONS(512), - [anon_sym_26] = ACTIONS(512), - [anon_sym_length] = ACTIONS(512), - [anon_sym_27] = ACTIONS(512), - [anon_sym_shape] = ACTIONS(512), - [anon_sym_28] = ACTIONS(512), - [anon_sym_range] = ACTIONS(512), - [anon_sym_29] = ACTIONS(512), - [anon_sym_first] = ACTIONS(512), - [anon_sym_30] = ACTIONS(512), - [anon_sym_reverse] = ACTIONS(512), - [anon_sym_31] = ACTIONS(512), - [anon_sym_deshape] = ACTIONS(512), - [anon_sym_32] = ACTIONS(512), - [anon_sym_bits] = ACTIONS(512), - [anon_sym_33] = ACTIONS(512), - [anon_sym_transpose] = ACTIONS(512), - [anon_sym_34] = ACTIONS(512), - [anon_sym_rise] = ACTIONS(512), - [anon_sym_35] = ACTIONS(512), - [anon_sym_fall] = ACTIONS(512), - [anon_sym_36] = ACTIONS(512), - [anon_sym_where] = ACTIONS(512), - [anon_sym_37] = ACTIONS(512), - [anon_sym_classify] = ACTIONS(512), - [anon_sym_38] = ACTIONS(512), - [anon_sym_deduplicate] = ACTIONS(512), - [anon_sym_39] = ACTIONS(512), - [anon_sym_box] = ACTIONS(512), - [anon_sym_40] = ACTIONS(512), - [anon_sym_unbox] = ACTIONS(512), - [anon_sym_41] = ACTIONS(512), - [anon_sym_match] = ACTIONS(512), - [anon_sym_42] = ACTIONS(512), - [anon_sym_couple] = ACTIONS(512), - [anon_sym_43] = ACTIONS(512), - [anon_sym_join] = ACTIONS(512), - [anon_sym_44] = ACTIONS(512), - [anon_sym_select] = ACTIONS(512), - [anon_sym_45] = ACTIONS(512), - [anon_sym_pick] = ACTIONS(512), - [anon_sym_46] = ACTIONS(512), - [anon_sym_reshape] = ACTIONS(512), - [anon_sym_47] = ACTIONS(512), - [anon_sym_take] = ACTIONS(512), - [anon_sym_48] = ACTIONS(512), - [anon_sym_drop] = ACTIONS(512), - [anon_sym_49] = ACTIONS(512), - [anon_sym_rotate] = ACTIONS(512), - [anon_sym_50] = ACTIONS(512), - [anon_sym_windows] = ACTIONS(512), - [anon_sym_51] = ACTIONS(512), - [anon_sym_keep] = ACTIONS(512), - [anon_sym_52] = ACTIONS(512), - [anon_sym_find] = ACTIONS(512), - [anon_sym_53] = ACTIONS(512), - [anon_sym_member] = ACTIONS(512), - [anon_sym_54] = ACTIONS(512), - [anon_sym_indexof] = ACTIONS(512), - [anon_sym_55] = ACTIONS(512), - [anon_sym_assert] = ACTIONS(512), - [anon_sym_56] = ACTIONS(512), - [anon_sym_wait] = ACTIONS(512), - [anon_sym_break] = ACTIONS(512), - [anon_sym_57] = ACTIONS(512), - [anon_sym_parse] = ACTIONS(512), - [anon_sym_random] = ACTIONS(512), - [anon_sym_58] = ACTIONS(512), - [anon_sym_gen] = ACTIONS(512), - [anon_sym_deal] = ACTIONS(512), - [anon_sym_tag] = ACTIONS(512), - [anon_sym_now] = ACTIONS(512), - [anon_sym_type] = ACTIONS(512), - [anon_sym_59] = ACTIONS(512), - [anon_sym_dump] = ACTIONS(512), - [anon_sym_regex] = ACTIONS(512), - [anon_sym_utf] = ACTIONS(512), - [anon_sym_rock] = ACTIONS(512), - [anon_sym_60] = ACTIONS(512), - [anon_sym_surface] = ACTIONS(512), - [anon_sym_TILDE] = ACTIONS(512), - [anon_sym_deep] = ACTIONS(512), - [anon_sym_de] = ACTIONS(510), - [anon_sym_61] = ACTIONS(512), - [anon_sym_abyss] = ACTIONS(512), - [anon_sym_ab] = ACTIONS(510), - [anon_sym_62] = ACTIONS(512), - [anon_sym_seabed] = ACTIONS(512), - [anon_sym_se] = ACTIONS(510), - [anon_sym_63] = ACTIONS(512), - [anon_sym_send] = ACTIONS(512), - [anon_sym_recv] = ACTIONS(512), - [anon_sym_tryrecv] = ACTIONS(512), - [anon_sym_reduce] = ACTIONS(512), - [anon_sym_SLASH] = ACTIONS(512), - [anon_sym_scan] = ACTIONS(512), - [anon_sym_BSLASH] = ACTIONS(512), - [anon_sym_each] = ACTIONS(512), - [anon_sym_64] = ACTIONS(512), - [anon_sym_rows] = ACTIONS(512), - [anon_sym_65] = ACTIONS(512), - [anon_sym_repeat] = ACTIONS(512), - [anon_sym_66] = ACTIONS(512), - [anon_sym_dip] = ACTIONS(512), - [anon_sym_di] = ACTIONS(510), - [anon_sym_67] = ACTIONS(512), - [anon_sym_gap] = ACTIONS(512), - [anon_sym_ga] = ACTIONS(510), - [anon_sym_68] = ACTIONS(512), - [anon_sym_oust] = ACTIONS(512), - [anon_sym_69] = ACTIONS(512), - [anon_sym_invert] = ACTIONS(512), - [anon_sym_70] = ACTIONS(512), - [anon_sym_spawn] = ACTIONS(512), - [anon_sym_pack] = ACTIONS(512), - [anon_sym_71] = ACTIONS(512), - [anon_sym_tribute] = ACTIONS(512), - [anon_sym_72] = ACTIONS(512), - [anon_sym_fold] = ACTIONS(512), - [anon_sym_73] = ACTIONS(512), - [anon_sym_distribute] = ACTIONS(512), - [anon_sym_74] = ACTIONS(512), - [anon_sym_table] = ACTIONS(512), - [anon_sym_75] = ACTIONS(512), - [anon_sym_cross] = ACTIONS(512), - [anon_sym_76] = ACTIONS(512), - [anon_sym_group] = ACTIONS(512), - [anon_sym_77] = ACTIONS(512), - [anon_sym_partition] = ACTIONS(512), - [anon_sym_78] = ACTIONS(512), - [anon_sym_both] = ACTIONS(512), - [anon_sym_79] = ACTIONS(512), - [anon_sym_bracket] = ACTIONS(512), - [anon_sym_80] = ACTIONS(512), - [anon_sym_fork] = ACTIONS(512), - [anon_sym_81] = ACTIONS(512), - [anon_sym_under] = ACTIONS(512), - [anon_sym_82] = ACTIONS(512), - [anon_sym_level] = ACTIONS(512), - [anon_sym_83] = ACTIONS(512), - [anon_sym_fill] = ACTIONS(512), - [anon_sym_84] = ACTIONS(512), - [anon_sym_bind] = ACTIONS(512), - [anon_sym_SQUOTE] = ACTIONS(512), - [anon_sym_QMARK] = ACTIONS(512), - [anon_sym_try] = ACTIONS(510), - [anon_sym_85] = ACTIONS(512), - [anon_sym_combinate] = ACTIONS(512), - [anon_sym_86] = ACTIONS(512), - [anon_sym_87] = ACTIONS(512), - [anon_sym_88] = ACTIONS(512), - [anon_sym_89] = ACTIONS(512), - [anon_sym_90] = ACTIONS(512), - [anon_sym_91] = ACTIONS(512), - [anon_sym_92] = ACTIONS(512), - [anon_sym_93] = ACTIONS(512), + [ts_builtin_sym_end] = ACTIONS(494), + [aux_sym_number_token1] = ACTIONS(492), + [anon_sym_os] = ACTIONS(492), + [anon_sym_Family] = ACTIONS(492), + [anon_sym_Arch] = ACTIONS(492), + [anon_sym_ExeExt] = ACTIONS(492), + [anon_sym_PllExt] = ACTIONS(492), + [anon_sym_Sep] = ACTIONS(492), + [aux_sym_character_token1] = ACTIONS(494), + [sym_string] = ACTIONS(494), + [sym_multiLineString] = ACTIONS(494), + [anon_sym_PIPE] = ACTIONS(494), + [sym_identifier] = ACTIONS(492), + [sym_identifier_deprecated] = ACTIONS(492), + [sym_system] = ACTIONS(494), + [sym_comment] = ACTIONS(492), + [sym_openParen] = ACTIONS(494), + [sym_openCurly] = ACTIONS(494), + [sym_openBracket] = ACTIONS(494), + [sym_underscore] = ACTIONS(494), + [sym_leftArrow] = ACTIONS(494), + [anon_sym_CARET] = ACTIONS(494), + [anon_sym_eta] = ACTIONS(494), + [anon_sym_] = ACTIONS(492), + [anon_sym_pi] = ACTIONS(492), + [anon_sym_2] = ACTIONS(492), + [anon_sym_tau] = ACTIONS(494), + [anon_sym_3] = ACTIONS(492), + [anon_sym_infinity] = ACTIONS(494), + [anon_sym_4] = ACTIONS(494), + [anon_sym_e] = ACTIONS(492), + [anon_sym_NaN] = ACTIONS(492), + [anon_sym_NumProcs] = ACTIONS(492), + [anon_sym_DOT] = ACTIONS(494), + [anon_sym_COMMA] = ACTIONS(494), + [anon_sym_5] = ACTIONS(494), + [anon_sym_SEMI] = ACTIONS(494), + [anon_sym_identity] = ACTIONS(494), + [anon_sym_id] = ACTIONS(492), + [anon_sym_6] = ACTIONS(494), + [anon_sym_not] = ACTIONS(494), + [anon_sym_7] = ACTIONS(494), + [anon_sym_sign] = ACTIONS(494), + [anon_sym_8] = ACTIONS(494), + [anon_sym_BQUOTE] = ACTIONS(494), + [anon_sym_9] = ACTIONS(494), + [anon_sym_absolutevalue] = ACTIONS(494), + [anon_sym_10] = ACTIONS(494), + [anon_sym_sqrt] = ACTIONS(494), + [anon_sym_11] = ACTIONS(494), + [anon_sym_sine] = ACTIONS(494), + [anon_sym_12] = ACTIONS(494), + [anon_sym_floor] = ACTIONS(494), + [anon_sym_13] = ACTIONS(494), + [anon_sym_ceiling] = ACTIONS(494), + [anon_sym_14] = ACTIONS(494), + [anon_sym_round] = ACTIONS(494), + [anon_sym_15] = ACTIONS(494), + [anon_sym_EQ] = ACTIONS(494), + [anon_sym_BANG_EQ] = ACTIONS(494), + [anon_sym_16] = ACTIONS(494), + [anon_sym_LT] = ACTIONS(492), + [anon_sym_LT_EQ] = ACTIONS(494), + [anon_sym_17] = ACTIONS(494), + [anon_sym_GT] = ACTIONS(492), + [anon_sym_GT_EQ] = ACTIONS(494), + [anon_sym_18] = ACTIONS(494), + [anon_sym_PLUS] = ACTIONS(494), + [anon_sym_DASH] = ACTIONS(494), + [anon_sym_STAR] = ACTIONS(494), + [anon_sym_19] = ACTIONS(494), + [anon_sym_PERCENT] = ACTIONS(494), + [anon_sym_20] = ACTIONS(494), + [anon_sym_modulus] = ACTIONS(494), + [anon_sym_21] = ACTIONS(494), + [anon_sym_power] = ACTIONS(494), + [anon_sym_22] = ACTIONS(494), + [anon_sym_logarithm] = ACTIONS(494), + [anon_sym_23] = ACTIONS(494), + [anon_sym_minimum] = ACTIONS(494), + [anon_sym_24] = ACTIONS(494), + [anon_sym_maximum] = ACTIONS(494), + [anon_sym_25] = ACTIONS(494), + [anon_sym_atangent] = ACTIONS(494), + [anon_sym_26] = ACTIONS(494), + [anon_sym_length] = ACTIONS(494), + [anon_sym_27] = ACTIONS(494), + [anon_sym_shape] = ACTIONS(494), + [anon_sym_28] = ACTIONS(494), + [anon_sym_range] = ACTIONS(494), + [anon_sym_29] = ACTIONS(494), + [anon_sym_first] = ACTIONS(494), + [anon_sym_30] = ACTIONS(494), + [anon_sym_reverse] = ACTIONS(494), + [anon_sym_31] = ACTIONS(494), + [anon_sym_deshape] = ACTIONS(494), + [anon_sym_32] = ACTIONS(494), + [anon_sym_bits] = ACTIONS(494), + [anon_sym_33] = ACTIONS(494), + [anon_sym_transpose] = ACTIONS(494), + [anon_sym_34] = ACTIONS(494), + [anon_sym_rise] = ACTIONS(494), + [anon_sym_35] = ACTIONS(494), + [anon_sym_fall] = ACTIONS(494), + [anon_sym_36] = ACTIONS(494), + [anon_sym_where] = ACTIONS(494), + [anon_sym_37] = ACTIONS(494), + [anon_sym_classify] = ACTIONS(494), + [anon_sym_38] = ACTIONS(494), + [anon_sym_deduplicate] = ACTIONS(494), + [anon_sym_39] = ACTIONS(494), + [anon_sym_box] = ACTIONS(494), + [anon_sym_40] = ACTIONS(494), + [anon_sym_unbox] = ACTIONS(494), + [anon_sym_41] = ACTIONS(494), + [anon_sym_match] = ACTIONS(494), + [anon_sym_42] = ACTIONS(494), + [anon_sym_couple] = ACTIONS(494), + [anon_sym_43] = ACTIONS(494), + [anon_sym_join] = ACTIONS(494), + [anon_sym_44] = ACTIONS(494), + [anon_sym_select] = ACTIONS(494), + [anon_sym_45] = ACTIONS(494), + [anon_sym_pick] = ACTIONS(494), + [anon_sym_46] = ACTIONS(494), + [anon_sym_reshape] = ACTIONS(494), + [anon_sym_47] = ACTIONS(494), + [anon_sym_take] = ACTIONS(494), + [anon_sym_48] = ACTIONS(494), + [anon_sym_drop] = ACTIONS(494), + [anon_sym_49] = ACTIONS(494), + [anon_sym_rotate] = ACTIONS(494), + [anon_sym_50] = ACTIONS(494), + [anon_sym_windows] = ACTIONS(494), + [anon_sym_51] = ACTIONS(494), + [anon_sym_keep] = ACTIONS(494), + [anon_sym_52] = ACTIONS(494), + [anon_sym_find] = ACTIONS(494), + [anon_sym_53] = ACTIONS(494), + [anon_sym_member] = ACTIONS(494), + [anon_sym_54] = ACTIONS(494), + [anon_sym_indexof] = ACTIONS(494), + [anon_sym_55] = ACTIONS(494), + [anon_sym_assert] = ACTIONS(494), + [anon_sym_56] = ACTIONS(494), + [anon_sym_wait] = ACTIONS(494), + [anon_sym_break] = ACTIONS(494), + [anon_sym_57] = ACTIONS(494), + [anon_sym_parse] = ACTIONS(494), + [anon_sym_random] = ACTIONS(494), + [anon_sym_58] = ACTIONS(494), + [anon_sym_gen] = ACTIONS(494), + [anon_sym_deal] = ACTIONS(494), + [anon_sym_tag] = ACTIONS(494), + [anon_sym_now] = ACTIONS(494), + [anon_sym_type] = ACTIONS(494), + [anon_sym_59] = ACTIONS(494), + [anon_sym_dump] = ACTIONS(494), + [anon_sym_regex] = ACTIONS(494), + [anon_sym_utf] = ACTIONS(494), + [anon_sym_rock] = ACTIONS(494), + [anon_sym_60] = ACTIONS(494), + [anon_sym_surface] = ACTIONS(494), + [anon_sym_TILDE] = ACTIONS(494), + [anon_sym_deep] = ACTIONS(494), + [anon_sym_de] = ACTIONS(492), + [anon_sym_61] = ACTIONS(494), + [anon_sym_abyss] = ACTIONS(494), + [anon_sym_ab] = ACTIONS(492), + [anon_sym_62] = ACTIONS(494), + [anon_sym_seabed] = ACTIONS(494), + [anon_sym_se] = ACTIONS(492), + [anon_sym_63] = ACTIONS(494), + [anon_sym_send] = ACTIONS(494), + [anon_sym_recv] = ACTIONS(494), + [anon_sym_tryrecv] = ACTIONS(494), + [anon_sym_reduce] = ACTIONS(494), + [anon_sym_SLASH] = ACTIONS(494), + [anon_sym_scan] = ACTIONS(494), + [anon_sym_BSLASH] = ACTIONS(494), + [anon_sym_each] = ACTIONS(494), + [anon_sym_64] = ACTIONS(494), + [anon_sym_rows] = ACTIONS(494), + [anon_sym_65] = ACTIONS(494), + [anon_sym_repeat] = ACTIONS(494), + [anon_sym_66] = ACTIONS(494), + [anon_sym_dip] = ACTIONS(494), + [anon_sym_67] = ACTIONS(494), + [anon_sym_gap] = ACTIONS(494), + [anon_sym_68] = ACTIONS(494), + [anon_sym_69] = ACTIONS(494), + [anon_sym_invert] = ACTIONS(494), + [anon_sym_70] = ACTIONS(494), + [anon_sym_spawn] = ACTIONS(494), + [anon_sym_pack] = ACTIONS(494), + [anon_sym_71] = ACTIONS(494), + [anon_sym_tribute] = ACTIONS(494), + [anon_sym_72] = ACTIONS(494), + [anon_sym_reach] = ACTIONS(494), + [anon_sym_fold] = ACTIONS(494), + [anon_sym_73] = ACTIONS(494), + [anon_sym_distribute] = ACTIONS(494), + [anon_sym_74] = ACTIONS(494), + [anon_sym_table] = ACTIONS(494), + [anon_sym_75] = ACTIONS(494), + [anon_sym_cross] = ACTIONS(494), + [anon_sym_76] = ACTIONS(494), + [anon_sym_group] = ACTIONS(494), + [anon_sym_77] = ACTIONS(494), + [anon_sym_partition] = ACTIONS(494), + [anon_sym_78] = ACTIONS(494), + [anon_sym_both] = ACTIONS(494), + [anon_sym_79] = ACTIONS(494), + [anon_sym_bracket] = ACTIONS(494), + [anon_sym_80] = ACTIONS(494), + [anon_sym_fork] = ACTIONS(494), + [anon_sym_81] = ACTIONS(494), + [anon_sym_under] = ACTIONS(494), + [anon_sym_82] = ACTIONS(494), + [anon_sym_level] = ACTIONS(494), + [anon_sym_83] = ACTIONS(494), + [anon_sym_fill] = ACTIONS(494), + [anon_sym_84] = ACTIONS(494), + [anon_sym_bind] = ACTIONS(494), + [anon_sym_SQUOTE] = ACTIONS(494), + [anon_sym_QMARK] = ACTIONS(494), + [anon_sym_try] = ACTIONS(492), + [anon_sym_85] = ACTIONS(494), + [anon_sym_combinate] = ACTIONS(494), + [anon_sym_86] = ACTIONS(494), + [anon_sym_87] = ACTIONS(494), + [anon_sym_88] = ACTIONS(494), + [anon_sym_89] = ACTIONS(494), + [anon_sym_90] = ACTIONS(494), + [anon_sym_91] = ACTIONS(494), + [anon_sym_92] = ACTIONS(494), + [anon_sym_93] = ACTIONS(494), [sym__whitespace] = ACTIONS(5), - [sym__end_of_line] = ACTIONS(512), + [sym__end_of_line] = ACTIONS(494), }, [92] = { - [ts_builtin_sym_end] = ACTIONS(440), - [aux_sym_number_token1] = ACTIONS(438), - [anon_sym_os] = ACTIONS(438), - [anon_sym_Family] = ACTIONS(438), - [anon_sym_Arch] = ACTIONS(438), - [anon_sym_ExeExt] = ACTIONS(438), - [anon_sym_PllExt] = ACTIONS(438), - [anon_sym_Sep] = ACTIONS(438), - [aux_sym_character_token1] = ACTIONS(440), - [sym_string] = ACTIONS(440), - [sym_multiLineString] = ACTIONS(440), - [anon_sym_PIPE] = ACTIONS(440), - [sym_identifier] = ACTIONS(438), - [sym_identifier_deprecated] = ACTIONS(438), - [sym_system] = ACTIONS(440), - [sym_comment] = ACTIONS(438), - [sym_openParen] = ACTIONS(440), - [sym_openCurly] = ACTIONS(440), - [sym_openBracket] = ACTIONS(440), - [sym_underscore] = ACTIONS(440), - [sym_leftArrow] = ACTIONS(440), - [anon_sym_CARET] = ACTIONS(440), - [anon_sym_eta] = ACTIONS(440), - [anon_sym_] = ACTIONS(438), - [anon_sym_pi] = ACTIONS(438), - [anon_sym_2] = ACTIONS(438), - [anon_sym_tau] = ACTIONS(440), - [anon_sym_3] = ACTIONS(438), - [anon_sym_infinity] = ACTIONS(440), - [anon_sym_4] = ACTIONS(440), - [anon_sym_e] = ACTIONS(438), - [anon_sym_NaN] = ACTIONS(438), - [anon_sym_NumProcs] = ACTIONS(438), - [anon_sym_DOT] = ACTIONS(440), - [anon_sym_COMMA] = ACTIONS(440), - [anon_sym_5] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(440), - [anon_sym_identity] = ACTIONS(440), - [anon_sym_id] = ACTIONS(438), - [anon_sym_6] = ACTIONS(440), - [anon_sym_not] = ACTIONS(440), - [anon_sym_7] = ACTIONS(440), - [anon_sym_sign] = ACTIONS(440), - [anon_sym_8] = ACTIONS(440), - [anon_sym_BQUOTE] = ACTIONS(440), - [anon_sym_9] = ACTIONS(440), - [anon_sym_absolutevalue] = ACTIONS(440), - [anon_sym_10] = ACTIONS(440), - [anon_sym_sqrt] = ACTIONS(440), - [anon_sym_11] = ACTIONS(440), - [anon_sym_sine] = ACTIONS(440), - [anon_sym_12] = ACTIONS(440), - [anon_sym_floor] = ACTIONS(440), - [anon_sym_13] = ACTIONS(440), - [anon_sym_ceiling] = ACTIONS(440), - [anon_sym_14] = ACTIONS(440), - [anon_sym_round] = ACTIONS(440), - [anon_sym_15] = ACTIONS(440), - [anon_sym_EQ] = ACTIONS(440), - [anon_sym_BANG_EQ] = ACTIONS(440), - [anon_sym_16] = ACTIONS(440), - [anon_sym_LT] = ACTIONS(438), - [anon_sym_LT_EQ] = ACTIONS(440), - [anon_sym_17] = ACTIONS(440), - [anon_sym_GT] = ACTIONS(438), - [anon_sym_GT_EQ] = ACTIONS(440), - [anon_sym_18] = ACTIONS(440), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_STAR] = ACTIONS(440), - [anon_sym_19] = ACTIONS(440), - [anon_sym_PERCENT] = ACTIONS(440), - [anon_sym_20] = ACTIONS(440), - [anon_sym_modulus] = ACTIONS(440), - [anon_sym_21] = ACTIONS(440), - [anon_sym_power] = ACTIONS(440), - [anon_sym_22] = ACTIONS(440), - [anon_sym_logarithm] = ACTIONS(440), - [anon_sym_23] = ACTIONS(440), - [anon_sym_minimum] = ACTIONS(440), - [anon_sym_24] = ACTIONS(440), - [anon_sym_maximum] = ACTIONS(440), - [anon_sym_25] = ACTIONS(440), - [anon_sym_atangent] = ACTIONS(440), - [anon_sym_26] = ACTIONS(440), - [anon_sym_length] = ACTIONS(440), - [anon_sym_27] = ACTIONS(440), - [anon_sym_shape] = ACTIONS(440), - [anon_sym_28] = ACTIONS(440), - [anon_sym_range] = ACTIONS(440), - [anon_sym_29] = ACTIONS(440), - [anon_sym_first] = ACTIONS(440), - [anon_sym_30] = ACTIONS(440), - [anon_sym_reverse] = ACTIONS(440), - [anon_sym_31] = ACTIONS(440), - [anon_sym_deshape] = ACTIONS(440), - [anon_sym_32] = ACTIONS(440), - [anon_sym_bits] = ACTIONS(440), - [anon_sym_33] = ACTIONS(440), - [anon_sym_transpose] = ACTIONS(440), - [anon_sym_34] = ACTIONS(440), - [anon_sym_rise] = ACTIONS(440), - [anon_sym_35] = ACTIONS(440), - [anon_sym_fall] = ACTIONS(440), - [anon_sym_36] = ACTIONS(440), - [anon_sym_where] = ACTIONS(440), - [anon_sym_37] = ACTIONS(440), - [anon_sym_classify] = ACTIONS(440), - [anon_sym_38] = ACTIONS(440), - [anon_sym_deduplicate] = ACTIONS(440), - [anon_sym_39] = ACTIONS(440), - [anon_sym_box] = ACTIONS(440), - [anon_sym_40] = ACTIONS(440), - [anon_sym_unbox] = ACTIONS(440), - [anon_sym_41] = ACTIONS(440), - [anon_sym_match] = ACTIONS(440), - [anon_sym_42] = ACTIONS(440), - [anon_sym_couple] = ACTIONS(440), - [anon_sym_43] = ACTIONS(440), - [anon_sym_join] = ACTIONS(440), - [anon_sym_44] = ACTIONS(440), - [anon_sym_select] = ACTIONS(440), - [anon_sym_45] = ACTIONS(440), - [anon_sym_pick] = ACTIONS(440), - [anon_sym_46] = ACTIONS(440), - [anon_sym_reshape] = ACTIONS(440), - [anon_sym_47] = ACTIONS(440), - [anon_sym_take] = ACTIONS(440), - [anon_sym_48] = ACTIONS(440), - [anon_sym_drop] = ACTIONS(440), - [anon_sym_49] = ACTIONS(440), - [anon_sym_rotate] = ACTIONS(440), - [anon_sym_50] = ACTIONS(440), - [anon_sym_windows] = ACTIONS(440), - [anon_sym_51] = ACTIONS(440), - [anon_sym_keep] = ACTIONS(440), - [anon_sym_52] = ACTIONS(440), - [anon_sym_find] = ACTIONS(440), - [anon_sym_53] = ACTIONS(440), - [anon_sym_member] = ACTIONS(440), - [anon_sym_54] = ACTIONS(440), - [anon_sym_indexof] = ACTIONS(440), - [anon_sym_55] = ACTIONS(440), - [anon_sym_assert] = ACTIONS(440), - [anon_sym_56] = ACTIONS(440), - [anon_sym_wait] = ACTIONS(440), - [anon_sym_break] = ACTIONS(440), - [anon_sym_57] = ACTIONS(440), - [anon_sym_parse] = ACTIONS(440), - [anon_sym_random] = ACTIONS(440), - [anon_sym_58] = ACTIONS(440), - [anon_sym_gen] = ACTIONS(440), - [anon_sym_deal] = ACTIONS(440), - [anon_sym_tag] = ACTIONS(440), - [anon_sym_now] = ACTIONS(440), - [anon_sym_type] = ACTIONS(440), - [anon_sym_59] = ACTIONS(440), - [anon_sym_dump] = ACTIONS(440), - [anon_sym_regex] = ACTIONS(440), - [anon_sym_utf] = ACTIONS(440), - [anon_sym_rock] = ACTIONS(440), - [anon_sym_60] = ACTIONS(440), - [anon_sym_surface] = ACTIONS(440), - [anon_sym_TILDE] = ACTIONS(440), - [anon_sym_deep] = ACTIONS(440), - [anon_sym_de] = ACTIONS(438), - [anon_sym_61] = ACTIONS(440), - [anon_sym_abyss] = ACTIONS(440), - [anon_sym_ab] = ACTIONS(438), - [anon_sym_62] = ACTIONS(440), - [anon_sym_seabed] = ACTIONS(440), - [anon_sym_se] = ACTIONS(438), - [anon_sym_63] = ACTIONS(440), - [anon_sym_send] = ACTIONS(440), - [anon_sym_recv] = ACTIONS(440), - [anon_sym_tryrecv] = ACTIONS(440), - [anon_sym_reduce] = ACTIONS(440), - [anon_sym_SLASH] = ACTIONS(440), - [anon_sym_scan] = ACTIONS(440), - [anon_sym_BSLASH] = ACTIONS(440), - [anon_sym_each] = ACTIONS(440), - [anon_sym_64] = ACTIONS(440), - [anon_sym_rows] = ACTIONS(440), - [anon_sym_65] = ACTIONS(440), - [anon_sym_repeat] = ACTIONS(440), - [anon_sym_66] = ACTIONS(440), - [anon_sym_dip] = ACTIONS(440), - [anon_sym_di] = ACTIONS(438), - [anon_sym_67] = ACTIONS(440), - [anon_sym_gap] = ACTIONS(440), - [anon_sym_ga] = ACTIONS(438), - [anon_sym_68] = ACTIONS(440), - [anon_sym_oust] = ACTIONS(440), - [anon_sym_69] = ACTIONS(440), - [anon_sym_invert] = ACTIONS(440), - [anon_sym_70] = ACTIONS(440), - [anon_sym_spawn] = ACTIONS(440), - [anon_sym_pack] = ACTIONS(440), - [anon_sym_71] = ACTIONS(440), - [anon_sym_tribute] = ACTIONS(440), - [anon_sym_72] = ACTIONS(440), - [anon_sym_fold] = ACTIONS(440), - [anon_sym_73] = ACTIONS(440), - [anon_sym_distribute] = ACTIONS(440), - [anon_sym_74] = ACTIONS(440), - [anon_sym_table] = ACTIONS(440), - [anon_sym_75] = ACTIONS(440), - [anon_sym_cross] = ACTIONS(440), - [anon_sym_76] = ACTIONS(440), - [anon_sym_group] = ACTIONS(440), - [anon_sym_77] = ACTIONS(440), - [anon_sym_partition] = ACTIONS(440), - [anon_sym_78] = ACTIONS(440), - [anon_sym_both] = ACTIONS(440), - [anon_sym_79] = ACTIONS(440), - [anon_sym_bracket] = ACTIONS(440), - [anon_sym_80] = ACTIONS(440), - [anon_sym_fork] = ACTIONS(440), - [anon_sym_81] = ACTIONS(440), - [anon_sym_under] = ACTIONS(440), - [anon_sym_82] = ACTIONS(440), - [anon_sym_level] = ACTIONS(440), - [anon_sym_83] = ACTIONS(440), - [anon_sym_fill] = ACTIONS(440), - [anon_sym_84] = ACTIONS(440), - [anon_sym_bind] = ACTIONS(440), - [anon_sym_SQUOTE] = ACTIONS(440), - [anon_sym_QMARK] = ACTIONS(440), - [anon_sym_try] = ACTIONS(438), - [anon_sym_85] = ACTIONS(440), - [anon_sym_combinate] = ACTIONS(440), - [anon_sym_86] = ACTIONS(440), - [anon_sym_87] = ACTIONS(440), - [anon_sym_88] = ACTIONS(440), - [anon_sym_89] = ACTIONS(440), - [anon_sym_90] = ACTIONS(440), - [anon_sym_91] = ACTIONS(440), - [anon_sym_92] = ACTIONS(440), - [anon_sym_93] = ACTIONS(440), + [ts_builtin_sym_end] = ACTIONS(422), + [aux_sym_number_token1] = ACTIONS(420), + [anon_sym_os] = ACTIONS(420), + [anon_sym_Family] = ACTIONS(420), + [anon_sym_Arch] = ACTIONS(420), + [anon_sym_ExeExt] = ACTIONS(420), + [anon_sym_PllExt] = ACTIONS(420), + [anon_sym_Sep] = ACTIONS(420), + [aux_sym_character_token1] = ACTIONS(422), + [sym_string] = ACTIONS(422), + [sym_multiLineString] = ACTIONS(422), + [anon_sym_PIPE] = ACTIONS(422), + [sym_identifier] = ACTIONS(420), + [sym_identifier_deprecated] = ACTIONS(420), + [sym_system] = ACTIONS(422), + [sym_comment] = ACTIONS(420), + [sym_openParen] = ACTIONS(422), + [sym_openCurly] = ACTIONS(422), + [sym_openBracket] = ACTIONS(422), + [sym_underscore] = ACTIONS(422), + [sym_leftArrow] = ACTIONS(422), + [anon_sym_CARET] = ACTIONS(422), + [anon_sym_eta] = ACTIONS(422), + [anon_sym_] = ACTIONS(420), + [anon_sym_pi] = ACTIONS(420), + [anon_sym_2] = ACTIONS(420), + [anon_sym_tau] = ACTIONS(422), + [anon_sym_3] = ACTIONS(420), + [anon_sym_infinity] = ACTIONS(422), + [anon_sym_4] = ACTIONS(422), + [anon_sym_e] = ACTIONS(420), + [anon_sym_NaN] = ACTIONS(420), + [anon_sym_NumProcs] = ACTIONS(420), + [anon_sym_DOT] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(422), + [anon_sym_5] = ACTIONS(422), + [anon_sym_SEMI] = ACTIONS(422), + [anon_sym_identity] = ACTIONS(422), + [anon_sym_id] = ACTIONS(420), + [anon_sym_6] = ACTIONS(422), + [anon_sym_not] = ACTIONS(422), + [anon_sym_7] = ACTIONS(422), + [anon_sym_sign] = ACTIONS(422), + [anon_sym_8] = ACTIONS(422), + [anon_sym_BQUOTE] = ACTIONS(422), + [anon_sym_9] = ACTIONS(422), + [anon_sym_absolutevalue] = ACTIONS(422), + [anon_sym_10] = ACTIONS(422), + [anon_sym_sqrt] = ACTIONS(422), + [anon_sym_11] = ACTIONS(422), + [anon_sym_sine] = ACTIONS(422), + [anon_sym_12] = ACTIONS(422), + [anon_sym_floor] = ACTIONS(422), + [anon_sym_13] = ACTIONS(422), + [anon_sym_ceiling] = ACTIONS(422), + [anon_sym_14] = ACTIONS(422), + [anon_sym_round] = ACTIONS(422), + [anon_sym_15] = ACTIONS(422), + [anon_sym_EQ] = ACTIONS(422), + [anon_sym_BANG_EQ] = ACTIONS(422), + [anon_sym_16] = ACTIONS(422), + [anon_sym_LT] = ACTIONS(420), + [anon_sym_LT_EQ] = ACTIONS(422), + [anon_sym_17] = ACTIONS(422), + [anon_sym_GT] = ACTIONS(420), + [anon_sym_GT_EQ] = ACTIONS(422), + [anon_sym_18] = ACTIONS(422), + [anon_sym_PLUS] = ACTIONS(422), + [anon_sym_DASH] = ACTIONS(422), + [anon_sym_STAR] = ACTIONS(422), + [anon_sym_19] = ACTIONS(422), + [anon_sym_PERCENT] = ACTIONS(422), + [anon_sym_20] = ACTIONS(422), + [anon_sym_modulus] = ACTIONS(422), + [anon_sym_21] = ACTIONS(422), + [anon_sym_power] = ACTIONS(422), + [anon_sym_22] = ACTIONS(422), + [anon_sym_logarithm] = ACTIONS(422), + [anon_sym_23] = ACTIONS(422), + [anon_sym_minimum] = ACTIONS(422), + [anon_sym_24] = ACTIONS(422), + [anon_sym_maximum] = ACTIONS(422), + [anon_sym_25] = ACTIONS(422), + [anon_sym_atangent] = ACTIONS(422), + [anon_sym_26] = ACTIONS(422), + [anon_sym_length] = ACTIONS(422), + [anon_sym_27] = ACTIONS(422), + [anon_sym_shape] = ACTIONS(422), + [anon_sym_28] = ACTIONS(422), + [anon_sym_range] = ACTIONS(422), + [anon_sym_29] = ACTIONS(422), + [anon_sym_first] = ACTIONS(422), + [anon_sym_30] = ACTIONS(422), + [anon_sym_reverse] = ACTIONS(422), + [anon_sym_31] = ACTIONS(422), + [anon_sym_deshape] = ACTIONS(422), + [anon_sym_32] = ACTIONS(422), + [anon_sym_bits] = ACTIONS(422), + [anon_sym_33] = ACTIONS(422), + [anon_sym_transpose] = ACTIONS(422), + [anon_sym_34] = ACTIONS(422), + [anon_sym_rise] = ACTIONS(422), + [anon_sym_35] = ACTIONS(422), + [anon_sym_fall] = ACTIONS(422), + [anon_sym_36] = ACTIONS(422), + [anon_sym_where] = ACTIONS(422), + [anon_sym_37] = ACTIONS(422), + [anon_sym_classify] = ACTIONS(422), + [anon_sym_38] = ACTIONS(422), + [anon_sym_deduplicate] = ACTIONS(422), + [anon_sym_39] = ACTIONS(422), + [anon_sym_box] = ACTIONS(422), + [anon_sym_40] = ACTIONS(422), + [anon_sym_unbox] = ACTIONS(422), + [anon_sym_41] = ACTIONS(422), + [anon_sym_match] = ACTIONS(422), + [anon_sym_42] = ACTIONS(422), + [anon_sym_couple] = ACTIONS(422), + [anon_sym_43] = ACTIONS(422), + [anon_sym_join] = ACTIONS(422), + [anon_sym_44] = ACTIONS(422), + [anon_sym_select] = ACTIONS(422), + [anon_sym_45] = ACTIONS(422), + [anon_sym_pick] = ACTIONS(422), + [anon_sym_46] = ACTIONS(422), + [anon_sym_reshape] = ACTIONS(422), + [anon_sym_47] = ACTIONS(422), + [anon_sym_take] = ACTIONS(422), + [anon_sym_48] = ACTIONS(422), + [anon_sym_drop] = ACTIONS(422), + [anon_sym_49] = ACTIONS(422), + [anon_sym_rotate] = ACTIONS(422), + [anon_sym_50] = ACTIONS(422), + [anon_sym_windows] = ACTIONS(422), + [anon_sym_51] = ACTIONS(422), + [anon_sym_keep] = ACTIONS(422), + [anon_sym_52] = ACTIONS(422), + [anon_sym_find] = ACTIONS(422), + [anon_sym_53] = ACTIONS(422), + [anon_sym_member] = ACTIONS(422), + [anon_sym_54] = ACTIONS(422), + [anon_sym_indexof] = ACTIONS(422), + [anon_sym_55] = ACTIONS(422), + [anon_sym_assert] = ACTIONS(422), + [anon_sym_56] = ACTIONS(422), + [anon_sym_wait] = ACTIONS(422), + [anon_sym_break] = ACTIONS(422), + [anon_sym_57] = ACTIONS(422), + [anon_sym_parse] = ACTIONS(422), + [anon_sym_random] = ACTIONS(422), + [anon_sym_58] = ACTIONS(422), + [anon_sym_gen] = ACTIONS(422), + [anon_sym_deal] = ACTIONS(422), + [anon_sym_tag] = ACTIONS(422), + [anon_sym_now] = ACTIONS(422), + [anon_sym_type] = ACTIONS(422), + [anon_sym_59] = ACTIONS(422), + [anon_sym_dump] = ACTIONS(422), + [anon_sym_regex] = ACTIONS(422), + [anon_sym_utf] = ACTIONS(422), + [anon_sym_rock] = ACTIONS(422), + [anon_sym_60] = ACTIONS(422), + [anon_sym_surface] = ACTIONS(422), + [anon_sym_TILDE] = ACTIONS(422), + [anon_sym_deep] = ACTIONS(422), + [anon_sym_de] = ACTIONS(420), + [anon_sym_61] = ACTIONS(422), + [anon_sym_abyss] = ACTIONS(422), + [anon_sym_ab] = ACTIONS(420), + [anon_sym_62] = ACTIONS(422), + [anon_sym_seabed] = ACTIONS(422), + [anon_sym_se] = ACTIONS(420), + [anon_sym_63] = ACTIONS(422), + [anon_sym_send] = ACTIONS(422), + [anon_sym_recv] = ACTIONS(422), + [anon_sym_tryrecv] = ACTIONS(422), + [anon_sym_reduce] = ACTIONS(422), + [anon_sym_SLASH] = ACTIONS(422), + [anon_sym_scan] = ACTIONS(422), + [anon_sym_BSLASH] = ACTIONS(422), + [anon_sym_each] = ACTIONS(422), + [anon_sym_64] = ACTIONS(422), + [anon_sym_rows] = ACTIONS(422), + [anon_sym_65] = ACTIONS(422), + [anon_sym_repeat] = ACTIONS(422), + [anon_sym_66] = ACTIONS(422), + [anon_sym_dip] = ACTIONS(422), + [anon_sym_67] = ACTIONS(422), + [anon_sym_gap] = ACTIONS(422), + [anon_sym_68] = ACTIONS(422), + [anon_sym_69] = ACTIONS(422), + [anon_sym_invert] = ACTIONS(422), + [anon_sym_70] = ACTIONS(422), + [anon_sym_spawn] = ACTIONS(422), + [anon_sym_pack] = ACTIONS(422), + [anon_sym_71] = ACTIONS(422), + [anon_sym_tribute] = ACTIONS(422), + [anon_sym_72] = ACTIONS(422), + [anon_sym_reach] = ACTIONS(422), + [anon_sym_fold] = ACTIONS(422), + [anon_sym_73] = ACTIONS(422), + [anon_sym_distribute] = ACTIONS(422), + [anon_sym_74] = ACTIONS(422), + [anon_sym_table] = ACTIONS(422), + [anon_sym_75] = ACTIONS(422), + [anon_sym_cross] = ACTIONS(422), + [anon_sym_76] = ACTIONS(422), + [anon_sym_group] = ACTIONS(422), + [anon_sym_77] = ACTIONS(422), + [anon_sym_partition] = ACTIONS(422), + [anon_sym_78] = ACTIONS(422), + [anon_sym_both] = ACTIONS(422), + [anon_sym_79] = ACTIONS(422), + [anon_sym_bracket] = ACTIONS(422), + [anon_sym_80] = ACTIONS(422), + [anon_sym_fork] = ACTIONS(422), + [anon_sym_81] = ACTIONS(422), + [anon_sym_under] = ACTIONS(422), + [anon_sym_82] = ACTIONS(422), + [anon_sym_level] = ACTIONS(422), + [anon_sym_83] = ACTIONS(422), + [anon_sym_fill] = ACTIONS(422), + [anon_sym_84] = ACTIONS(422), + [anon_sym_bind] = ACTIONS(422), + [anon_sym_SQUOTE] = ACTIONS(422), + [anon_sym_QMARK] = ACTIONS(422), + [anon_sym_try] = ACTIONS(420), + [anon_sym_85] = ACTIONS(422), + [anon_sym_combinate] = ACTIONS(422), + [anon_sym_86] = ACTIONS(422), + [anon_sym_87] = ACTIONS(422), + [anon_sym_88] = ACTIONS(422), + [anon_sym_89] = ACTIONS(422), + [anon_sym_90] = ACTIONS(422), + [anon_sym_91] = ACTIONS(422), + [anon_sym_92] = ACTIONS(422), + [anon_sym_93] = ACTIONS(422), [sym__whitespace] = ACTIONS(5), - [sym__end_of_line] = ACTIONS(440), + [sym__end_of_line] = ACTIONS(422), }, [93] = { - [ts_builtin_sym_end] = ACTIONS(508), - [aux_sym_number_token1] = ACTIONS(506), - [anon_sym_os] = ACTIONS(506), - [anon_sym_Family] = ACTIONS(506), - [anon_sym_Arch] = ACTIONS(506), - [anon_sym_ExeExt] = ACTIONS(506), - [anon_sym_PllExt] = ACTIONS(506), - [anon_sym_Sep] = ACTIONS(506), - [aux_sym_character_token1] = ACTIONS(508), - [sym_string] = ACTIONS(508), - [sym_multiLineString] = ACTIONS(508), - [anon_sym_PIPE] = ACTIONS(508), - [sym_identifier] = ACTIONS(506), - [sym_identifier_deprecated] = ACTIONS(506), - [sym_system] = ACTIONS(508), - [sym_comment] = ACTIONS(506), - [sym_openParen] = ACTIONS(508), - [sym_openCurly] = ACTIONS(508), - [sym_openBracket] = ACTIONS(508), - [sym_underscore] = ACTIONS(508), - [sym_leftArrow] = ACTIONS(508), - [anon_sym_CARET] = ACTIONS(508), - [anon_sym_eta] = ACTIONS(508), - [anon_sym_] = ACTIONS(506), - [anon_sym_pi] = ACTIONS(506), - [anon_sym_2] = ACTIONS(506), - [anon_sym_tau] = ACTIONS(508), - [anon_sym_3] = ACTIONS(506), - [anon_sym_infinity] = ACTIONS(508), - [anon_sym_4] = ACTIONS(508), - [anon_sym_e] = ACTIONS(506), - [anon_sym_NaN] = ACTIONS(506), - [anon_sym_NumProcs] = ACTIONS(506), - [anon_sym_DOT] = ACTIONS(508), - [anon_sym_COMMA] = ACTIONS(508), - [anon_sym_5] = ACTIONS(508), - [anon_sym_SEMI] = ACTIONS(508), - [anon_sym_identity] = ACTIONS(508), - [anon_sym_id] = ACTIONS(506), - [anon_sym_6] = ACTIONS(508), - [anon_sym_not] = ACTIONS(508), - [anon_sym_7] = ACTIONS(508), - [anon_sym_sign] = ACTIONS(508), - [anon_sym_8] = ACTIONS(508), - [anon_sym_BQUOTE] = ACTIONS(508), - [anon_sym_9] = ACTIONS(508), - [anon_sym_absolutevalue] = ACTIONS(508), - [anon_sym_10] = ACTIONS(508), - [anon_sym_sqrt] = ACTIONS(508), - [anon_sym_11] = ACTIONS(508), - [anon_sym_sine] = ACTIONS(508), - [anon_sym_12] = ACTIONS(508), - [anon_sym_floor] = ACTIONS(508), - [anon_sym_13] = ACTIONS(508), - [anon_sym_ceiling] = ACTIONS(508), - [anon_sym_14] = ACTIONS(508), - [anon_sym_round] = ACTIONS(508), - [anon_sym_15] = ACTIONS(508), - [anon_sym_EQ] = ACTIONS(508), - [anon_sym_BANG_EQ] = ACTIONS(508), - [anon_sym_16] = ACTIONS(508), - [anon_sym_LT] = ACTIONS(506), - [anon_sym_LT_EQ] = ACTIONS(508), - [anon_sym_17] = ACTIONS(508), - [anon_sym_GT] = ACTIONS(506), - [anon_sym_GT_EQ] = ACTIONS(508), - [anon_sym_18] = ACTIONS(508), - [anon_sym_PLUS] = ACTIONS(508), - [anon_sym_DASH] = ACTIONS(508), - [anon_sym_STAR] = ACTIONS(508), - [anon_sym_19] = ACTIONS(508), - [anon_sym_PERCENT] = ACTIONS(508), - [anon_sym_20] = ACTIONS(508), - [anon_sym_modulus] = ACTIONS(508), - [anon_sym_21] = ACTIONS(508), - [anon_sym_power] = ACTIONS(508), - [anon_sym_22] = ACTIONS(508), - [anon_sym_logarithm] = ACTIONS(508), - [anon_sym_23] = ACTIONS(508), - [anon_sym_minimum] = ACTIONS(508), - [anon_sym_24] = ACTIONS(508), - [anon_sym_maximum] = ACTIONS(508), - [anon_sym_25] = ACTIONS(508), - [anon_sym_atangent] = ACTIONS(508), - [anon_sym_26] = ACTIONS(508), - [anon_sym_length] = ACTIONS(508), - [anon_sym_27] = ACTIONS(508), - [anon_sym_shape] = ACTIONS(508), - [anon_sym_28] = ACTIONS(508), - [anon_sym_range] = ACTIONS(508), - [anon_sym_29] = ACTIONS(508), - [anon_sym_first] = ACTIONS(508), - [anon_sym_30] = ACTIONS(508), - [anon_sym_reverse] = ACTIONS(508), - [anon_sym_31] = ACTIONS(508), - [anon_sym_deshape] = ACTIONS(508), - [anon_sym_32] = ACTIONS(508), - [anon_sym_bits] = ACTIONS(508), - [anon_sym_33] = ACTIONS(508), - [anon_sym_transpose] = ACTIONS(508), - [anon_sym_34] = ACTIONS(508), - [anon_sym_rise] = ACTIONS(508), - [anon_sym_35] = ACTIONS(508), - [anon_sym_fall] = ACTIONS(508), - [anon_sym_36] = ACTIONS(508), - [anon_sym_where] = ACTIONS(508), - [anon_sym_37] = ACTIONS(508), - [anon_sym_classify] = ACTIONS(508), - [anon_sym_38] = ACTIONS(508), - [anon_sym_deduplicate] = ACTIONS(508), - [anon_sym_39] = ACTIONS(508), - [anon_sym_box] = ACTIONS(508), - [anon_sym_40] = ACTIONS(508), - [anon_sym_unbox] = ACTIONS(508), - [anon_sym_41] = ACTIONS(508), - [anon_sym_match] = ACTIONS(508), - [anon_sym_42] = ACTIONS(508), - [anon_sym_couple] = ACTIONS(508), - [anon_sym_43] = ACTIONS(508), - [anon_sym_join] = ACTIONS(508), - [anon_sym_44] = ACTIONS(508), - [anon_sym_select] = ACTIONS(508), - [anon_sym_45] = ACTIONS(508), - [anon_sym_pick] = ACTIONS(508), - [anon_sym_46] = ACTIONS(508), - [anon_sym_reshape] = ACTIONS(508), - [anon_sym_47] = ACTIONS(508), - [anon_sym_take] = ACTIONS(508), - [anon_sym_48] = ACTIONS(508), - [anon_sym_drop] = ACTIONS(508), - [anon_sym_49] = ACTIONS(508), - [anon_sym_rotate] = ACTIONS(508), - [anon_sym_50] = ACTIONS(508), - [anon_sym_windows] = ACTIONS(508), - [anon_sym_51] = ACTIONS(508), - [anon_sym_keep] = ACTIONS(508), - [anon_sym_52] = ACTIONS(508), - [anon_sym_find] = ACTIONS(508), - [anon_sym_53] = ACTIONS(508), - [anon_sym_member] = ACTIONS(508), - [anon_sym_54] = ACTIONS(508), - [anon_sym_indexof] = ACTIONS(508), - [anon_sym_55] = ACTIONS(508), - [anon_sym_assert] = ACTIONS(508), - [anon_sym_56] = ACTIONS(508), - [anon_sym_wait] = ACTIONS(508), - [anon_sym_break] = ACTIONS(508), - [anon_sym_57] = ACTIONS(508), - [anon_sym_parse] = ACTIONS(508), - [anon_sym_random] = ACTIONS(508), - [anon_sym_58] = ACTIONS(508), - [anon_sym_gen] = ACTIONS(508), - [anon_sym_deal] = ACTIONS(508), - [anon_sym_tag] = ACTIONS(508), - [anon_sym_now] = ACTIONS(508), - [anon_sym_type] = ACTIONS(508), - [anon_sym_59] = ACTIONS(508), - [anon_sym_dump] = ACTIONS(508), - [anon_sym_regex] = ACTIONS(508), - [anon_sym_utf] = ACTIONS(508), - [anon_sym_rock] = ACTIONS(508), - [anon_sym_60] = ACTIONS(508), - [anon_sym_surface] = ACTIONS(508), - [anon_sym_TILDE] = ACTIONS(508), - [anon_sym_deep] = ACTIONS(508), - [anon_sym_de] = ACTIONS(506), - [anon_sym_61] = ACTIONS(508), - [anon_sym_abyss] = ACTIONS(508), - [anon_sym_ab] = ACTIONS(506), - [anon_sym_62] = ACTIONS(508), - [anon_sym_seabed] = ACTIONS(508), - [anon_sym_se] = ACTIONS(506), - [anon_sym_63] = ACTIONS(508), - [anon_sym_send] = ACTIONS(508), - [anon_sym_recv] = ACTIONS(508), - [anon_sym_tryrecv] = ACTIONS(508), - [anon_sym_reduce] = ACTIONS(508), - [anon_sym_SLASH] = ACTIONS(508), - [anon_sym_scan] = ACTIONS(508), - [anon_sym_BSLASH] = ACTIONS(508), - [anon_sym_each] = ACTIONS(508), - [anon_sym_64] = ACTIONS(508), - [anon_sym_rows] = ACTIONS(508), - [anon_sym_65] = ACTIONS(508), - [anon_sym_repeat] = ACTIONS(508), - [anon_sym_66] = ACTIONS(508), - [anon_sym_dip] = ACTIONS(508), - [anon_sym_di] = ACTIONS(506), - [anon_sym_67] = ACTIONS(508), - [anon_sym_gap] = ACTIONS(508), - [anon_sym_ga] = ACTIONS(506), - [anon_sym_68] = ACTIONS(508), - [anon_sym_oust] = ACTIONS(508), - [anon_sym_69] = ACTIONS(508), - [anon_sym_invert] = ACTIONS(508), - [anon_sym_70] = ACTIONS(508), - [anon_sym_spawn] = ACTIONS(508), - [anon_sym_pack] = ACTIONS(508), - [anon_sym_71] = ACTIONS(508), - [anon_sym_tribute] = ACTIONS(508), - [anon_sym_72] = ACTIONS(508), - [anon_sym_fold] = ACTIONS(508), - [anon_sym_73] = ACTIONS(508), - [anon_sym_distribute] = ACTIONS(508), - [anon_sym_74] = ACTIONS(508), - [anon_sym_table] = ACTIONS(508), - [anon_sym_75] = ACTIONS(508), - [anon_sym_cross] = ACTIONS(508), - [anon_sym_76] = ACTIONS(508), - [anon_sym_group] = ACTIONS(508), - [anon_sym_77] = ACTIONS(508), - [anon_sym_partition] = ACTIONS(508), - [anon_sym_78] = ACTIONS(508), - [anon_sym_both] = ACTIONS(508), - [anon_sym_79] = ACTIONS(508), - [anon_sym_bracket] = ACTIONS(508), - [anon_sym_80] = ACTIONS(508), - [anon_sym_fork] = ACTIONS(508), - [anon_sym_81] = ACTIONS(508), - [anon_sym_under] = ACTIONS(508), - [anon_sym_82] = ACTIONS(508), - [anon_sym_level] = ACTIONS(508), - [anon_sym_83] = ACTIONS(508), - [anon_sym_fill] = ACTIONS(508), - [anon_sym_84] = ACTIONS(508), - [anon_sym_bind] = ACTIONS(508), - [anon_sym_SQUOTE] = ACTIONS(508), - [anon_sym_QMARK] = ACTIONS(508), - [anon_sym_try] = ACTIONS(506), - [anon_sym_85] = ACTIONS(508), - [anon_sym_combinate] = ACTIONS(508), - [anon_sym_86] = ACTIONS(508), - [anon_sym_87] = ACTIONS(508), - [anon_sym_88] = ACTIONS(508), - [anon_sym_89] = ACTIONS(508), - [anon_sym_90] = ACTIONS(508), - [anon_sym_91] = ACTIONS(508), - [anon_sym_92] = ACTIONS(508), - [anon_sym_93] = ACTIONS(508), + [ts_builtin_sym_end] = ACTIONS(490), + [aux_sym_number_token1] = ACTIONS(488), + [anon_sym_os] = ACTIONS(488), + [anon_sym_Family] = ACTIONS(488), + [anon_sym_Arch] = ACTIONS(488), + [anon_sym_ExeExt] = ACTIONS(488), + [anon_sym_PllExt] = ACTIONS(488), + [anon_sym_Sep] = ACTIONS(488), + [aux_sym_character_token1] = ACTIONS(490), + [sym_string] = ACTIONS(490), + [sym_multiLineString] = ACTIONS(490), + [anon_sym_PIPE] = ACTIONS(490), + [sym_identifier] = ACTIONS(488), + [sym_identifier_deprecated] = ACTIONS(488), + [sym_system] = ACTIONS(490), + [sym_comment] = ACTIONS(488), + [sym_openParen] = ACTIONS(490), + [sym_openCurly] = ACTIONS(490), + [sym_openBracket] = ACTIONS(490), + [sym_underscore] = ACTIONS(490), + [sym_leftArrow] = ACTIONS(490), + [anon_sym_CARET] = ACTIONS(490), + [anon_sym_eta] = ACTIONS(490), + [anon_sym_] = ACTIONS(488), + [anon_sym_pi] = ACTIONS(488), + [anon_sym_2] = ACTIONS(488), + [anon_sym_tau] = ACTIONS(490), + [anon_sym_3] = ACTIONS(488), + [anon_sym_infinity] = ACTIONS(490), + [anon_sym_4] = ACTIONS(490), + [anon_sym_e] = ACTIONS(488), + [anon_sym_NaN] = ACTIONS(488), + [anon_sym_NumProcs] = ACTIONS(488), + [anon_sym_DOT] = ACTIONS(490), + [anon_sym_COMMA] = ACTIONS(490), + [anon_sym_5] = ACTIONS(490), + [anon_sym_SEMI] = ACTIONS(490), + [anon_sym_identity] = ACTIONS(490), + [anon_sym_id] = ACTIONS(488), + [anon_sym_6] = ACTIONS(490), + [anon_sym_not] = ACTIONS(490), + [anon_sym_7] = ACTIONS(490), + [anon_sym_sign] = ACTIONS(490), + [anon_sym_8] = ACTIONS(490), + [anon_sym_BQUOTE] = ACTIONS(490), + [anon_sym_9] = ACTIONS(490), + [anon_sym_absolutevalue] = ACTIONS(490), + [anon_sym_10] = ACTIONS(490), + [anon_sym_sqrt] = ACTIONS(490), + [anon_sym_11] = ACTIONS(490), + [anon_sym_sine] = ACTIONS(490), + [anon_sym_12] = ACTIONS(490), + [anon_sym_floor] = ACTIONS(490), + [anon_sym_13] = ACTIONS(490), + [anon_sym_ceiling] = ACTIONS(490), + [anon_sym_14] = ACTIONS(490), + [anon_sym_round] = ACTIONS(490), + [anon_sym_15] = ACTIONS(490), + [anon_sym_EQ] = ACTIONS(490), + [anon_sym_BANG_EQ] = ACTIONS(490), + [anon_sym_16] = ACTIONS(490), + [anon_sym_LT] = ACTIONS(488), + [anon_sym_LT_EQ] = ACTIONS(490), + [anon_sym_17] = ACTIONS(490), + [anon_sym_GT] = ACTIONS(488), + [anon_sym_GT_EQ] = ACTIONS(490), + [anon_sym_18] = ACTIONS(490), + [anon_sym_PLUS] = ACTIONS(490), + [anon_sym_DASH] = ACTIONS(490), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_19] = ACTIONS(490), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_20] = ACTIONS(490), + [anon_sym_modulus] = ACTIONS(490), + [anon_sym_21] = ACTIONS(490), + [anon_sym_power] = ACTIONS(490), + [anon_sym_22] = ACTIONS(490), + [anon_sym_logarithm] = ACTIONS(490), + [anon_sym_23] = ACTIONS(490), + [anon_sym_minimum] = ACTIONS(490), + [anon_sym_24] = ACTIONS(490), + [anon_sym_maximum] = ACTIONS(490), + [anon_sym_25] = ACTIONS(490), + [anon_sym_atangent] = ACTIONS(490), + [anon_sym_26] = ACTIONS(490), + [anon_sym_length] = ACTIONS(490), + [anon_sym_27] = ACTIONS(490), + [anon_sym_shape] = ACTIONS(490), + [anon_sym_28] = ACTIONS(490), + [anon_sym_range] = ACTIONS(490), + [anon_sym_29] = ACTIONS(490), + [anon_sym_first] = ACTIONS(490), + [anon_sym_30] = ACTIONS(490), + [anon_sym_reverse] = ACTIONS(490), + [anon_sym_31] = ACTIONS(490), + [anon_sym_deshape] = ACTIONS(490), + [anon_sym_32] = ACTIONS(490), + [anon_sym_bits] = ACTIONS(490), + [anon_sym_33] = ACTIONS(490), + [anon_sym_transpose] = ACTIONS(490), + [anon_sym_34] = ACTIONS(490), + [anon_sym_rise] = ACTIONS(490), + [anon_sym_35] = ACTIONS(490), + [anon_sym_fall] = ACTIONS(490), + [anon_sym_36] = ACTIONS(490), + [anon_sym_where] = ACTIONS(490), + [anon_sym_37] = ACTIONS(490), + [anon_sym_classify] = ACTIONS(490), + [anon_sym_38] = ACTIONS(490), + [anon_sym_deduplicate] = ACTIONS(490), + [anon_sym_39] = ACTIONS(490), + [anon_sym_box] = ACTIONS(490), + [anon_sym_40] = ACTIONS(490), + [anon_sym_unbox] = ACTIONS(490), + [anon_sym_41] = ACTIONS(490), + [anon_sym_match] = ACTIONS(490), + [anon_sym_42] = ACTIONS(490), + [anon_sym_couple] = ACTIONS(490), + [anon_sym_43] = ACTIONS(490), + [anon_sym_join] = ACTIONS(490), + [anon_sym_44] = ACTIONS(490), + [anon_sym_select] = ACTIONS(490), + [anon_sym_45] = ACTIONS(490), + [anon_sym_pick] = ACTIONS(490), + [anon_sym_46] = ACTIONS(490), + [anon_sym_reshape] = ACTIONS(490), + [anon_sym_47] = ACTIONS(490), + [anon_sym_take] = ACTIONS(490), + [anon_sym_48] = ACTIONS(490), + [anon_sym_drop] = ACTIONS(490), + [anon_sym_49] = ACTIONS(490), + [anon_sym_rotate] = ACTIONS(490), + [anon_sym_50] = ACTIONS(490), + [anon_sym_windows] = ACTIONS(490), + [anon_sym_51] = ACTIONS(490), + [anon_sym_keep] = ACTIONS(490), + [anon_sym_52] = ACTIONS(490), + [anon_sym_find] = ACTIONS(490), + [anon_sym_53] = ACTIONS(490), + [anon_sym_member] = ACTIONS(490), + [anon_sym_54] = ACTIONS(490), + [anon_sym_indexof] = ACTIONS(490), + [anon_sym_55] = ACTIONS(490), + [anon_sym_assert] = ACTIONS(490), + [anon_sym_56] = ACTIONS(490), + [anon_sym_wait] = ACTIONS(490), + [anon_sym_break] = ACTIONS(490), + [anon_sym_57] = ACTIONS(490), + [anon_sym_parse] = ACTIONS(490), + [anon_sym_random] = ACTIONS(490), + [anon_sym_58] = ACTIONS(490), + [anon_sym_gen] = ACTIONS(490), + [anon_sym_deal] = ACTIONS(490), + [anon_sym_tag] = ACTIONS(490), + [anon_sym_now] = ACTIONS(490), + [anon_sym_type] = ACTIONS(490), + [anon_sym_59] = ACTIONS(490), + [anon_sym_dump] = ACTIONS(490), + [anon_sym_regex] = ACTIONS(490), + [anon_sym_utf] = ACTIONS(490), + [anon_sym_rock] = ACTIONS(490), + [anon_sym_60] = ACTIONS(490), + [anon_sym_surface] = ACTIONS(490), + [anon_sym_TILDE] = ACTIONS(490), + [anon_sym_deep] = ACTIONS(490), + [anon_sym_de] = ACTIONS(488), + [anon_sym_61] = ACTIONS(490), + [anon_sym_abyss] = ACTIONS(490), + [anon_sym_ab] = ACTIONS(488), + [anon_sym_62] = ACTIONS(490), + [anon_sym_seabed] = ACTIONS(490), + [anon_sym_se] = ACTIONS(488), + [anon_sym_63] = ACTIONS(490), + [anon_sym_send] = ACTIONS(490), + [anon_sym_recv] = ACTIONS(490), + [anon_sym_tryrecv] = ACTIONS(490), + [anon_sym_reduce] = ACTIONS(490), + [anon_sym_SLASH] = ACTIONS(490), + [anon_sym_scan] = ACTIONS(490), + [anon_sym_BSLASH] = ACTIONS(490), + [anon_sym_each] = ACTIONS(490), + [anon_sym_64] = ACTIONS(490), + [anon_sym_rows] = ACTIONS(490), + [anon_sym_65] = ACTIONS(490), + [anon_sym_repeat] = ACTIONS(490), + [anon_sym_66] = ACTIONS(490), + [anon_sym_dip] = ACTIONS(490), + [anon_sym_67] = ACTIONS(490), + [anon_sym_gap] = ACTIONS(490), + [anon_sym_68] = ACTIONS(490), + [anon_sym_69] = ACTIONS(490), + [anon_sym_invert] = ACTIONS(490), + [anon_sym_70] = ACTIONS(490), + [anon_sym_spawn] = ACTIONS(490), + [anon_sym_pack] = ACTIONS(490), + [anon_sym_71] = ACTIONS(490), + [anon_sym_tribute] = ACTIONS(490), + [anon_sym_72] = ACTIONS(490), + [anon_sym_reach] = ACTIONS(490), + [anon_sym_fold] = ACTIONS(490), + [anon_sym_73] = ACTIONS(490), + [anon_sym_distribute] = ACTIONS(490), + [anon_sym_74] = ACTIONS(490), + [anon_sym_table] = ACTIONS(490), + [anon_sym_75] = ACTIONS(490), + [anon_sym_cross] = ACTIONS(490), + [anon_sym_76] = ACTIONS(490), + [anon_sym_group] = ACTIONS(490), + [anon_sym_77] = ACTIONS(490), + [anon_sym_partition] = ACTIONS(490), + [anon_sym_78] = ACTIONS(490), + [anon_sym_both] = ACTIONS(490), + [anon_sym_79] = ACTIONS(490), + [anon_sym_bracket] = ACTIONS(490), + [anon_sym_80] = ACTIONS(490), + [anon_sym_fork] = ACTIONS(490), + [anon_sym_81] = ACTIONS(490), + [anon_sym_under] = ACTIONS(490), + [anon_sym_82] = ACTIONS(490), + [anon_sym_level] = ACTIONS(490), + [anon_sym_83] = ACTIONS(490), + [anon_sym_fill] = ACTIONS(490), + [anon_sym_84] = ACTIONS(490), + [anon_sym_bind] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(490), + [anon_sym_QMARK] = ACTIONS(490), + [anon_sym_try] = ACTIONS(488), + [anon_sym_85] = ACTIONS(490), + [anon_sym_combinate] = ACTIONS(490), + [anon_sym_86] = ACTIONS(490), + [anon_sym_87] = ACTIONS(490), + [anon_sym_88] = ACTIONS(490), + [anon_sym_89] = ACTIONS(490), + [anon_sym_90] = ACTIONS(490), + [anon_sym_91] = ACTIONS(490), + [anon_sym_92] = ACTIONS(490), + [anon_sym_93] = ACTIONS(490), [sym__whitespace] = ACTIONS(5), - [sym__end_of_line] = ACTIONS(508), + [sym__end_of_line] = ACTIONS(490), }, [94] = { - [ts_builtin_sym_end] = ACTIONS(420), - [aux_sym_number_token1] = ACTIONS(418), - [anon_sym_os] = ACTIONS(418), - [anon_sym_Family] = ACTIONS(418), - [anon_sym_Arch] = ACTIONS(418), - [anon_sym_ExeExt] = ACTIONS(418), - [anon_sym_PllExt] = ACTIONS(418), - [anon_sym_Sep] = ACTIONS(418), - [aux_sym_character_token1] = ACTIONS(420), - [sym_string] = ACTIONS(420), - [sym_multiLineString] = ACTIONS(420), - [anon_sym_PIPE] = ACTIONS(420), - [sym_identifier] = ACTIONS(418), - [sym_identifier_deprecated] = ACTIONS(418), - [sym_system] = ACTIONS(420), - [sym_comment] = ACTIONS(418), - [sym_openParen] = ACTIONS(420), - [sym_openCurly] = ACTIONS(420), - [sym_openBracket] = ACTIONS(420), - [sym_underscore] = ACTIONS(420), - [sym_leftArrow] = ACTIONS(420), - [anon_sym_CARET] = ACTIONS(420), - [anon_sym_eta] = ACTIONS(420), - [anon_sym_] = ACTIONS(418), - [anon_sym_pi] = ACTIONS(418), - [anon_sym_2] = ACTIONS(418), - [anon_sym_tau] = ACTIONS(420), - [anon_sym_3] = ACTIONS(418), - [anon_sym_infinity] = ACTIONS(420), - [anon_sym_4] = ACTIONS(420), - [anon_sym_e] = ACTIONS(418), - [anon_sym_NaN] = ACTIONS(418), - [anon_sym_NumProcs] = ACTIONS(418), - [anon_sym_DOT] = ACTIONS(420), - [anon_sym_COMMA] = ACTIONS(420), - [anon_sym_5] = ACTIONS(420), - [anon_sym_SEMI] = ACTIONS(420), - [anon_sym_identity] = ACTIONS(420), - [anon_sym_id] = ACTIONS(418), - [anon_sym_6] = ACTIONS(420), - [anon_sym_not] = ACTIONS(420), - [anon_sym_7] = ACTIONS(420), - [anon_sym_sign] = ACTIONS(420), - [anon_sym_8] = ACTIONS(420), - [anon_sym_BQUOTE] = ACTIONS(420), - [anon_sym_9] = ACTIONS(420), - [anon_sym_absolutevalue] = ACTIONS(420), - [anon_sym_10] = ACTIONS(420), - [anon_sym_sqrt] = ACTIONS(420), - [anon_sym_11] = ACTIONS(420), - [anon_sym_sine] = ACTIONS(420), - [anon_sym_12] = ACTIONS(420), - [anon_sym_floor] = ACTIONS(420), - [anon_sym_13] = ACTIONS(420), - [anon_sym_ceiling] = ACTIONS(420), - [anon_sym_14] = ACTIONS(420), - [anon_sym_round] = ACTIONS(420), - [anon_sym_15] = ACTIONS(420), - [anon_sym_EQ] = ACTIONS(420), - [anon_sym_BANG_EQ] = ACTIONS(420), - [anon_sym_16] = ACTIONS(420), - [anon_sym_LT] = ACTIONS(418), - [anon_sym_LT_EQ] = ACTIONS(420), - [anon_sym_17] = ACTIONS(420), - [anon_sym_GT] = ACTIONS(418), - [anon_sym_GT_EQ] = ACTIONS(420), - [anon_sym_18] = ACTIONS(420), - [anon_sym_PLUS] = ACTIONS(420), - [anon_sym_DASH] = ACTIONS(420), - [anon_sym_STAR] = ACTIONS(420), - [anon_sym_19] = ACTIONS(420), - [anon_sym_PERCENT] = ACTIONS(420), - [anon_sym_20] = ACTIONS(420), - [anon_sym_modulus] = ACTIONS(420), - [anon_sym_21] = ACTIONS(420), - [anon_sym_power] = ACTIONS(420), - [anon_sym_22] = ACTIONS(420), - [anon_sym_logarithm] = ACTIONS(420), - [anon_sym_23] = ACTIONS(420), - [anon_sym_minimum] = ACTIONS(420), - [anon_sym_24] = ACTIONS(420), - [anon_sym_maximum] = ACTIONS(420), - [anon_sym_25] = ACTIONS(420), - [anon_sym_atangent] = ACTIONS(420), - [anon_sym_26] = ACTIONS(420), - [anon_sym_length] = ACTIONS(420), - [anon_sym_27] = ACTIONS(420), - [anon_sym_shape] = ACTIONS(420), - [anon_sym_28] = ACTIONS(420), - [anon_sym_range] = ACTIONS(420), - [anon_sym_29] = ACTIONS(420), - [anon_sym_first] = ACTIONS(420), - [anon_sym_30] = ACTIONS(420), - [anon_sym_reverse] = ACTIONS(420), - [anon_sym_31] = ACTIONS(420), - [anon_sym_deshape] = ACTIONS(420), - [anon_sym_32] = ACTIONS(420), - [anon_sym_bits] = ACTIONS(420), - [anon_sym_33] = ACTIONS(420), - [anon_sym_transpose] = ACTIONS(420), - [anon_sym_34] = ACTIONS(420), - [anon_sym_rise] = ACTIONS(420), - [anon_sym_35] = ACTIONS(420), - [anon_sym_fall] = ACTIONS(420), - [anon_sym_36] = ACTIONS(420), - [anon_sym_where] = ACTIONS(420), - [anon_sym_37] = ACTIONS(420), - [anon_sym_classify] = ACTIONS(420), - [anon_sym_38] = ACTIONS(420), - [anon_sym_deduplicate] = ACTIONS(420), - [anon_sym_39] = ACTIONS(420), - [anon_sym_box] = ACTIONS(420), - [anon_sym_40] = ACTIONS(420), - [anon_sym_unbox] = ACTIONS(420), - [anon_sym_41] = ACTIONS(420), - [anon_sym_match] = ACTIONS(420), - [anon_sym_42] = ACTIONS(420), - [anon_sym_couple] = ACTIONS(420), - [anon_sym_43] = ACTIONS(420), - [anon_sym_join] = ACTIONS(420), - [anon_sym_44] = ACTIONS(420), - [anon_sym_select] = ACTIONS(420), - [anon_sym_45] = ACTIONS(420), - [anon_sym_pick] = ACTIONS(420), - [anon_sym_46] = ACTIONS(420), - [anon_sym_reshape] = ACTIONS(420), - [anon_sym_47] = ACTIONS(420), - [anon_sym_take] = ACTIONS(420), - [anon_sym_48] = ACTIONS(420), - [anon_sym_drop] = ACTIONS(420), - [anon_sym_49] = ACTIONS(420), - [anon_sym_rotate] = ACTIONS(420), - [anon_sym_50] = ACTIONS(420), - [anon_sym_windows] = ACTIONS(420), - [anon_sym_51] = ACTIONS(420), - [anon_sym_keep] = ACTIONS(420), - [anon_sym_52] = ACTIONS(420), - [anon_sym_find] = ACTIONS(420), - [anon_sym_53] = ACTIONS(420), - [anon_sym_member] = ACTIONS(420), - [anon_sym_54] = ACTIONS(420), - [anon_sym_indexof] = ACTIONS(420), - [anon_sym_55] = ACTIONS(420), - [anon_sym_assert] = ACTIONS(420), - [anon_sym_56] = ACTIONS(420), - [anon_sym_wait] = ACTIONS(420), - [anon_sym_break] = ACTIONS(420), - [anon_sym_57] = ACTIONS(420), - [anon_sym_parse] = ACTIONS(420), - [anon_sym_random] = ACTIONS(420), - [anon_sym_58] = ACTIONS(420), - [anon_sym_gen] = ACTIONS(420), - [anon_sym_deal] = ACTIONS(420), - [anon_sym_tag] = ACTIONS(420), - [anon_sym_now] = ACTIONS(420), - [anon_sym_type] = ACTIONS(420), - [anon_sym_59] = ACTIONS(420), - [anon_sym_dump] = ACTIONS(420), - [anon_sym_regex] = ACTIONS(420), - [anon_sym_utf] = ACTIONS(420), - [anon_sym_rock] = ACTIONS(420), - [anon_sym_60] = ACTIONS(420), - [anon_sym_surface] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(420), - [anon_sym_deep] = ACTIONS(420), - [anon_sym_de] = ACTIONS(418), - [anon_sym_61] = ACTIONS(420), - [anon_sym_abyss] = ACTIONS(420), - [anon_sym_ab] = ACTIONS(418), - [anon_sym_62] = ACTIONS(420), - [anon_sym_seabed] = ACTIONS(420), - [anon_sym_se] = ACTIONS(418), - [anon_sym_63] = ACTIONS(420), - [anon_sym_send] = ACTIONS(420), - [anon_sym_recv] = ACTIONS(420), - [anon_sym_tryrecv] = ACTIONS(420), - [anon_sym_reduce] = ACTIONS(420), - [anon_sym_SLASH] = ACTIONS(420), - [anon_sym_scan] = ACTIONS(420), - [anon_sym_BSLASH] = ACTIONS(420), - [anon_sym_each] = ACTIONS(420), - [anon_sym_64] = ACTIONS(420), - [anon_sym_rows] = ACTIONS(420), - [anon_sym_65] = ACTIONS(420), - [anon_sym_repeat] = ACTIONS(420), - [anon_sym_66] = ACTIONS(420), - [anon_sym_dip] = ACTIONS(420), - [anon_sym_di] = ACTIONS(418), - [anon_sym_67] = ACTIONS(420), - [anon_sym_gap] = ACTIONS(420), - [anon_sym_ga] = ACTIONS(418), - [anon_sym_68] = ACTIONS(420), - [anon_sym_oust] = ACTIONS(420), - [anon_sym_69] = ACTIONS(420), - [anon_sym_invert] = ACTIONS(420), - [anon_sym_70] = ACTIONS(420), - [anon_sym_spawn] = ACTIONS(420), - [anon_sym_pack] = ACTIONS(420), - [anon_sym_71] = ACTIONS(420), - [anon_sym_tribute] = ACTIONS(420), - [anon_sym_72] = ACTIONS(420), - [anon_sym_fold] = ACTIONS(420), - [anon_sym_73] = ACTIONS(420), - [anon_sym_distribute] = ACTIONS(420), - [anon_sym_74] = ACTIONS(420), - [anon_sym_table] = ACTIONS(420), - [anon_sym_75] = ACTIONS(420), - [anon_sym_cross] = ACTIONS(420), - [anon_sym_76] = ACTIONS(420), - [anon_sym_group] = ACTIONS(420), - [anon_sym_77] = ACTIONS(420), - [anon_sym_partition] = ACTIONS(420), - [anon_sym_78] = ACTIONS(420), - [anon_sym_both] = ACTIONS(420), - [anon_sym_79] = ACTIONS(420), - [anon_sym_bracket] = ACTIONS(420), - [anon_sym_80] = ACTIONS(420), - [anon_sym_fork] = ACTIONS(420), - [anon_sym_81] = ACTIONS(420), - [anon_sym_under] = ACTIONS(420), - [anon_sym_82] = ACTIONS(420), - [anon_sym_level] = ACTIONS(420), - [anon_sym_83] = ACTIONS(420), - [anon_sym_fill] = ACTIONS(420), - [anon_sym_84] = ACTIONS(420), - [anon_sym_bind] = ACTIONS(420), - [anon_sym_SQUOTE] = ACTIONS(420), - [anon_sym_QMARK] = ACTIONS(420), - [anon_sym_try] = ACTIONS(418), - [anon_sym_85] = ACTIONS(420), - [anon_sym_combinate] = ACTIONS(420), - [anon_sym_86] = ACTIONS(420), - [anon_sym_87] = ACTIONS(420), - [anon_sym_88] = ACTIONS(420), - [anon_sym_89] = ACTIONS(420), - [anon_sym_90] = ACTIONS(420), - [anon_sym_91] = ACTIONS(420), - [anon_sym_92] = ACTIONS(420), - [anon_sym_93] = ACTIONS(420), + [ts_builtin_sym_end] = ACTIONS(402), + [aux_sym_number_token1] = ACTIONS(400), + [anon_sym_os] = ACTIONS(400), + [anon_sym_Family] = ACTIONS(400), + [anon_sym_Arch] = ACTIONS(400), + [anon_sym_ExeExt] = ACTIONS(400), + [anon_sym_PllExt] = ACTIONS(400), + [anon_sym_Sep] = ACTIONS(400), + [aux_sym_character_token1] = ACTIONS(402), + [sym_string] = ACTIONS(402), + [sym_multiLineString] = ACTIONS(402), + [anon_sym_PIPE] = ACTIONS(402), + [sym_identifier] = ACTIONS(400), + [sym_identifier_deprecated] = ACTIONS(400), + [sym_system] = ACTIONS(402), + [sym_comment] = ACTIONS(400), + [sym_openParen] = ACTIONS(402), + [sym_openCurly] = ACTIONS(402), + [sym_openBracket] = ACTIONS(402), + [sym_underscore] = ACTIONS(402), + [sym_leftArrow] = ACTIONS(402), + [anon_sym_CARET] = ACTIONS(402), + [anon_sym_eta] = ACTIONS(402), + [anon_sym_] = ACTIONS(400), + [anon_sym_pi] = ACTIONS(400), + [anon_sym_2] = ACTIONS(400), + [anon_sym_tau] = ACTIONS(402), + [anon_sym_3] = ACTIONS(400), + [anon_sym_infinity] = ACTIONS(402), + [anon_sym_4] = ACTIONS(402), + [anon_sym_e] = ACTIONS(400), + [anon_sym_NaN] = ACTIONS(400), + [anon_sym_NumProcs] = ACTIONS(400), + [anon_sym_DOT] = ACTIONS(402), + [anon_sym_COMMA] = ACTIONS(402), + [anon_sym_5] = ACTIONS(402), + [anon_sym_SEMI] = ACTIONS(402), + [anon_sym_identity] = ACTIONS(402), + [anon_sym_id] = ACTIONS(400), + [anon_sym_6] = ACTIONS(402), + [anon_sym_not] = ACTIONS(402), + [anon_sym_7] = ACTIONS(402), + [anon_sym_sign] = ACTIONS(402), + [anon_sym_8] = ACTIONS(402), + [anon_sym_BQUOTE] = ACTIONS(402), + [anon_sym_9] = ACTIONS(402), + [anon_sym_absolutevalue] = ACTIONS(402), + [anon_sym_10] = ACTIONS(402), + [anon_sym_sqrt] = ACTIONS(402), + [anon_sym_11] = ACTIONS(402), + [anon_sym_sine] = ACTIONS(402), + [anon_sym_12] = ACTIONS(402), + [anon_sym_floor] = ACTIONS(402), + [anon_sym_13] = ACTIONS(402), + [anon_sym_ceiling] = ACTIONS(402), + [anon_sym_14] = ACTIONS(402), + [anon_sym_round] = ACTIONS(402), + [anon_sym_15] = ACTIONS(402), + [anon_sym_EQ] = ACTIONS(402), + [anon_sym_BANG_EQ] = ACTIONS(402), + [anon_sym_16] = ACTIONS(402), + [anon_sym_LT] = ACTIONS(400), + [anon_sym_LT_EQ] = ACTIONS(402), + [anon_sym_17] = ACTIONS(402), + [anon_sym_GT] = ACTIONS(400), + [anon_sym_GT_EQ] = ACTIONS(402), + [anon_sym_18] = ACTIONS(402), + [anon_sym_PLUS] = ACTIONS(402), + [anon_sym_DASH] = ACTIONS(402), + [anon_sym_STAR] = ACTIONS(402), + [anon_sym_19] = ACTIONS(402), + [anon_sym_PERCENT] = ACTIONS(402), + [anon_sym_20] = ACTIONS(402), + [anon_sym_modulus] = ACTIONS(402), + [anon_sym_21] = ACTIONS(402), + [anon_sym_power] = ACTIONS(402), + [anon_sym_22] = ACTIONS(402), + [anon_sym_logarithm] = ACTIONS(402), + [anon_sym_23] = ACTIONS(402), + [anon_sym_minimum] = ACTIONS(402), + [anon_sym_24] = ACTIONS(402), + [anon_sym_maximum] = ACTIONS(402), + [anon_sym_25] = ACTIONS(402), + [anon_sym_atangent] = ACTIONS(402), + [anon_sym_26] = ACTIONS(402), + [anon_sym_length] = ACTIONS(402), + [anon_sym_27] = ACTIONS(402), + [anon_sym_shape] = ACTIONS(402), + [anon_sym_28] = ACTIONS(402), + [anon_sym_range] = ACTIONS(402), + [anon_sym_29] = ACTIONS(402), + [anon_sym_first] = ACTIONS(402), + [anon_sym_30] = ACTIONS(402), + [anon_sym_reverse] = ACTIONS(402), + [anon_sym_31] = ACTIONS(402), + [anon_sym_deshape] = ACTIONS(402), + [anon_sym_32] = ACTIONS(402), + [anon_sym_bits] = ACTIONS(402), + [anon_sym_33] = ACTIONS(402), + [anon_sym_transpose] = ACTIONS(402), + [anon_sym_34] = ACTIONS(402), + [anon_sym_rise] = ACTIONS(402), + [anon_sym_35] = ACTIONS(402), + [anon_sym_fall] = ACTIONS(402), + [anon_sym_36] = ACTIONS(402), + [anon_sym_where] = ACTIONS(402), + [anon_sym_37] = ACTIONS(402), + [anon_sym_classify] = ACTIONS(402), + [anon_sym_38] = ACTIONS(402), + [anon_sym_deduplicate] = ACTIONS(402), + [anon_sym_39] = ACTIONS(402), + [anon_sym_box] = ACTIONS(402), + [anon_sym_40] = ACTIONS(402), + [anon_sym_unbox] = ACTIONS(402), + [anon_sym_41] = ACTIONS(402), + [anon_sym_match] = ACTIONS(402), + [anon_sym_42] = ACTIONS(402), + [anon_sym_couple] = ACTIONS(402), + [anon_sym_43] = ACTIONS(402), + [anon_sym_join] = ACTIONS(402), + [anon_sym_44] = ACTIONS(402), + [anon_sym_select] = ACTIONS(402), + [anon_sym_45] = ACTIONS(402), + [anon_sym_pick] = ACTIONS(402), + [anon_sym_46] = ACTIONS(402), + [anon_sym_reshape] = ACTIONS(402), + [anon_sym_47] = ACTIONS(402), + [anon_sym_take] = ACTIONS(402), + [anon_sym_48] = ACTIONS(402), + [anon_sym_drop] = ACTIONS(402), + [anon_sym_49] = ACTIONS(402), + [anon_sym_rotate] = ACTIONS(402), + [anon_sym_50] = ACTIONS(402), + [anon_sym_windows] = ACTIONS(402), + [anon_sym_51] = ACTIONS(402), + [anon_sym_keep] = ACTIONS(402), + [anon_sym_52] = ACTIONS(402), + [anon_sym_find] = ACTIONS(402), + [anon_sym_53] = ACTIONS(402), + [anon_sym_member] = ACTIONS(402), + [anon_sym_54] = ACTIONS(402), + [anon_sym_indexof] = ACTIONS(402), + [anon_sym_55] = ACTIONS(402), + [anon_sym_assert] = ACTIONS(402), + [anon_sym_56] = ACTIONS(402), + [anon_sym_wait] = ACTIONS(402), + [anon_sym_break] = ACTIONS(402), + [anon_sym_57] = ACTIONS(402), + [anon_sym_parse] = ACTIONS(402), + [anon_sym_random] = ACTIONS(402), + [anon_sym_58] = ACTIONS(402), + [anon_sym_gen] = ACTIONS(402), + [anon_sym_deal] = ACTIONS(402), + [anon_sym_tag] = ACTIONS(402), + [anon_sym_now] = ACTIONS(402), + [anon_sym_type] = ACTIONS(402), + [anon_sym_59] = ACTIONS(402), + [anon_sym_dump] = ACTIONS(402), + [anon_sym_regex] = ACTIONS(402), + [anon_sym_utf] = ACTIONS(402), + [anon_sym_rock] = ACTIONS(402), + [anon_sym_60] = ACTIONS(402), + [anon_sym_surface] = ACTIONS(402), + [anon_sym_TILDE] = ACTIONS(402), + [anon_sym_deep] = ACTIONS(402), + [anon_sym_de] = ACTIONS(400), + [anon_sym_61] = ACTIONS(402), + [anon_sym_abyss] = ACTIONS(402), + [anon_sym_ab] = ACTIONS(400), + [anon_sym_62] = ACTIONS(402), + [anon_sym_seabed] = ACTIONS(402), + [anon_sym_se] = ACTIONS(400), + [anon_sym_63] = ACTIONS(402), + [anon_sym_send] = ACTIONS(402), + [anon_sym_recv] = ACTIONS(402), + [anon_sym_tryrecv] = ACTIONS(402), + [anon_sym_reduce] = ACTIONS(402), + [anon_sym_SLASH] = ACTIONS(402), + [anon_sym_scan] = ACTIONS(402), + [anon_sym_BSLASH] = ACTIONS(402), + [anon_sym_each] = ACTIONS(402), + [anon_sym_64] = ACTIONS(402), + [anon_sym_rows] = ACTIONS(402), + [anon_sym_65] = ACTIONS(402), + [anon_sym_repeat] = ACTIONS(402), + [anon_sym_66] = ACTIONS(402), + [anon_sym_dip] = ACTIONS(402), + [anon_sym_67] = ACTIONS(402), + [anon_sym_gap] = ACTIONS(402), + [anon_sym_68] = ACTIONS(402), + [anon_sym_69] = ACTIONS(402), + [anon_sym_invert] = ACTIONS(402), + [anon_sym_70] = ACTIONS(402), + [anon_sym_spawn] = ACTIONS(402), + [anon_sym_pack] = ACTIONS(402), + [anon_sym_71] = ACTIONS(402), + [anon_sym_tribute] = ACTIONS(402), + [anon_sym_72] = ACTIONS(402), + [anon_sym_reach] = ACTIONS(402), + [anon_sym_fold] = ACTIONS(402), + [anon_sym_73] = ACTIONS(402), + [anon_sym_distribute] = ACTIONS(402), + [anon_sym_74] = ACTIONS(402), + [anon_sym_table] = ACTIONS(402), + [anon_sym_75] = ACTIONS(402), + [anon_sym_cross] = ACTIONS(402), + [anon_sym_76] = ACTIONS(402), + [anon_sym_group] = ACTIONS(402), + [anon_sym_77] = ACTIONS(402), + [anon_sym_partition] = ACTIONS(402), + [anon_sym_78] = ACTIONS(402), + [anon_sym_both] = ACTIONS(402), + [anon_sym_79] = ACTIONS(402), + [anon_sym_bracket] = ACTIONS(402), + [anon_sym_80] = ACTIONS(402), + [anon_sym_fork] = ACTIONS(402), + [anon_sym_81] = ACTIONS(402), + [anon_sym_under] = ACTIONS(402), + [anon_sym_82] = ACTIONS(402), + [anon_sym_level] = ACTIONS(402), + [anon_sym_83] = ACTIONS(402), + [anon_sym_fill] = ACTIONS(402), + [anon_sym_84] = ACTIONS(402), + [anon_sym_bind] = ACTIONS(402), + [anon_sym_SQUOTE] = ACTIONS(402), + [anon_sym_QMARK] = ACTIONS(402), + [anon_sym_try] = ACTIONS(400), + [anon_sym_85] = ACTIONS(402), + [anon_sym_combinate] = ACTIONS(402), + [anon_sym_86] = ACTIONS(402), + [anon_sym_87] = ACTIONS(402), + [anon_sym_88] = ACTIONS(402), + [anon_sym_89] = ACTIONS(402), + [anon_sym_90] = ACTIONS(402), + [anon_sym_91] = ACTIONS(402), + [anon_sym_92] = ACTIONS(402), + [anon_sym_93] = ACTIONS(402), [sym__whitespace] = ACTIONS(5), - [sym__end_of_line] = ACTIONS(420), + [sym__end_of_line] = ACTIONS(402), }, [95] = { - [ts_builtin_sym_end] = ACTIONS(432), - [aux_sym_number_token1] = ACTIONS(430), - [anon_sym_os] = ACTIONS(430), - [anon_sym_Family] = ACTIONS(430), - [anon_sym_Arch] = ACTIONS(430), - [anon_sym_ExeExt] = ACTIONS(430), - [anon_sym_PllExt] = ACTIONS(430), - [anon_sym_Sep] = ACTIONS(430), - [aux_sym_character_token1] = ACTIONS(432), - [sym_string] = ACTIONS(432), - [sym_multiLineString] = ACTIONS(432), - [anon_sym_PIPE] = ACTIONS(432), - [sym_identifier] = ACTIONS(430), - [sym_identifier_deprecated] = ACTIONS(430), - [sym_system] = ACTIONS(432), - [sym_comment] = ACTIONS(430), - [sym_openParen] = ACTIONS(432), - [sym_openCurly] = ACTIONS(432), - [sym_openBracket] = ACTIONS(432), - [sym_underscore] = ACTIONS(432), - [sym_leftArrow] = ACTIONS(432), - [anon_sym_CARET] = ACTIONS(432), - [anon_sym_eta] = ACTIONS(432), - [anon_sym_] = ACTIONS(430), - [anon_sym_pi] = ACTIONS(430), - [anon_sym_2] = ACTIONS(430), - [anon_sym_tau] = ACTIONS(432), - [anon_sym_3] = ACTIONS(430), - [anon_sym_infinity] = ACTIONS(432), - [anon_sym_4] = ACTIONS(432), - [anon_sym_e] = ACTIONS(430), - [anon_sym_NaN] = ACTIONS(430), - [anon_sym_NumProcs] = ACTIONS(430), - [anon_sym_DOT] = ACTIONS(432), - [anon_sym_COMMA] = ACTIONS(432), - [anon_sym_5] = ACTIONS(432), - [anon_sym_SEMI] = ACTIONS(432), - [anon_sym_identity] = ACTIONS(432), - [anon_sym_id] = ACTIONS(430), - [anon_sym_6] = ACTIONS(432), - [anon_sym_not] = ACTIONS(432), - [anon_sym_7] = ACTIONS(432), - [anon_sym_sign] = ACTIONS(432), - [anon_sym_8] = ACTIONS(432), - [anon_sym_BQUOTE] = ACTIONS(432), - [anon_sym_9] = ACTIONS(432), - [anon_sym_absolutevalue] = ACTIONS(432), - [anon_sym_10] = ACTIONS(432), - [anon_sym_sqrt] = ACTIONS(432), - [anon_sym_11] = ACTIONS(432), - [anon_sym_sine] = ACTIONS(432), - [anon_sym_12] = ACTIONS(432), - [anon_sym_floor] = ACTIONS(432), - [anon_sym_13] = ACTIONS(432), - [anon_sym_ceiling] = ACTIONS(432), - [anon_sym_14] = ACTIONS(432), - [anon_sym_round] = ACTIONS(432), - [anon_sym_15] = ACTIONS(432), - [anon_sym_EQ] = ACTIONS(432), - [anon_sym_BANG_EQ] = ACTIONS(432), - [anon_sym_16] = ACTIONS(432), - [anon_sym_LT] = ACTIONS(430), - [anon_sym_LT_EQ] = ACTIONS(432), - [anon_sym_17] = ACTIONS(432), - [anon_sym_GT] = ACTIONS(430), - [anon_sym_GT_EQ] = ACTIONS(432), - [anon_sym_18] = ACTIONS(432), - [anon_sym_PLUS] = ACTIONS(432), - [anon_sym_DASH] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(432), - [anon_sym_19] = ACTIONS(432), - [anon_sym_PERCENT] = ACTIONS(432), - [anon_sym_20] = ACTIONS(432), - [anon_sym_modulus] = ACTIONS(432), - [anon_sym_21] = ACTIONS(432), - [anon_sym_power] = ACTIONS(432), - [anon_sym_22] = ACTIONS(432), - [anon_sym_logarithm] = ACTIONS(432), - [anon_sym_23] = ACTIONS(432), - [anon_sym_minimum] = ACTIONS(432), - [anon_sym_24] = ACTIONS(432), - [anon_sym_maximum] = ACTIONS(432), - [anon_sym_25] = ACTIONS(432), - [anon_sym_atangent] = ACTIONS(432), - [anon_sym_26] = ACTIONS(432), - [anon_sym_length] = ACTIONS(432), - [anon_sym_27] = ACTIONS(432), - [anon_sym_shape] = ACTIONS(432), - [anon_sym_28] = ACTIONS(432), - [anon_sym_range] = ACTIONS(432), - [anon_sym_29] = ACTIONS(432), - [anon_sym_first] = ACTIONS(432), - [anon_sym_30] = ACTIONS(432), - [anon_sym_reverse] = ACTIONS(432), - [anon_sym_31] = ACTIONS(432), - [anon_sym_deshape] = ACTIONS(432), - [anon_sym_32] = ACTIONS(432), - [anon_sym_bits] = ACTIONS(432), - [anon_sym_33] = ACTIONS(432), - [anon_sym_transpose] = ACTIONS(432), - [anon_sym_34] = ACTIONS(432), - [anon_sym_rise] = ACTIONS(432), - [anon_sym_35] = ACTIONS(432), - [anon_sym_fall] = ACTIONS(432), - [anon_sym_36] = ACTIONS(432), - [anon_sym_where] = ACTIONS(432), - [anon_sym_37] = ACTIONS(432), - [anon_sym_classify] = ACTIONS(432), - [anon_sym_38] = ACTIONS(432), - [anon_sym_deduplicate] = ACTIONS(432), - [anon_sym_39] = ACTIONS(432), - [anon_sym_box] = ACTIONS(432), - [anon_sym_40] = ACTIONS(432), - [anon_sym_unbox] = ACTIONS(432), - [anon_sym_41] = ACTIONS(432), - [anon_sym_match] = ACTIONS(432), - [anon_sym_42] = ACTIONS(432), - [anon_sym_couple] = ACTIONS(432), - [anon_sym_43] = ACTIONS(432), - [anon_sym_join] = ACTIONS(432), - [anon_sym_44] = ACTIONS(432), - [anon_sym_select] = ACTIONS(432), - [anon_sym_45] = ACTIONS(432), - [anon_sym_pick] = ACTIONS(432), - [anon_sym_46] = ACTIONS(432), - [anon_sym_reshape] = ACTIONS(432), - [anon_sym_47] = ACTIONS(432), - [anon_sym_take] = ACTIONS(432), - [anon_sym_48] = ACTIONS(432), - [anon_sym_drop] = ACTIONS(432), - [anon_sym_49] = ACTIONS(432), - [anon_sym_rotate] = ACTIONS(432), - [anon_sym_50] = ACTIONS(432), - [anon_sym_windows] = ACTIONS(432), - [anon_sym_51] = ACTIONS(432), - [anon_sym_keep] = ACTIONS(432), - [anon_sym_52] = ACTIONS(432), - [anon_sym_find] = ACTIONS(432), - [anon_sym_53] = ACTIONS(432), - [anon_sym_member] = ACTIONS(432), - [anon_sym_54] = ACTIONS(432), - [anon_sym_indexof] = ACTIONS(432), - [anon_sym_55] = ACTIONS(432), - [anon_sym_assert] = ACTIONS(432), - [anon_sym_56] = ACTIONS(432), - [anon_sym_wait] = ACTIONS(432), - [anon_sym_break] = ACTIONS(432), - [anon_sym_57] = ACTIONS(432), - [anon_sym_parse] = ACTIONS(432), - [anon_sym_random] = ACTIONS(432), - [anon_sym_58] = ACTIONS(432), - [anon_sym_gen] = ACTIONS(432), - [anon_sym_deal] = ACTIONS(432), - [anon_sym_tag] = ACTIONS(432), - [anon_sym_now] = ACTIONS(432), - [anon_sym_type] = ACTIONS(432), - [anon_sym_59] = ACTIONS(432), - [anon_sym_dump] = ACTIONS(432), - [anon_sym_regex] = ACTIONS(432), - [anon_sym_utf] = ACTIONS(432), - [anon_sym_rock] = ACTIONS(432), - [anon_sym_60] = ACTIONS(432), - [anon_sym_surface] = ACTIONS(432), - [anon_sym_TILDE] = ACTIONS(432), - [anon_sym_deep] = ACTIONS(432), - [anon_sym_de] = ACTIONS(430), - [anon_sym_61] = ACTIONS(432), - [anon_sym_abyss] = ACTIONS(432), - [anon_sym_ab] = ACTIONS(430), - [anon_sym_62] = ACTIONS(432), - [anon_sym_seabed] = ACTIONS(432), - [anon_sym_se] = ACTIONS(430), - [anon_sym_63] = ACTIONS(432), - [anon_sym_send] = ACTIONS(432), - [anon_sym_recv] = ACTIONS(432), - [anon_sym_tryrecv] = ACTIONS(432), - [anon_sym_reduce] = ACTIONS(432), - [anon_sym_SLASH] = ACTIONS(432), - [anon_sym_scan] = ACTIONS(432), - [anon_sym_BSLASH] = ACTIONS(432), - [anon_sym_each] = ACTIONS(432), - [anon_sym_64] = ACTIONS(432), - [anon_sym_rows] = ACTIONS(432), - [anon_sym_65] = ACTIONS(432), - [anon_sym_repeat] = ACTIONS(432), - [anon_sym_66] = ACTIONS(432), - [anon_sym_dip] = ACTIONS(432), - [anon_sym_di] = ACTIONS(430), - [anon_sym_67] = ACTIONS(432), - [anon_sym_gap] = ACTIONS(432), - [anon_sym_ga] = ACTIONS(430), - [anon_sym_68] = ACTIONS(432), - [anon_sym_oust] = ACTIONS(432), - [anon_sym_69] = ACTIONS(432), - [anon_sym_invert] = ACTIONS(432), - [anon_sym_70] = ACTIONS(432), - [anon_sym_spawn] = ACTIONS(432), - [anon_sym_pack] = ACTIONS(432), - [anon_sym_71] = ACTIONS(432), - [anon_sym_tribute] = ACTIONS(432), - [anon_sym_72] = ACTIONS(432), - [anon_sym_fold] = ACTIONS(432), - [anon_sym_73] = ACTIONS(432), - [anon_sym_distribute] = ACTIONS(432), - [anon_sym_74] = ACTIONS(432), - [anon_sym_table] = ACTIONS(432), - [anon_sym_75] = ACTIONS(432), - [anon_sym_cross] = ACTIONS(432), - [anon_sym_76] = ACTIONS(432), - [anon_sym_group] = ACTIONS(432), - [anon_sym_77] = ACTIONS(432), - [anon_sym_partition] = ACTIONS(432), - [anon_sym_78] = ACTIONS(432), - [anon_sym_both] = ACTIONS(432), - [anon_sym_79] = ACTIONS(432), - [anon_sym_bracket] = ACTIONS(432), - [anon_sym_80] = ACTIONS(432), - [anon_sym_fork] = ACTIONS(432), - [anon_sym_81] = ACTIONS(432), - [anon_sym_under] = ACTIONS(432), - [anon_sym_82] = ACTIONS(432), - [anon_sym_level] = ACTIONS(432), - [anon_sym_83] = ACTIONS(432), - [anon_sym_fill] = ACTIONS(432), - [anon_sym_84] = ACTIONS(432), - [anon_sym_bind] = ACTIONS(432), - [anon_sym_SQUOTE] = ACTIONS(432), - [anon_sym_QMARK] = ACTIONS(432), - [anon_sym_try] = ACTIONS(430), - [anon_sym_85] = ACTIONS(432), - [anon_sym_combinate] = ACTIONS(432), - [anon_sym_86] = ACTIONS(432), - [anon_sym_87] = ACTIONS(432), - [anon_sym_88] = ACTIONS(432), - [anon_sym_89] = ACTIONS(432), - [anon_sym_90] = ACTIONS(432), - [anon_sym_91] = ACTIONS(432), - [anon_sym_92] = ACTIONS(432), - [anon_sym_93] = ACTIONS(432), + [ts_builtin_sym_end] = ACTIONS(414), + [aux_sym_number_token1] = ACTIONS(412), + [anon_sym_os] = ACTIONS(412), + [anon_sym_Family] = ACTIONS(412), + [anon_sym_Arch] = ACTIONS(412), + [anon_sym_ExeExt] = ACTIONS(412), + [anon_sym_PllExt] = ACTIONS(412), + [anon_sym_Sep] = ACTIONS(412), + [aux_sym_character_token1] = ACTIONS(414), + [sym_string] = ACTIONS(414), + [sym_multiLineString] = ACTIONS(414), + [anon_sym_PIPE] = ACTIONS(414), + [sym_identifier] = ACTIONS(412), + [sym_identifier_deprecated] = ACTIONS(412), + [sym_system] = ACTIONS(414), + [sym_comment] = ACTIONS(412), + [sym_openParen] = ACTIONS(414), + [sym_openCurly] = ACTIONS(414), + [sym_openBracket] = ACTIONS(414), + [sym_underscore] = ACTIONS(414), + [sym_leftArrow] = ACTIONS(414), + [anon_sym_CARET] = ACTIONS(414), + [anon_sym_eta] = ACTIONS(414), + [anon_sym_] = ACTIONS(412), + [anon_sym_pi] = ACTIONS(412), + [anon_sym_2] = ACTIONS(412), + [anon_sym_tau] = ACTIONS(414), + [anon_sym_3] = ACTIONS(412), + [anon_sym_infinity] = ACTIONS(414), + [anon_sym_4] = ACTIONS(414), + [anon_sym_e] = ACTIONS(412), + [anon_sym_NaN] = ACTIONS(412), + [anon_sym_NumProcs] = ACTIONS(412), + [anon_sym_DOT] = ACTIONS(414), + [anon_sym_COMMA] = ACTIONS(414), + [anon_sym_5] = ACTIONS(414), + [anon_sym_SEMI] = ACTIONS(414), + [anon_sym_identity] = ACTIONS(414), + [anon_sym_id] = ACTIONS(412), + [anon_sym_6] = ACTIONS(414), + [anon_sym_not] = ACTIONS(414), + [anon_sym_7] = ACTIONS(414), + [anon_sym_sign] = ACTIONS(414), + [anon_sym_8] = ACTIONS(414), + [anon_sym_BQUOTE] = ACTIONS(414), + [anon_sym_9] = ACTIONS(414), + [anon_sym_absolutevalue] = ACTIONS(414), + [anon_sym_10] = ACTIONS(414), + [anon_sym_sqrt] = ACTIONS(414), + [anon_sym_11] = ACTIONS(414), + [anon_sym_sine] = ACTIONS(414), + [anon_sym_12] = ACTIONS(414), + [anon_sym_floor] = ACTIONS(414), + [anon_sym_13] = ACTIONS(414), + [anon_sym_ceiling] = ACTIONS(414), + [anon_sym_14] = ACTIONS(414), + [anon_sym_round] = ACTIONS(414), + [anon_sym_15] = ACTIONS(414), + [anon_sym_EQ] = ACTIONS(414), + [anon_sym_BANG_EQ] = ACTIONS(414), + [anon_sym_16] = ACTIONS(414), + [anon_sym_LT] = ACTIONS(412), + [anon_sym_LT_EQ] = ACTIONS(414), + [anon_sym_17] = ACTIONS(414), + [anon_sym_GT] = ACTIONS(412), + [anon_sym_GT_EQ] = ACTIONS(414), + [anon_sym_18] = ACTIONS(414), + [anon_sym_PLUS] = ACTIONS(414), + [anon_sym_DASH] = ACTIONS(414), + [anon_sym_STAR] = ACTIONS(414), + [anon_sym_19] = ACTIONS(414), + [anon_sym_PERCENT] = ACTIONS(414), + [anon_sym_20] = ACTIONS(414), + [anon_sym_modulus] = ACTIONS(414), + [anon_sym_21] = ACTIONS(414), + [anon_sym_power] = ACTIONS(414), + [anon_sym_22] = ACTIONS(414), + [anon_sym_logarithm] = ACTIONS(414), + [anon_sym_23] = ACTIONS(414), + [anon_sym_minimum] = ACTIONS(414), + [anon_sym_24] = ACTIONS(414), + [anon_sym_maximum] = ACTIONS(414), + [anon_sym_25] = ACTIONS(414), + [anon_sym_atangent] = ACTIONS(414), + [anon_sym_26] = ACTIONS(414), + [anon_sym_length] = ACTIONS(414), + [anon_sym_27] = ACTIONS(414), + [anon_sym_shape] = ACTIONS(414), + [anon_sym_28] = ACTIONS(414), + [anon_sym_range] = ACTIONS(414), + [anon_sym_29] = ACTIONS(414), + [anon_sym_first] = ACTIONS(414), + [anon_sym_30] = ACTIONS(414), + [anon_sym_reverse] = ACTIONS(414), + [anon_sym_31] = ACTIONS(414), + [anon_sym_deshape] = ACTIONS(414), + [anon_sym_32] = ACTIONS(414), + [anon_sym_bits] = ACTIONS(414), + [anon_sym_33] = ACTIONS(414), + [anon_sym_transpose] = ACTIONS(414), + [anon_sym_34] = ACTIONS(414), + [anon_sym_rise] = ACTIONS(414), + [anon_sym_35] = ACTIONS(414), + [anon_sym_fall] = ACTIONS(414), + [anon_sym_36] = ACTIONS(414), + [anon_sym_where] = ACTIONS(414), + [anon_sym_37] = ACTIONS(414), + [anon_sym_classify] = ACTIONS(414), + [anon_sym_38] = ACTIONS(414), + [anon_sym_deduplicate] = ACTIONS(414), + [anon_sym_39] = ACTIONS(414), + [anon_sym_box] = ACTIONS(414), + [anon_sym_40] = ACTIONS(414), + [anon_sym_unbox] = ACTIONS(414), + [anon_sym_41] = ACTIONS(414), + [anon_sym_match] = ACTIONS(414), + [anon_sym_42] = ACTIONS(414), + [anon_sym_couple] = ACTIONS(414), + [anon_sym_43] = ACTIONS(414), + [anon_sym_join] = ACTIONS(414), + [anon_sym_44] = ACTIONS(414), + [anon_sym_select] = ACTIONS(414), + [anon_sym_45] = ACTIONS(414), + [anon_sym_pick] = ACTIONS(414), + [anon_sym_46] = ACTIONS(414), + [anon_sym_reshape] = ACTIONS(414), + [anon_sym_47] = ACTIONS(414), + [anon_sym_take] = ACTIONS(414), + [anon_sym_48] = ACTIONS(414), + [anon_sym_drop] = ACTIONS(414), + [anon_sym_49] = ACTIONS(414), + [anon_sym_rotate] = ACTIONS(414), + [anon_sym_50] = ACTIONS(414), + [anon_sym_windows] = ACTIONS(414), + [anon_sym_51] = ACTIONS(414), + [anon_sym_keep] = ACTIONS(414), + [anon_sym_52] = ACTIONS(414), + [anon_sym_find] = ACTIONS(414), + [anon_sym_53] = ACTIONS(414), + [anon_sym_member] = ACTIONS(414), + [anon_sym_54] = ACTIONS(414), + [anon_sym_indexof] = ACTIONS(414), + [anon_sym_55] = ACTIONS(414), + [anon_sym_assert] = ACTIONS(414), + [anon_sym_56] = ACTIONS(414), + [anon_sym_wait] = ACTIONS(414), + [anon_sym_break] = ACTIONS(414), + [anon_sym_57] = ACTIONS(414), + [anon_sym_parse] = ACTIONS(414), + [anon_sym_random] = ACTIONS(414), + [anon_sym_58] = ACTIONS(414), + [anon_sym_gen] = ACTIONS(414), + [anon_sym_deal] = ACTIONS(414), + [anon_sym_tag] = ACTIONS(414), + [anon_sym_now] = ACTIONS(414), + [anon_sym_type] = ACTIONS(414), + [anon_sym_59] = ACTIONS(414), + [anon_sym_dump] = ACTIONS(414), + [anon_sym_regex] = ACTIONS(414), + [anon_sym_utf] = ACTIONS(414), + [anon_sym_rock] = ACTIONS(414), + [anon_sym_60] = ACTIONS(414), + [anon_sym_surface] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_deep] = ACTIONS(414), + [anon_sym_de] = ACTIONS(412), + [anon_sym_61] = ACTIONS(414), + [anon_sym_abyss] = ACTIONS(414), + [anon_sym_ab] = ACTIONS(412), + [anon_sym_62] = ACTIONS(414), + [anon_sym_seabed] = ACTIONS(414), + [anon_sym_se] = ACTIONS(412), + [anon_sym_63] = ACTIONS(414), + [anon_sym_send] = ACTIONS(414), + [anon_sym_recv] = ACTIONS(414), + [anon_sym_tryrecv] = ACTIONS(414), + [anon_sym_reduce] = ACTIONS(414), + [anon_sym_SLASH] = ACTIONS(414), + [anon_sym_scan] = ACTIONS(414), + [anon_sym_BSLASH] = ACTIONS(414), + [anon_sym_each] = ACTIONS(414), + [anon_sym_64] = ACTIONS(414), + [anon_sym_rows] = ACTIONS(414), + [anon_sym_65] = ACTIONS(414), + [anon_sym_repeat] = ACTIONS(414), + [anon_sym_66] = ACTIONS(414), + [anon_sym_dip] = ACTIONS(414), + [anon_sym_67] = ACTIONS(414), + [anon_sym_gap] = ACTIONS(414), + [anon_sym_68] = ACTIONS(414), + [anon_sym_69] = ACTIONS(414), + [anon_sym_invert] = ACTIONS(414), + [anon_sym_70] = ACTIONS(414), + [anon_sym_spawn] = ACTIONS(414), + [anon_sym_pack] = ACTIONS(414), + [anon_sym_71] = ACTIONS(414), + [anon_sym_tribute] = ACTIONS(414), + [anon_sym_72] = ACTIONS(414), + [anon_sym_reach] = ACTIONS(414), + [anon_sym_fold] = ACTIONS(414), + [anon_sym_73] = ACTIONS(414), + [anon_sym_distribute] = ACTIONS(414), + [anon_sym_74] = ACTIONS(414), + [anon_sym_table] = ACTIONS(414), + [anon_sym_75] = ACTIONS(414), + [anon_sym_cross] = ACTIONS(414), + [anon_sym_76] = ACTIONS(414), + [anon_sym_group] = ACTIONS(414), + [anon_sym_77] = ACTIONS(414), + [anon_sym_partition] = ACTIONS(414), + [anon_sym_78] = ACTIONS(414), + [anon_sym_both] = ACTIONS(414), + [anon_sym_79] = ACTIONS(414), + [anon_sym_bracket] = ACTIONS(414), + [anon_sym_80] = ACTIONS(414), + [anon_sym_fork] = ACTIONS(414), + [anon_sym_81] = ACTIONS(414), + [anon_sym_under] = ACTIONS(414), + [anon_sym_82] = ACTIONS(414), + [anon_sym_level] = ACTIONS(414), + [anon_sym_83] = ACTIONS(414), + [anon_sym_fill] = ACTIONS(414), + [anon_sym_84] = ACTIONS(414), + [anon_sym_bind] = ACTIONS(414), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_QMARK] = ACTIONS(414), + [anon_sym_try] = ACTIONS(412), + [anon_sym_85] = ACTIONS(414), + [anon_sym_combinate] = ACTIONS(414), + [anon_sym_86] = ACTIONS(414), + [anon_sym_87] = ACTIONS(414), + [anon_sym_88] = ACTIONS(414), + [anon_sym_89] = ACTIONS(414), + [anon_sym_90] = ACTIONS(414), + [anon_sym_91] = ACTIONS(414), + [anon_sym_92] = ACTIONS(414), + [anon_sym_93] = ACTIONS(414), [sym__whitespace] = ACTIONS(5), - [sym__end_of_line] = ACTIONS(432), + [sym__end_of_line] = ACTIONS(414), }, [96] = { - [ts_builtin_sym_end] = ACTIONS(468), - [aux_sym_number_token1] = ACTIONS(466), - [anon_sym_os] = ACTIONS(466), - [anon_sym_Family] = ACTIONS(466), - [anon_sym_Arch] = ACTIONS(466), - [anon_sym_ExeExt] = ACTIONS(466), - [anon_sym_PllExt] = ACTIONS(466), - [anon_sym_Sep] = ACTIONS(466), - [aux_sym_character_token1] = ACTIONS(468), - [sym_string] = ACTIONS(468), - [sym_multiLineString] = ACTIONS(468), - [anon_sym_PIPE] = ACTIONS(468), - [sym_identifier] = ACTIONS(466), - [sym_identifier_deprecated] = ACTIONS(466), - [sym_system] = ACTIONS(468), - [sym_comment] = ACTIONS(466), - [sym_openParen] = ACTIONS(468), - [sym_openCurly] = ACTIONS(468), - [sym_openBracket] = ACTIONS(468), - [sym_underscore] = ACTIONS(138), - [sym_leftArrow] = ACTIONS(468), - [anon_sym_CARET] = ACTIONS(468), - [anon_sym_eta] = ACTIONS(468), - [anon_sym_] = ACTIONS(466), - [anon_sym_pi] = ACTIONS(466), - [anon_sym_2] = ACTIONS(466), - [anon_sym_tau] = ACTIONS(468), - [anon_sym_3] = ACTIONS(466), - [anon_sym_infinity] = ACTIONS(468), - [anon_sym_4] = ACTIONS(468), - [anon_sym_e] = ACTIONS(466), - [anon_sym_NaN] = ACTIONS(466), - [anon_sym_NumProcs] = ACTIONS(466), - [anon_sym_DOT] = ACTIONS(468), - [anon_sym_COMMA] = ACTIONS(468), - [anon_sym_5] = ACTIONS(468), - [anon_sym_SEMI] = ACTIONS(468), - [anon_sym_identity] = ACTIONS(468), - [anon_sym_id] = ACTIONS(466), - [anon_sym_6] = ACTIONS(468), - [anon_sym_not] = ACTIONS(468), - [anon_sym_7] = ACTIONS(468), - [anon_sym_sign] = ACTIONS(468), - [anon_sym_8] = ACTIONS(468), - [anon_sym_BQUOTE] = ACTIONS(468), - [anon_sym_9] = ACTIONS(468), - [anon_sym_absolutevalue] = ACTIONS(468), - [anon_sym_10] = ACTIONS(468), - [anon_sym_sqrt] = ACTIONS(468), - [anon_sym_11] = ACTIONS(468), - [anon_sym_sine] = ACTIONS(468), - [anon_sym_12] = ACTIONS(468), - [anon_sym_floor] = ACTIONS(468), - [anon_sym_13] = ACTIONS(468), - [anon_sym_ceiling] = ACTIONS(468), - [anon_sym_14] = ACTIONS(468), - [anon_sym_round] = ACTIONS(468), - [anon_sym_15] = ACTIONS(468), - [anon_sym_EQ] = ACTIONS(468), - [anon_sym_BANG_EQ] = ACTIONS(468), - [anon_sym_16] = ACTIONS(468), - [anon_sym_LT] = ACTIONS(466), - [anon_sym_LT_EQ] = ACTIONS(468), - [anon_sym_17] = ACTIONS(468), - [anon_sym_GT] = ACTIONS(466), - [anon_sym_GT_EQ] = ACTIONS(468), - [anon_sym_18] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(468), - [anon_sym_DASH] = ACTIONS(468), - [anon_sym_STAR] = ACTIONS(468), - [anon_sym_19] = ACTIONS(468), - [anon_sym_PERCENT] = ACTIONS(468), - [anon_sym_20] = ACTIONS(468), - [anon_sym_modulus] = ACTIONS(468), - [anon_sym_21] = ACTIONS(468), - [anon_sym_power] = ACTIONS(468), - [anon_sym_22] = ACTIONS(468), - [anon_sym_logarithm] = ACTIONS(468), - [anon_sym_23] = ACTIONS(468), - [anon_sym_minimum] = ACTIONS(468), - [anon_sym_24] = ACTIONS(468), - [anon_sym_maximum] = ACTIONS(468), - [anon_sym_25] = ACTIONS(468), - [anon_sym_atangent] = ACTIONS(468), - [anon_sym_26] = ACTIONS(468), - [anon_sym_length] = ACTIONS(468), - [anon_sym_27] = ACTIONS(468), - [anon_sym_shape] = ACTIONS(468), - [anon_sym_28] = ACTIONS(468), - [anon_sym_range] = ACTIONS(468), - [anon_sym_29] = ACTIONS(468), - [anon_sym_first] = ACTIONS(468), - [anon_sym_30] = ACTIONS(468), - [anon_sym_reverse] = ACTIONS(468), - [anon_sym_31] = ACTIONS(468), - [anon_sym_deshape] = ACTIONS(468), - [anon_sym_32] = ACTIONS(468), - [anon_sym_bits] = ACTIONS(468), - [anon_sym_33] = ACTIONS(468), - [anon_sym_transpose] = ACTIONS(468), - [anon_sym_34] = ACTIONS(468), - [anon_sym_rise] = ACTIONS(468), - [anon_sym_35] = ACTIONS(468), - [anon_sym_fall] = ACTIONS(468), - [anon_sym_36] = ACTIONS(468), - [anon_sym_where] = ACTIONS(468), - [anon_sym_37] = ACTIONS(468), - [anon_sym_classify] = ACTIONS(468), - [anon_sym_38] = ACTIONS(468), - [anon_sym_deduplicate] = ACTIONS(468), - [anon_sym_39] = ACTIONS(468), - [anon_sym_box] = ACTIONS(468), - [anon_sym_40] = ACTIONS(468), - [anon_sym_unbox] = ACTIONS(468), - [anon_sym_41] = ACTIONS(468), - [anon_sym_match] = ACTIONS(468), - [anon_sym_42] = ACTIONS(468), - [anon_sym_couple] = ACTIONS(468), - [anon_sym_43] = ACTIONS(468), - [anon_sym_join] = ACTIONS(468), - [anon_sym_44] = ACTIONS(468), - [anon_sym_select] = ACTIONS(468), - [anon_sym_45] = ACTIONS(468), - [anon_sym_pick] = ACTIONS(468), - [anon_sym_46] = ACTIONS(468), - [anon_sym_reshape] = ACTIONS(468), - [anon_sym_47] = ACTIONS(468), - [anon_sym_take] = ACTIONS(468), - [anon_sym_48] = ACTIONS(468), - [anon_sym_drop] = ACTIONS(468), - [anon_sym_49] = ACTIONS(468), - [anon_sym_rotate] = ACTIONS(468), - [anon_sym_50] = ACTIONS(468), - [anon_sym_windows] = ACTIONS(468), - [anon_sym_51] = ACTIONS(468), - [anon_sym_keep] = ACTIONS(468), - [anon_sym_52] = ACTIONS(468), - [anon_sym_find] = ACTIONS(468), - [anon_sym_53] = ACTIONS(468), - [anon_sym_member] = ACTIONS(468), - [anon_sym_54] = ACTIONS(468), - [anon_sym_indexof] = ACTIONS(468), - [anon_sym_55] = ACTIONS(468), - [anon_sym_assert] = ACTIONS(468), - [anon_sym_56] = ACTIONS(468), - [anon_sym_wait] = ACTIONS(468), - [anon_sym_break] = ACTIONS(468), - [anon_sym_57] = ACTIONS(468), - [anon_sym_parse] = ACTIONS(468), - [anon_sym_random] = ACTIONS(468), - [anon_sym_58] = ACTIONS(468), - [anon_sym_gen] = ACTIONS(468), - [anon_sym_deal] = ACTIONS(468), - [anon_sym_tag] = ACTIONS(468), - [anon_sym_now] = ACTIONS(468), - [anon_sym_type] = ACTIONS(468), - [anon_sym_59] = ACTIONS(468), - [anon_sym_dump] = ACTIONS(468), - [anon_sym_regex] = ACTIONS(468), - [anon_sym_utf] = ACTIONS(468), - [anon_sym_rock] = ACTIONS(468), - [anon_sym_60] = ACTIONS(468), - [anon_sym_surface] = ACTIONS(468), - [anon_sym_TILDE] = ACTIONS(468), - [anon_sym_deep] = ACTIONS(468), - [anon_sym_de] = ACTIONS(466), - [anon_sym_61] = ACTIONS(468), - [anon_sym_abyss] = ACTIONS(468), - [anon_sym_ab] = ACTIONS(466), - [anon_sym_62] = ACTIONS(468), - [anon_sym_seabed] = ACTIONS(468), - [anon_sym_se] = ACTIONS(466), - [anon_sym_63] = ACTIONS(468), - [anon_sym_send] = ACTIONS(468), - [anon_sym_recv] = ACTIONS(468), - [anon_sym_tryrecv] = ACTIONS(468), - [anon_sym_reduce] = ACTIONS(468), - [anon_sym_SLASH] = ACTIONS(468), - [anon_sym_scan] = ACTIONS(468), - [anon_sym_BSLASH] = ACTIONS(468), - [anon_sym_each] = ACTIONS(468), - [anon_sym_64] = ACTIONS(468), - [anon_sym_rows] = ACTIONS(468), - [anon_sym_65] = ACTIONS(468), - [anon_sym_repeat] = ACTIONS(468), - [anon_sym_66] = ACTIONS(468), - [anon_sym_dip] = ACTIONS(468), - [anon_sym_di] = ACTIONS(466), - [anon_sym_67] = ACTIONS(468), - [anon_sym_gap] = ACTIONS(468), - [anon_sym_ga] = ACTIONS(466), - [anon_sym_68] = ACTIONS(468), - [anon_sym_oust] = ACTIONS(468), - [anon_sym_69] = ACTIONS(468), - [anon_sym_invert] = ACTIONS(468), - [anon_sym_70] = ACTIONS(468), - [anon_sym_spawn] = ACTIONS(468), - [anon_sym_pack] = ACTIONS(468), - [anon_sym_71] = ACTIONS(468), - [anon_sym_tribute] = ACTIONS(468), - [anon_sym_72] = ACTIONS(468), - [anon_sym_fold] = ACTIONS(468), - [anon_sym_73] = ACTIONS(468), - [anon_sym_distribute] = ACTIONS(468), - [anon_sym_74] = ACTIONS(468), - [anon_sym_table] = ACTIONS(468), - [anon_sym_75] = ACTIONS(468), - [anon_sym_cross] = ACTIONS(468), - [anon_sym_76] = ACTIONS(468), - [anon_sym_group] = ACTIONS(468), - [anon_sym_77] = ACTIONS(468), - [anon_sym_partition] = ACTIONS(468), - [anon_sym_78] = ACTIONS(468), - [anon_sym_both] = ACTIONS(468), - [anon_sym_79] = ACTIONS(468), - [anon_sym_bracket] = ACTIONS(468), - [anon_sym_80] = ACTIONS(468), - [anon_sym_fork] = ACTIONS(468), - [anon_sym_81] = ACTIONS(468), - [anon_sym_under] = ACTIONS(468), - [anon_sym_82] = ACTIONS(468), - [anon_sym_level] = ACTIONS(468), - [anon_sym_83] = ACTIONS(468), - [anon_sym_fill] = ACTIONS(468), - [anon_sym_84] = ACTIONS(468), - [anon_sym_bind] = ACTIONS(468), - [anon_sym_SQUOTE] = ACTIONS(468), - [anon_sym_QMARK] = ACTIONS(468), - [anon_sym_try] = ACTIONS(466), - [anon_sym_85] = ACTIONS(468), - [anon_sym_combinate] = ACTIONS(468), - [anon_sym_86] = ACTIONS(468), - [anon_sym_87] = ACTIONS(468), - [anon_sym_88] = ACTIONS(468), - [anon_sym_89] = ACTIONS(468), - [anon_sym_90] = ACTIONS(468), - [anon_sym_91] = ACTIONS(468), - [anon_sym_92] = ACTIONS(468), - [anon_sym_93] = ACTIONS(468), + [ts_builtin_sym_end] = ACTIONS(450), + [aux_sym_number_token1] = ACTIONS(448), + [anon_sym_os] = ACTIONS(448), + [anon_sym_Family] = ACTIONS(448), + [anon_sym_Arch] = ACTIONS(448), + [anon_sym_ExeExt] = ACTIONS(448), + [anon_sym_PllExt] = ACTIONS(448), + [anon_sym_Sep] = ACTIONS(448), + [aux_sym_character_token1] = ACTIONS(450), + [sym_string] = ACTIONS(450), + [sym_multiLineString] = ACTIONS(450), + [anon_sym_PIPE] = ACTIONS(450), + [sym_identifier] = ACTIONS(448), + [sym_identifier_deprecated] = ACTIONS(448), + [sym_system] = ACTIONS(450), + [sym_comment] = ACTIONS(448), + [sym_openParen] = ACTIONS(450), + [sym_openCurly] = ACTIONS(450), + [sym_openBracket] = ACTIONS(450), + [sym_underscore] = ACTIONS(133), + [sym_leftArrow] = ACTIONS(450), + [anon_sym_CARET] = ACTIONS(450), + [anon_sym_eta] = ACTIONS(450), + [anon_sym_] = ACTIONS(448), + [anon_sym_pi] = ACTIONS(448), + [anon_sym_2] = ACTIONS(448), + [anon_sym_tau] = ACTIONS(450), + [anon_sym_3] = ACTIONS(448), + [anon_sym_infinity] = ACTIONS(450), + [anon_sym_4] = ACTIONS(450), + [anon_sym_e] = ACTIONS(448), + [anon_sym_NaN] = ACTIONS(448), + [anon_sym_NumProcs] = ACTIONS(448), + [anon_sym_DOT] = ACTIONS(450), + [anon_sym_COMMA] = ACTIONS(450), + [anon_sym_5] = ACTIONS(450), + [anon_sym_SEMI] = ACTIONS(450), + [anon_sym_identity] = ACTIONS(450), + [anon_sym_id] = ACTIONS(448), + [anon_sym_6] = ACTIONS(450), + [anon_sym_not] = ACTIONS(450), + [anon_sym_7] = ACTIONS(450), + [anon_sym_sign] = ACTIONS(450), + [anon_sym_8] = ACTIONS(450), + [anon_sym_BQUOTE] = ACTIONS(450), + [anon_sym_9] = ACTIONS(450), + [anon_sym_absolutevalue] = ACTIONS(450), + [anon_sym_10] = ACTIONS(450), + [anon_sym_sqrt] = ACTIONS(450), + [anon_sym_11] = ACTIONS(450), + [anon_sym_sine] = ACTIONS(450), + [anon_sym_12] = ACTIONS(450), + [anon_sym_floor] = ACTIONS(450), + [anon_sym_13] = ACTIONS(450), + [anon_sym_ceiling] = ACTIONS(450), + [anon_sym_14] = ACTIONS(450), + [anon_sym_round] = ACTIONS(450), + [anon_sym_15] = ACTIONS(450), + [anon_sym_EQ] = ACTIONS(450), + [anon_sym_BANG_EQ] = ACTIONS(450), + [anon_sym_16] = ACTIONS(450), + [anon_sym_LT] = ACTIONS(448), + [anon_sym_LT_EQ] = ACTIONS(450), + [anon_sym_17] = ACTIONS(450), + [anon_sym_GT] = ACTIONS(448), + [anon_sym_GT_EQ] = ACTIONS(450), + [anon_sym_18] = ACTIONS(450), + [anon_sym_PLUS] = ACTIONS(450), + [anon_sym_DASH] = ACTIONS(450), + [anon_sym_STAR] = ACTIONS(450), + [anon_sym_19] = ACTIONS(450), + [anon_sym_PERCENT] = ACTIONS(450), + [anon_sym_20] = ACTIONS(450), + [anon_sym_modulus] = ACTIONS(450), + [anon_sym_21] = ACTIONS(450), + [anon_sym_power] = ACTIONS(450), + [anon_sym_22] = ACTIONS(450), + [anon_sym_logarithm] = ACTIONS(450), + [anon_sym_23] = ACTIONS(450), + [anon_sym_minimum] = ACTIONS(450), + [anon_sym_24] = ACTIONS(450), + [anon_sym_maximum] = ACTIONS(450), + [anon_sym_25] = ACTIONS(450), + [anon_sym_atangent] = ACTIONS(450), + [anon_sym_26] = ACTIONS(450), + [anon_sym_length] = ACTIONS(450), + [anon_sym_27] = ACTIONS(450), + [anon_sym_shape] = ACTIONS(450), + [anon_sym_28] = ACTIONS(450), + [anon_sym_range] = ACTIONS(450), + [anon_sym_29] = ACTIONS(450), + [anon_sym_first] = ACTIONS(450), + [anon_sym_30] = ACTIONS(450), + [anon_sym_reverse] = ACTIONS(450), + [anon_sym_31] = ACTIONS(450), + [anon_sym_deshape] = ACTIONS(450), + [anon_sym_32] = ACTIONS(450), + [anon_sym_bits] = ACTIONS(450), + [anon_sym_33] = ACTIONS(450), + [anon_sym_transpose] = ACTIONS(450), + [anon_sym_34] = ACTIONS(450), + [anon_sym_rise] = ACTIONS(450), + [anon_sym_35] = ACTIONS(450), + [anon_sym_fall] = ACTIONS(450), + [anon_sym_36] = ACTIONS(450), + [anon_sym_where] = ACTIONS(450), + [anon_sym_37] = ACTIONS(450), + [anon_sym_classify] = ACTIONS(450), + [anon_sym_38] = ACTIONS(450), + [anon_sym_deduplicate] = ACTIONS(450), + [anon_sym_39] = ACTIONS(450), + [anon_sym_box] = ACTIONS(450), + [anon_sym_40] = ACTIONS(450), + [anon_sym_unbox] = ACTIONS(450), + [anon_sym_41] = ACTIONS(450), + [anon_sym_match] = ACTIONS(450), + [anon_sym_42] = ACTIONS(450), + [anon_sym_couple] = ACTIONS(450), + [anon_sym_43] = ACTIONS(450), + [anon_sym_join] = ACTIONS(450), + [anon_sym_44] = ACTIONS(450), + [anon_sym_select] = ACTIONS(450), + [anon_sym_45] = ACTIONS(450), + [anon_sym_pick] = ACTIONS(450), + [anon_sym_46] = ACTIONS(450), + [anon_sym_reshape] = ACTIONS(450), + [anon_sym_47] = ACTIONS(450), + [anon_sym_take] = ACTIONS(450), + [anon_sym_48] = ACTIONS(450), + [anon_sym_drop] = ACTIONS(450), + [anon_sym_49] = ACTIONS(450), + [anon_sym_rotate] = ACTIONS(450), + [anon_sym_50] = ACTIONS(450), + [anon_sym_windows] = ACTIONS(450), + [anon_sym_51] = ACTIONS(450), + [anon_sym_keep] = ACTIONS(450), + [anon_sym_52] = ACTIONS(450), + [anon_sym_find] = ACTIONS(450), + [anon_sym_53] = ACTIONS(450), + [anon_sym_member] = ACTIONS(450), + [anon_sym_54] = ACTIONS(450), + [anon_sym_indexof] = ACTIONS(450), + [anon_sym_55] = ACTIONS(450), + [anon_sym_assert] = ACTIONS(450), + [anon_sym_56] = ACTIONS(450), + [anon_sym_wait] = ACTIONS(450), + [anon_sym_break] = ACTIONS(450), + [anon_sym_57] = ACTIONS(450), + [anon_sym_parse] = ACTIONS(450), + [anon_sym_random] = ACTIONS(450), + [anon_sym_58] = ACTIONS(450), + [anon_sym_gen] = ACTIONS(450), + [anon_sym_deal] = ACTIONS(450), + [anon_sym_tag] = ACTIONS(450), + [anon_sym_now] = ACTIONS(450), + [anon_sym_type] = ACTIONS(450), + [anon_sym_59] = ACTIONS(450), + [anon_sym_dump] = ACTIONS(450), + [anon_sym_regex] = ACTIONS(450), + [anon_sym_utf] = ACTIONS(450), + [anon_sym_rock] = ACTIONS(450), + [anon_sym_60] = ACTIONS(450), + [anon_sym_surface] = ACTIONS(450), + [anon_sym_TILDE] = ACTIONS(450), + [anon_sym_deep] = ACTIONS(450), + [anon_sym_de] = ACTIONS(448), + [anon_sym_61] = ACTIONS(450), + [anon_sym_abyss] = ACTIONS(450), + [anon_sym_ab] = ACTIONS(448), + [anon_sym_62] = ACTIONS(450), + [anon_sym_seabed] = ACTIONS(450), + [anon_sym_se] = ACTIONS(448), + [anon_sym_63] = ACTIONS(450), + [anon_sym_send] = ACTIONS(450), + [anon_sym_recv] = ACTIONS(450), + [anon_sym_tryrecv] = ACTIONS(450), + [anon_sym_reduce] = ACTIONS(450), + [anon_sym_SLASH] = ACTIONS(450), + [anon_sym_scan] = ACTIONS(450), + [anon_sym_BSLASH] = ACTIONS(450), + [anon_sym_each] = ACTIONS(450), + [anon_sym_64] = ACTIONS(450), + [anon_sym_rows] = ACTIONS(450), + [anon_sym_65] = ACTIONS(450), + [anon_sym_repeat] = ACTIONS(450), + [anon_sym_66] = ACTIONS(450), + [anon_sym_dip] = ACTIONS(450), + [anon_sym_67] = ACTIONS(450), + [anon_sym_gap] = ACTIONS(450), + [anon_sym_68] = ACTIONS(450), + [anon_sym_69] = ACTIONS(450), + [anon_sym_invert] = ACTIONS(450), + [anon_sym_70] = ACTIONS(450), + [anon_sym_spawn] = ACTIONS(450), + [anon_sym_pack] = ACTIONS(450), + [anon_sym_71] = ACTIONS(450), + [anon_sym_tribute] = ACTIONS(450), + [anon_sym_72] = ACTIONS(450), + [anon_sym_reach] = ACTIONS(450), + [anon_sym_fold] = ACTIONS(450), + [anon_sym_73] = ACTIONS(450), + [anon_sym_distribute] = ACTIONS(450), + [anon_sym_74] = ACTIONS(450), + [anon_sym_table] = ACTIONS(450), + [anon_sym_75] = ACTIONS(450), + [anon_sym_cross] = ACTIONS(450), + [anon_sym_76] = ACTIONS(450), + [anon_sym_group] = ACTIONS(450), + [anon_sym_77] = ACTIONS(450), + [anon_sym_partition] = ACTIONS(450), + [anon_sym_78] = ACTIONS(450), + [anon_sym_both] = ACTIONS(450), + [anon_sym_79] = ACTIONS(450), + [anon_sym_bracket] = ACTIONS(450), + [anon_sym_80] = ACTIONS(450), + [anon_sym_fork] = ACTIONS(450), + [anon_sym_81] = ACTIONS(450), + [anon_sym_under] = ACTIONS(450), + [anon_sym_82] = ACTIONS(450), + [anon_sym_level] = ACTIONS(450), + [anon_sym_83] = ACTIONS(450), + [anon_sym_fill] = ACTIONS(450), + [anon_sym_84] = ACTIONS(450), + [anon_sym_bind] = ACTIONS(450), + [anon_sym_SQUOTE] = ACTIONS(450), + [anon_sym_QMARK] = ACTIONS(450), + [anon_sym_try] = ACTIONS(448), + [anon_sym_85] = ACTIONS(450), + [anon_sym_combinate] = ACTIONS(450), + [anon_sym_86] = ACTIONS(450), + [anon_sym_87] = ACTIONS(450), + [anon_sym_88] = ACTIONS(450), + [anon_sym_89] = ACTIONS(450), + [anon_sym_90] = ACTIONS(450), + [anon_sym_91] = ACTIONS(450), + [anon_sym_92] = ACTIONS(450), + [anon_sym_93] = ACTIONS(450), [sym__whitespace] = ACTIONS(5), - [sym__end_of_line] = ACTIONS(468), + [sym__end_of_line] = ACTIONS(450), }, [97] = { - [ts_builtin_sym_end] = ACTIONS(476), - [aux_sym_number_token1] = ACTIONS(474), - [anon_sym_os] = ACTIONS(474), - [anon_sym_Family] = ACTIONS(474), - [anon_sym_Arch] = ACTIONS(474), - [anon_sym_ExeExt] = ACTIONS(474), - [anon_sym_PllExt] = ACTIONS(474), - [anon_sym_Sep] = ACTIONS(474), - [aux_sym_character_token1] = ACTIONS(476), - [sym_string] = ACTIONS(476), - [sym_multiLineString] = ACTIONS(476), - [anon_sym_PIPE] = ACTIONS(476), - [sym_identifier] = ACTIONS(474), - [sym_identifier_deprecated] = ACTIONS(474), - [sym_system] = ACTIONS(476), - [sym_comment] = ACTIONS(474), - [sym_openParen] = ACTIONS(476), - [sym_openCurly] = ACTIONS(476), - [sym_openBracket] = ACTIONS(476), - [sym_underscore] = ACTIONS(476), - [sym_leftArrow] = ACTIONS(476), - [anon_sym_CARET] = ACTIONS(476), - [anon_sym_eta] = ACTIONS(476), - [anon_sym_] = ACTIONS(474), - [anon_sym_pi] = ACTIONS(474), - [anon_sym_2] = ACTIONS(474), - [anon_sym_tau] = ACTIONS(476), - [anon_sym_3] = ACTIONS(474), - [anon_sym_infinity] = ACTIONS(476), - [anon_sym_4] = ACTIONS(476), - [anon_sym_e] = ACTIONS(474), - [anon_sym_NaN] = ACTIONS(474), - [anon_sym_NumProcs] = ACTIONS(474), - [anon_sym_DOT] = ACTIONS(476), - [anon_sym_COMMA] = ACTIONS(476), - [anon_sym_5] = ACTIONS(476), - [anon_sym_SEMI] = ACTIONS(476), - [anon_sym_identity] = ACTIONS(476), - [anon_sym_id] = ACTIONS(474), - [anon_sym_6] = ACTIONS(476), - [anon_sym_not] = ACTIONS(476), - [anon_sym_7] = ACTIONS(476), - [anon_sym_sign] = ACTIONS(476), - [anon_sym_8] = ACTIONS(476), - [anon_sym_BQUOTE] = ACTIONS(476), - [anon_sym_9] = ACTIONS(476), - [anon_sym_absolutevalue] = ACTIONS(476), - [anon_sym_10] = ACTIONS(476), - [anon_sym_sqrt] = ACTIONS(476), - [anon_sym_11] = ACTIONS(476), - [anon_sym_sine] = ACTIONS(476), - [anon_sym_12] = ACTIONS(476), - [anon_sym_floor] = ACTIONS(476), - [anon_sym_13] = ACTIONS(476), - [anon_sym_ceiling] = ACTIONS(476), - [anon_sym_14] = ACTIONS(476), - [anon_sym_round] = ACTIONS(476), - [anon_sym_15] = ACTIONS(476), - [anon_sym_EQ] = ACTIONS(476), - [anon_sym_BANG_EQ] = ACTIONS(476), - [anon_sym_16] = ACTIONS(476), - [anon_sym_LT] = ACTIONS(474), - [anon_sym_LT_EQ] = ACTIONS(476), - [anon_sym_17] = ACTIONS(476), - [anon_sym_GT] = ACTIONS(474), - [anon_sym_GT_EQ] = ACTIONS(476), - [anon_sym_18] = ACTIONS(476), - [anon_sym_PLUS] = ACTIONS(476), - [anon_sym_DASH] = ACTIONS(476), - [anon_sym_STAR] = ACTIONS(476), - [anon_sym_19] = ACTIONS(476), - [anon_sym_PERCENT] = ACTIONS(476), - [anon_sym_20] = ACTIONS(476), - [anon_sym_modulus] = ACTIONS(476), - [anon_sym_21] = ACTIONS(476), - [anon_sym_power] = ACTIONS(476), - [anon_sym_22] = ACTIONS(476), - [anon_sym_logarithm] = ACTIONS(476), - [anon_sym_23] = ACTIONS(476), - [anon_sym_minimum] = ACTIONS(476), - [anon_sym_24] = ACTIONS(476), - [anon_sym_maximum] = ACTIONS(476), - [anon_sym_25] = ACTIONS(476), - [anon_sym_atangent] = ACTIONS(476), - [anon_sym_26] = ACTIONS(476), - [anon_sym_length] = ACTIONS(476), - [anon_sym_27] = ACTIONS(476), - [anon_sym_shape] = ACTIONS(476), - [anon_sym_28] = ACTIONS(476), - [anon_sym_range] = ACTIONS(476), - [anon_sym_29] = ACTIONS(476), - [anon_sym_first] = ACTIONS(476), - [anon_sym_30] = ACTIONS(476), - [anon_sym_reverse] = ACTIONS(476), - [anon_sym_31] = ACTIONS(476), - [anon_sym_deshape] = ACTIONS(476), - [anon_sym_32] = ACTIONS(476), - [anon_sym_bits] = ACTIONS(476), - [anon_sym_33] = ACTIONS(476), - [anon_sym_transpose] = ACTIONS(476), - [anon_sym_34] = ACTIONS(476), - [anon_sym_rise] = ACTIONS(476), - [anon_sym_35] = ACTIONS(476), - [anon_sym_fall] = ACTIONS(476), - [anon_sym_36] = ACTIONS(476), - [anon_sym_where] = ACTIONS(476), - [anon_sym_37] = ACTIONS(476), - [anon_sym_classify] = ACTIONS(476), - [anon_sym_38] = ACTIONS(476), - [anon_sym_deduplicate] = ACTIONS(476), - [anon_sym_39] = ACTIONS(476), - [anon_sym_box] = ACTIONS(476), - [anon_sym_40] = ACTIONS(476), - [anon_sym_unbox] = ACTIONS(476), - [anon_sym_41] = ACTIONS(476), - [anon_sym_match] = ACTIONS(476), - [anon_sym_42] = ACTIONS(476), - [anon_sym_couple] = ACTIONS(476), - [anon_sym_43] = ACTIONS(476), - [anon_sym_join] = ACTIONS(476), - [anon_sym_44] = ACTIONS(476), - [anon_sym_select] = ACTIONS(476), - [anon_sym_45] = ACTIONS(476), - [anon_sym_pick] = ACTIONS(476), - [anon_sym_46] = ACTIONS(476), - [anon_sym_reshape] = ACTIONS(476), - [anon_sym_47] = ACTIONS(476), - [anon_sym_take] = ACTIONS(476), - [anon_sym_48] = ACTIONS(476), - [anon_sym_drop] = ACTIONS(476), - [anon_sym_49] = ACTIONS(476), - [anon_sym_rotate] = ACTIONS(476), - [anon_sym_50] = ACTIONS(476), - [anon_sym_windows] = ACTIONS(476), - [anon_sym_51] = ACTIONS(476), - [anon_sym_keep] = ACTIONS(476), - [anon_sym_52] = ACTIONS(476), - [anon_sym_find] = ACTIONS(476), - [anon_sym_53] = ACTIONS(476), - [anon_sym_member] = ACTIONS(476), - [anon_sym_54] = ACTIONS(476), - [anon_sym_indexof] = ACTIONS(476), - [anon_sym_55] = ACTIONS(476), - [anon_sym_assert] = ACTIONS(476), - [anon_sym_56] = ACTIONS(476), - [anon_sym_wait] = ACTIONS(476), - [anon_sym_break] = ACTIONS(476), - [anon_sym_57] = ACTIONS(476), - [anon_sym_parse] = ACTIONS(476), - [anon_sym_random] = ACTIONS(476), - [anon_sym_58] = ACTIONS(476), - [anon_sym_gen] = ACTIONS(476), - [anon_sym_deal] = ACTIONS(476), - [anon_sym_tag] = ACTIONS(476), - [anon_sym_now] = ACTIONS(476), - [anon_sym_type] = ACTIONS(476), - [anon_sym_59] = ACTIONS(476), - [anon_sym_dump] = ACTIONS(476), - [anon_sym_regex] = ACTIONS(476), - [anon_sym_utf] = ACTIONS(476), - [anon_sym_rock] = ACTIONS(476), - [anon_sym_60] = ACTIONS(476), - [anon_sym_surface] = ACTIONS(476), - [anon_sym_TILDE] = ACTIONS(476), - [anon_sym_deep] = ACTIONS(476), - [anon_sym_de] = ACTIONS(474), - [anon_sym_61] = ACTIONS(476), - [anon_sym_abyss] = ACTIONS(476), - [anon_sym_ab] = ACTIONS(474), - [anon_sym_62] = ACTIONS(476), - [anon_sym_seabed] = ACTIONS(476), - [anon_sym_se] = ACTIONS(474), - [anon_sym_63] = ACTIONS(476), - [anon_sym_send] = ACTIONS(476), - [anon_sym_recv] = ACTIONS(476), - [anon_sym_tryrecv] = ACTIONS(476), - [anon_sym_reduce] = ACTIONS(476), - [anon_sym_SLASH] = ACTIONS(476), - [anon_sym_scan] = ACTIONS(476), - [anon_sym_BSLASH] = ACTIONS(476), - [anon_sym_each] = ACTIONS(476), - [anon_sym_64] = ACTIONS(476), - [anon_sym_rows] = ACTIONS(476), - [anon_sym_65] = ACTIONS(476), - [anon_sym_repeat] = ACTIONS(476), - [anon_sym_66] = ACTIONS(476), - [anon_sym_dip] = ACTIONS(476), - [anon_sym_di] = ACTIONS(474), - [anon_sym_67] = ACTIONS(476), - [anon_sym_gap] = ACTIONS(476), - [anon_sym_ga] = ACTIONS(474), - [anon_sym_68] = ACTIONS(476), - [anon_sym_oust] = ACTIONS(476), - [anon_sym_69] = ACTIONS(476), - [anon_sym_invert] = ACTIONS(476), - [anon_sym_70] = ACTIONS(476), - [anon_sym_spawn] = ACTIONS(476), - [anon_sym_pack] = ACTIONS(476), - [anon_sym_71] = ACTIONS(476), - [anon_sym_tribute] = ACTIONS(476), - [anon_sym_72] = ACTIONS(476), - [anon_sym_fold] = ACTIONS(476), - [anon_sym_73] = ACTIONS(476), - [anon_sym_distribute] = ACTIONS(476), - [anon_sym_74] = ACTIONS(476), - [anon_sym_table] = ACTIONS(476), - [anon_sym_75] = ACTIONS(476), - [anon_sym_cross] = ACTIONS(476), - [anon_sym_76] = ACTIONS(476), - [anon_sym_group] = ACTIONS(476), - [anon_sym_77] = ACTIONS(476), - [anon_sym_partition] = ACTIONS(476), - [anon_sym_78] = ACTIONS(476), - [anon_sym_both] = ACTIONS(476), - [anon_sym_79] = ACTIONS(476), - [anon_sym_bracket] = ACTIONS(476), - [anon_sym_80] = ACTIONS(476), - [anon_sym_fork] = ACTIONS(476), - [anon_sym_81] = ACTIONS(476), - [anon_sym_under] = ACTIONS(476), - [anon_sym_82] = ACTIONS(476), - [anon_sym_level] = ACTIONS(476), - [anon_sym_83] = ACTIONS(476), - [anon_sym_fill] = ACTIONS(476), - [anon_sym_84] = ACTIONS(476), - [anon_sym_bind] = ACTIONS(476), - [anon_sym_SQUOTE] = ACTIONS(476), - [anon_sym_QMARK] = ACTIONS(476), - [anon_sym_try] = ACTIONS(474), - [anon_sym_85] = ACTIONS(476), - [anon_sym_combinate] = ACTIONS(476), - [anon_sym_86] = ACTIONS(476), - [anon_sym_87] = ACTIONS(476), - [anon_sym_88] = ACTIONS(476), - [anon_sym_89] = ACTIONS(476), - [anon_sym_90] = ACTIONS(476), - [anon_sym_91] = ACTIONS(476), - [anon_sym_92] = ACTIONS(476), - [anon_sym_93] = ACTIONS(476), + [ts_builtin_sym_end] = ACTIONS(458), + [aux_sym_number_token1] = ACTIONS(456), + [anon_sym_os] = ACTIONS(456), + [anon_sym_Family] = ACTIONS(456), + [anon_sym_Arch] = ACTIONS(456), + [anon_sym_ExeExt] = ACTIONS(456), + [anon_sym_PllExt] = ACTIONS(456), + [anon_sym_Sep] = ACTIONS(456), + [aux_sym_character_token1] = ACTIONS(458), + [sym_string] = ACTIONS(458), + [sym_multiLineString] = ACTIONS(458), + [anon_sym_PIPE] = ACTIONS(458), + [sym_identifier] = ACTIONS(456), + [sym_identifier_deprecated] = ACTIONS(456), + [sym_system] = ACTIONS(458), + [sym_comment] = ACTIONS(456), + [sym_openParen] = ACTIONS(458), + [sym_openCurly] = ACTIONS(458), + [sym_openBracket] = ACTIONS(458), + [sym_underscore] = ACTIONS(458), + [sym_leftArrow] = ACTIONS(458), + [anon_sym_CARET] = ACTIONS(458), + [anon_sym_eta] = ACTIONS(458), + [anon_sym_] = ACTIONS(456), + [anon_sym_pi] = ACTIONS(456), + [anon_sym_2] = ACTIONS(456), + [anon_sym_tau] = ACTIONS(458), + [anon_sym_3] = ACTIONS(456), + [anon_sym_infinity] = ACTIONS(458), + [anon_sym_4] = ACTIONS(458), + [anon_sym_e] = ACTIONS(456), + [anon_sym_NaN] = ACTIONS(456), + [anon_sym_NumProcs] = ACTIONS(456), + [anon_sym_DOT] = ACTIONS(458), + [anon_sym_COMMA] = ACTIONS(458), + [anon_sym_5] = ACTIONS(458), + [anon_sym_SEMI] = ACTIONS(458), + [anon_sym_identity] = ACTIONS(458), + [anon_sym_id] = ACTIONS(456), + [anon_sym_6] = ACTIONS(458), + [anon_sym_not] = ACTIONS(458), + [anon_sym_7] = ACTIONS(458), + [anon_sym_sign] = ACTIONS(458), + [anon_sym_8] = ACTIONS(458), + [anon_sym_BQUOTE] = ACTIONS(458), + [anon_sym_9] = ACTIONS(458), + [anon_sym_absolutevalue] = ACTIONS(458), + [anon_sym_10] = ACTIONS(458), + [anon_sym_sqrt] = ACTIONS(458), + [anon_sym_11] = ACTIONS(458), + [anon_sym_sine] = ACTIONS(458), + [anon_sym_12] = ACTIONS(458), + [anon_sym_floor] = ACTIONS(458), + [anon_sym_13] = ACTIONS(458), + [anon_sym_ceiling] = ACTIONS(458), + [anon_sym_14] = ACTIONS(458), + [anon_sym_round] = ACTIONS(458), + [anon_sym_15] = ACTIONS(458), + [anon_sym_EQ] = ACTIONS(458), + [anon_sym_BANG_EQ] = ACTIONS(458), + [anon_sym_16] = ACTIONS(458), + [anon_sym_LT] = ACTIONS(456), + [anon_sym_LT_EQ] = ACTIONS(458), + [anon_sym_17] = ACTIONS(458), + [anon_sym_GT] = ACTIONS(456), + [anon_sym_GT_EQ] = ACTIONS(458), + [anon_sym_18] = ACTIONS(458), + [anon_sym_PLUS] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(458), + [anon_sym_STAR] = ACTIONS(458), + [anon_sym_19] = ACTIONS(458), + [anon_sym_PERCENT] = ACTIONS(458), + [anon_sym_20] = ACTIONS(458), + [anon_sym_modulus] = ACTIONS(458), + [anon_sym_21] = ACTIONS(458), + [anon_sym_power] = ACTIONS(458), + [anon_sym_22] = ACTIONS(458), + [anon_sym_logarithm] = ACTIONS(458), + [anon_sym_23] = ACTIONS(458), + [anon_sym_minimum] = ACTIONS(458), + [anon_sym_24] = ACTIONS(458), + [anon_sym_maximum] = ACTIONS(458), + [anon_sym_25] = ACTIONS(458), + [anon_sym_atangent] = ACTIONS(458), + [anon_sym_26] = ACTIONS(458), + [anon_sym_length] = ACTIONS(458), + [anon_sym_27] = ACTIONS(458), + [anon_sym_shape] = ACTIONS(458), + [anon_sym_28] = ACTIONS(458), + [anon_sym_range] = ACTIONS(458), + [anon_sym_29] = ACTIONS(458), + [anon_sym_first] = ACTIONS(458), + [anon_sym_30] = ACTIONS(458), + [anon_sym_reverse] = ACTIONS(458), + [anon_sym_31] = ACTIONS(458), + [anon_sym_deshape] = ACTIONS(458), + [anon_sym_32] = ACTIONS(458), + [anon_sym_bits] = ACTIONS(458), + [anon_sym_33] = ACTIONS(458), + [anon_sym_transpose] = ACTIONS(458), + [anon_sym_34] = ACTIONS(458), + [anon_sym_rise] = ACTIONS(458), + [anon_sym_35] = ACTIONS(458), + [anon_sym_fall] = ACTIONS(458), + [anon_sym_36] = ACTIONS(458), + [anon_sym_where] = ACTIONS(458), + [anon_sym_37] = ACTIONS(458), + [anon_sym_classify] = ACTIONS(458), + [anon_sym_38] = ACTIONS(458), + [anon_sym_deduplicate] = ACTIONS(458), + [anon_sym_39] = ACTIONS(458), + [anon_sym_box] = ACTIONS(458), + [anon_sym_40] = ACTIONS(458), + [anon_sym_unbox] = ACTIONS(458), + [anon_sym_41] = ACTIONS(458), + [anon_sym_match] = ACTIONS(458), + [anon_sym_42] = ACTIONS(458), + [anon_sym_couple] = ACTIONS(458), + [anon_sym_43] = ACTIONS(458), + [anon_sym_join] = ACTIONS(458), + [anon_sym_44] = ACTIONS(458), + [anon_sym_select] = ACTIONS(458), + [anon_sym_45] = ACTIONS(458), + [anon_sym_pick] = ACTIONS(458), + [anon_sym_46] = ACTIONS(458), + [anon_sym_reshape] = ACTIONS(458), + [anon_sym_47] = ACTIONS(458), + [anon_sym_take] = ACTIONS(458), + [anon_sym_48] = ACTIONS(458), + [anon_sym_drop] = ACTIONS(458), + [anon_sym_49] = ACTIONS(458), + [anon_sym_rotate] = ACTIONS(458), + [anon_sym_50] = ACTIONS(458), + [anon_sym_windows] = ACTIONS(458), + [anon_sym_51] = ACTIONS(458), + [anon_sym_keep] = ACTIONS(458), + [anon_sym_52] = ACTIONS(458), + [anon_sym_find] = ACTIONS(458), + [anon_sym_53] = ACTIONS(458), + [anon_sym_member] = ACTIONS(458), + [anon_sym_54] = ACTIONS(458), + [anon_sym_indexof] = ACTIONS(458), + [anon_sym_55] = ACTIONS(458), + [anon_sym_assert] = ACTIONS(458), + [anon_sym_56] = ACTIONS(458), + [anon_sym_wait] = ACTIONS(458), + [anon_sym_break] = ACTIONS(458), + [anon_sym_57] = ACTIONS(458), + [anon_sym_parse] = ACTIONS(458), + [anon_sym_random] = ACTIONS(458), + [anon_sym_58] = ACTIONS(458), + [anon_sym_gen] = ACTIONS(458), + [anon_sym_deal] = ACTIONS(458), + [anon_sym_tag] = ACTIONS(458), + [anon_sym_now] = ACTIONS(458), + [anon_sym_type] = ACTIONS(458), + [anon_sym_59] = ACTIONS(458), + [anon_sym_dump] = ACTIONS(458), + [anon_sym_regex] = ACTIONS(458), + [anon_sym_utf] = ACTIONS(458), + [anon_sym_rock] = ACTIONS(458), + [anon_sym_60] = ACTIONS(458), + [anon_sym_surface] = ACTIONS(458), + [anon_sym_TILDE] = ACTIONS(458), + [anon_sym_deep] = ACTIONS(458), + [anon_sym_de] = ACTIONS(456), + [anon_sym_61] = ACTIONS(458), + [anon_sym_abyss] = ACTIONS(458), + [anon_sym_ab] = ACTIONS(456), + [anon_sym_62] = ACTIONS(458), + [anon_sym_seabed] = ACTIONS(458), + [anon_sym_se] = ACTIONS(456), + [anon_sym_63] = ACTIONS(458), + [anon_sym_send] = ACTIONS(458), + [anon_sym_recv] = ACTIONS(458), + [anon_sym_tryrecv] = ACTIONS(458), + [anon_sym_reduce] = ACTIONS(458), + [anon_sym_SLASH] = ACTIONS(458), + [anon_sym_scan] = ACTIONS(458), + [anon_sym_BSLASH] = ACTIONS(458), + [anon_sym_each] = ACTIONS(458), + [anon_sym_64] = ACTIONS(458), + [anon_sym_rows] = ACTIONS(458), + [anon_sym_65] = ACTIONS(458), + [anon_sym_repeat] = ACTIONS(458), + [anon_sym_66] = ACTIONS(458), + [anon_sym_dip] = ACTIONS(458), + [anon_sym_67] = ACTIONS(458), + [anon_sym_gap] = ACTIONS(458), + [anon_sym_68] = ACTIONS(458), + [anon_sym_69] = ACTIONS(458), + [anon_sym_invert] = ACTIONS(458), + [anon_sym_70] = ACTIONS(458), + [anon_sym_spawn] = ACTIONS(458), + [anon_sym_pack] = ACTIONS(458), + [anon_sym_71] = ACTIONS(458), + [anon_sym_tribute] = ACTIONS(458), + [anon_sym_72] = ACTIONS(458), + [anon_sym_reach] = ACTIONS(458), + [anon_sym_fold] = ACTIONS(458), + [anon_sym_73] = ACTIONS(458), + [anon_sym_distribute] = ACTIONS(458), + [anon_sym_74] = ACTIONS(458), + [anon_sym_table] = ACTIONS(458), + [anon_sym_75] = ACTIONS(458), + [anon_sym_cross] = ACTIONS(458), + [anon_sym_76] = ACTIONS(458), + [anon_sym_group] = ACTIONS(458), + [anon_sym_77] = ACTIONS(458), + [anon_sym_partition] = ACTIONS(458), + [anon_sym_78] = ACTIONS(458), + [anon_sym_both] = ACTIONS(458), + [anon_sym_79] = ACTIONS(458), + [anon_sym_bracket] = ACTIONS(458), + [anon_sym_80] = ACTIONS(458), + [anon_sym_fork] = ACTIONS(458), + [anon_sym_81] = ACTIONS(458), + [anon_sym_under] = ACTIONS(458), + [anon_sym_82] = ACTIONS(458), + [anon_sym_level] = ACTIONS(458), + [anon_sym_83] = ACTIONS(458), + [anon_sym_fill] = ACTIONS(458), + [anon_sym_84] = ACTIONS(458), + [anon_sym_bind] = ACTIONS(458), + [anon_sym_SQUOTE] = ACTIONS(458), + [anon_sym_QMARK] = ACTIONS(458), + [anon_sym_try] = ACTIONS(456), + [anon_sym_85] = ACTIONS(458), + [anon_sym_combinate] = ACTIONS(458), + [anon_sym_86] = ACTIONS(458), + [anon_sym_87] = ACTIONS(458), + [anon_sym_88] = ACTIONS(458), + [anon_sym_89] = ACTIONS(458), + [anon_sym_90] = ACTIONS(458), + [anon_sym_91] = ACTIONS(458), + [anon_sym_92] = ACTIONS(458), + [anon_sym_93] = ACTIONS(458), [sym__whitespace] = ACTIONS(5), - [sym__end_of_line] = ACTIONS(476), + [sym__end_of_line] = ACTIONS(458), }, [98] = { - [ts_builtin_sym_end] = ACTIONS(500), - [aux_sym_number_token1] = ACTIONS(498), - [anon_sym_os] = ACTIONS(498), - [anon_sym_Family] = ACTIONS(498), - [anon_sym_Arch] = ACTIONS(498), - [anon_sym_ExeExt] = ACTIONS(498), - [anon_sym_PllExt] = ACTIONS(498), - [anon_sym_Sep] = ACTIONS(498), - [aux_sym_character_token1] = ACTIONS(500), - [sym_string] = ACTIONS(500), - [sym_multiLineString] = ACTIONS(500), - [anon_sym_PIPE] = ACTIONS(500), - [sym_identifier] = ACTIONS(498), - [sym_identifier_deprecated] = ACTIONS(498), - [sym_system] = ACTIONS(500), - [sym_comment] = ACTIONS(498), - [sym_openParen] = ACTIONS(500), - [sym_openCurly] = ACTIONS(500), - [sym_openBracket] = ACTIONS(500), - [sym_underscore] = ACTIONS(500), - [sym_leftArrow] = ACTIONS(500), - [anon_sym_CARET] = ACTIONS(500), - [anon_sym_eta] = ACTIONS(500), - [anon_sym_] = ACTIONS(498), - [anon_sym_pi] = ACTIONS(498), - [anon_sym_2] = ACTIONS(498), - [anon_sym_tau] = ACTIONS(500), - [anon_sym_3] = ACTIONS(498), - [anon_sym_infinity] = ACTIONS(500), - [anon_sym_4] = ACTIONS(500), - [anon_sym_e] = ACTIONS(498), - [anon_sym_NaN] = ACTIONS(498), - [anon_sym_NumProcs] = ACTIONS(498), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_COMMA] = ACTIONS(500), - [anon_sym_5] = ACTIONS(500), - [anon_sym_SEMI] = ACTIONS(500), - [anon_sym_identity] = ACTIONS(500), - [anon_sym_id] = ACTIONS(498), - [anon_sym_6] = ACTIONS(500), - [anon_sym_not] = ACTIONS(500), - [anon_sym_7] = ACTIONS(500), - [anon_sym_sign] = ACTIONS(500), - [anon_sym_8] = ACTIONS(500), - [anon_sym_BQUOTE] = ACTIONS(500), - [anon_sym_9] = ACTIONS(500), - [anon_sym_absolutevalue] = ACTIONS(500), - [anon_sym_10] = ACTIONS(500), - [anon_sym_sqrt] = ACTIONS(500), - [anon_sym_11] = ACTIONS(500), - [anon_sym_sine] = ACTIONS(500), - [anon_sym_12] = ACTIONS(500), - [anon_sym_floor] = ACTIONS(500), - [anon_sym_13] = ACTIONS(500), - [anon_sym_ceiling] = ACTIONS(500), - [anon_sym_14] = ACTIONS(500), - [anon_sym_round] = ACTIONS(500), - [anon_sym_15] = ACTIONS(500), - [anon_sym_EQ] = ACTIONS(500), - [anon_sym_BANG_EQ] = ACTIONS(500), - [anon_sym_16] = ACTIONS(500), - [anon_sym_LT] = ACTIONS(498), - [anon_sym_LT_EQ] = ACTIONS(500), - [anon_sym_17] = ACTIONS(500), - [anon_sym_GT] = ACTIONS(498), - [anon_sym_GT_EQ] = ACTIONS(500), - [anon_sym_18] = ACTIONS(500), - [anon_sym_PLUS] = ACTIONS(500), - [anon_sym_DASH] = ACTIONS(500), - [anon_sym_STAR] = ACTIONS(500), - [anon_sym_19] = ACTIONS(500), - [anon_sym_PERCENT] = ACTIONS(500), - [anon_sym_20] = ACTIONS(500), - [anon_sym_modulus] = ACTIONS(500), - [anon_sym_21] = ACTIONS(500), - [anon_sym_power] = ACTIONS(500), - [anon_sym_22] = ACTIONS(500), - [anon_sym_logarithm] = ACTIONS(500), - [anon_sym_23] = ACTIONS(500), - [anon_sym_minimum] = ACTIONS(500), - [anon_sym_24] = ACTIONS(500), - [anon_sym_maximum] = ACTIONS(500), - [anon_sym_25] = ACTIONS(500), - [anon_sym_atangent] = ACTIONS(500), - [anon_sym_26] = ACTIONS(500), - [anon_sym_length] = ACTIONS(500), - [anon_sym_27] = ACTIONS(500), - [anon_sym_shape] = ACTIONS(500), - [anon_sym_28] = ACTIONS(500), - [anon_sym_range] = ACTIONS(500), - [anon_sym_29] = ACTIONS(500), - [anon_sym_first] = ACTIONS(500), - [anon_sym_30] = ACTIONS(500), - [anon_sym_reverse] = ACTIONS(500), - [anon_sym_31] = ACTIONS(500), - [anon_sym_deshape] = ACTIONS(500), - [anon_sym_32] = ACTIONS(500), - [anon_sym_bits] = ACTIONS(500), - [anon_sym_33] = ACTIONS(500), - [anon_sym_transpose] = ACTIONS(500), - [anon_sym_34] = ACTIONS(500), - [anon_sym_rise] = ACTIONS(500), - [anon_sym_35] = ACTIONS(500), - [anon_sym_fall] = ACTIONS(500), - [anon_sym_36] = ACTIONS(500), - [anon_sym_where] = ACTIONS(500), - [anon_sym_37] = ACTIONS(500), - [anon_sym_classify] = ACTIONS(500), - [anon_sym_38] = ACTIONS(500), - [anon_sym_deduplicate] = ACTIONS(500), - [anon_sym_39] = ACTIONS(500), - [anon_sym_box] = ACTIONS(500), - [anon_sym_40] = ACTIONS(500), - [anon_sym_unbox] = ACTIONS(500), - [anon_sym_41] = ACTIONS(500), - [anon_sym_match] = ACTIONS(500), - [anon_sym_42] = ACTIONS(500), - [anon_sym_couple] = ACTIONS(500), - [anon_sym_43] = ACTIONS(500), - [anon_sym_join] = ACTIONS(500), - [anon_sym_44] = ACTIONS(500), - [anon_sym_select] = ACTIONS(500), - [anon_sym_45] = ACTIONS(500), - [anon_sym_pick] = ACTIONS(500), - [anon_sym_46] = ACTIONS(500), - [anon_sym_reshape] = ACTIONS(500), - [anon_sym_47] = ACTIONS(500), - [anon_sym_take] = ACTIONS(500), - [anon_sym_48] = ACTIONS(500), - [anon_sym_drop] = ACTIONS(500), - [anon_sym_49] = ACTIONS(500), - [anon_sym_rotate] = ACTIONS(500), - [anon_sym_50] = ACTIONS(500), - [anon_sym_windows] = ACTIONS(500), - [anon_sym_51] = ACTIONS(500), - [anon_sym_keep] = ACTIONS(500), - [anon_sym_52] = ACTIONS(500), - [anon_sym_find] = ACTIONS(500), - [anon_sym_53] = ACTIONS(500), - [anon_sym_member] = ACTIONS(500), - [anon_sym_54] = ACTIONS(500), - [anon_sym_indexof] = ACTIONS(500), - [anon_sym_55] = ACTIONS(500), - [anon_sym_assert] = ACTIONS(500), - [anon_sym_56] = ACTIONS(500), - [anon_sym_wait] = ACTIONS(500), - [anon_sym_break] = ACTIONS(500), - [anon_sym_57] = ACTIONS(500), - [anon_sym_parse] = ACTIONS(500), - [anon_sym_random] = ACTIONS(500), - [anon_sym_58] = ACTIONS(500), - [anon_sym_gen] = ACTIONS(500), - [anon_sym_deal] = ACTIONS(500), - [anon_sym_tag] = ACTIONS(500), - [anon_sym_now] = ACTIONS(500), - [anon_sym_type] = ACTIONS(500), - [anon_sym_59] = ACTIONS(500), - [anon_sym_dump] = ACTIONS(500), - [anon_sym_regex] = ACTIONS(500), - [anon_sym_utf] = ACTIONS(500), - [anon_sym_rock] = ACTIONS(500), - [anon_sym_60] = ACTIONS(500), - [anon_sym_surface] = ACTIONS(500), - [anon_sym_TILDE] = ACTIONS(500), - [anon_sym_deep] = ACTIONS(500), - [anon_sym_de] = ACTIONS(498), - [anon_sym_61] = ACTIONS(500), - [anon_sym_abyss] = ACTIONS(500), - [anon_sym_ab] = ACTIONS(498), - [anon_sym_62] = ACTIONS(500), - [anon_sym_seabed] = ACTIONS(500), - [anon_sym_se] = ACTIONS(498), - [anon_sym_63] = ACTIONS(500), - [anon_sym_send] = ACTIONS(500), - [anon_sym_recv] = ACTIONS(500), - [anon_sym_tryrecv] = ACTIONS(500), - [anon_sym_reduce] = ACTIONS(500), - [anon_sym_SLASH] = ACTIONS(500), - [anon_sym_scan] = ACTIONS(500), - [anon_sym_BSLASH] = ACTIONS(500), - [anon_sym_each] = ACTIONS(500), - [anon_sym_64] = ACTIONS(500), - [anon_sym_rows] = ACTIONS(500), - [anon_sym_65] = ACTIONS(500), - [anon_sym_repeat] = ACTIONS(500), - [anon_sym_66] = ACTIONS(500), - [anon_sym_dip] = ACTIONS(500), - [anon_sym_di] = ACTIONS(498), - [anon_sym_67] = ACTIONS(500), - [anon_sym_gap] = ACTIONS(500), - [anon_sym_ga] = ACTIONS(498), - [anon_sym_68] = ACTIONS(500), - [anon_sym_oust] = ACTIONS(500), - [anon_sym_69] = ACTIONS(500), - [anon_sym_invert] = ACTIONS(500), - [anon_sym_70] = ACTIONS(500), - [anon_sym_spawn] = ACTIONS(500), - [anon_sym_pack] = ACTIONS(500), - [anon_sym_71] = ACTIONS(500), - [anon_sym_tribute] = ACTIONS(500), - [anon_sym_72] = ACTIONS(500), - [anon_sym_fold] = ACTIONS(500), - [anon_sym_73] = ACTIONS(500), - [anon_sym_distribute] = ACTIONS(500), - [anon_sym_74] = ACTIONS(500), - [anon_sym_table] = ACTIONS(500), - [anon_sym_75] = ACTIONS(500), - [anon_sym_cross] = ACTIONS(500), - [anon_sym_76] = ACTIONS(500), - [anon_sym_group] = ACTIONS(500), - [anon_sym_77] = ACTIONS(500), - [anon_sym_partition] = ACTIONS(500), - [anon_sym_78] = ACTIONS(500), - [anon_sym_both] = ACTIONS(500), - [anon_sym_79] = ACTIONS(500), - [anon_sym_bracket] = ACTIONS(500), - [anon_sym_80] = ACTIONS(500), - [anon_sym_fork] = ACTIONS(500), - [anon_sym_81] = ACTIONS(500), - [anon_sym_under] = ACTIONS(500), - [anon_sym_82] = ACTIONS(500), - [anon_sym_level] = ACTIONS(500), - [anon_sym_83] = ACTIONS(500), - [anon_sym_fill] = ACTIONS(500), - [anon_sym_84] = ACTIONS(500), - [anon_sym_bind] = ACTIONS(500), - [anon_sym_SQUOTE] = ACTIONS(500), - [anon_sym_QMARK] = ACTIONS(500), - [anon_sym_try] = ACTIONS(498), - [anon_sym_85] = ACTIONS(500), - [anon_sym_combinate] = ACTIONS(500), - [anon_sym_86] = ACTIONS(500), - [anon_sym_87] = ACTIONS(500), - [anon_sym_88] = ACTIONS(500), - [anon_sym_89] = ACTIONS(500), - [anon_sym_90] = ACTIONS(500), - [anon_sym_91] = ACTIONS(500), - [anon_sym_92] = ACTIONS(500), - [anon_sym_93] = ACTIONS(500), + [ts_builtin_sym_end] = ACTIONS(482), + [aux_sym_number_token1] = ACTIONS(480), + [anon_sym_os] = ACTIONS(480), + [anon_sym_Family] = ACTIONS(480), + [anon_sym_Arch] = ACTIONS(480), + [anon_sym_ExeExt] = ACTIONS(480), + [anon_sym_PllExt] = ACTIONS(480), + [anon_sym_Sep] = ACTIONS(480), + [aux_sym_character_token1] = ACTIONS(482), + [sym_string] = ACTIONS(482), + [sym_multiLineString] = ACTIONS(482), + [anon_sym_PIPE] = ACTIONS(482), + [sym_identifier] = ACTIONS(480), + [sym_identifier_deprecated] = ACTIONS(480), + [sym_system] = ACTIONS(482), + [sym_comment] = ACTIONS(480), + [sym_openParen] = ACTIONS(482), + [sym_openCurly] = ACTIONS(482), + [sym_openBracket] = ACTIONS(482), + [sym_underscore] = ACTIONS(482), + [sym_leftArrow] = ACTIONS(482), + [anon_sym_CARET] = ACTIONS(482), + [anon_sym_eta] = ACTIONS(482), + [anon_sym_] = ACTIONS(480), + [anon_sym_pi] = ACTIONS(480), + [anon_sym_2] = ACTIONS(480), + [anon_sym_tau] = ACTIONS(482), + [anon_sym_3] = ACTIONS(480), + [anon_sym_infinity] = ACTIONS(482), + [anon_sym_4] = ACTIONS(482), + [anon_sym_e] = ACTIONS(480), + [anon_sym_NaN] = ACTIONS(480), + [anon_sym_NumProcs] = ACTIONS(480), + [anon_sym_DOT] = ACTIONS(482), + [anon_sym_COMMA] = ACTIONS(482), + [anon_sym_5] = ACTIONS(482), + [anon_sym_SEMI] = ACTIONS(482), + [anon_sym_identity] = ACTIONS(482), + [anon_sym_id] = ACTIONS(480), + [anon_sym_6] = ACTIONS(482), + [anon_sym_not] = ACTIONS(482), + [anon_sym_7] = ACTIONS(482), + [anon_sym_sign] = ACTIONS(482), + [anon_sym_8] = ACTIONS(482), + [anon_sym_BQUOTE] = ACTIONS(482), + [anon_sym_9] = ACTIONS(482), + [anon_sym_absolutevalue] = ACTIONS(482), + [anon_sym_10] = ACTIONS(482), + [anon_sym_sqrt] = ACTIONS(482), + [anon_sym_11] = ACTIONS(482), + [anon_sym_sine] = ACTIONS(482), + [anon_sym_12] = ACTIONS(482), + [anon_sym_floor] = ACTIONS(482), + [anon_sym_13] = ACTIONS(482), + [anon_sym_ceiling] = ACTIONS(482), + [anon_sym_14] = ACTIONS(482), + [anon_sym_round] = ACTIONS(482), + [anon_sym_15] = ACTIONS(482), + [anon_sym_EQ] = ACTIONS(482), + [anon_sym_BANG_EQ] = ACTIONS(482), + [anon_sym_16] = ACTIONS(482), + [anon_sym_LT] = ACTIONS(480), + [anon_sym_LT_EQ] = ACTIONS(482), + [anon_sym_17] = ACTIONS(482), + [anon_sym_GT] = ACTIONS(480), + [anon_sym_GT_EQ] = ACTIONS(482), + [anon_sym_18] = ACTIONS(482), + [anon_sym_PLUS] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(482), + [anon_sym_STAR] = ACTIONS(482), + [anon_sym_19] = ACTIONS(482), + [anon_sym_PERCENT] = ACTIONS(482), + [anon_sym_20] = ACTIONS(482), + [anon_sym_modulus] = ACTIONS(482), + [anon_sym_21] = ACTIONS(482), + [anon_sym_power] = ACTIONS(482), + [anon_sym_22] = ACTIONS(482), + [anon_sym_logarithm] = ACTIONS(482), + [anon_sym_23] = ACTIONS(482), + [anon_sym_minimum] = ACTIONS(482), + [anon_sym_24] = ACTIONS(482), + [anon_sym_maximum] = ACTIONS(482), + [anon_sym_25] = ACTIONS(482), + [anon_sym_atangent] = ACTIONS(482), + [anon_sym_26] = ACTIONS(482), + [anon_sym_length] = ACTIONS(482), + [anon_sym_27] = ACTIONS(482), + [anon_sym_shape] = ACTIONS(482), + [anon_sym_28] = ACTIONS(482), + [anon_sym_range] = ACTIONS(482), + [anon_sym_29] = ACTIONS(482), + [anon_sym_first] = ACTIONS(482), + [anon_sym_30] = ACTIONS(482), + [anon_sym_reverse] = ACTIONS(482), + [anon_sym_31] = ACTIONS(482), + [anon_sym_deshape] = ACTIONS(482), + [anon_sym_32] = ACTIONS(482), + [anon_sym_bits] = ACTIONS(482), + [anon_sym_33] = ACTIONS(482), + [anon_sym_transpose] = ACTIONS(482), + [anon_sym_34] = ACTIONS(482), + [anon_sym_rise] = ACTIONS(482), + [anon_sym_35] = ACTIONS(482), + [anon_sym_fall] = ACTIONS(482), + [anon_sym_36] = ACTIONS(482), + [anon_sym_where] = ACTIONS(482), + [anon_sym_37] = ACTIONS(482), + [anon_sym_classify] = ACTIONS(482), + [anon_sym_38] = ACTIONS(482), + [anon_sym_deduplicate] = ACTIONS(482), + [anon_sym_39] = ACTIONS(482), + [anon_sym_box] = ACTIONS(482), + [anon_sym_40] = ACTIONS(482), + [anon_sym_unbox] = ACTIONS(482), + [anon_sym_41] = ACTIONS(482), + [anon_sym_match] = ACTIONS(482), + [anon_sym_42] = ACTIONS(482), + [anon_sym_couple] = ACTIONS(482), + [anon_sym_43] = ACTIONS(482), + [anon_sym_join] = ACTIONS(482), + [anon_sym_44] = ACTIONS(482), + [anon_sym_select] = ACTIONS(482), + [anon_sym_45] = ACTIONS(482), + [anon_sym_pick] = ACTIONS(482), + [anon_sym_46] = ACTIONS(482), + [anon_sym_reshape] = ACTIONS(482), + [anon_sym_47] = ACTIONS(482), + [anon_sym_take] = ACTIONS(482), + [anon_sym_48] = ACTIONS(482), + [anon_sym_drop] = ACTIONS(482), + [anon_sym_49] = ACTIONS(482), + [anon_sym_rotate] = ACTIONS(482), + [anon_sym_50] = ACTIONS(482), + [anon_sym_windows] = ACTIONS(482), + [anon_sym_51] = ACTIONS(482), + [anon_sym_keep] = ACTIONS(482), + [anon_sym_52] = ACTIONS(482), + [anon_sym_find] = ACTIONS(482), + [anon_sym_53] = ACTIONS(482), + [anon_sym_member] = ACTIONS(482), + [anon_sym_54] = ACTIONS(482), + [anon_sym_indexof] = ACTIONS(482), + [anon_sym_55] = ACTIONS(482), + [anon_sym_assert] = ACTIONS(482), + [anon_sym_56] = ACTIONS(482), + [anon_sym_wait] = ACTIONS(482), + [anon_sym_break] = ACTIONS(482), + [anon_sym_57] = ACTIONS(482), + [anon_sym_parse] = ACTIONS(482), + [anon_sym_random] = ACTIONS(482), + [anon_sym_58] = ACTIONS(482), + [anon_sym_gen] = ACTIONS(482), + [anon_sym_deal] = ACTIONS(482), + [anon_sym_tag] = ACTIONS(482), + [anon_sym_now] = ACTIONS(482), + [anon_sym_type] = ACTIONS(482), + [anon_sym_59] = ACTIONS(482), + [anon_sym_dump] = ACTIONS(482), + [anon_sym_regex] = ACTIONS(482), + [anon_sym_utf] = ACTIONS(482), + [anon_sym_rock] = ACTIONS(482), + [anon_sym_60] = ACTIONS(482), + [anon_sym_surface] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_deep] = ACTIONS(482), + [anon_sym_de] = ACTIONS(480), + [anon_sym_61] = ACTIONS(482), + [anon_sym_abyss] = ACTIONS(482), + [anon_sym_ab] = ACTIONS(480), + [anon_sym_62] = ACTIONS(482), + [anon_sym_seabed] = ACTIONS(482), + [anon_sym_se] = ACTIONS(480), + [anon_sym_63] = ACTIONS(482), + [anon_sym_send] = ACTIONS(482), + [anon_sym_recv] = ACTIONS(482), + [anon_sym_tryrecv] = ACTIONS(482), + [anon_sym_reduce] = ACTIONS(482), + [anon_sym_SLASH] = ACTIONS(482), + [anon_sym_scan] = ACTIONS(482), + [anon_sym_BSLASH] = ACTIONS(482), + [anon_sym_each] = ACTIONS(482), + [anon_sym_64] = ACTIONS(482), + [anon_sym_rows] = ACTIONS(482), + [anon_sym_65] = ACTIONS(482), + [anon_sym_repeat] = ACTIONS(482), + [anon_sym_66] = ACTIONS(482), + [anon_sym_dip] = ACTIONS(482), + [anon_sym_67] = ACTIONS(482), + [anon_sym_gap] = ACTIONS(482), + [anon_sym_68] = ACTIONS(482), + [anon_sym_69] = ACTIONS(482), + [anon_sym_invert] = ACTIONS(482), + [anon_sym_70] = ACTIONS(482), + [anon_sym_spawn] = ACTIONS(482), + [anon_sym_pack] = ACTIONS(482), + [anon_sym_71] = ACTIONS(482), + [anon_sym_tribute] = ACTIONS(482), + [anon_sym_72] = ACTIONS(482), + [anon_sym_reach] = ACTIONS(482), + [anon_sym_fold] = ACTIONS(482), + [anon_sym_73] = ACTIONS(482), + [anon_sym_distribute] = ACTIONS(482), + [anon_sym_74] = ACTIONS(482), + [anon_sym_table] = ACTIONS(482), + [anon_sym_75] = ACTIONS(482), + [anon_sym_cross] = ACTIONS(482), + [anon_sym_76] = ACTIONS(482), + [anon_sym_group] = ACTIONS(482), + [anon_sym_77] = ACTIONS(482), + [anon_sym_partition] = ACTIONS(482), + [anon_sym_78] = ACTIONS(482), + [anon_sym_both] = ACTIONS(482), + [anon_sym_79] = ACTIONS(482), + [anon_sym_bracket] = ACTIONS(482), + [anon_sym_80] = ACTIONS(482), + [anon_sym_fork] = ACTIONS(482), + [anon_sym_81] = ACTIONS(482), + [anon_sym_under] = ACTIONS(482), + [anon_sym_82] = ACTIONS(482), + [anon_sym_level] = ACTIONS(482), + [anon_sym_83] = ACTIONS(482), + [anon_sym_fill] = ACTIONS(482), + [anon_sym_84] = ACTIONS(482), + [anon_sym_bind] = ACTIONS(482), + [anon_sym_SQUOTE] = ACTIONS(482), + [anon_sym_QMARK] = ACTIONS(482), + [anon_sym_try] = ACTIONS(480), + [anon_sym_85] = ACTIONS(482), + [anon_sym_combinate] = ACTIONS(482), + [anon_sym_86] = ACTIONS(482), + [anon_sym_87] = ACTIONS(482), + [anon_sym_88] = ACTIONS(482), + [anon_sym_89] = ACTIONS(482), + [anon_sym_90] = ACTIONS(482), + [anon_sym_91] = ACTIONS(482), + [anon_sym_92] = ACTIONS(482), + [anon_sym_93] = ACTIONS(482), [sym__whitespace] = ACTIONS(5), - [sym__end_of_line] = ACTIONS(500), + [sym__end_of_line] = ACTIONS(482), }, [99] = { - [ts_builtin_sym_end] = ACTIONS(444), - [aux_sym_number_token1] = ACTIONS(442), - [anon_sym_os] = ACTIONS(442), - [anon_sym_Family] = ACTIONS(442), - [anon_sym_Arch] = ACTIONS(442), - [anon_sym_ExeExt] = ACTIONS(442), - [anon_sym_PllExt] = ACTIONS(442), - [anon_sym_Sep] = ACTIONS(442), - [aux_sym_character_token1] = ACTIONS(444), - [sym_string] = ACTIONS(444), - [sym_multiLineString] = ACTIONS(444), - [anon_sym_PIPE] = ACTIONS(444), - [sym_identifier] = ACTIONS(442), - [sym_identifier_deprecated] = ACTIONS(442), - [sym_system] = ACTIONS(444), - [sym_comment] = ACTIONS(442), - [sym_openParen] = ACTIONS(444), - [sym_openCurly] = ACTIONS(444), - [sym_openBracket] = ACTIONS(444), - [sym_underscore] = ACTIONS(444), - [sym_leftArrow] = ACTIONS(444), - [anon_sym_CARET] = ACTIONS(444), - [anon_sym_eta] = ACTIONS(444), - [anon_sym_] = ACTIONS(442), - [anon_sym_pi] = ACTIONS(442), - [anon_sym_2] = ACTIONS(442), - [anon_sym_tau] = ACTIONS(444), - [anon_sym_3] = ACTIONS(442), - [anon_sym_infinity] = ACTIONS(444), - [anon_sym_4] = ACTIONS(444), - [anon_sym_e] = ACTIONS(442), - [anon_sym_NaN] = ACTIONS(442), - [anon_sym_NumProcs] = ACTIONS(442), - [anon_sym_DOT] = ACTIONS(444), - [anon_sym_COMMA] = ACTIONS(444), - [anon_sym_5] = ACTIONS(444), - [anon_sym_SEMI] = ACTIONS(444), - [anon_sym_identity] = ACTIONS(444), - [anon_sym_id] = ACTIONS(442), - [anon_sym_6] = ACTIONS(444), - [anon_sym_not] = ACTIONS(444), - [anon_sym_7] = ACTIONS(444), - [anon_sym_sign] = ACTIONS(444), - [anon_sym_8] = ACTIONS(444), - [anon_sym_BQUOTE] = ACTIONS(444), - [anon_sym_9] = ACTIONS(444), - [anon_sym_absolutevalue] = ACTIONS(444), - [anon_sym_10] = ACTIONS(444), - [anon_sym_sqrt] = ACTIONS(444), - [anon_sym_11] = ACTIONS(444), - [anon_sym_sine] = ACTIONS(444), - [anon_sym_12] = ACTIONS(444), - [anon_sym_floor] = ACTIONS(444), - [anon_sym_13] = ACTIONS(444), - [anon_sym_ceiling] = ACTIONS(444), - [anon_sym_14] = ACTIONS(444), - [anon_sym_round] = ACTIONS(444), - [anon_sym_15] = ACTIONS(444), - [anon_sym_EQ] = ACTIONS(444), - [anon_sym_BANG_EQ] = ACTIONS(444), - [anon_sym_16] = ACTIONS(444), - [anon_sym_LT] = ACTIONS(442), - [anon_sym_LT_EQ] = ACTIONS(444), - [anon_sym_17] = ACTIONS(444), - [anon_sym_GT] = ACTIONS(442), - [anon_sym_GT_EQ] = ACTIONS(444), - [anon_sym_18] = ACTIONS(444), - [anon_sym_PLUS] = ACTIONS(444), - [anon_sym_DASH] = ACTIONS(444), - [anon_sym_STAR] = ACTIONS(444), - [anon_sym_19] = ACTIONS(444), - [anon_sym_PERCENT] = ACTIONS(444), - [anon_sym_20] = ACTIONS(444), - [anon_sym_modulus] = ACTIONS(444), - [anon_sym_21] = ACTIONS(444), - [anon_sym_power] = ACTIONS(444), - [anon_sym_22] = ACTIONS(444), - [anon_sym_logarithm] = ACTIONS(444), - [anon_sym_23] = ACTIONS(444), - [anon_sym_minimum] = ACTIONS(444), - [anon_sym_24] = ACTIONS(444), - [anon_sym_maximum] = ACTIONS(444), - [anon_sym_25] = ACTIONS(444), - [anon_sym_atangent] = ACTIONS(444), - [anon_sym_26] = ACTIONS(444), - [anon_sym_length] = ACTIONS(444), - [anon_sym_27] = ACTIONS(444), - [anon_sym_shape] = ACTIONS(444), - [anon_sym_28] = ACTIONS(444), - [anon_sym_range] = ACTIONS(444), - [anon_sym_29] = ACTIONS(444), - [anon_sym_first] = ACTIONS(444), - [anon_sym_30] = ACTIONS(444), - [anon_sym_reverse] = ACTIONS(444), - [anon_sym_31] = ACTIONS(444), - [anon_sym_deshape] = ACTIONS(444), - [anon_sym_32] = ACTIONS(444), - [anon_sym_bits] = ACTIONS(444), - [anon_sym_33] = ACTIONS(444), - [anon_sym_transpose] = ACTIONS(444), - [anon_sym_34] = ACTIONS(444), - [anon_sym_rise] = ACTIONS(444), - [anon_sym_35] = ACTIONS(444), - [anon_sym_fall] = ACTIONS(444), - [anon_sym_36] = ACTIONS(444), - [anon_sym_where] = ACTIONS(444), - [anon_sym_37] = ACTIONS(444), - [anon_sym_classify] = ACTIONS(444), - [anon_sym_38] = ACTIONS(444), - [anon_sym_deduplicate] = ACTIONS(444), - [anon_sym_39] = ACTIONS(444), - [anon_sym_box] = ACTIONS(444), - [anon_sym_40] = ACTIONS(444), - [anon_sym_unbox] = ACTIONS(444), - [anon_sym_41] = ACTIONS(444), - [anon_sym_match] = ACTIONS(444), - [anon_sym_42] = ACTIONS(444), - [anon_sym_couple] = ACTIONS(444), - [anon_sym_43] = ACTIONS(444), - [anon_sym_join] = ACTIONS(444), - [anon_sym_44] = ACTIONS(444), - [anon_sym_select] = ACTIONS(444), - [anon_sym_45] = ACTIONS(444), - [anon_sym_pick] = ACTIONS(444), - [anon_sym_46] = ACTIONS(444), - [anon_sym_reshape] = ACTIONS(444), - [anon_sym_47] = ACTIONS(444), - [anon_sym_take] = ACTIONS(444), - [anon_sym_48] = ACTIONS(444), - [anon_sym_drop] = ACTIONS(444), - [anon_sym_49] = ACTIONS(444), - [anon_sym_rotate] = ACTIONS(444), - [anon_sym_50] = ACTIONS(444), - [anon_sym_windows] = ACTIONS(444), - [anon_sym_51] = ACTIONS(444), - [anon_sym_keep] = ACTIONS(444), - [anon_sym_52] = ACTIONS(444), - [anon_sym_find] = ACTIONS(444), - [anon_sym_53] = ACTIONS(444), - [anon_sym_member] = ACTIONS(444), - [anon_sym_54] = ACTIONS(444), - [anon_sym_indexof] = ACTIONS(444), - [anon_sym_55] = ACTIONS(444), - [anon_sym_assert] = ACTIONS(444), - [anon_sym_56] = ACTIONS(444), - [anon_sym_wait] = ACTIONS(444), - [anon_sym_break] = ACTIONS(444), - [anon_sym_57] = ACTIONS(444), - [anon_sym_parse] = ACTIONS(444), - [anon_sym_random] = ACTIONS(444), - [anon_sym_58] = ACTIONS(444), - [anon_sym_gen] = ACTIONS(444), - [anon_sym_deal] = ACTIONS(444), - [anon_sym_tag] = ACTIONS(444), - [anon_sym_now] = ACTIONS(444), - [anon_sym_type] = ACTIONS(444), - [anon_sym_59] = ACTIONS(444), - [anon_sym_dump] = ACTIONS(444), - [anon_sym_regex] = ACTIONS(444), - [anon_sym_utf] = ACTIONS(444), - [anon_sym_rock] = ACTIONS(444), - [anon_sym_60] = ACTIONS(444), - [anon_sym_surface] = ACTIONS(444), - [anon_sym_TILDE] = ACTIONS(444), - [anon_sym_deep] = ACTIONS(444), - [anon_sym_de] = ACTIONS(442), - [anon_sym_61] = ACTIONS(444), - [anon_sym_abyss] = ACTIONS(444), - [anon_sym_ab] = ACTIONS(442), - [anon_sym_62] = ACTIONS(444), - [anon_sym_seabed] = ACTIONS(444), - [anon_sym_se] = ACTIONS(442), - [anon_sym_63] = ACTIONS(444), - [anon_sym_send] = ACTIONS(444), - [anon_sym_recv] = ACTIONS(444), - [anon_sym_tryrecv] = ACTIONS(444), - [anon_sym_reduce] = ACTIONS(444), - [anon_sym_SLASH] = ACTIONS(444), - [anon_sym_scan] = ACTIONS(444), - [anon_sym_BSLASH] = ACTIONS(444), - [anon_sym_each] = ACTIONS(444), - [anon_sym_64] = ACTIONS(444), - [anon_sym_rows] = ACTIONS(444), - [anon_sym_65] = ACTIONS(444), - [anon_sym_repeat] = ACTIONS(444), - [anon_sym_66] = ACTIONS(444), - [anon_sym_dip] = ACTIONS(444), - [anon_sym_di] = ACTIONS(442), - [anon_sym_67] = ACTIONS(444), - [anon_sym_gap] = ACTIONS(444), - [anon_sym_ga] = ACTIONS(442), - [anon_sym_68] = ACTIONS(444), - [anon_sym_oust] = ACTIONS(444), - [anon_sym_69] = ACTIONS(444), - [anon_sym_invert] = ACTIONS(444), - [anon_sym_70] = ACTIONS(444), - [anon_sym_spawn] = ACTIONS(444), - [anon_sym_pack] = ACTIONS(444), - [anon_sym_71] = ACTIONS(444), - [anon_sym_tribute] = ACTIONS(444), - [anon_sym_72] = ACTIONS(444), - [anon_sym_fold] = ACTIONS(444), - [anon_sym_73] = ACTIONS(444), - [anon_sym_distribute] = ACTIONS(444), - [anon_sym_74] = ACTIONS(444), - [anon_sym_table] = ACTIONS(444), - [anon_sym_75] = ACTIONS(444), - [anon_sym_cross] = ACTIONS(444), - [anon_sym_76] = ACTIONS(444), - [anon_sym_group] = ACTIONS(444), - [anon_sym_77] = ACTIONS(444), - [anon_sym_partition] = ACTIONS(444), - [anon_sym_78] = ACTIONS(444), - [anon_sym_both] = ACTIONS(444), - [anon_sym_79] = ACTIONS(444), - [anon_sym_bracket] = ACTIONS(444), - [anon_sym_80] = ACTIONS(444), - [anon_sym_fork] = ACTIONS(444), - [anon_sym_81] = ACTIONS(444), - [anon_sym_under] = ACTIONS(444), - [anon_sym_82] = ACTIONS(444), - [anon_sym_level] = ACTIONS(444), - [anon_sym_83] = ACTIONS(444), - [anon_sym_fill] = ACTIONS(444), - [anon_sym_84] = ACTIONS(444), - [anon_sym_bind] = ACTIONS(444), - [anon_sym_SQUOTE] = ACTIONS(444), - [anon_sym_QMARK] = ACTIONS(444), - [anon_sym_try] = ACTIONS(442), - [anon_sym_85] = ACTIONS(444), - [anon_sym_combinate] = ACTIONS(444), - [anon_sym_86] = ACTIONS(444), - [anon_sym_87] = ACTIONS(444), - [anon_sym_88] = ACTIONS(444), - [anon_sym_89] = ACTIONS(444), - [anon_sym_90] = ACTIONS(444), - [anon_sym_91] = ACTIONS(444), - [anon_sym_92] = ACTIONS(444), - [anon_sym_93] = ACTIONS(444), + [ts_builtin_sym_end] = ACTIONS(426), + [aux_sym_number_token1] = ACTIONS(424), + [anon_sym_os] = ACTIONS(424), + [anon_sym_Family] = ACTIONS(424), + [anon_sym_Arch] = ACTIONS(424), + [anon_sym_ExeExt] = ACTIONS(424), + [anon_sym_PllExt] = ACTIONS(424), + [anon_sym_Sep] = ACTIONS(424), + [aux_sym_character_token1] = ACTIONS(426), + [sym_string] = ACTIONS(426), + [sym_multiLineString] = ACTIONS(426), + [anon_sym_PIPE] = ACTIONS(426), + [sym_identifier] = ACTIONS(424), + [sym_identifier_deprecated] = ACTIONS(424), + [sym_system] = ACTIONS(426), + [sym_comment] = ACTIONS(424), + [sym_openParen] = ACTIONS(426), + [sym_openCurly] = ACTIONS(426), + [sym_openBracket] = ACTIONS(426), + [sym_underscore] = ACTIONS(426), + [sym_leftArrow] = ACTIONS(426), + [anon_sym_CARET] = ACTIONS(426), + [anon_sym_eta] = ACTIONS(426), + [anon_sym_] = ACTIONS(424), + [anon_sym_pi] = ACTIONS(424), + [anon_sym_2] = ACTIONS(424), + [anon_sym_tau] = ACTIONS(426), + [anon_sym_3] = ACTIONS(424), + [anon_sym_infinity] = ACTIONS(426), + [anon_sym_4] = ACTIONS(426), + [anon_sym_e] = ACTIONS(424), + [anon_sym_NaN] = ACTIONS(424), + [anon_sym_NumProcs] = ACTIONS(424), + [anon_sym_DOT] = ACTIONS(426), + [anon_sym_COMMA] = ACTIONS(426), + [anon_sym_5] = ACTIONS(426), + [anon_sym_SEMI] = ACTIONS(426), + [anon_sym_identity] = ACTIONS(426), + [anon_sym_id] = ACTIONS(424), + [anon_sym_6] = ACTIONS(426), + [anon_sym_not] = ACTIONS(426), + [anon_sym_7] = ACTIONS(426), + [anon_sym_sign] = ACTIONS(426), + [anon_sym_8] = ACTIONS(426), + [anon_sym_BQUOTE] = ACTIONS(426), + [anon_sym_9] = ACTIONS(426), + [anon_sym_absolutevalue] = ACTIONS(426), + [anon_sym_10] = ACTIONS(426), + [anon_sym_sqrt] = ACTIONS(426), + [anon_sym_11] = ACTIONS(426), + [anon_sym_sine] = ACTIONS(426), + [anon_sym_12] = ACTIONS(426), + [anon_sym_floor] = ACTIONS(426), + [anon_sym_13] = ACTIONS(426), + [anon_sym_ceiling] = ACTIONS(426), + [anon_sym_14] = ACTIONS(426), + [anon_sym_round] = ACTIONS(426), + [anon_sym_15] = ACTIONS(426), + [anon_sym_EQ] = ACTIONS(426), + [anon_sym_BANG_EQ] = ACTIONS(426), + [anon_sym_16] = ACTIONS(426), + [anon_sym_LT] = ACTIONS(424), + [anon_sym_LT_EQ] = ACTIONS(426), + [anon_sym_17] = ACTIONS(426), + [anon_sym_GT] = ACTIONS(424), + [anon_sym_GT_EQ] = ACTIONS(426), + [anon_sym_18] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(426), + [anon_sym_DASH] = ACTIONS(426), + [anon_sym_STAR] = ACTIONS(426), + [anon_sym_19] = ACTIONS(426), + [anon_sym_PERCENT] = ACTIONS(426), + [anon_sym_20] = ACTIONS(426), + [anon_sym_modulus] = ACTIONS(426), + [anon_sym_21] = ACTIONS(426), + [anon_sym_power] = ACTIONS(426), + [anon_sym_22] = ACTIONS(426), + [anon_sym_logarithm] = ACTIONS(426), + [anon_sym_23] = ACTIONS(426), + [anon_sym_minimum] = ACTIONS(426), + [anon_sym_24] = ACTIONS(426), + [anon_sym_maximum] = ACTIONS(426), + [anon_sym_25] = ACTIONS(426), + [anon_sym_atangent] = ACTIONS(426), + [anon_sym_26] = ACTIONS(426), + [anon_sym_length] = ACTIONS(426), + [anon_sym_27] = ACTIONS(426), + [anon_sym_shape] = ACTIONS(426), + [anon_sym_28] = ACTIONS(426), + [anon_sym_range] = ACTIONS(426), + [anon_sym_29] = ACTIONS(426), + [anon_sym_first] = ACTIONS(426), + [anon_sym_30] = ACTIONS(426), + [anon_sym_reverse] = ACTIONS(426), + [anon_sym_31] = ACTIONS(426), + [anon_sym_deshape] = ACTIONS(426), + [anon_sym_32] = ACTIONS(426), + [anon_sym_bits] = ACTIONS(426), + [anon_sym_33] = ACTIONS(426), + [anon_sym_transpose] = ACTIONS(426), + [anon_sym_34] = ACTIONS(426), + [anon_sym_rise] = ACTIONS(426), + [anon_sym_35] = ACTIONS(426), + [anon_sym_fall] = ACTIONS(426), + [anon_sym_36] = ACTIONS(426), + [anon_sym_where] = ACTIONS(426), + [anon_sym_37] = ACTIONS(426), + [anon_sym_classify] = ACTIONS(426), + [anon_sym_38] = ACTIONS(426), + [anon_sym_deduplicate] = ACTIONS(426), + [anon_sym_39] = ACTIONS(426), + [anon_sym_box] = ACTIONS(426), + [anon_sym_40] = ACTIONS(426), + [anon_sym_unbox] = ACTIONS(426), + [anon_sym_41] = ACTIONS(426), + [anon_sym_match] = ACTIONS(426), + [anon_sym_42] = ACTIONS(426), + [anon_sym_couple] = ACTIONS(426), + [anon_sym_43] = ACTIONS(426), + [anon_sym_join] = ACTIONS(426), + [anon_sym_44] = ACTIONS(426), + [anon_sym_select] = ACTIONS(426), + [anon_sym_45] = ACTIONS(426), + [anon_sym_pick] = ACTIONS(426), + [anon_sym_46] = ACTIONS(426), + [anon_sym_reshape] = ACTIONS(426), + [anon_sym_47] = ACTIONS(426), + [anon_sym_take] = ACTIONS(426), + [anon_sym_48] = ACTIONS(426), + [anon_sym_drop] = ACTIONS(426), + [anon_sym_49] = ACTIONS(426), + [anon_sym_rotate] = ACTIONS(426), + [anon_sym_50] = ACTIONS(426), + [anon_sym_windows] = ACTIONS(426), + [anon_sym_51] = ACTIONS(426), + [anon_sym_keep] = ACTIONS(426), + [anon_sym_52] = ACTIONS(426), + [anon_sym_find] = ACTIONS(426), + [anon_sym_53] = ACTIONS(426), + [anon_sym_member] = ACTIONS(426), + [anon_sym_54] = ACTIONS(426), + [anon_sym_indexof] = ACTIONS(426), + [anon_sym_55] = ACTIONS(426), + [anon_sym_assert] = ACTIONS(426), + [anon_sym_56] = ACTIONS(426), + [anon_sym_wait] = ACTIONS(426), + [anon_sym_break] = ACTIONS(426), + [anon_sym_57] = ACTIONS(426), + [anon_sym_parse] = ACTIONS(426), + [anon_sym_random] = ACTIONS(426), + [anon_sym_58] = ACTIONS(426), + [anon_sym_gen] = ACTIONS(426), + [anon_sym_deal] = ACTIONS(426), + [anon_sym_tag] = ACTIONS(426), + [anon_sym_now] = ACTIONS(426), + [anon_sym_type] = ACTIONS(426), + [anon_sym_59] = ACTIONS(426), + [anon_sym_dump] = ACTIONS(426), + [anon_sym_regex] = ACTIONS(426), + [anon_sym_utf] = ACTIONS(426), + [anon_sym_rock] = ACTIONS(426), + [anon_sym_60] = ACTIONS(426), + [anon_sym_surface] = ACTIONS(426), + [anon_sym_TILDE] = ACTIONS(426), + [anon_sym_deep] = ACTIONS(426), + [anon_sym_de] = ACTIONS(424), + [anon_sym_61] = ACTIONS(426), + [anon_sym_abyss] = ACTIONS(426), + [anon_sym_ab] = ACTIONS(424), + [anon_sym_62] = ACTIONS(426), + [anon_sym_seabed] = ACTIONS(426), + [anon_sym_se] = ACTIONS(424), + [anon_sym_63] = ACTIONS(426), + [anon_sym_send] = ACTIONS(426), + [anon_sym_recv] = ACTIONS(426), + [anon_sym_tryrecv] = ACTIONS(426), + [anon_sym_reduce] = ACTIONS(426), + [anon_sym_SLASH] = ACTIONS(426), + [anon_sym_scan] = ACTIONS(426), + [anon_sym_BSLASH] = ACTIONS(426), + [anon_sym_each] = ACTIONS(426), + [anon_sym_64] = ACTIONS(426), + [anon_sym_rows] = ACTIONS(426), + [anon_sym_65] = ACTIONS(426), + [anon_sym_repeat] = ACTIONS(426), + [anon_sym_66] = ACTIONS(426), + [anon_sym_dip] = ACTIONS(426), + [anon_sym_67] = ACTIONS(426), + [anon_sym_gap] = ACTIONS(426), + [anon_sym_68] = ACTIONS(426), + [anon_sym_69] = ACTIONS(426), + [anon_sym_invert] = ACTIONS(426), + [anon_sym_70] = ACTIONS(426), + [anon_sym_spawn] = ACTIONS(426), + [anon_sym_pack] = ACTIONS(426), + [anon_sym_71] = ACTIONS(426), + [anon_sym_tribute] = ACTIONS(426), + [anon_sym_72] = ACTIONS(426), + [anon_sym_reach] = ACTIONS(426), + [anon_sym_fold] = ACTIONS(426), + [anon_sym_73] = ACTIONS(426), + [anon_sym_distribute] = ACTIONS(426), + [anon_sym_74] = ACTIONS(426), + [anon_sym_table] = ACTIONS(426), + [anon_sym_75] = ACTIONS(426), + [anon_sym_cross] = ACTIONS(426), + [anon_sym_76] = ACTIONS(426), + [anon_sym_group] = ACTIONS(426), + [anon_sym_77] = ACTIONS(426), + [anon_sym_partition] = ACTIONS(426), + [anon_sym_78] = ACTIONS(426), + [anon_sym_both] = ACTIONS(426), + [anon_sym_79] = ACTIONS(426), + [anon_sym_bracket] = ACTIONS(426), + [anon_sym_80] = ACTIONS(426), + [anon_sym_fork] = ACTIONS(426), + [anon_sym_81] = ACTIONS(426), + [anon_sym_under] = ACTIONS(426), + [anon_sym_82] = ACTIONS(426), + [anon_sym_level] = ACTIONS(426), + [anon_sym_83] = ACTIONS(426), + [anon_sym_fill] = ACTIONS(426), + [anon_sym_84] = ACTIONS(426), + [anon_sym_bind] = ACTIONS(426), + [anon_sym_SQUOTE] = ACTIONS(426), + [anon_sym_QMARK] = ACTIONS(426), + [anon_sym_try] = ACTIONS(424), + [anon_sym_85] = ACTIONS(426), + [anon_sym_combinate] = ACTIONS(426), + [anon_sym_86] = ACTIONS(426), + [anon_sym_87] = ACTIONS(426), + [anon_sym_88] = ACTIONS(426), + [anon_sym_89] = ACTIONS(426), + [anon_sym_90] = ACTIONS(426), + [anon_sym_91] = ACTIONS(426), + [anon_sym_92] = ACTIONS(426), + [anon_sym_93] = ACTIONS(426), [sym__whitespace] = ACTIONS(5), - [sym__end_of_line] = ACTIONS(444), + [sym__end_of_line] = ACTIONS(426), }, [100] = { - [ts_builtin_sym_end] = ACTIONS(456), - [aux_sym_number_token1] = ACTIONS(454), - [anon_sym_os] = ACTIONS(454), - [anon_sym_Family] = ACTIONS(454), - [anon_sym_Arch] = ACTIONS(454), - [anon_sym_ExeExt] = ACTIONS(454), - [anon_sym_PllExt] = ACTIONS(454), - [anon_sym_Sep] = ACTIONS(454), - [aux_sym_character_token1] = ACTIONS(456), - [sym_string] = ACTIONS(456), - [sym_multiLineString] = ACTIONS(456), - [anon_sym_PIPE] = ACTIONS(456), - [sym_identifier] = ACTIONS(454), - [sym_identifier_deprecated] = ACTIONS(454), - [sym_system] = ACTIONS(456), - [sym_comment] = ACTIONS(454), - [sym_openParen] = ACTIONS(456), - [sym_openCurly] = ACTIONS(456), - [sym_openBracket] = ACTIONS(456), - [sym_underscore] = ACTIONS(456), - [sym_leftArrow] = ACTIONS(456), - [anon_sym_CARET] = ACTIONS(456), - [anon_sym_eta] = ACTIONS(456), - [anon_sym_] = ACTIONS(454), - [anon_sym_pi] = ACTIONS(454), - [anon_sym_2] = ACTIONS(454), - [anon_sym_tau] = ACTIONS(456), - [anon_sym_3] = ACTIONS(454), - [anon_sym_infinity] = ACTIONS(456), - [anon_sym_4] = ACTIONS(456), - [anon_sym_e] = ACTIONS(454), - [anon_sym_NaN] = ACTIONS(454), - [anon_sym_NumProcs] = ACTIONS(454), - [anon_sym_DOT] = ACTIONS(456), - [anon_sym_COMMA] = ACTIONS(456), - [anon_sym_5] = ACTIONS(456), - [anon_sym_SEMI] = ACTIONS(456), - [anon_sym_identity] = ACTIONS(456), - [anon_sym_id] = ACTIONS(454), - [anon_sym_6] = ACTIONS(456), - [anon_sym_not] = ACTIONS(456), - [anon_sym_7] = ACTIONS(456), - [anon_sym_sign] = ACTIONS(456), - [anon_sym_8] = ACTIONS(456), - [anon_sym_BQUOTE] = ACTIONS(456), - [anon_sym_9] = ACTIONS(456), - [anon_sym_absolutevalue] = ACTIONS(456), - [anon_sym_10] = ACTIONS(456), - [anon_sym_sqrt] = ACTIONS(456), - [anon_sym_11] = ACTIONS(456), - [anon_sym_sine] = ACTIONS(456), - [anon_sym_12] = ACTIONS(456), - [anon_sym_floor] = ACTIONS(456), - [anon_sym_13] = ACTIONS(456), - [anon_sym_ceiling] = ACTIONS(456), - [anon_sym_14] = ACTIONS(456), - [anon_sym_round] = ACTIONS(456), - [anon_sym_15] = ACTIONS(456), - [anon_sym_EQ] = ACTIONS(456), - [anon_sym_BANG_EQ] = ACTIONS(456), - [anon_sym_16] = ACTIONS(456), - [anon_sym_LT] = ACTIONS(454), - [anon_sym_LT_EQ] = ACTIONS(456), - [anon_sym_17] = ACTIONS(456), - [anon_sym_GT] = ACTIONS(454), - [anon_sym_GT_EQ] = ACTIONS(456), - [anon_sym_18] = ACTIONS(456), - [anon_sym_PLUS] = ACTIONS(456), - [anon_sym_DASH] = ACTIONS(456), - [anon_sym_STAR] = ACTIONS(456), - [anon_sym_19] = ACTIONS(456), - [anon_sym_PERCENT] = ACTIONS(456), - [anon_sym_20] = ACTIONS(456), - [anon_sym_modulus] = ACTIONS(456), - [anon_sym_21] = ACTIONS(456), - [anon_sym_power] = ACTIONS(456), - [anon_sym_22] = ACTIONS(456), - [anon_sym_logarithm] = ACTIONS(456), - [anon_sym_23] = ACTIONS(456), - [anon_sym_minimum] = ACTIONS(456), - [anon_sym_24] = ACTIONS(456), - [anon_sym_maximum] = ACTIONS(456), - [anon_sym_25] = ACTIONS(456), - [anon_sym_atangent] = ACTIONS(456), - [anon_sym_26] = ACTIONS(456), - [anon_sym_length] = ACTIONS(456), - [anon_sym_27] = ACTIONS(456), - [anon_sym_shape] = ACTIONS(456), - [anon_sym_28] = ACTIONS(456), - [anon_sym_range] = ACTIONS(456), - [anon_sym_29] = ACTIONS(456), - [anon_sym_first] = ACTIONS(456), - [anon_sym_30] = ACTIONS(456), - [anon_sym_reverse] = ACTIONS(456), - [anon_sym_31] = ACTIONS(456), - [anon_sym_deshape] = ACTIONS(456), - [anon_sym_32] = ACTIONS(456), - [anon_sym_bits] = ACTIONS(456), - [anon_sym_33] = ACTIONS(456), - [anon_sym_transpose] = ACTIONS(456), - [anon_sym_34] = ACTIONS(456), - [anon_sym_rise] = ACTIONS(456), - [anon_sym_35] = ACTIONS(456), - [anon_sym_fall] = ACTIONS(456), - [anon_sym_36] = ACTIONS(456), - [anon_sym_where] = ACTIONS(456), - [anon_sym_37] = ACTIONS(456), - [anon_sym_classify] = ACTIONS(456), - [anon_sym_38] = ACTIONS(456), - [anon_sym_deduplicate] = ACTIONS(456), - [anon_sym_39] = ACTIONS(456), - [anon_sym_box] = ACTIONS(456), - [anon_sym_40] = ACTIONS(456), - [anon_sym_unbox] = ACTIONS(456), - [anon_sym_41] = ACTIONS(456), - [anon_sym_match] = ACTIONS(456), - [anon_sym_42] = ACTIONS(456), - [anon_sym_couple] = ACTIONS(456), - [anon_sym_43] = ACTIONS(456), - [anon_sym_join] = ACTIONS(456), - [anon_sym_44] = ACTIONS(456), - [anon_sym_select] = ACTIONS(456), - [anon_sym_45] = ACTIONS(456), - [anon_sym_pick] = ACTIONS(456), - [anon_sym_46] = ACTIONS(456), - [anon_sym_reshape] = ACTIONS(456), - [anon_sym_47] = ACTIONS(456), - [anon_sym_take] = ACTIONS(456), - [anon_sym_48] = ACTIONS(456), - [anon_sym_drop] = ACTIONS(456), - [anon_sym_49] = ACTIONS(456), - [anon_sym_rotate] = ACTIONS(456), - [anon_sym_50] = ACTIONS(456), - [anon_sym_windows] = ACTIONS(456), - [anon_sym_51] = ACTIONS(456), - [anon_sym_keep] = ACTIONS(456), - [anon_sym_52] = ACTIONS(456), - [anon_sym_find] = ACTIONS(456), - [anon_sym_53] = ACTIONS(456), - [anon_sym_member] = ACTIONS(456), - [anon_sym_54] = ACTIONS(456), - [anon_sym_indexof] = ACTIONS(456), - [anon_sym_55] = ACTIONS(456), - [anon_sym_assert] = ACTIONS(456), - [anon_sym_56] = ACTIONS(456), - [anon_sym_wait] = ACTIONS(456), - [anon_sym_break] = ACTIONS(456), - [anon_sym_57] = ACTIONS(456), - [anon_sym_parse] = ACTIONS(456), - [anon_sym_random] = ACTIONS(456), - [anon_sym_58] = ACTIONS(456), - [anon_sym_gen] = ACTIONS(456), - [anon_sym_deal] = ACTIONS(456), - [anon_sym_tag] = ACTIONS(456), - [anon_sym_now] = ACTIONS(456), - [anon_sym_type] = ACTIONS(456), - [anon_sym_59] = ACTIONS(456), - [anon_sym_dump] = ACTIONS(456), - [anon_sym_regex] = ACTIONS(456), - [anon_sym_utf] = ACTIONS(456), - [anon_sym_rock] = ACTIONS(456), - [anon_sym_60] = ACTIONS(456), - [anon_sym_surface] = ACTIONS(456), - [anon_sym_TILDE] = ACTIONS(456), - [anon_sym_deep] = ACTIONS(456), - [anon_sym_de] = ACTIONS(454), - [anon_sym_61] = ACTIONS(456), - [anon_sym_abyss] = ACTIONS(456), - [anon_sym_ab] = ACTIONS(454), - [anon_sym_62] = ACTIONS(456), - [anon_sym_seabed] = ACTIONS(456), - [anon_sym_se] = ACTIONS(454), - [anon_sym_63] = ACTIONS(456), - [anon_sym_send] = ACTIONS(456), - [anon_sym_recv] = ACTIONS(456), - [anon_sym_tryrecv] = ACTIONS(456), - [anon_sym_reduce] = ACTIONS(456), - [anon_sym_SLASH] = ACTIONS(456), - [anon_sym_scan] = ACTIONS(456), - [anon_sym_BSLASH] = ACTIONS(456), - [anon_sym_each] = ACTIONS(456), - [anon_sym_64] = ACTIONS(456), - [anon_sym_rows] = ACTIONS(456), - [anon_sym_65] = ACTIONS(456), - [anon_sym_repeat] = ACTIONS(456), - [anon_sym_66] = ACTIONS(456), - [anon_sym_dip] = ACTIONS(456), - [anon_sym_di] = ACTIONS(454), - [anon_sym_67] = ACTIONS(456), - [anon_sym_gap] = ACTIONS(456), - [anon_sym_ga] = ACTIONS(454), - [anon_sym_68] = ACTIONS(456), - [anon_sym_oust] = ACTIONS(456), - [anon_sym_69] = ACTIONS(456), - [anon_sym_invert] = ACTIONS(456), - [anon_sym_70] = ACTIONS(456), - [anon_sym_spawn] = ACTIONS(456), - [anon_sym_pack] = ACTIONS(456), - [anon_sym_71] = ACTIONS(456), - [anon_sym_tribute] = ACTIONS(456), - [anon_sym_72] = ACTIONS(456), - [anon_sym_fold] = ACTIONS(456), - [anon_sym_73] = ACTIONS(456), - [anon_sym_distribute] = ACTIONS(456), - [anon_sym_74] = ACTIONS(456), - [anon_sym_table] = ACTIONS(456), - [anon_sym_75] = ACTIONS(456), - [anon_sym_cross] = ACTIONS(456), - [anon_sym_76] = ACTIONS(456), - [anon_sym_group] = ACTIONS(456), - [anon_sym_77] = ACTIONS(456), - [anon_sym_partition] = ACTIONS(456), - [anon_sym_78] = ACTIONS(456), - [anon_sym_both] = ACTIONS(456), - [anon_sym_79] = ACTIONS(456), - [anon_sym_bracket] = ACTIONS(456), - [anon_sym_80] = ACTIONS(456), - [anon_sym_fork] = ACTIONS(456), - [anon_sym_81] = ACTIONS(456), - [anon_sym_under] = ACTIONS(456), - [anon_sym_82] = ACTIONS(456), - [anon_sym_level] = ACTIONS(456), - [anon_sym_83] = ACTIONS(456), - [anon_sym_fill] = ACTIONS(456), - [anon_sym_84] = ACTIONS(456), - [anon_sym_bind] = ACTIONS(456), - [anon_sym_SQUOTE] = ACTIONS(456), - [anon_sym_QMARK] = ACTIONS(456), - [anon_sym_try] = ACTIONS(454), - [anon_sym_85] = ACTIONS(456), - [anon_sym_combinate] = ACTIONS(456), - [anon_sym_86] = ACTIONS(456), - [anon_sym_87] = ACTIONS(456), - [anon_sym_88] = ACTIONS(456), - [anon_sym_89] = ACTIONS(456), - [anon_sym_90] = ACTIONS(456), - [anon_sym_91] = ACTIONS(456), - [anon_sym_92] = ACTIONS(456), - [anon_sym_93] = ACTIONS(456), + [ts_builtin_sym_end] = ACTIONS(438), + [aux_sym_number_token1] = ACTIONS(436), + [anon_sym_os] = ACTIONS(436), + [anon_sym_Family] = ACTIONS(436), + [anon_sym_Arch] = ACTIONS(436), + [anon_sym_ExeExt] = ACTIONS(436), + [anon_sym_PllExt] = ACTIONS(436), + [anon_sym_Sep] = ACTIONS(436), + [aux_sym_character_token1] = ACTIONS(438), + [sym_string] = ACTIONS(438), + [sym_multiLineString] = ACTIONS(438), + [anon_sym_PIPE] = ACTIONS(438), + [sym_identifier] = ACTIONS(436), + [sym_identifier_deprecated] = ACTIONS(436), + [sym_system] = ACTIONS(438), + [sym_comment] = ACTIONS(436), + [sym_openParen] = ACTIONS(438), + [sym_openCurly] = ACTIONS(438), + [sym_openBracket] = ACTIONS(438), + [sym_underscore] = ACTIONS(438), + [sym_leftArrow] = ACTIONS(438), + [anon_sym_CARET] = ACTIONS(438), + [anon_sym_eta] = ACTIONS(438), + [anon_sym_] = ACTIONS(436), + [anon_sym_pi] = ACTIONS(436), + [anon_sym_2] = ACTIONS(436), + [anon_sym_tau] = ACTIONS(438), + [anon_sym_3] = ACTIONS(436), + [anon_sym_infinity] = ACTIONS(438), + [anon_sym_4] = ACTIONS(438), + [anon_sym_e] = ACTIONS(436), + [anon_sym_NaN] = ACTIONS(436), + [anon_sym_NumProcs] = ACTIONS(436), + [anon_sym_DOT] = ACTIONS(438), + [anon_sym_COMMA] = ACTIONS(438), + [anon_sym_5] = ACTIONS(438), + [anon_sym_SEMI] = ACTIONS(438), + [anon_sym_identity] = ACTIONS(438), + [anon_sym_id] = ACTIONS(436), + [anon_sym_6] = ACTIONS(438), + [anon_sym_not] = ACTIONS(438), + [anon_sym_7] = ACTIONS(438), + [anon_sym_sign] = ACTIONS(438), + [anon_sym_8] = ACTIONS(438), + [anon_sym_BQUOTE] = ACTIONS(438), + [anon_sym_9] = ACTIONS(438), + [anon_sym_absolutevalue] = ACTIONS(438), + [anon_sym_10] = ACTIONS(438), + [anon_sym_sqrt] = ACTIONS(438), + [anon_sym_11] = ACTIONS(438), + [anon_sym_sine] = ACTIONS(438), + [anon_sym_12] = ACTIONS(438), + [anon_sym_floor] = ACTIONS(438), + [anon_sym_13] = ACTIONS(438), + [anon_sym_ceiling] = ACTIONS(438), + [anon_sym_14] = ACTIONS(438), + [anon_sym_round] = ACTIONS(438), + [anon_sym_15] = ACTIONS(438), + [anon_sym_EQ] = ACTIONS(438), + [anon_sym_BANG_EQ] = ACTIONS(438), + [anon_sym_16] = ACTIONS(438), + [anon_sym_LT] = ACTIONS(436), + [anon_sym_LT_EQ] = ACTIONS(438), + [anon_sym_17] = ACTIONS(438), + [anon_sym_GT] = ACTIONS(436), + [anon_sym_GT_EQ] = ACTIONS(438), + [anon_sym_18] = ACTIONS(438), + [anon_sym_PLUS] = ACTIONS(438), + [anon_sym_DASH] = ACTIONS(438), + [anon_sym_STAR] = ACTIONS(438), + [anon_sym_19] = ACTIONS(438), + [anon_sym_PERCENT] = ACTIONS(438), + [anon_sym_20] = ACTIONS(438), + [anon_sym_modulus] = ACTIONS(438), + [anon_sym_21] = ACTIONS(438), + [anon_sym_power] = ACTIONS(438), + [anon_sym_22] = ACTIONS(438), + [anon_sym_logarithm] = ACTIONS(438), + [anon_sym_23] = ACTIONS(438), + [anon_sym_minimum] = ACTIONS(438), + [anon_sym_24] = ACTIONS(438), + [anon_sym_maximum] = ACTIONS(438), + [anon_sym_25] = ACTIONS(438), + [anon_sym_atangent] = ACTIONS(438), + [anon_sym_26] = ACTIONS(438), + [anon_sym_length] = ACTIONS(438), + [anon_sym_27] = ACTIONS(438), + [anon_sym_shape] = ACTIONS(438), + [anon_sym_28] = ACTIONS(438), + [anon_sym_range] = ACTIONS(438), + [anon_sym_29] = ACTIONS(438), + [anon_sym_first] = ACTIONS(438), + [anon_sym_30] = ACTIONS(438), + [anon_sym_reverse] = ACTIONS(438), + [anon_sym_31] = ACTIONS(438), + [anon_sym_deshape] = ACTIONS(438), + [anon_sym_32] = ACTIONS(438), + [anon_sym_bits] = ACTIONS(438), + [anon_sym_33] = ACTIONS(438), + [anon_sym_transpose] = ACTIONS(438), + [anon_sym_34] = ACTIONS(438), + [anon_sym_rise] = ACTIONS(438), + [anon_sym_35] = ACTIONS(438), + [anon_sym_fall] = ACTIONS(438), + [anon_sym_36] = ACTIONS(438), + [anon_sym_where] = ACTIONS(438), + [anon_sym_37] = ACTIONS(438), + [anon_sym_classify] = ACTIONS(438), + [anon_sym_38] = ACTIONS(438), + [anon_sym_deduplicate] = ACTIONS(438), + [anon_sym_39] = ACTIONS(438), + [anon_sym_box] = ACTIONS(438), + [anon_sym_40] = ACTIONS(438), + [anon_sym_unbox] = ACTIONS(438), + [anon_sym_41] = ACTIONS(438), + [anon_sym_match] = ACTIONS(438), + [anon_sym_42] = ACTIONS(438), + [anon_sym_couple] = ACTIONS(438), + [anon_sym_43] = ACTIONS(438), + [anon_sym_join] = ACTIONS(438), + [anon_sym_44] = ACTIONS(438), + [anon_sym_select] = ACTIONS(438), + [anon_sym_45] = ACTIONS(438), + [anon_sym_pick] = ACTIONS(438), + [anon_sym_46] = ACTIONS(438), + [anon_sym_reshape] = ACTIONS(438), + [anon_sym_47] = ACTIONS(438), + [anon_sym_take] = ACTIONS(438), + [anon_sym_48] = ACTIONS(438), + [anon_sym_drop] = ACTIONS(438), + [anon_sym_49] = ACTIONS(438), + [anon_sym_rotate] = ACTIONS(438), + [anon_sym_50] = ACTIONS(438), + [anon_sym_windows] = ACTIONS(438), + [anon_sym_51] = ACTIONS(438), + [anon_sym_keep] = ACTIONS(438), + [anon_sym_52] = ACTIONS(438), + [anon_sym_find] = ACTIONS(438), + [anon_sym_53] = ACTIONS(438), + [anon_sym_member] = ACTIONS(438), + [anon_sym_54] = ACTIONS(438), + [anon_sym_indexof] = ACTIONS(438), + [anon_sym_55] = ACTIONS(438), + [anon_sym_assert] = ACTIONS(438), + [anon_sym_56] = ACTIONS(438), + [anon_sym_wait] = ACTIONS(438), + [anon_sym_break] = ACTIONS(438), + [anon_sym_57] = ACTIONS(438), + [anon_sym_parse] = ACTIONS(438), + [anon_sym_random] = ACTIONS(438), + [anon_sym_58] = ACTIONS(438), + [anon_sym_gen] = ACTIONS(438), + [anon_sym_deal] = ACTIONS(438), + [anon_sym_tag] = ACTIONS(438), + [anon_sym_now] = ACTIONS(438), + [anon_sym_type] = ACTIONS(438), + [anon_sym_59] = ACTIONS(438), + [anon_sym_dump] = ACTIONS(438), + [anon_sym_regex] = ACTIONS(438), + [anon_sym_utf] = ACTIONS(438), + [anon_sym_rock] = ACTIONS(438), + [anon_sym_60] = ACTIONS(438), + [anon_sym_surface] = ACTIONS(438), + [anon_sym_TILDE] = ACTIONS(438), + [anon_sym_deep] = ACTIONS(438), + [anon_sym_de] = ACTIONS(436), + [anon_sym_61] = ACTIONS(438), + [anon_sym_abyss] = ACTIONS(438), + [anon_sym_ab] = ACTIONS(436), + [anon_sym_62] = ACTIONS(438), + [anon_sym_seabed] = ACTIONS(438), + [anon_sym_se] = ACTIONS(436), + [anon_sym_63] = ACTIONS(438), + [anon_sym_send] = ACTIONS(438), + [anon_sym_recv] = ACTIONS(438), + [anon_sym_tryrecv] = ACTIONS(438), + [anon_sym_reduce] = ACTIONS(438), + [anon_sym_SLASH] = ACTIONS(438), + [anon_sym_scan] = ACTIONS(438), + [anon_sym_BSLASH] = ACTIONS(438), + [anon_sym_each] = ACTIONS(438), + [anon_sym_64] = ACTIONS(438), + [anon_sym_rows] = ACTIONS(438), + [anon_sym_65] = ACTIONS(438), + [anon_sym_repeat] = ACTIONS(438), + [anon_sym_66] = ACTIONS(438), + [anon_sym_dip] = ACTIONS(438), + [anon_sym_67] = ACTIONS(438), + [anon_sym_gap] = ACTIONS(438), + [anon_sym_68] = ACTIONS(438), + [anon_sym_69] = ACTIONS(438), + [anon_sym_invert] = ACTIONS(438), + [anon_sym_70] = ACTIONS(438), + [anon_sym_spawn] = ACTIONS(438), + [anon_sym_pack] = ACTIONS(438), + [anon_sym_71] = ACTIONS(438), + [anon_sym_tribute] = ACTIONS(438), + [anon_sym_72] = ACTIONS(438), + [anon_sym_reach] = ACTIONS(438), + [anon_sym_fold] = ACTIONS(438), + [anon_sym_73] = ACTIONS(438), + [anon_sym_distribute] = ACTIONS(438), + [anon_sym_74] = ACTIONS(438), + [anon_sym_table] = ACTIONS(438), + [anon_sym_75] = ACTIONS(438), + [anon_sym_cross] = ACTIONS(438), + [anon_sym_76] = ACTIONS(438), + [anon_sym_group] = ACTIONS(438), + [anon_sym_77] = ACTIONS(438), + [anon_sym_partition] = ACTIONS(438), + [anon_sym_78] = ACTIONS(438), + [anon_sym_both] = ACTIONS(438), + [anon_sym_79] = ACTIONS(438), + [anon_sym_bracket] = ACTIONS(438), + [anon_sym_80] = ACTIONS(438), + [anon_sym_fork] = ACTIONS(438), + [anon_sym_81] = ACTIONS(438), + [anon_sym_under] = ACTIONS(438), + [anon_sym_82] = ACTIONS(438), + [anon_sym_level] = ACTIONS(438), + [anon_sym_83] = ACTIONS(438), + [anon_sym_fill] = ACTIONS(438), + [anon_sym_84] = ACTIONS(438), + [anon_sym_bind] = ACTIONS(438), + [anon_sym_SQUOTE] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(438), + [anon_sym_try] = ACTIONS(436), + [anon_sym_85] = ACTIONS(438), + [anon_sym_combinate] = ACTIONS(438), + [anon_sym_86] = ACTIONS(438), + [anon_sym_87] = ACTIONS(438), + [anon_sym_88] = ACTIONS(438), + [anon_sym_89] = ACTIONS(438), + [anon_sym_90] = ACTIONS(438), + [anon_sym_91] = ACTIONS(438), + [anon_sym_92] = ACTIONS(438), + [anon_sym_93] = ACTIONS(438), [sym__whitespace] = ACTIONS(5), - [sym__end_of_line] = ACTIONS(456), + [sym__end_of_line] = ACTIONS(438), }, [101] = { - [ts_builtin_sym_end] = ACTIONS(496), - [aux_sym_number_token1] = ACTIONS(494), - [anon_sym_os] = ACTIONS(494), - [anon_sym_Family] = ACTIONS(494), - [anon_sym_Arch] = ACTIONS(494), - [anon_sym_ExeExt] = ACTIONS(494), - [anon_sym_PllExt] = ACTIONS(494), - [anon_sym_Sep] = ACTIONS(494), - [aux_sym_character_token1] = ACTIONS(496), - [sym_string] = ACTIONS(496), - [sym_multiLineString] = ACTIONS(496), - [anon_sym_PIPE] = ACTIONS(496), - [sym_identifier] = ACTIONS(494), - [sym_identifier_deprecated] = ACTIONS(494), - [sym_system] = ACTIONS(496), - [sym_comment] = ACTIONS(494), - [sym_openParen] = ACTIONS(496), - [sym_openCurly] = ACTIONS(496), - [sym_openBracket] = ACTIONS(496), - [sym_underscore] = ACTIONS(496), - [sym_leftArrow] = ACTIONS(496), - [anon_sym_CARET] = ACTIONS(496), - [anon_sym_eta] = ACTIONS(496), - [anon_sym_] = ACTIONS(494), - [anon_sym_pi] = ACTIONS(494), - [anon_sym_2] = ACTIONS(494), - [anon_sym_tau] = ACTIONS(496), - [anon_sym_3] = ACTIONS(494), - [anon_sym_infinity] = ACTIONS(496), - [anon_sym_4] = ACTIONS(496), - [anon_sym_e] = ACTIONS(494), - [anon_sym_NaN] = ACTIONS(494), - [anon_sym_NumProcs] = ACTIONS(494), - [anon_sym_DOT] = ACTIONS(496), - [anon_sym_COMMA] = ACTIONS(496), - [anon_sym_5] = ACTIONS(496), - [anon_sym_SEMI] = ACTIONS(496), - [anon_sym_identity] = ACTIONS(496), - [anon_sym_id] = ACTIONS(494), - [anon_sym_6] = ACTIONS(496), - [anon_sym_not] = ACTIONS(496), - [anon_sym_7] = ACTIONS(496), - [anon_sym_sign] = ACTIONS(496), - [anon_sym_8] = ACTIONS(496), - [anon_sym_BQUOTE] = ACTIONS(496), - [anon_sym_9] = ACTIONS(496), - [anon_sym_absolutevalue] = ACTIONS(496), - [anon_sym_10] = ACTIONS(496), - [anon_sym_sqrt] = ACTIONS(496), - [anon_sym_11] = ACTIONS(496), - [anon_sym_sine] = ACTIONS(496), - [anon_sym_12] = ACTIONS(496), - [anon_sym_floor] = ACTIONS(496), - [anon_sym_13] = ACTIONS(496), - [anon_sym_ceiling] = ACTIONS(496), - [anon_sym_14] = ACTIONS(496), - [anon_sym_round] = ACTIONS(496), - [anon_sym_15] = ACTIONS(496), - [anon_sym_EQ] = ACTIONS(496), - [anon_sym_BANG_EQ] = ACTIONS(496), - [anon_sym_16] = ACTIONS(496), - [anon_sym_LT] = ACTIONS(494), - [anon_sym_LT_EQ] = ACTIONS(496), - [anon_sym_17] = ACTIONS(496), - [anon_sym_GT] = ACTIONS(494), - [anon_sym_GT_EQ] = ACTIONS(496), - [anon_sym_18] = ACTIONS(496), - [anon_sym_PLUS] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(496), - [anon_sym_STAR] = ACTIONS(496), - [anon_sym_19] = ACTIONS(496), - [anon_sym_PERCENT] = ACTIONS(496), - [anon_sym_20] = ACTIONS(496), - [anon_sym_modulus] = ACTIONS(496), - [anon_sym_21] = ACTIONS(496), - [anon_sym_power] = ACTIONS(496), - [anon_sym_22] = ACTIONS(496), - [anon_sym_logarithm] = ACTIONS(496), - [anon_sym_23] = ACTIONS(496), - [anon_sym_minimum] = ACTIONS(496), - [anon_sym_24] = ACTIONS(496), - [anon_sym_maximum] = ACTIONS(496), - [anon_sym_25] = ACTIONS(496), - [anon_sym_atangent] = ACTIONS(496), - [anon_sym_26] = ACTIONS(496), - [anon_sym_length] = ACTIONS(496), - [anon_sym_27] = ACTIONS(496), - [anon_sym_shape] = ACTIONS(496), - [anon_sym_28] = ACTIONS(496), - [anon_sym_range] = ACTIONS(496), - [anon_sym_29] = ACTIONS(496), - [anon_sym_first] = ACTIONS(496), - [anon_sym_30] = ACTIONS(496), - [anon_sym_reverse] = ACTIONS(496), - [anon_sym_31] = ACTIONS(496), - [anon_sym_deshape] = ACTIONS(496), - [anon_sym_32] = ACTIONS(496), - [anon_sym_bits] = ACTIONS(496), - [anon_sym_33] = ACTIONS(496), - [anon_sym_transpose] = ACTIONS(496), - [anon_sym_34] = ACTIONS(496), - [anon_sym_rise] = ACTIONS(496), - [anon_sym_35] = ACTIONS(496), - [anon_sym_fall] = ACTIONS(496), - [anon_sym_36] = ACTIONS(496), - [anon_sym_where] = ACTIONS(496), - [anon_sym_37] = ACTIONS(496), - [anon_sym_classify] = ACTIONS(496), - [anon_sym_38] = ACTIONS(496), - [anon_sym_deduplicate] = ACTIONS(496), - [anon_sym_39] = ACTIONS(496), - [anon_sym_box] = ACTIONS(496), - [anon_sym_40] = ACTIONS(496), - [anon_sym_unbox] = ACTIONS(496), - [anon_sym_41] = ACTIONS(496), - [anon_sym_match] = ACTIONS(496), - [anon_sym_42] = ACTIONS(496), - [anon_sym_couple] = ACTIONS(496), - [anon_sym_43] = ACTIONS(496), - [anon_sym_join] = ACTIONS(496), - [anon_sym_44] = ACTIONS(496), - [anon_sym_select] = ACTIONS(496), - [anon_sym_45] = ACTIONS(496), - [anon_sym_pick] = ACTIONS(496), - [anon_sym_46] = ACTIONS(496), - [anon_sym_reshape] = ACTIONS(496), - [anon_sym_47] = ACTIONS(496), - [anon_sym_take] = ACTIONS(496), - [anon_sym_48] = ACTIONS(496), - [anon_sym_drop] = ACTIONS(496), - [anon_sym_49] = ACTIONS(496), - [anon_sym_rotate] = ACTIONS(496), - [anon_sym_50] = ACTIONS(496), - [anon_sym_windows] = ACTIONS(496), - [anon_sym_51] = ACTIONS(496), - [anon_sym_keep] = ACTIONS(496), - [anon_sym_52] = ACTIONS(496), - [anon_sym_find] = ACTIONS(496), - [anon_sym_53] = ACTIONS(496), - [anon_sym_member] = ACTIONS(496), - [anon_sym_54] = ACTIONS(496), - [anon_sym_indexof] = ACTIONS(496), - [anon_sym_55] = ACTIONS(496), - [anon_sym_assert] = ACTIONS(496), - [anon_sym_56] = ACTIONS(496), - [anon_sym_wait] = ACTIONS(496), - [anon_sym_break] = ACTIONS(496), - [anon_sym_57] = ACTIONS(496), - [anon_sym_parse] = ACTIONS(496), - [anon_sym_random] = ACTIONS(496), - [anon_sym_58] = ACTIONS(496), - [anon_sym_gen] = ACTIONS(496), - [anon_sym_deal] = ACTIONS(496), - [anon_sym_tag] = ACTIONS(496), - [anon_sym_now] = ACTIONS(496), - [anon_sym_type] = ACTIONS(496), - [anon_sym_59] = ACTIONS(496), - [anon_sym_dump] = ACTIONS(496), - [anon_sym_regex] = ACTIONS(496), - [anon_sym_utf] = ACTIONS(496), - [anon_sym_rock] = ACTIONS(496), - [anon_sym_60] = ACTIONS(496), - [anon_sym_surface] = ACTIONS(496), - [anon_sym_TILDE] = ACTIONS(496), - [anon_sym_deep] = ACTIONS(496), - [anon_sym_de] = ACTIONS(494), - [anon_sym_61] = ACTIONS(496), - [anon_sym_abyss] = ACTIONS(496), - [anon_sym_ab] = ACTIONS(494), - [anon_sym_62] = ACTIONS(496), - [anon_sym_seabed] = ACTIONS(496), - [anon_sym_se] = ACTIONS(494), - [anon_sym_63] = ACTIONS(496), - [anon_sym_send] = ACTIONS(496), - [anon_sym_recv] = ACTIONS(496), - [anon_sym_tryrecv] = ACTIONS(496), - [anon_sym_reduce] = ACTIONS(496), - [anon_sym_SLASH] = ACTIONS(496), - [anon_sym_scan] = ACTIONS(496), - [anon_sym_BSLASH] = ACTIONS(496), - [anon_sym_each] = ACTIONS(496), - [anon_sym_64] = ACTIONS(496), - [anon_sym_rows] = ACTIONS(496), - [anon_sym_65] = ACTIONS(496), - [anon_sym_repeat] = ACTIONS(496), - [anon_sym_66] = ACTIONS(496), - [anon_sym_dip] = ACTIONS(496), - [anon_sym_di] = ACTIONS(494), - [anon_sym_67] = ACTIONS(496), - [anon_sym_gap] = ACTIONS(496), - [anon_sym_ga] = ACTIONS(494), - [anon_sym_68] = ACTIONS(496), - [anon_sym_oust] = ACTIONS(496), - [anon_sym_69] = ACTIONS(496), - [anon_sym_invert] = ACTIONS(496), - [anon_sym_70] = ACTIONS(496), - [anon_sym_spawn] = ACTIONS(496), - [anon_sym_pack] = ACTIONS(496), - [anon_sym_71] = ACTIONS(496), - [anon_sym_tribute] = ACTIONS(496), - [anon_sym_72] = ACTIONS(496), - [anon_sym_fold] = ACTIONS(496), - [anon_sym_73] = ACTIONS(496), - [anon_sym_distribute] = ACTIONS(496), - [anon_sym_74] = ACTIONS(496), - [anon_sym_table] = ACTIONS(496), - [anon_sym_75] = ACTIONS(496), - [anon_sym_cross] = ACTIONS(496), - [anon_sym_76] = ACTIONS(496), - [anon_sym_group] = ACTIONS(496), - [anon_sym_77] = ACTIONS(496), - [anon_sym_partition] = ACTIONS(496), - [anon_sym_78] = ACTIONS(496), - [anon_sym_both] = ACTIONS(496), - [anon_sym_79] = ACTIONS(496), - [anon_sym_bracket] = ACTIONS(496), - [anon_sym_80] = ACTIONS(496), - [anon_sym_fork] = ACTIONS(496), - [anon_sym_81] = ACTIONS(496), - [anon_sym_under] = ACTIONS(496), - [anon_sym_82] = ACTIONS(496), - [anon_sym_level] = ACTIONS(496), - [anon_sym_83] = ACTIONS(496), - [anon_sym_fill] = ACTIONS(496), - [anon_sym_84] = ACTIONS(496), - [anon_sym_bind] = ACTIONS(496), - [anon_sym_SQUOTE] = ACTIONS(496), - [anon_sym_QMARK] = ACTIONS(496), - [anon_sym_try] = ACTIONS(494), - [anon_sym_85] = ACTIONS(496), - [anon_sym_combinate] = ACTIONS(496), - [anon_sym_86] = ACTIONS(496), - [anon_sym_87] = ACTIONS(496), - [anon_sym_88] = ACTIONS(496), - [anon_sym_89] = ACTIONS(496), - [anon_sym_90] = ACTIONS(496), - [anon_sym_91] = ACTIONS(496), - [anon_sym_92] = ACTIONS(496), - [anon_sym_93] = ACTIONS(496), + [ts_builtin_sym_end] = ACTIONS(478), + [aux_sym_number_token1] = ACTIONS(476), + [anon_sym_os] = ACTIONS(476), + [anon_sym_Family] = ACTIONS(476), + [anon_sym_Arch] = ACTIONS(476), + [anon_sym_ExeExt] = ACTIONS(476), + [anon_sym_PllExt] = ACTIONS(476), + [anon_sym_Sep] = ACTIONS(476), + [aux_sym_character_token1] = ACTIONS(478), + [sym_string] = ACTIONS(478), + [sym_multiLineString] = ACTIONS(478), + [anon_sym_PIPE] = ACTIONS(478), + [sym_identifier] = ACTIONS(476), + [sym_identifier_deprecated] = ACTIONS(476), + [sym_system] = ACTIONS(478), + [sym_comment] = ACTIONS(476), + [sym_openParen] = ACTIONS(478), + [sym_openCurly] = ACTIONS(478), + [sym_openBracket] = ACTIONS(478), + [sym_underscore] = ACTIONS(478), + [sym_leftArrow] = ACTIONS(478), + [anon_sym_CARET] = ACTIONS(478), + [anon_sym_eta] = ACTIONS(478), + [anon_sym_] = ACTIONS(476), + [anon_sym_pi] = ACTIONS(476), + [anon_sym_2] = ACTIONS(476), + [anon_sym_tau] = ACTIONS(478), + [anon_sym_3] = ACTIONS(476), + [anon_sym_infinity] = ACTIONS(478), + [anon_sym_4] = ACTIONS(478), + [anon_sym_e] = ACTIONS(476), + [anon_sym_NaN] = ACTIONS(476), + [anon_sym_NumProcs] = ACTIONS(476), + [anon_sym_DOT] = ACTIONS(478), + [anon_sym_COMMA] = ACTIONS(478), + [anon_sym_5] = ACTIONS(478), + [anon_sym_SEMI] = ACTIONS(478), + [anon_sym_identity] = ACTIONS(478), + [anon_sym_id] = ACTIONS(476), + [anon_sym_6] = ACTIONS(478), + [anon_sym_not] = ACTIONS(478), + [anon_sym_7] = ACTIONS(478), + [anon_sym_sign] = ACTIONS(478), + [anon_sym_8] = ACTIONS(478), + [anon_sym_BQUOTE] = ACTIONS(478), + [anon_sym_9] = ACTIONS(478), + [anon_sym_absolutevalue] = ACTIONS(478), + [anon_sym_10] = ACTIONS(478), + [anon_sym_sqrt] = ACTIONS(478), + [anon_sym_11] = ACTIONS(478), + [anon_sym_sine] = ACTIONS(478), + [anon_sym_12] = ACTIONS(478), + [anon_sym_floor] = ACTIONS(478), + [anon_sym_13] = ACTIONS(478), + [anon_sym_ceiling] = ACTIONS(478), + [anon_sym_14] = ACTIONS(478), + [anon_sym_round] = ACTIONS(478), + [anon_sym_15] = ACTIONS(478), + [anon_sym_EQ] = ACTIONS(478), + [anon_sym_BANG_EQ] = ACTIONS(478), + [anon_sym_16] = ACTIONS(478), + [anon_sym_LT] = ACTIONS(476), + [anon_sym_LT_EQ] = ACTIONS(478), + [anon_sym_17] = ACTIONS(478), + [anon_sym_GT] = ACTIONS(476), + [anon_sym_GT_EQ] = ACTIONS(478), + [anon_sym_18] = ACTIONS(478), + [anon_sym_PLUS] = ACTIONS(478), + [anon_sym_DASH] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(478), + [anon_sym_19] = ACTIONS(478), + [anon_sym_PERCENT] = ACTIONS(478), + [anon_sym_20] = ACTIONS(478), + [anon_sym_modulus] = ACTIONS(478), + [anon_sym_21] = ACTIONS(478), + [anon_sym_power] = ACTIONS(478), + [anon_sym_22] = ACTIONS(478), + [anon_sym_logarithm] = ACTIONS(478), + [anon_sym_23] = ACTIONS(478), + [anon_sym_minimum] = ACTIONS(478), + [anon_sym_24] = ACTIONS(478), + [anon_sym_maximum] = ACTIONS(478), + [anon_sym_25] = ACTIONS(478), + [anon_sym_atangent] = ACTIONS(478), + [anon_sym_26] = ACTIONS(478), + [anon_sym_length] = ACTIONS(478), + [anon_sym_27] = ACTIONS(478), + [anon_sym_shape] = ACTIONS(478), + [anon_sym_28] = ACTIONS(478), + [anon_sym_range] = ACTIONS(478), + [anon_sym_29] = ACTIONS(478), + [anon_sym_first] = ACTIONS(478), + [anon_sym_30] = ACTIONS(478), + [anon_sym_reverse] = ACTIONS(478), + [anon_sym_31] = ACTIONS(478), + [anon_sym_deshape] = ACTIONS(478), + [anon_sym_32] = ACTIONS(478), + [anon_sym_bits] = ACTIONS(478), + [anon_sym_33] = ACTIONS(478), + [anon_sym_transpose] = ACTIONS(478), + [anon_sym_34] = ACTIONS(478), + [anon_sym_rise] = ACTIONS(478), + [anon_sym_35] = ACTIONS(478), + [anon_sym_fall] = ACTIONS(478), + [anon_sym_36] = ACTIONS(478), + [anon_sym_where] = ACTIONS(478), + [anon_sym_37] = ACTIONS(478), + [anon_sym_classify] = ACTIONS(478), + [anon_sym_38] = ACTIONS(478), + [anon_sym_deduplicate] = ACTIONS(478), + [anon_sym_39] = ACTIONS(478), + [anon_sym_box] = ACTIONS(478), + [anon_sym_40] = ACTIONS(478), + [anon_sym_unbox] = ACTIONS(478), + [anon_sym_41] = ACTIONS(478), + [anon_sym_match] = ACTIONS(478), + [anon_sym_42] = ACTIONS(478), + [anon_sym_couple] = ACTIONS(478), + [anon_sym_43] = ACTIONS(478), + [anon_sym_join] = ACTIONS(478), + [anon_sym_44] = ACTIONS(478), + [anon_sym_select] = ACTIONS(478), + [anon_sym_45] = ACTIONS(478), + [anon_sym_pick] = ACTIONS(478), + [anon_sym_46] = ACTIONS(478), + [anon_sym_reshape] = ACTIONS(478), + [anon_sym_47] = ACTIONS(478), + [anon_sym_take] = ACTIONS(478), + [anon_sym_48] = ACTIONS(478), + [anon_sym_drop] = ACTIONS(478), + [anon_sym_49] = ACTIONS(478), + [anon_sym_rotate] = ACTIONS(478), + [anon_sym_50] = ACTIONS(478), + [anon_sym_windows] = ACTIONS(478), + [anon_sym_51] = ACTIONS(478), + [anon_sym_keep] = ACTIONS(478), + [anon_sym_52] = ACTIONS(478), + [anon_sym_find] = ACTIONS(478), + [anon_sym_53] = ACTIONS(478), + [anon_sym_member] = ACTIONS(478), + [anon_sym_54] = ACTIONS(478), + [anon_sym_indexof] = ACTIONS(478), + [anon_sym_55] = ACTIONS(478), + [anon_sym_assert] = ACTIONS(478), + [anon_sym_56] = ACTIONS(478), + [anon_sym_wait] = ACTIONS(478), + [anon_sym_break] = ACTIONS(478), + [anon_sym_57] = ACTIONS(478), + [anon_sym_parse] = ACTIONS(478), + [anon_sym_random] = ACTIONS(478), + [anon_sym_58] = ACTIONS(478), + [anon_sym_gen] = ACTIONS(478), + [anon_sym_deal] = ACTIONS(478), + [anon_sym_tag] = ACTIONS(478), + [anon_sym_now] = ACTIONS(478), + [anon_sym_type] = ACTIONS(478), + [anon_sym_59] = ACTIONS(478), + [anon_sym_dump] = ACTIONS(478), + [anon_sym_regex] = ACTIONS(478), + [anon_sym_utf] = ACTIONS(478), + [anon_sym_rock] = ACTIONS(478), + [anon_sym_60] = ACTIONS(478), + [anon_sym_surface] = ACTIONS(478), + [anon_sym_TILDE] = ACTIONS(478), + [anon_sym_deep] = ACTIONS(478), + [anon_sym_de] = ACTIONS(476), + [anon_sym_61] = ACTIONS(478), + [anon_sym_abyss] = ACTIONS(478), + [anon_sym_ab] = ACTIONS(476), + [anon_sym_62] = ACTIONS(478), + [anon_sym_seabed] = ACTIONS(478), + [anon_sym_se] = ACTIONS(476), + [anon_sym_63] = ACTIONS(478), + [anon_sym_send] = ACTIONS(478), + [anon_sym_recv] = ACTIONS(478), + [anon_sym_tryrecv] = ACTIONS(478), + [anon_sym_reduce] = ACTIONS(478), + [anon_sym_SLASH] = ACTIONS(478), + [anon_sym_scan] = ACTIONS(478), + [anon_sym_BSLASH] = ACTIONS(478), + [anon_sym_each] = ACTIONS(478), + [anon_sym_64] = ACTIONS(478), + [anon_sym_rows] = ACTIONS(478), + [anon_sym_65] = ACTIONS(478), + [anon_sym_repeat] = ACTIONS(478), + [anon_sym_66] = ACTIONS(478), + [anon_sym_dip] = ACTIONS(478), + [anon_sym_67] = ACTIONS(478), + [anon_sym_gap] = ACTIONS(478), + [anon_sym_68] = ACTIONS(478), + [anon_sym_69] = ACTIONS(478), + [anon_sym_invert] = ACTIONS(478), + [anon_sym_70] = ACTIONS(478), + [anon_sym_spawn] = ACTIONS(478), + [anon_sym_pack] = ACTIONS(478), + [anon_sym_71] = ACTIONS(478), + [anon_sym_tribute] = ACTIONS(478), + [anon_sym_72] = ACTIONS(478), + [anon_sym_reach] = ACTIONS(478), + [anon_sym_fold] = ACTIONS(478), + [anon_sym_73] = ACTIONS(478), + [anon_sym_distribute] = ACTIONS(478), + [anon_sym_74] = ACTIONS(478), + [anon_sym_table] = ACTIONS(478), + [anon_sym_75] = ACTIONS(478), + [anon_sym_cross] = ACTIONS(478), + [anon_sym_76] = ACTIONS(478), + [anon_sym_group] = ACTIONS(478), + [anon_sym_77] = ACTIONS(478), + [anon_sym_partition] = ACTIONS(478), + [anon_sym_78] = ACTIONS(478), + [anon_sym_both] = ACTIONS(478), + [anon_sym_79] = ACTIONS(478), + [anon_sym_bracket] = ACTIONS(478), + [anon_sym_80] = ACTIONS(478), + [anon_sym_fork] = ACTIONS(478), + [anon_sym_81] = ACTIONS(478), + [anon_sym_under] = ACTIONS(478), + [anon_sym_82] = ACTIONS(478), + [anon_sym_level] = ACTIONS(478), + [anon_sym_83] = ACTIONS(478), + [anon_sym_fill] = ACTIONS(478), + [anon_sym_84] = ACTIONS(478), + [anon_sym_bind] = ACTIONS(478), + [anon_sym_SQUOTE] = ACTIONS(478), + [anon_sym_QMARK] = ACTIONS(478), + [anon_sym_try] = ACTIONS(476), + [anon_sym_85] = ACTIONS(478), + [anon_sym_combinate] = ACTIONS(478), + [anon_sym_86] = ACTIONS(478), + [anon_sym_87] = ACTIONS(478), + [anon_sym_88] = ACTIONS(478), + [anon_sym_89] = ACTIONS(478), + [anon_sym_90] = ACTIONS(478), + [anon_sym_91] = ACTIONS(478), + [anon_sym_92] = ACTIONS(478), + [anon_sym_93] = ACTIONS(478), [sym__whitespace] = ACTIONS(5), - [sym__end_of_line] = ACTIONS(496), + [sym__end_of_line] = ACTIONS(478), }, [102] = { - [ts_builtin_sym_end] = ACTIONS(472), - [aux_sym_number_token1] = ACTIONS(470), - [anon_sym_os] = ACTIONS(470), - [anon_sym_Family] = ACTIONS(470), - [anon_sym_Arch] = ACTIONS(470), - [anon_sym_ExeExt] = ACTIONS(470), - [anon_sym_PllExt] = ACTIONS(470), - [anon_sym_Sep] = ACTIONS(470), - [aux_sym_character_token1] = ACTIONS(472), - [sym_string] = ACTIONS(472), - [sym_multiLineString] = ACTIONS(472), - [anon_sym_PIPE] = ACTIONS(472), - [sym_identifier] = ACTIONS(470), - [sym_identifier_deprecated] = ACTIONS(470), - [sym_system] = ACTIONS(472), - [sym_comment] = ACTIONS(470), - [sym_openParen] = ACTIONS(472), - [sym_openCurly] = ACTIONS(472), - [sym_openBracket] = ACTIONS(472), - [sym_underscore] = ACTIONS(472), - [sym_leftArrow] = ACTIONS(472), - [anon_sym_CARET] = ACTIONS(472), - [anon_sym_eta] = ACTIONS(472), - [anon_sym_] = ACTIONS(470), - [anon_sym_pi] = ACTIONS(470), - [anon_sym_2] = ACTIONS(470), - [anon_sym_tau] = ACTIONS(472), - [anon_sym_3] = ACTIONS(470), - [anon_sym_infinity] = ACTIONS(472), - [anon_sym_4] = ACTIONS(472), - [anon_sym_e] = ACTIONS(470), - [anon_sym_NaN] = ACTIONS(470), - [anon_sym_NumProcs] = ACTIONS(470), - [anon_sym_DOT] = ACTIONS(472), - [anon_sym_COMMA] = ACTIONS(472), - [anon_sym_5] = ACTIONS(472), - [anon_sym_SEMI] = ACTIONS(472), - [anon_sym_identity] = ACTIONS(472), - [anon_sym_id] = ACTIONS(470), - [anon_sym_6] = ACTIONS(472), - [anon_sym_not] = ACTIONS(472), - [anon_sym_7] = ACTIONS(472), - [anon_sym_sign] = ACTIONS(472), - [anon_sym_8] = ACTIONS(472), - [anon_sym_BQUOTE] = ACTIONS(472), - [anon_sym_9] = ACTIONS(472), - [anon_sym_absolutevalue] = ACTIONS(472), - [anon_sym_10] = ACTIONS(472), - [anon_sym_sqrt] = ACTIONS(472), - [anon_sym_11] = ACTIONS(472), - [anon_sym_sine] = ACTIONS(472), - [anon_sym_12] = ACTIONS(472), - [anon_sym_floor] = ACTIONS(472), - [anon_sym_13] = ACTIONS(472), - [anon_sym_ceiling] = ACTIONS(472), - [anon_sym_14] = ACTIONS(472), - [anon_sym_round] = ACTIONS(472), - [anon_sym_15] = ACTIONS(472), - [anon_sym_EQ] = ACTIONS(472), - [anon_sym_BANG_EQ] = ACTIONS(472), - [anon_sym_16] = ACTIONS(472), - [anon_sym_LT] = ACTIONS(470), - [anon_sym_LT_EQ] = ACTIONS(472), - [anon_sym_17] = ACTIONS(472), - [anon_sym_GT] = ACTIONS(470), - [anon_sym_GT_EQ] = ACTIONS(472), - [anon_sym_18] = ACTIONS(472), - [anon_sym_PLUS] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(472), - [anon_sym_STAR] = ACTIONS(472), - [anon_sym_19] = ACTIONS(472), - [anon_sym_PERCENT] = ACTIONS(472), - [anon_sym_20] = ACTIONS(472), - [anon_sym_modulus] = ACTIONS(472), - [anon_sym_21] = ACTIONS(472), - [anon_sym_power] = ACTIONS(472), - [anon_sym_22] = ACTIONS(472), - [anon_sym_logarithm] = ACTIONS(472), - [anon_sym_23] = ACTIONS(472), - [anon_sym_minimum] = ACTIONS(472), - [anon_sym_24] = ACTIONS(472), - [anon_sym_maximum] = ACTIONS(472), - [anon_sym_25] = ACTIONS(472), - [anon_sym_atangent] = ACTIONS(472), - [anon_sym_26] = ACTIONS(472), - [anon_sym_length] = ACTIONS(472), - [anon_sym_27] = ACTIONS(472), - [anon_sym_shape] = ACTIONS(472), - [anon_sym_28] = ACTIONS(472), - [anon_sym_range] = ACTIONS(472), - [anon_sym_29] = ACTIONS(472), - [anon_sym_first] = ACTIONS(472), - [anon_sym_30] = ACTIONS(472), - [anon_sym_reverse] = ACTIONS(472), - [anon_sym_31] = ACTIONS(472), - [anon_sym_deshape] = ACTIONS(472), - [anon_sym_32] = ACTIONS(472), - [anon_sym_bits] = ACTIONS(472), - [anon_sym_33] = ACTIONS(472), - [anon_sym_transpose] = ACTIONS(472), - [anon_sym_34] = ACTIONS(472), - [anon_sym_rise] = ACTIONS(472), - [anon_sym_35] = ACTIONS(472), - [anon_sym_fall] = ACTIONS(472), - [anon_sym_36] = ACTIONS(472), - [anon_sym_where] = ACTIONS(472), - [anon_sym_37] = ACTIONS(472), - [anon_sym_classify] = ACTIONS(472), - [anon_sym_38] = ACTIONS(472), - [anon_sym_deduplicate] = ACTIONS(472), - [anon_sym_39] = ACTIONS(472), - [anon_sym_box] = ACTIONS(472), - [anon_sym_40] = ACTIONS(472), - [anon_sym_unbox] = ACTIONS(472), - [anon_sym_41] = ACTIONS(472), - [anon_sym_match] = ACTIONS(472), - [anon_sym_42] = ACTIONS(472), - [anon_sym_couple] = ACTIONS(472), - [anon_sym_43] = ACTIONS(472), - [anon_sym_join] = ACTIONS(472), - [anon_sym_44] = ACTIONS(472), - [anon_sym_select] = ACTIONS(472), - [anon_sym_45] = ACTIONS(472), - [anon_sym_pick] = ACTIONS(472), - [anon_sym_46] = ACTIONS(472), - [anon_sym_reshape] = ACTIONS(472), - [anon_sym_47] = ACTIONS(472), - [anon_sym_take] = ACTIONS(472), - [anon_sym_48] = ACTIONS(472), - [anon_sym_drop] = ACTIONS(472), - [anon_sym_49] = ACTIONS(472), - [anon_sym_rotate] = ACTIONS(472), - [anon_sym_50] = ACTIONS(472), - [anon_sym_windows] = ACTIONS(472), - [anon_sym_51] = ACTIONS(472), - [anon_sym_keep] = ACTIONS(472), - [anon_sym_52] = ACTIONS(472), - [anon_sym_find] = ACTIONS(472), - [anon_sym_53] = ACTIONS(472), - [anon_sym_member] = ACTIONS(472), - [anon_sym_54] = ACTIONS(472), - [anon_sym_indexof] = ACTIONS(472), - [anon_sym_55] = ACTIONS(472), - [anon_sym_assert] = ACTIONS(472), - [anon_sym_56] = ACTIONS(472), - [anon_sym_wait] = ACTIONS(472), - [anon_sym_break] = ACTIONS(472), - [anon_sym_57] = ACTIONS(472), - [anon_sym_parse] = ACTIONS(472), - [anon_sym_random] = ACTIONS(472), - [anon_sym_58] = ACTIONS(472), - [anon_sym_gen] = ACTIONS(472), - [anon_sym_deal] = ACTIONS(472), - [anon_sym_tag] = ACTIONS(472), - [anon_sym_now] = ACTIONS(472), - [anon_sym_type] = ACTIONS(472), - [anon_sym_59] = ACTIONS(472), - [anon_sym_dump] = ACTIONS(472), - [anon_sym_regex] = ACTIONS(472), - [anon_sym_utf] = ACTIONS(472), - [anon_sym_rock] = ACTIONS(472), - [anon_sym_60] = ACTIONS(472), - [anon_sym_surface] = ACTIONS(472), - [anon_sym_TILDE] = ACTIONS(472), - [anon_sym_deep] = ACTIONS(472), - [anon_sym_de] = ACTIONS(470), - [anon_sym_61] = ACTIONS(472), - [anon_sym_abyss] = ACTIONS(472), - [anon_sym_ab] = ACTIONS(470), - [anon_sym_62] = ACTIONS(472), - [anon_sym_seabed] = ACTIONS(472), - [anon_sym_se] = ACTIONS(470), - [anon_sym_63] = ACTIONS(472), - [anon_sym_send] = ACTIONS(472), - [anon_sym_recv] = ACTIONS(472), - [anon_sym_tryrecv] = ACTIONS(472), - [anon_sym_reduce] = ACTIONS(472), - [anon_sym_SLASH] = ACTIONS(472), - [anon_sym_scan] = ACTIONS(472), - [anon_sym_BSLASH] = ACTIONS(472), - [anon_sym_each] = ACTIONS(472), - [anon_sym_64] = ACTIONS(472), - [anon_sym_rows] = ACTIONS(472), - [anon_sym_65] = ACTIONS(472), - [anon_sym_repeat] = ACTIONS(472), - [anon_sym_66] = ACTIONS(472), - [anon_sym_dip] = ACTIONS(472), - [anon_sym_di] = ACTIONS(470), - [anon_sym_67] = ACTIONS(472), - [anon_sym_gap] = ACTIONS(472), - [anon_sym_ga] = ACTIONS(470), - [anon_sym_68] = ACTIONS(472), - [anon_sym_oust] = ACTIONS(472), - [anon_sym_69] = ACTIONS(472), - [anon_sym_invert] = ACTIONS(472), - [anon_sym_70] = ACTIONS(472), - [anon_sym_spawn] = ACTIONS(472), - [anon_sym_pack] = ACTIONS(472), - [anon_sym_71] = ACTIONS(472), - [anon_sym_tribute] = ACTIONS(472), - [anon_sym_72] = ACTIONS(472), - [anon_sym_fold] = ACTIONS(472), - [anon_sym_73] = ACTIONS(472), - [anon_sym_distribute] = ACTIONS(472), - [anon_sym_74] = ACTIONS(472), - [anon_sym_table] = ACTIONS(472), - [anon_sym_75] = ACTIONS(472), - [anon_sym_cross] = ACTIONS(472), - [anon_sym_76] = ACTIONS(472), - [anon_sym_group] = ACTIONS(472), - [anon_sym_77] = ACTIONS(472), - [anon_sym_partition] = ACTIONS(472), - [anon_sym_78] = ACTIONS(472), - [anon_sym_both] = ACTIONS(472), - [anon_sym_79] = ACTIONS(472), - [anon_sym_bracket] = ACTIONS(472), - [anon_sym_80] = ACTIONS(472), - [anon_sym_fork] = ACTIONS(472), - [anon_sym_81] = ACTIONS(472), - [anon_sym_under] = ACTIONS(472), - [anon_sym_82] = ACTIONS(472), - [anon_sym_level] = ACTIONS(472), - [anon_sym_83] = ACTIONS(472), - [anon_sym_fill] = ACTIONS(472), - [anon_sym_84] = ACTIONS(472), - [anon_sym_bind] = ACTIONS(472), - [anon_sym_SQUOTE] = ACTIONS(472), - [anon_sym_QMARK] = ACTIONS(472), - [anon_sym_try] = ACTIONS(470), - [anon_sym_85] = ACTIONS(472), - [anon_sym_combinate] = ACTIONS(472), - [anon_sym_86] = ACTIONS(472), - [anon_sym_87] = ACTIONS(472), - [anon_sym_88] = ACTIONS(472), - [anon_sym_89] = ACTIONS(472), - [anon_sym_90] = ACTIONS(472), - [anon_sym_91] = ACTIONS(472), - [anon_sym_92] = ACTIONS(472), - [anon_sym_93] = ACTIONS(472), + [ts_builtin_sym_end] = ACTIONS(454), + [aux_sym_number_token1] = ACTIONS(452), + [anon_sym_os] = ACTIONS(452), + [anon_sym_Family] = ACTIONS(452), + [anon_sym_Arch] = ACTIONS(452), + [anon_sym_ExeExt] = ACTIONS(452), + [anon_sym_PllExt] = ACTIONS(452), + [anon_sym_Sep] = ACTIONS(452), + [aux_sym_character_token1] = ACTIONS(454), + [sym_string] = ACTIONS(454), + [sym_multiLineString] = ACTIONS(454), + [anon_sym_PIPE] = ACTIONS(454), + [sym_identifier] = ACTIONS(452), + [sym_identifier_deprecated] = ACTIONS(452), + [sym_system] = ACTIONS(454), + [sym_comment] = ACTIONS(452), + [sym_openParen] = ACTIONS(454), + [sym_openCurly] = ACTIONS(454), + [sym_openBracket] = ACTIONS(454), + [sym_underscore] = ACTIONS(454), + [sym_leftArrow] = ACTIONS(454), + [anon_sym_CARET] = ACTIONS(454), + [anon_sym_eta] = ACTIONS(454), + [anon_sym_] = ACTIONS(452), + [anon_sym_pi] = ACTIONS(452), + [anon_sym_2] = ACTIONS(452), + [anon_sym_tau] = ACTIONS(454), + [anon_sym_3] = ACTIONS(452), + [anon_sym_infinity] = ACTIONS(454), + [anon_sym_4] = ACTIONS(454), + [anon_sym_e] = ACTIONS(452), + [anon_sym_NaN] = ACTIONS(452), + [anon_sym_NumProcs] = ACTIONS(452), + [anon_sym_DOT] = ACTIONS(454), + [anon_sym_COMMA] = ACTIONS(454), + [anon_sym_5] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_identity] = ACTIONS(454), + [anon_sym_id] = ACTIONS(452), + [anon_sym_6] = ACTIONS(454), + [anon_sym_not] = ACTIONS(454), + [anon_sym_7] = ACTIONS(454), + [anon_sym_sign] = ACTIONS(454), + [anon_sym_8] = ACTIONS(454), + [anon_sym_BQUOTE] = ACTIONS(454), + [anon_sym_9] = ACTIONS(454), + [anon_sym_absolutevalue] = ACTIONS(454), + [anon_sym_10] = ACTIONS(454), + [anon_sym_sqrt] = ACTIONS(454), + [anon_sym_11] = ACTIONS(454), + [anon_sym_sine] = ACTIONS(454), + [anon_sym_12] = ACTIONS(454), + [anon_sym_floor] = ACTIONS(454), + [anon_sym_13] = ACTIONS(454), + [anon_sym_ceiling] = ACTIONS(454), + [anon_sym_14] = ACTIONS(454), + [anon_sym_round] = ACTIONS(454), + [anon_sym_15] = ACTIONS(454), + [anon_sym_EQ] = ACTIONS(454), + [anon_sym_BANG_EQ] = ACTIONS(454), + [anon_sym_16] = ACTIONS(454), + [anon_sym_LT] = ACTIONS(452), + [anon_sym_LT_EQ] = ACTIONS(454), + [anon_sym_17] = ACTIONS(454), + [anon_sym_GT] = ACTIONS(452), + [anon_sym_GT_EQ] = ACTIONS(454), + [anon_sym_18] = ACTIONS(454), + [anon_sym_PLUS] = ACTIONS(454), + [anon_sym_DASH] = ACTIONS(454), + [anon_sym_STAR] = ACTIONS(454), + [anon_sym_19] = ACTIONS(454), + [anon_sym_PERCENT] = ACTIONS(454), + [anon_sym_20] = ACTIONS(454), + [anon_sym_modulus] = ACTIONS(454), + [anon_sym_21] = ACTIONS(454), + [anon_sym_power] = ACTIONS(454), + [anon_sym_22] = ACTIONS(454), + [anon_sym_logarithm] = ACTIONS(454), + [anon_sym_23] = ACTIONS(454), + [anon_sym_minimum] = ACTIONS(454), + [anon_sym_24] = ACTIONS(454), + [anon_sym_maximum] = ACTIONS(454), + [anon_sym_25] = ACTIONS(454), + [anon_sym_atangent] = ACTIONS(454), + [anon_sym_26] = ACTIONS(454), + [anon_sym_length] = ACTIONS(454), + [anon_sym_27] = ACTIONS(454), + [anon_sym_shape] = ACTIONS(454), + [anon_sym_28] = ACTIONS(454), + [anon_sym_range] = ACTIONS(454), + [anon_sym_29] = ACTIONS(454), + [anon_sym_first] = ACTIONS(454), + [anon_sym_30] = ACTIONS(454), + [anon_sym_reverse] = ACTIONS(454), + [anon_sym_31] = ACTIONS(454), + [anon_sym_deshape] = ACTIONS(454), + [anon_sym_32] = ACTIONS(454), + [anon_sym_bits] = ACTIONS(454), + [anon_sym_33] = ACTIONS(454), + [anon_sym_transpose] = ACTIONS(454), + [anon_sym_34] = ACTIONS(454), + [anon_sym_rise] = ACTIONS(454), + [anon_sym_35] = ACTIONS(454), + [anon_sym_fall] = ACTIONS(454), + [anon_sym_36] = ACTIONS(454), + [anon_sym_where] = ACTIONS(454), + [anon_sym_37] = ACTIONS(454), + [anon_sym_classify] = ACTIONS(454), + [anon_sym_38] = ACTIONS(454), + [anon_sym_deduplicate] = ACTIONS(454), + [anon_sym_39] = ACTIONS(454), + [anon_sym_box] = ACTIONS(454), + [anon_sym_40] = ACTIONS(454), + [anon_sym_unbox] = ACTIONS(454), + [anon_sym_41] = ACTIONS(454), + [anon_sym_match] = ACTIONS(454), + [anon_sym_42] = ACTIONS(454), + [anon_sym_couple] = ACTIONS(454), + [anon_sym_43] = ACTIONS(454), + [anon_sym_join] = ACTIONS(454), + [anon_sym_44] = ACTIONS(454), + [anon_sym_select] = ACTIONS(454), + [anon_sym_45] = ACTIONS(454), + [anon_sym_pick] = ACTIONS(454), + [anon_sym_46] = ACTIONS(454), + [anon_sym_reshape] = ACTIONS(454), + [anon_sym_47] = ACTIONS(454), + [anon_sym_take] = ACTIONS(454), + [anon_sym_48] = ACTIONS(454), + [anon_sym_drop] = ACTIONS(454), + [anon_sym_49] = ACTIONS(454), + [anon_sym_rotate] = ACTIONS(454), + [anon_sym_50] = ACTIONS(454), + [anon_sym_windows] = ACTIONS(454), + [anon_sym_51] = ACTIONS(454), + [anon_sym_keep] = ACTIONS(454), + [anon_sym_52] = ACTIONS(454), + [anon_sym_find] = ACTIONS(454), + [anon_sym_53] = ACTIONS(454), + [anon_sym_member] = ACTIONS(454), + [anon_sym_54] = ACTIONS(454), + [anon_sym_indexof] = ACTIONS(454), + [anon_sym_55] = ACTIONS(454), + [anon_sym_assert] = ACTIONS(454), + [anon_sym_56] = ACTIONS(454), + [anon_sym_wait] = ACTIONS(454), + [anon_sym_break] = ACTIONS(454), + [anon_sym_57] = ACTIONS(454), + [anon_sym_parse] = ACTIONS(454), + [anon_sym_random] = ACTIONS(454), + [anon_sym_58] = ACTIONS(454), + [anon_sym_gen] = ACTIONS(454), + [anon_sym_deal] = ACTIONS(454), + [anon_sym_tag] = ACTIONS(454), + [anon_sym_now] = ACTIONS(454), + [anon_sym_type] = ACTIONS(454), + [anon_sym_59] = ACTIONS(454), + [anon_sym_dump] = ACTIONS(454), + [anon_sym_regex] = ACTIONS(454), + [anon_sym_utf] = ACTIONS(454), + [anon_sym_rock] = ACTIONS(454), + [anon_sym_60] = ACTIONS(454), + [anon_sym_surface] = ACTIONS(454), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_deep] = ACTIONS(454), + [anon_sym_de] = ACTIONS(452), + [anon_sym_61] = ACTIONS(454), + [anon_sym_abyss] = ACTIONS(454), + [anon_sym_ab] = ACTIONS(452), + [anon_sym_62] = ACTIONS(454), + [anon_sym_seabed] = ACTIONS(454), + [anon_sym_se] = ACTIONS(452), + [anon_sym_63] = ACTIONS(454), + [anon_sym_send] = ACTIONS(454), + [anon_sym_recv] = ACTIONS(454), + [anon_sym_tryrecv] = ACTIONS(454), + [anon_sym_reduce] = ACTIONS(454), + [anon_sym_SLASH] = ACTIONS(454), + [anon_sym_scan] = ACTIONS(454), + [anon_sym_BSLASH] = ACTIONS(454), + [anon_sym_each] = ACTIONS(454), + [anon_sym_64] = ACTIONS(454), + [anon_sym_rows] = ACTIONS(454), + [anon_sym_65] = ACTIONS(454), + [anon_sym_repeat] = ACTIONS(454), + [anon_sym_66] = ACTIONS(454), + [anon_sym_dip] = ACTIONS(454), + [anon_sym_67] = ACTIONS(454), + [anon_sym_gap] = ACTIONS(454), + [anon_sym_68] = ACTIONS(454), + [anon_sym_69] = ACTIONS(454), + [anon_sym_invert] = ACTIONS(454), + [anon_sym_70] = ACTIONS(454), + [anon_sym_spawn] = ACTIONS(454), + [anon_sym_pack] = ACTIONS(454), + [anon_sym_71] = ACTIONS(454), + [anon_sym_tribute] = ACTIONS(454), + [anon_sym_72] = ACTIONS(454), + [anon_sym_reach] = ACTIONS(454), + [anon_sym_fold] = ACTIONS(454), + [anon_sym_73] = ACTIONS(454), + [anon_sym_distribute] = ACTIONS(454), + [anon_sym_74] = ACTIONS(454), + [anon_sym_table] = ACTIONS(454), + [anon_sym_75] = ACTIONS(454), + [anon_sym_cross] = ACTIONS(454), + [anon_sym_76] = ACTIONS(454), + [anon_sym_group] = ACTIONS(454), + [anon_sym_77] = ACTIONS(454), + [anon_sym_partition] = ACTIONS(454), + [anon_sym_78] = ACTIONS(454), + [anon_sym_both] = ACTIONS(454), + [anon_sym_79] = ACTIONS(454), + [anon_sym_bracket] = ACTIONS(454), + [anon_sym_80] = ACTIONS(454), + [anon_sym_fork] = ACTIONS(454), + [anon_sym_81] = ACTIONS(454), + [anon_sym_under] = ACTIONS(454), + [anon_sym_82] = ACTIONS(454), + [anon_sym_level] = ACTIONS(454), + [anon_sym_83] = ACTIONS(454), + [anon_sym_fill] = ACTIONS(454), + [anon_sym_84] = ACTIONS(454), + [anon_sym_bind] = ACTIONS(454), + [anon_sym_SQUOTE] = ACTIONS(454), + [anon_sym_QMARK] = ACTIONS(454), + [anon_sym_try] = ACTIONS(452), + [anon_sym_85] = ACTIONS(454), + [anon_sym_combinate] = ACTIONS(454), + [anon_sym_86] = ACTIONS(454), + [anon_sym_87] = ACTIONS(454), + [anon_sym_88] = ACTIONS(454), + [anon_sym_89] = ACTIONS(454), + [anon_sym_90] = ACTIONS(454), + [anon_sym_91] = ACTIONS(454), + [anon_sym_92] = ACTIONS(454), + [anon_sym_93] = ACTIONS(454), [sym__whitespace] = ACTIONS(5), - [sym__end_of_line] = ACTIONS(472), + [sym__end_of_line] = ACTIONS(454), }, [103] = { - [ts_builtin_sym_end] = ACTIONS(492), - [aux_sym_number_token1] = ACTIONS(490), - [anon_sym_os] = ACTIONS(490), - [anon_sym_Family] = ACTIONS(490), - [anon_sym_Arch] = ACTIONS(490), - [anon_sym_ExeExt] = ACTIONS(490), - [anon_sym_PllExt] = ACTIONS(490), - [anon_sym_Sep] = ACTIONS(490), - [aux_sym_character_token1] = ACTIONS(492), - [sym_string] = ACTIONS(492), - [sym_multiLineString] = ACTIONS(492), - [anon_sym_PIPE] = ACTIONS(492), - [sym_identifier] = ACTIONS(490), - [sym_identifier_deprecated] = ACTIONS(490), - [sym_system] = ACTIONS(492), - [sym_comment] = ACTIONS(490), - [sym_openParen] = ACTIONS(492), - [sym_openCurly] = ACTIONS(492), - [sym_openBracket] = ACTIONS(492), - [sym_underscore] = ACTIONS(492), - [sym_leftArrow] = ACTIONS(492), - [anon_sym_CARET] = ACTIONS(492), - [anon_sym_eta] = ACTIONS(492), - [anon_sym_] = ACTIONS(490), - [anon_sym_pi] = ACTIONS(490), - [anon_sym_2] = ACTIONS(490), - [anon_sym_tau] = ACTIONS(492), - [anon_sym_3] = ACTIONS(490), - [anon_sym_infinity] = ACTIONS(492), - [anon_sym_4] = ACTIONS(492), - [anon_sym_e] = ACTIONS(490), - [anon_sym_NaN] = ACTIONS(490), - [anon_sym_NumProcs] = ACTIONS(490), - [anon_sym_DOT] = ACTIONS(492), - [anon_sym_COMMA] = ACTIONS(492), - [anon_sym_5] = ACTIONS(492), - [anon_sym_SEMI] = ACTIONS(492), - [anon_sym_identity] = ACTIONS(492), - [anon_sym_id] = ACTIONS(490), - [anon_sym_6] = ACTIONS(492), - [anon_sym_not] = ACTIONS(492), - [anon_sym_7] = ACTIONS(492), - [anon_sym_sign] = ACTIONS(492), - [anon_sym_8] = ACTIONS(492), - [anon_sym_BQUOTE] = ACTIONS(492), - [anon_sym_9] = ACTIONS(492), - [anon_sym_absolutevalue] = ACTIONS(492), - [anon_sym_10] = ACTIONS(492), - [anon_sym_sqrt] = ACTIONS(492), - [anon_sym_11] = ACTIONS(492), - [anon_sym_sine] = ACTIONS(492), - [anon_sym_12] = ACTIONS(492), - [anon_sym_floor] = ACTIONS(492), - [anon_sym_13] = ACTIONS(492), - [anon_sym_ceiling] = ACTIONS(492), - [anon_sym_14] = ACTIONS(492), - [anon_sym_round] = ACTIONS(492), - [anon_sym_15] = ACTIONS(492), - [anon_sym_EQ] = ACTIONS(492), - [anon_sym_BANG_EQ] = ACTIONS(492), - [anon_sym_16] = ACTIONS(492), - [anon_sym_LT] = ACTIONS(490), - [anon_sym_LT_EQ] = ACTIONS(492), - [anon_sym_17] = ACTIONS(492), - [anon_sym_GT] = ACTIONS(490), - [anon_sym_GT_EQ] = ACTIONS(492), - [anon_sym_18] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(492), - [anon_sym_DASH] = ACTIONS(492), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_19] = ACTIONS(492), - [anon_sym_PERCENT] = ACTIONS(492), - [anon_sym_20] = ACTIONS(492), - [anon_sym_modulus] = ACTIONS(492), - [anon_sym_21] = ACTIONS(492), - [anon_sym_power] = ACTIONS(492), - [anon_sym_22] = ACTIONS(492), - [anon_sym_logarithm] = ACTIONS(492), - [anon_sym_23] = ACTIONS(492), - [anon_sym_minimum] = ACTIONS(492), - [anon_sym_24] = ACTIONS(492), - [anon_sym_maximum] = ACTIONS(492), - [anon_sym_25] = ACTIONS(492), - [anon_sym_atangent] = ACTIONS(492), - [anon_sym_26] = ACTIONS(492), - [anon_sym_length] = ACTIONS(492), - [anon_sym_27] = ACTIONS(492), - [anon_sym_shape] = ACTIONS(492), - [anon_sym_28] = ACTIONS(492), - [anon_sym_range] = ACTIONS(492), - [anon_sym_29] = ACTIONS(492), - [anon_sym_first] = ACTIONS(492), - [anon_sym_30] = ACTIONS(492), - [anon_sym_reverse] = ACTIONS(492), - [anon_sym_31] = ACTIONS(492), - [anon_sym_deshape] = ACTIONS(492), - [anon_sym_32] = ACTIONS(492), - [anon_sym_bits] = ACTIONS(492), - [anon_sym_33] = ACTIONS(492), - [anon_sym_transpose] = ACTIONS(492), - [anon_sym_34] = ACTIONS(492), - [anon_sym_rise] = ACTIONS(492), - [anon_sym_35] = ACTIONS(492), - [anon_sym_fall] = ACTIONS(492), - [anon_sym_36] = ACTIONS(492), - [anon_sym_where] = ACTIONS(492), - [anon_sym_37] = ACTIONS(492), - [anon_sym_classify] = ACTIONS(492), - [anon_sym_38] = ACTIONS(492), - [anon_sym_deduplicate] = ACTIONS(492), - [anon_sym_39] = ACTIONS(492), - [anon_sym_box] = ACTIONS(492), - [anon_sym_40] = ACTIONS(492), - [anon_sym_unbox] = ACTIONS(492), - [anon_sym_41] = ACTIONS(492), - [anon_sym_match] = ACTIONS(492), - [anon_sym_42] = ACTIONS(492), - [anon_sym_couple] = ACTIONS(492), - [anon_sym_43] = ACTIONS(492), - [anon_sym_join] = ACTIONS(492), - [anon_sym_44] = ACTIONS(492), - [anon_sym_select] = ACTIONS(492), - [anon_sym_45] = ACTIONS(492), - [anon_sym_pick] = ACTIONS(492), - [anon_sym_46] = ACTIONS(492), - [anon_sym_reshape] = ACTIONS(492), - [anon_sym_47] = ACTIONS(492), - [anon_sym_take] = ACTIONS(492), - [anon_sym_48] = ACTIONS(492), - [anon_sym_drop] = ACTIONS(492), - [anon_sym_49] = ACTIONS(492), - [anon_sym_rotate] = ACTIONS(492), - [anon_sym_50] = ACTIONS(492), - [anon_sym_windows] = ACTIONS(492), - [anon_sym_51] = ACTIONS(492), - [anon_sym_keep] = ACTIONS(492), - [anon_sym_52] = ACTIONS(492), - [anon_sym_find] = ACTIONS(492), - [anon_sym_53] = ACTIONS(492), - [anon_sym_member] = ACTIONS(492), - [anon_sym_54] = ACTIONS(492), - [anon_sym_indexof] = ACTIONS(492), - [anon_sym_55] = ACTIONS(492), - [anon_sym_assert] = ACTIONS(492), - [anon_sym_56] = ACTIONS(492), - [anon_sym_wait] = ACTIONS(492), - [anon_sym_break] = ACTIONS(492), - [anon_sym_57] = ACTIONS(492), - [anon_sym_parse] = ACTIONS(492), - [anon_sym_random] = ACTIONS(492), - [anon_sym_58] = ACTIONS(492), - [anon_sym_gen] = ACTIONS(492), - [anon_sym_deal] = ACTIONS(492), - [anon_sym_tag] = ACTIONS(492), - [anon_sym_now] = ACTIONS(492), - [anon_sym_type] = ACTIONS(492), - [anon_sym_59] = ACTIONS(492), - [anon_sym_dump] = ACTIONS(492), - [anon_sym_regex] = ACTIONS(492), - [anon_sym_utf] = ACTIONS(492), - [anon_sym_rock] = ACTIONS(492), - [anon_sym_60] = ACTIONS(492), - [anon_sym_surface] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(492), - [anon_sym_deep] = ACTIONS(492), - [anon_sym_de] = ACTIONS(490), - [anon_sym_61] = ACTIONS(492), - [anon_sym_abyss] = ACTIONS(492), - [anon_sym_ab] = ACTIONS(490), - [anon_sym_62] = ACTIONS(492), - [anon_sym_seabed] = ACTIONS(492), - [anon_sym_se] = ACTIONS(490), - [anon_sym_63] = ACTIONS(492), - [anon_sym_send] = ACTIONS(492), - [anon_sym_recv] = ACTIONS(492), - [anon_sym_tryrecv] = ACTIONS(492), - [anon_sym_reduce] = ACTIONS(492), - [anon_sym_SLASH] = ACTIONS(492), - [anon_sym_scan] = ACTIONS(492), - [anon_sym_BSLASH] = ACTIONS(492), - [anon_sym_each] = ACTIONS(492), - [anon_sym_64] = ACTIONS(492), - [anon_sym_rows] = ACTIONS(492), - [anon_sym_65] = ACTIONS(492), - [anon_sym_repeat] = ACTIONS(492), - [anon_sym_66] = ACTIONS(492), - [anon_sym_dip] = ACTIONS(492), - [anon_sym_di] = ACTIONS(490), - [anon_sym_67] = ACTIONS(492), - [anon_sym_gap] = ACTIONS(492), - [anon_sym_ga] = ACTIONS(490), - [anon_sym_68] = ACTIONS(492), - [anon_sym_oust] = ACTIONS(492), - [anon_sym_69] = ACTIONS(492), - [anon_sym_invert] = ACTIONS(492), - [anon_sym_70] = ACTIONS(492), - [anon_sym_spawn] = ACTIONS(492), - [anon_sym_pack] = ACTIONS(492), - [anon_sym_71] = ACTIONS(492), - [anon_sym_tribute] = ACTIONS(492), - [anon_sym_72] = ACTIONS(492), - [anon_sym_fold] = ACTIONS(492), - [anon_sym_73] = ACTIONS(492), - [anon_sym_distribute] = ACTIONS(492), - [anon_sym_74] = ACTIONS(492), - [anon_sym_table] = ACTIONS(492), - [anon_sym_75] = ACTIONS(492), - [anon_sym_cross] = ACTIONS(492), - [anon_sym_76] = ACTIONS(492), - [anon_sym_group] = ACTIONS(492), - [anon_sym_77] = ACTIONS(492), - [anon_sym_partition] = ACTIONS(492), - [anon_sym_78] = ACTIONS(492), - [anon_sym_both] = ACTIONS(492), - [anon_sym_79] = ACTIONS(492), - [anon_sym_bracket] = ACTIONS(492), - [anon_sym_80] = ACTIONS(492), - [anon_sym_fork] = ACTIONS(492), - [anon_sym_81] = ACTIONS(492), - [anon_sym_under] = ACTIONS(492), - [anon_sym_82] = ACTIONS(492), - [anon_sym_level] = ACTIONS(492), - [anon_sym_83] = ACTIONS(492), - [anon_sym_fill] = ACTIONS(492), - [anon_sym_84] = ACTIONS(492), - [anon_sym_bind] = ACTIONS(492), - [anon_sym_SQUOTE] = ACTIONS(492), - [anon_sym_QMARK] = ACTIONS(492), - [anon_sym_try] = ACTIONS(490), - [anon_sym_85] = ACTIONS(492), - [anon_sym_combinate] = ACTIONS(492), - [anon_sym_86] = ACTIONS(492), - [anon_sym_87] = ACTIONS(492), - [anon_sym_88] = ACTIONS(492), - [anon_sym_89] = ACTIONS(492), - [anon_sym_90] = ACTIONS(492), - [anon_sym_91] = ACTIONS(492), - [anon_sym_92] = ACTIONS(492), - [anon_sym_93] = ACTIONS(492), + [ts_builtin_sym_end] = ACTIONS(474), + [aux_sym_number_token1] = ACTIONS(472), + [anon_sym_os] = ACTIONS(472), + [anon_sym_Family] = ACTIONS(472), + [anon_sym_Arch] = ACTIONS(472), + [anon_sym_ExeExt] = ACTIONS(472), + [anon_sym_PllExt] = ACTIONS(472), + [anon_sym_Sep] = ACTIONS(472), + [aux_sym_character_token1] = ACTIONS(474), + [sym_string] = ACTIONS(474), + [sym_multiLineString] = ACTIONS(474), + [anon_sym_PIPE] = ACTIONS(474), + [sym_identifier] = ACTIONS(472), + [sym_identifier_deprecated] = ACTIONS(472), + [sym_system] = ACTIONS(474), + [sym_comment] = ACTIONS(472), + [sym_openParen] = ACTIONS(474), + [sym_openCurly] = ACTIONS(474), + [sym_openBracket] = ACTIONS(474), + [sym_underscore] = ACTIONS(474), + [sym_leftArrow] = ACTIONS(474), + [anon_sym_CARET] = ACTIONS(474), + [anon_sym_eta] = ACTIONS(474), + [anon_sym_] = ACTIONS(472), + [anon_sym_pi] = ACTIONS(472), + [anon_sym_2] = ACTIONS(472), + [anon_sym_tau] = ACTIONS(474), + [anon_sym_3] = ACTIONS(472), + [anon_sym_infinity] = ACTIONS(474), + [anon_sym_4] = ACTIONS(474), + [anon_sym_e] = ACTIONS(472), + [anon_sym_NaN] = ACTIONS(472), + [anon_sym_NumProcs] = ACTIONS(472), + [anon_sym_DOT] = ACTIONS(474), + [anon_sym_COMMA] = ACTIONS(474), + [anon_sym_5] = ACTIONS(474), + [anon_sym_SEMI] = ACTIONS(474), + [anon_sym_identity] = ACTIONS(474), + [anon_sym_id] = ACTIONS(472), + [anon_sym_6] = ACTIONS(474), + [anon_sym_not] = ACTIONS(474), + [anon_sym_7] = ACTIONS(474), + [anon_sym_sign] = ACTIONS(474), + [anon_sym_8] = ACTIONS(474), + [anon_sym_BQUOTE] = ACTIONS(474), + [anon_sym_9] = ACTIONS(474), + [anon_sym_absolutevalue] = ACTIONS(474), + [anon_sym_10] = ACTIONS(474), + [anon_sym_sqrt] = ACTIONS(474), + [anon_sym_11] = ACTIONS(474), + [anon_sym_sine] = ACTIONS(474), + [anon_sym_12] = ACTIONS(474), + [anon_sym_floor] = ACTIONS(474), + [anon_sym_13] = ACTIONS(474), + [anon_sym_ceiling] = ACTIONS(474), + [anon_sym_14] = ACTIONS(474), + [anon_sym_round] = ACTIONS(474), + [anon_sym_15] = ACTIONS(474), + [anon_sym_EQ] = ACTIONS(474), + [anon_sym_BANG_EQ] = ACTIONS(474), + [anon_sym_16] = ACTIONS(474), + [anon_sym_LT] = ACTIONS(472), + [anon_sym_LT_EQ] = ACTIONS(474), + [anon_sym_17] = ACTIONS(474), + [anon_sym_GT] = ACTIONS(472), + [anon_sym_GT_EQ] = ACTIONS(474), + [anon_sym_18] = ACTIONS(474), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_STAR] = ACTIONS(474), + [anon_sym_19] = ACTIONS(474), + [anon_sym_PERCENT] = ACTIONS(474), + [anon_sym_20] = ACTIONS(474), + [anon_sym_modulus] = ACTIONS(474), + [anon_sym_21] = ACTIONS(474), + [anon_sym_power] = ACTIONS(474), + [anon_sym_22] = ACTIONS(474), + [anon_sym_logarithm] = ACTIONS(474), + [anon_sym_23] = ACTIONS(474), + [anon_sym_minimum] = ACTIONS(474), + [anon_sym_24] = ACTIONS(474), + [anon_sym_maximum] = ACTIONS(474), + [anon_sym_25] = ACTIONS(474), + [anon_sym_atangent] = ACTIONS(474), + [anon_sym_26] = ACTIONS(474), + [anon_sym_length] = ACTIONS(474), + [anon_sym_27] = ACTIONS(474), + [anon_sym_shape] = ACTIONS(474), + [anon_sym_28] = ACTIONS(474), + [anon_sym_range] = ACTIONS(474), + [anon_sym_29] = ACTIONS(474), + [anon_sym_first] = ACTIONS(474), + [anon_sym_30] = ACTIONS(474), + [anon_sym_reverse] = ACTIONS(474), + [anon_sym_31] = ACTIONS(474), + [anon_sym_deshape] = ACTIONS(474), + [anon_sym_32] = ACTIONS(474), + [anon_sym_bits] = ACTIONS(474), + [anon_sym_33] = ACTIONS(474), + [anon_sym_transpose] = ACTIONS(474), + [anon_sym_34] = ACTIONS(474), + [anon_sym_rise] = ACTIONS(474), + [anon_sym_35] = ACTIONS(474), + [anon_sym_fall] = ACTIONS(474), + [anon_sym_36] = ACTIONS(474), + [anon_sym_where] = ACTIONS(474), + [anon_sym_37] = ACTIONS(474), + [anon_sym_classify] = ACTIONS(474), + [anon_sym_38] = ACTIONS(474), + [anon_sym_deduplicate] = ACTIONS(474), + [anon_sym_39] = ACTIONS(474), + [anon_sym_box] = ACTIONS(474), + [anon_sym_40] = ACTIONS(474), + [anon_sym_unbox] = ACTIONS(474), + [anon_sym_41] = ACTIONS(474), + [anon_sym_match] = ACTIONS(474), + [anon_sym_42] = ACTIONS(474), + [anon_sym_couple] = ACTIONS(474), + [anon_sym_43] = ACTIONS(474), + [anon_sym_join] = ACTIONS(474), + [anon_sym_44] = ACTIONS(474), + [anon_sym_select] = ACTIONS(474), + [anon_sym_45] = ACTIONS(474), + [anon_sym_pick] = ACTIONS(474), + [anon_sym_46] = ACTIONS(474), + [anon_sym_reshape] = ACTIONS(474), + [anon_sym_47] = ACTIONS(474), + [anon_sym_take] = ACTIONS(474), + [anon_sym_48] = ACTIONS(474), + [anon_sym_drop] = ACTIONS(474), + [anon_sym_49] = ACTIONS(474), + [anon_sym_rotate] = ACTIONS(474), + [anon_sym_50] = ACTIONS(474), + [anon_sym_windows] = ACTIONS(474), + [anon_sym_51] = ACTIONS(474), + [anon_sym_keep] = ACTIONS(474), + [anon_sym_52] = ACTIONS(474), + [anon_sym_find] = ACTIONS(474), + [anon_sym_53] = ACTIONS(474), + [anon_sym_member] = ACTIONS(474), + [anon_sym_54] = ACTIONS(474), + [anon_sym_indexof] = ACTIONS(474), + [anon_sym_55] = ACTIONS(474), + [anon_sym_assert] = ACTIONS(474), + [anon_sym_56] = ACTIONS(474), + [anon_sym_wait] = ACTIONS(474), + [anon_sym_break] = ACTIONS(474), + [anon_sym_57] = ACTIONS(474), + [anon_sym_parse] = ACTIONS(474), + [anon_sym_random] = ACTIONS(474), + [anon_sym_58] = ACTIONS(474), + [anon_sym_gen] = ACTIONS(474), + [anon_sym_deal] = ACTIONS(474), + [anon_sym_tag] = ACTIONS(474), + [anon_sym_now] = ACTIONS(474), + [anon_sym_type] = ACTIONS(474), + [anon_sym_59] = ACTIONS(474), + [anon_sym_dump] = ACTIONS(474), + [anon_sym_regex] = ACTIONS(474), + [anon_sym_utf] = ACTIONS(474), + [anon_sym_rock] = ACTIONS(474), + [anon_sym_60] = ACTIONS(474), + [anon_sym_surface] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_deep] = ACTIONS(474), + [anon_sym_de] = ACTIONS(472), + [anon_sym_61] = ACTIONS(474), + [anon_sym_abyss] = ACTIONS(474), + [anon_sym_ab] = ACTIONS(472), + [anon_sym_62] = ACTIONS(474), + [anon_sym_seabed] = ACTIONS(474), + [anon_sym_se] = ACTIONS(472), + [anon_sym_63] = ACTIONS(474), + [anon_sym_send] = ACTIONS(474), + [anon_sym_recv] = ACTIONS(474), + [anon_sym_tryrecv] = ACTIONS(474), + [anon_sym_reduce] = ACTIONS(474), + [anon_sym_SLASH] = ACTIONS(474), + [anon_sym_scan] = ACTIONS(474), + [anon_sym_BSLASH] = ACTIONS(474), + [anon_sym_each] = ACTIONS(474), + [anon_sym_64] = ACTIONS(474), + [anon_sym_rows] = ACTIONS(474), + [anon_sym_65] = ACTIONS(474), + [anon_sym_repeat] = ACTIONS(474), + [anon_sym_66] = ACTIONS(474), + [anon_sym_dip] = ACTIONS(474), + [anon_sym_67] = ACTIONS(474), + [anon_sym_gap] = ACTIONS(474), + [anon_sym_68] = ACTIONS(474), + [anon_sym_69] = ACTIONS(474), + [anon_sym_invert] = ACTIONS(474), + [anon_sym_70] = ACTIONS(474), + [anon_sym_spawn] = ACTIONS(474), + [anon_sym_pack] = ACTIONS(474), + [anon_sym_71] = ACTIONS(474), + [anon_sym_tribute] = ACTIONS(474), + [anon_sym_72] = ACTIONS(474), + [anon_sym_reach] = ACTIONS(474), + [anon_sym_fold] = ACTIONS(474), + [anon_sym_73] = ACTIONS(474), + [anon_sym_distribute] = ACTIONS(474), + [anon_sym_74] = ACTIONS(474), + [anon_sym_table] = ACTIONS(474), + [anon_sym_75] = ACTIONS(474), + [anon_sym_cross] = ACTIONS(474), + [anon_sym_76] = ACTIONS(474), + [anon_sym_group] = ACTIONS(474), + [anon_sym_77] = ACTIONS(474), + [anon_sym_partition] = ACTIONS(474), + [anon_sym_78] = ACTIONS(474), + [anon_sym_both] = ACTIONS(474), + [anon_sym_79] = ACTIONS(474), + [anon_sym_bracket] = ACTIONS(474), + [anon_sym_80] = ACTIONS(474), + [anon_sym_fork] = ACTIONS(474), + [anon_sym_81] = ACTIONS(474), + [anon_sym_under] = ACTIONS(474), + [anon_sym_82] = ACTIONS(474), + [anon_sym_level] = ACTIONS(474), + [anon_sym_83] = ACTIONS(474), + [anon_sym_fill] = ACTIONS(474), + [anon_sym_84] = ACTIONS(474), + [anon_sym_bind] = ACTIONS(474), + [anon_sym_SQUOTE] = ACTIONS(474), + [anon_sym_QMARK] = ACTIONS(474), + [anon_sym_try] = ACTIONS(472), + [anon_sym_85] = ACTIONS(474), + [anon_sym_combinate] = ACTIONS(474), + [anon_sym_86] = ACTIONS(474), + [anon_sym_87] = ACTIONS(474), + [anon_sym_88] = ACTIONS(474), + [anon_sym_89] = ACTIONS(474), + [anon_sym_90] = ACTIONS(474), + [anon_sym_91] = ACTIONS(474), + [anon_sym_92] = ACTIONS(474), + [anon_sym_93] = ACTIONS(474), [sym__whitespace] = ACTIONS(5), - [sym__end_of_line] = ACTIONS(492), + [sym__end_of_line] = ACTIONS(474), }, [104] = { - [aux_sym_number_token1] = ACTIONS(530), - [anon_sym_os] = ACTIONS(530), - [anon_sym_Family] = ACTIONS(530), - [anon_sym_Arch] = ACTIONS(530), - [anon_sym_ExeExt] = ACTIONS(530), - [anon_sym_PllExt] = ACTIONS(530), - [anon_sym_Sep] = ACTIONS(530), - [aux_sym_character_token1] = ACTIONS(532), - [sym_string] = ACTIONS(532), - [sym_multiLineString] = ACTIONS(532), - [anon_sym_PIPE] = ACTIONS(532), - [sym_identifier] = ACTIONS(530), - [sym_identifier_deprecated] = ACTIONS(530), - [sym_system] = ACTIONS(532), - [sym_comment] = ACTIONS(530), - [sym_openParen] = ACTIONS(532), - [sym_openCurly] = ACTIONS(532), - [sym_closeCurly] = ACTIONS(532), - [sym_openBracket] = ACTIONS(532), - [sym_closeBracket] = ACTIONS(532), - [sym_leftArrow] = ACTIONS(532), - [anon_sym_CARET] = ACTIONS(532), - [anon_sym_eta] = ACTIONS(532), - [anon_sym_] = ACTIONS(530), - [anon_sym_pi] = ACTIONS(530), - [anon_sym_2] = ACTIONS(530), - [anon_sym_tau] = ACTIONS(532), - [anon_sym_3] = ACTIONS(530), - [anon_sym_infinity] = ACTIONS(532), - [anon_sym_4] = ACTIONS(532), - [anon_sym_e] = ACTIONS(530), - [anon_sym_NaN] = ACTIONS(530), - [anon_sym_NumProcs] = ACTIONS(530), - [anon_sym_DOT] = ACTIONS(532), - [anon_sym_COMMA] = ACTIONS(532), - [anon_sym_5] = ACTIONS(532), - [anon_sym_SEMI] = ACTIONS(532), - [anon_sym_identity] = ACTIONS(532), - [anon_sym_id] = ACTIONS(530), - [anon_sym_6] = ACTIONS(532), - [anon_sym_not] = ACTIONS(532), - [anon_sym_7] = ACTIONS(532), - [anon_sym_sign] = ACTIONS(532), - [anon_sym_8] = ACTIONS(532), - [anon_sym_BQUOTE] = ACTIONS(532), - [anon_sym_9] = ACTIONS(532), - [anon_sym_absolutevalue] = ACTIONS(532), - [anon_sym_10] = ACTIONS(532), - [anon_sym_sqrt] = ACTIONS(532), - [anon_sym_11] = ACTIONS(532), - [anon_sym_sine] = ACTIONS(532), - [anon_sym_12] = ACTIONS(532), - [anon_sym_floor] = ACTIONS(532), - [anon_sym_13] = ACTIONS(532), - [anon_sym_ceiling] = ACTIONS(532), - [anon_sym_14] = ACTIONS(532), - [anon_sym_round] = ACTIONS(532), - [anon_sym_15] = ACTIONS(532), - [anon_sym_EQ] = ACTIONS(532), - [anon_sym_BANG_EQ] = ACTIONS(532), - [anon_sym_16] = ACTIONS(532), - [anon_sym_LT] = ACTIONS(530), - [anon_sym_LT_EQ] = ACTIONS(532), - [anon_sym_17] = ACTIONS(532), - [anon_sym_GT] = ACTIONS(530), - [anon_sym_GT_EQ] = ACTIONS(532), - [anon_sym_18] = ACTIONS(532), - [anon_sym_PLUS] = ACTIONS(532), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_STAR] = ACTIONS(532), - [anon_sym_19] = ACTIONS(532), - [anon_sym_PERCENT] = ACTIONS(532), - [anon_sym_20] = ACTIONS(532), - [anon_sym_modulus] = ACTIONS(532), - [anon_sym_21] = ACTIONS(532), - [anon_sym_power] = ACTIONS(532), - [anon_sym_22] = ACTIONS(532), - [anon_sym_logarithm] = ACTIONS(532), - [anon_sym_23] = ACTIONS(532), - [anon_sym_minimum] = ACTIONS(532), - [anon_sym_24] = ACTIONS(532), - [anon_sym_maximum] = ACTIONS(532), - [anon_sym_25] = ACTIONS(532), - [anon_sym_atangent] = ACTIONS(532), - [anon_sym_26] = ACTIONS(532), - [anon_sym_length] = ACTIONS(532), - [anon_sym_27] = ACTIONS(532), - [anon_sym_shape] = ACTIONS(532), - [anon_sym_28] = ACTIONS(532), - [anon_sym_range] = ACTIONS(532), - [anon_sym_29] = ACTIONS(532), - [anon_sym_first] = ACTIONS(532), - [anon_sym_30] = ACTIONS(532), - [anon_sym_reverse] = ACTIONS(532), - [anon_sym_31] = ACTIONS(532), - [anon_sym_deshape] = ACTIONS(532), - [anon_sym_32] = ACTIONS(532), - [anon_sym_bits] = ACTIONS(532), - [anon_sym_33] = ACTIONS(532), - [anon_sym_transpose] = ACTIONS(532), - [anon_sym_34] = ACTIONS(532), - [anon_sym_rise] = ACTIONS(532), - [anon_sym_35] = ACTIONS(532), - [anon_sym_fall] = ACTIONS(532), - [anon_sym_36] = ACTIONS(532), - [anon_sym_where] = ACTIONS(532), - [anon_sym_37] = ACTIONS(532), - [anon_sym_classify] = ACTIONS(532), - [anon_sym_38] = ACTIONS(532), - [anon_sym_deduplicate] = ACTIONS(532), - [anon_sym_39] = ACTIONS(532), - [anon_sym_box] = ACTIONS(532), - [anon_sym_40] = ACTIONS(532), - [anon_sym_unbox] = ACTIONS(532), - [anon_sym_41] = ACTIONS(532), - [anon_sym_match] = ACTIONS(532), - [anon_sym_42] = ACTIONS(532), - [anon_sym_couple] = ACTIONS(532), - [anon_sym_43] = ACTIONS(532), - [anon_sym_join] = ACTIONS(532), - [anon_sym_44] = ACTIONS(532), - [anon_sym_select] = ACTIONS(532), - [anon_sym_45] = ACTIONS(532), - [anon_sym_pick] = ACTIONS(532), - [anon_sym_46] = ACTIONS(532), - [anon_sym_reshape] = ACTIONS(532), - [anon_sym_47] = ACTIONS(532), - [anon_sym_take] = ACTIONS(532), - [anon_sym_48] = ACTIONS(532), - [anon_sym_drop] = ACTIONS(532), - [anon_sym_49] = ACTIONS(532), - [anon_sym_rotate] = ACTIONS(532), - [anon_sym_50] = ACTIONS(532), - [anon_sym_windows] = ACTIONS(532), - [anon_sym_51] = ACTIONS(532), - [anon_sym_keep] = ACTIONS(532), - [anon_sym_52] = ACTIONS(532), - [anon_sym_find] = ACTIONS(532), - [anon_sym_53] = ACTIONS(532), - [anon_sym_member] = ACTIONS(532), - [anon_sym_54] = ACTIONS(532), - [anon_sym_indexof] = ACTIONS(532), - [anon_sym_55] = ACTIONS(532), - [anon_sym_assert] = ACTIONS(532), - [anon_sym_56] = ACTIONS(532), - [anon_sym_wait] = ACTIONS(532), - [anon_sym_break] = ACTIONS(532), - [anon_sym_57] = ACTIONS(532), - [anon_sym_parse] = ACTIONS(532), - [anon_sym_random] = ACTIONS(532), - [anon_sym_58] = ACTIONS(532), - [anon_sym_gen] = ACTIONS(532), - [anon_sym_deal] = ACTIONS(532), - [anon_sym_tag] = ACTIONS(532), - [anon_sym_now] = ACTIONS(532), - [anon_sym_type] = ACTIONS(532), - [anon_sym_59] = ACTIONS(532), - [anon_sym_dump] = ACTIONS(532), - [anon_sym_regex] = ACTIONS(532), - [anon_sym_utf] = ACTIONS(532), - [anon_sym_rock] = ACTIONS(532), - [anon_sym_60] = ACTIONS(532), - [anon_sym_surface] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_deep] = ACTIONS(532), - [anon_sym_de] = ACTIONS(530), - [anon_sym_61] = ACTIONS(532), - [anon_sym_abyss] = ACTIONS(532), - [anon_sym_ab] = ACTIONS(530), - [anon_sym_62] = ACTIONS(532), - [anon_sym_seabed] = ACTIONS(532), - [anon_sym_se] = ACTIONS(530), - [anon_sym_63] = ACTIONS(532), - [anon_sym_send] = ACTIONS(532), - [anon_sym_recv] = ACTIONS(532), - [anon_sym_tryrecv] = ACTIONS(532), - [anon_sym_reduce] = ACTIONS(532), - [anon_sym_SLASH] = ACTIONS(532), - [anon_sym_scan] = ACTIONS(532), - [anon_sym_BSLASH] = ACTIONS(532), - [anon_sym_each] = ACTIONS(532), - [anon_sym_64] = ACTIONS(532), - [anon_sym_rows] = ACTIONS(532), - [anon_sym_65] = ACTIONS(532), - [anon_sym_repeat] = ACTIONS(532), - [anon_sym_66] = ACTIONS(532), - [anon_sym_dip] = ACTIONS(532), - [anon_sym_di] = ACTIONS(530), - [anon_sym_67] = ACTIONS(532), - [anon_sym_gap] = ACTIONS(532), - [anon_sym_ga] = ACTIONS(530), - [anon_sym_68] = ACTIONS(532), - [anon_sym_oust] = ACTIONS(532), - [anon_sym_69] = ACTIONS(532), - [anon_sym_invert] = ACTIONS(532), - [anon_sym_70] = ACTIONS(532), - [anon_sym_spawn] = ACTIONS(532), - [anon_sym_pack] = ACTIONS(532), - [anon_sym_71] = ACTIONS(532), - [anon_sym_tribute] = ACTIONS(532), - [anon_sym_72] = ACTIONS(532), - [anon_sym_fold] = ACTIONS(532), - [anon_sym_73] = ACTIONS(532), - [anon_sym_distribute] = ACTIONS(532), - [anon_sym_74] = ACTIONS(532), - [anon_sym_table] = ACTIONS(532), - [anon_sym_75] = ACTIONS(532), - [anon_sym_cross] = ACTIONS(532), - [anon_sym_76] = ACTIONS(532), - [anon_sym_group] = ACTIONS(532), - [anon_sym_77] = ACTIONS(532), - [anon_sym_partition] = ACTIONS(532), - [anon_sym_78] = ACTIONS(532), - [anon_sym_both] = ACTIONS(532), - [anon_sym_79] = ACTIONS(532), - [anon_sym_bracket] = ACTIONS(532), - [anon_sym_80] = ACTIONS(532), - [anon_sym_fork] = ACTIONS(532), - [anon_sym_81] = ACTIONS(532), - [anon_sym_under] = ACTIONS(532), - [anon_sym_82] = ACTIONS(532), - [anon_sym_level] = ACTIONS(532), - [anon_sym_83] = ACTIONS(532), - [anon_sym_fill] = ACTIONS(532), - [anon_sym_84] = ACTIONS(532), - [anon_sym_bind] = ACTIONS(532), - [anon_sym_SQUOTE] = ACTIONS(532), - [anon_sym_QMARK] = ACTIONS(532), - [anon_sym_try] = ACTIONS(530), - [anon_sym_85] = ACTIONS(532), - [anon_sym_combinate] = ACTIONS(532), - [anon_sym_86] = ACTIONS(532), - [anon_sym_87] = ACTIONS(532), - [anon_sym_88] = ACTIONS(532), - [anon_sym_89] = ACTIONS(532), - [anon_sym_90] = ACTIONS(532), - [anon_sym_91] = ACTIONS(532), - [anon_sym_92] = ACTIONS(532), - [anon_sym_93] = ACTIONS(532), + [aux_sym_number_token1] = ACTIONS(512), + [anon_sym_os] = ACTIONS(512), + [anon_sym_Family] = ACTIONS(512), + [anon_sym_Arch] = ACTIONS(512), + [anon_sym_ExeExt] = ACTIONS(512), + [anon_sym_PllExt] = ACTIONS(512), + [anon_sym_Sep] = ACTIONS(512), + [aux_sym_character_token1] = ACTIONS(514), + [sym_string] = ACTIONS(514), + [sym_multiLineString] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(514), + [sym_identifier] = ACTIONS(512), + [sym_identifier_deprecated] = ACTIONS(512), + [sym_system] = ACTIONS(514), + [sym_comment] = ACTIONS(512), + [sym_openParen] = ACTIONS(514), + [sym_openCurly] = ACTIONS(514), + [sym_closeCurly] = ACTIONS(514), + [sym_openBracket] = ACTIONS(514), + [sym_closeBracket] = ACTIONS(514), + [sym_leftArrow] = ACTIONS(514), + [anon_sym_CARET] = ACTIONS(514), + [anon_sym_eta] = ACTIONS(514), + [anon_sym_] = ACTIONS(512), + [anon_sym_pi] = ACTIONS(512), + [anon_sym_2] = ACTIONS(512), + [anon_sym_tau] = ACTIONS(514), + [anon_sym_3] = ACTIONS(512), + [anon_sym_infinity] = ACTIONS(514), + [anon_sym_4] = ACTIONS(514), + [anon_sym_e] = ACTIONS(512), + [anon_sym_NaN] = ACTIONS(512), + [anon_sym_NumProcs] = ACTIONS(512), + [anon_sym_DOT] = ACTIONS(514), + [anon_sym_COMMA] = ACTIONS(514), + [anon_sym_5] = ACTIONS(514), + [anon_sym_SEMI] = ACTIONS(514), + [anon_sym_identity] = ACTIONS(514), + [anon_sym_id] = ACTIONS(512), + [anon_sym_6] = ACTIONS(514), + [anon_sym_not] = ACTIONS(514), + [anon_sym_7] = ACTIONS(514), + [anon_sym_sign] = ACTIONS(514), + [anon_sym_8] = ACTIONS(514), + [anon_sym_BQUOTE] = ACTIONS(514), + [anon_sym_9] = ACTIONS(514), + [anon_sym_absolutevalue] = ACTIONS(514), + [anon_sym_10] = ACTIONS(514), + [anon_sym_sqrt] = ACTIONS(514), + [anon_sym_11] = ACTIONS(514), + [anon_sym_sine] = ACTIONS(514), + [anon_sym_12] = ACTIONS(514), + [anon_sym_floor] = ACTIONS(514), + [anon_sym_13] = ACTIONS(514), + [anon_sym_ceiling] = ACTIONS(514), + [anon_sym_14] = ACTIONS(514), + [anon_sym_round] = ACTIONS(514), + [anon_sym_15] = ACTIONS(514), + [anon_sym_EQ] = ACTIONS(514), + [anon_sym_BANG_EQ] = ACTIONS(514), + [anon_sym_16] = ACTIONS(514), + [anon_sym_LT] = ACTIONS(512), + [anon_sym_LT_EQ] = ACTIONS(514), + [anon_sym_17] = ACTIONS(514), + [anon_sym_GT] = ACTIONS(512), + [anon_sym_GT_EQ] = ACTIONS(514), + [anon_sym_18] = ACTIONS(514), + [anon_sym_PLUS] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(514), + [anon_sym_STAR] = ACTIONS(514), + [anon_sym_19] = ACTIONS(514), + [anon_sym_PERCENT] = ACTIONS(514), + [anon_sym_20] = ACTIONS(514), + [anon_sym_modulus] = ACTIONS(514), + [anon_sym_21] = ACTIONS(514), + [anon_sym_power] = ACTIONS(514), + [anon_sym_22] = ACTIONS(514), + [anon_sym_logarithm] = ACTIONS(514), + [anon_sym_23] = ACTIONS(514), + [anon_sym_minimum] = ACTIONS(514), + [anon_sym_24] = ACTIONS(514), + [anon_sym_maximum] = ACTIONS(514), + [anon_sym_25] = ACTIONS(514), + [anon_sym_atangent] = ACTIONS(514), + [anon_sym_26] = ACTIONS(514), + [anon_sym_length] = ACTIONS(514), + [anon_sym_27] = ACTIONS(514), + [anon_sym_shape] = ACTIONS(514), + [anon_sym_28] = ACTIONS(514), + [anon_sym_range] = ACTIONS(514), + [anon_sym_29] = ACTIONS(514), + [anon_sym_first] = ACTIONS(514), + [anon_sym_30] = ACTIONS(514), + [anon_sym_reverse] = ACTIONS(514), + [anon_sym_31] = ACTIONS(514), + [anon_sym_deshape] = ACTIONS(514), + [anon_sym_32] = ACTIONS(514), + [anon_sym_bits] = ACTIONS(514), + [anon_sym_33] = ACTIONS(514), + [anon_sym_transpose] = ACTIONS(514), + [anon_sym_34] = ACTIONS(514), + [anon_sym_rise] = ACTIONS(514), + [anon_sym_35] = ACTIONS(514), + [anon_sym_fall] = ACTIONS(514), + [anon_sym_36] = ACTIONS(514), + [anon_sym_where] = ACTIONS(514), + [anon_sym_37] = ACTIONS(514), + [anon_sym_classify] = ACTIONS(514), + [anon_sym_38] = ACTIONS(514), + [anon_sym_deduplicate] = ACTIONS(514), + [anon_sym_39] = ACTIONS(514), + [anon_sym_box] = ACTIONS(514), + [anon_sym_40] = ACTIONS(514), + [anon_sym_unbox] = ACTIONS(514), + [anon_sym_41] = ACTIONS(514), + [anon_sym_match] = ACTIONS(514), + [anon_sym_42] = ACTIONS(514), + [anon_sym_couple] = ACTIONS(514), + [anon_sym_43] = ACTIONS(514), + [anon_sym_join] = ACTIONS(514), + [anon_sym_44] = ACTIONS(514), + [anon_sym_select] = ACTIONS(514), + [anon_sym_45] = ACTIONS(514), + [anon_sym_pick] = ACTIONS(514), + [anon_sym_46] = ACTIONS(514), + [anon_sym_reshape] = ACTIONS(514), + [anon_sym_47] = ACTIONS(514), + [anon_sym_take] = ACTIONS(514), + [anon_sym_48] = ACTIONS(514), + [anon_sym_drop] = ACTIONS(514), + [anon_sym_49] = ACTIONS(514), + [anon_sym_rotate] = ACTIONS(514), + [anon_sym_50] = ACTIONS(514), + [anon_sym_windows] = ACTIONS(514), + [anon_sym_51] = ACTIONS(514), + [anon_sym_keep] = ACTIONS(514), + [anon_sym_52] = ACTIONS(514), + [anon_sym_find] = ACTIONS(514), + [anon_sym_53] = ACTIONS(514), + [anon_sym_member] = ACTIONS(514), + [anon_sym_54] = ACTIONS(514), + [anon_sym_indexof] = ACTIONS(514), + [anon_sym_55] = ACTIONS(514), + [anon_sym_assert] = ACTIONS(514), + [anon_sym_56] = ACTIONS(514), + [anon_sym_wait] = ACTIONS(514), + [anon_sym_break] = ACTIONS(514), + [anon_sym_57] = ACTIONS(514), + [anon_sym_parse] = ACTIONS(514), + [anon_sym_random] = ACTIONS(514), + [anon_sym_58] = ACTIONS(514), + [anon_sym_gen] = ACTIONS(514), + [anon_sym_deal] = ACTIONS(514), + [anon_sym_tag] = ACTIONS(514), + [anon_sym_now] = ACTIONS(514), + [anon_sym_type] = ACTIONS(514), + [anon_sym_59] = ACTIONS(514), + [anon_sym_dump] = ACTIONS(514), + [anon_sym_regex] = ACTIONS(514), + [anon_sym_utf] = ACTIONS(514), + [anon_sym_rock] = ACTIONS(514), + [anon_sym_60] = ACTIONS(514), + [anon_sym_surface] = ACTIONS(514), + [anon_sym_TILDE] = ACTIONS(514), + [anon_sym_deep] = ACTIONS(514), + [anon_sym_de] = ACTIONS(512), + [anon_sym_61] = ACTIONS(514), + [anon_sym_abyss] = ACTIONS(514), + [anon_sym_ab] = ACTIONS(512), + [anon_sym_62] = ACTIONS(514), + [anon_sym_seabed] = ACTIONS(514), + [anon_sym_se] = ACTIONS(512), + [anon_sym_63] = ACTIONS(514), + [anon_sym_send] = ACTIONS(514), + [anon_sym_recv] = ACTIONS(514), + [anon_sym_tryrecv] = ACTIONS(514), + [anon_sym_reduce] = ACTIONS(514), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_scan] = ACTIONS(514), + [anon_sym_BSLASH] = ACTIONS(514), + [anon_sym_each] = ACTIONS(514), + [anon_sym_64] = ACTIONS(514), + [anon_sym_rows] = ACTIONS(514), + [anon_sym_65] = ACTIONS(514), + [anon_sym_repeat] = ACTIONS(514), + [anon_sym_66] = ACTIONS(514), + [anon_sym_dip] = ACTIONS(514), + [anon_sym_67] = ACTIONS(514), + [anon_sym_gap] = ACTIONS(514), + [anon_sym_68] = ACTIONS(514), + [anon_sym_69] = ACTIONS(514), + [anon_sym_invert] = ACTIONS(514), + [anon_sym_70] = ACTIONS(514), + [anon_sym_spawn] = ACTIONS(514), + [anon_sym_pack] = ACTIONS(514), + [anon_sym_71] = ACTIONS(514), + [anon_sym_tribute] = ACTIONS(514), + [anon_sym_72] = ACTIONS(514), + [anon_sym_reach] = ACTIONS(514), + [anon_sym_fold] = ACTIONS(514), + [anon_sym_73] = ACTIONS(514), + [anon_sym_distribute] = ACTIONS(514), + [anon_sym_74] = ACTIONS(514), + [anon_sym_table] = ACTIONS(514), + [anon_sym_75] = ACTIONS(514), + [anon_sym_cross] = ACTIONS(514), + [anon_sym_76] = ACTIONS(514), + [anon_sym_group] = ACTIONS(514), + [anon_sym_77] = ACTIONS(514), + [anon_sym_partition] = ACTIONS(514), + [anon_sym_78] = ACTIONS(514), + [anon_sym_both] = ACTIONS(514), + [anon_sym_79] = ACTIONS(514), + [anon_sym_bracket] = ACTIONS(514), + [anon_sym_80] = ACTIONS(514), + [anon_sym_fork] = ACTIONS(514), + [anon_sym_81] = ACTIONS(514), + [anon_sym_under] = ACTIONS(514), + [anon_sym_82] = ACTIONS(514), + [anon_sym_level] = ACTIONS(514), + [anon_sym_83] = ACTIONS(514), + [anon_sym_fill] = ACTIONS(514), + [anon_sym_84] = ACTIONS(514), + [anon_sym_bind] = ACTIONS(514), + [anon_sym_SQUOTE] = ACTIONS(514), + [anon_sym_QMARK] = ACTIONS(514), + [anon_sym_try] = ACTIONS(512), + [anon_sym_85] = ACTIONS(514), + [anon_sym_combinate] = ACTIONS(514), + [anon_sym_86] = ACTIONS(514), + [anon_sym_87] = ACTIONS(514), + [anon_sym_88] = ACTIONS(514), + [anon_sym_89] = ACTIONS(514), + [anon_sym_90] = ACTIONS(514), + [anon_sym_91] = ACTIONS(514), + [anon_sym_92] = ACTIONS(514), + [anon_sym_93] = ACTIONS(514), [sym__whitespace] = ACTIONS(5), - [sym__end_of_line] = ACTIONS(534), + [sym__end_of_line] = ACTIONS(516), }, [105] = { - [aux_sym_number_token1] = ACTIONS(536), - [anon_sym_os] = ACTIONS(536), - [anon_sym_Family] = ACTIONS(536), - [anon_sym_Arch] = ACTIONS(536), - [anon_sym_ExeExt] = ACTIONS(536), - [anon_sym_PllExt] = ACTIONS(536), - [anon_sym_Sep] = ACTIONS(536), - [aux_sym_character_token1] = ACTIONS(78), - [sym_string] = ACTIONS(78), - [sym_multiLineString] = ACTIONS(78), - [anon_sym_PIPE] = ACTIONS(78), - [sym_identifier] = ACTIONS(536), - [sym_identifier_deprecated] = ACTIONS(536), - [sym_system] = ACTIONS(78), - [sym_comment] = ACTIONS(536), - [sym_openParen] = ACTIONS(78), - [sym_openCurly] = ACTIONS(78), - [sym_closeCurly] = ACTIONS(78), - [sym_openBracket] = ACTIONS(78), - [sym_closeBracket] = ACTIONS(78), - [sym_leftArrow] = ACTIONS(78), - [anon_sym_CARET] = ACTIONS(78), - [anon_sym_eta] = ACTIONS(78), - [anon_sym_] = ACTIONS(536), - [anon_sym_pi] = ACTIONS(536), - [anon_sym_2] = ACTIONS(536), - [anon_sym_tau] = ACTIONS(78), - [anon_sym_3] = ACTIONS(536), - [anon_sym_infinity] = ACTIONS(78), - [anon_sym_4] = ACTIONS(78), - [anon_sym_e] = ACTIONS(536), - [anon_sym_NaN] = ACTIONS(536), - [anon_sym_NumProcs] = ACTIONS(536), - [anon_sym_DOT] = ACTIONS(78), - [anon_sym_COMMA] = ACTIONS(78), - [anon_sym_5] = ACTIONS(78), - [anon_sym_SEMI] = ACTIONS(78), - [anon_sym_identity] = ACTIONS(78), - [anon_sym_id] = ACTIONS(536), - [anon_sym_6] = ACTIONS(78), - [anon_sym_not] = ACTIONS(78), - [anon_sym_7] = ACTIONS(78), - [anon_sym_sign] = ACTIONS(78), - [anon_sym_8] = ACTIONS(78), - [anon_sym_BQUOTE] = ACTIONS(78), - [anon_sym_9] = ACTIONS(78), - [anon_sym_absolutevalue] = ACTIONS(78), - [anon_sym_10] = ACTIONS(78), - [anon_sym_sqrt] = ACTIONS(78), - [anon_sym_11] = ACTIONS(78), - [anon_sym_sine] = ACTIONS(78), - [anon_sym_12] = ACTIONS(78), - [anon_sym_floor] = ACTIONS(78), - [anon_sym_13] = ACTIONS(78), - [anon_sym_ceiling] = ACTIONS(78), - [anon_sym_14] = ACTIONS(78), - [anon_sym_round] = ACTIONS(78), - [anon_sym_15] = ACTIONS(78), - [anon_sym_EQ] = ACTIONS(78), - [anon_sym_BANG_EQ] = ACTIONS(78), - [anon_sym_16] = ACTIONS(78), - [anon_sym_LT] = ACTIONS(536), - [anon_sym_LT_EQ] = ACTIONS(78), - [anon_sym_17] = ACTIONS(78), - [anon_sym_GT] = ACTIONS(536), - [anon_sym_GT_EQ] = ACTIONS(78), - [anon_sym_18] = ACTIONS(78), - [anon_sym_PLUS] = ACTIONS(78), - [anon_sym_DASH] = ACTIONS(78), - [anon_sym_STAR] = ACTIONS(78), - [anon_sym_19] = ACTIONS(78), - [anon_sym_PERCENT] = ACTIONS(78), - [anon_sym_20] = ACTIONS(78), - [anon_sym_modulus] = ACTIONS(78), - [anon_sym_21] = ACTIONS(78), - [anon_sym_power] = ACTIONS(78), - [anon_sym_22] = ACTIONS(78), - [anon_sym_logarithm] = ACTIONS(78), - [anon_sym_23] = ACTIONS(78), - [anon_sym_minimum] = ACTIONS(78), - [anon_sym_24] = ACTIONS(78), - [anon_sym_maximum] = ACTIONS(78), - [anon_sym_25] = ACTIONS(78), - [anon_sym_atangent] = ACTIONS(78), - [anon_sym_26] = ACTIONS(78), - [anon_sym_length] = ACTIONS(78), - [anon_sym_27] = ACTIONS(78), - [anon_sym_shape] = ACTIONS(78), - [anon_sym_28] = ACTIONS(78), - [anon_sym_range] = ACTIONS(78), - [anon_sym_29] = ACTIONS(78), - [anon_sym_first] = ACTIONS(78), - [anon_sym_30] = ACTIONS(78), - [anon_sym_reverse] = ACTIONS(78), - [anon_sym_31] = ACTIONS(78), - [anon_sym_deshape] = ACTIONS(78), - [anon_sym_32] = ACTIONS(78), - [anon_sym_bits] = ACTIONS(78), - [anon_sym_33] = ACTIONS(78), - [anon_sym_transpose] = ACTIONS(78), - [anon_sym_34] = ACTIONS(78), - [anon_sym_rise] = ACTIONS(78), - [anon_sym_35] = ACTIONS(78), - [anon_sym_fall] = ACTIONS(78), - [anon_sym_36] = ACTIONS(78), - [anon_sym_where] = ACTIONS(78), - [anon_sym_37] = ACTIONS(78), - [anon_sym_classify] = ACTIONS(78), - [anon_sym_38] = ACTIONS(78), - [anon_sym_deduplicate] = ACTIONS(78), - [anon_sym_39] = ACTIONS(78), - [anon_sym_box] = ACTIONS(78), - [anon_sym_40] = ACTIONS(78), - [anon_sym_unbox] = ACTIONS(78), - [anon_sym_41] = ACTIONS(78), - [anon_sym_match] = ACTIONS(78), - [anon_sym_42] = ACTIONS(78), - [anon_sym_couple] = ACTIONS(78), - [anon_sym_43] = ACTIONS(78), - [anon_sym_join] = ACTIONS(78), - [anon_sym_44] = ACTIONS(78), - [anon_sym_select] = ACTIONS(78), - [anon_sym_45] = ACTIONS(78), - [anon_sym_pick] = ACTIONS(78), - [anon_sym_46] = ACTIONS(78), - [anon_sym_reshape] = ACTIONS(78), - [anon_sym_47] = ACTIONS(78), - [anon_sym_take] = ACTIONS(78), - [anon_sym_48] = ACTIONS(78), - [anon_sym_drop] = ACTIONS(78), - [anon_sym_49] = ACTIONS(78), - [anon_sym_rotate] = ACTIONS(78), - [anon_sym_50] = ACTIONS(78), - [anon_sym_windows] = ACTIONS(78), - [anon_sym_51] = ACTIONS(78), - [anon_sym_keep] = ACTIONS(78), - [anon_sym_52] = ACTIONS(78), - [anon_sym_find] = ACTIONS(78), - [anon_sym_53] = ACTIONS(78), - [anon_sym_member] = ACTIONS(78), - [anon_sym_54] = ACTIONS(78), - [anon_sym_indexof] = ACTIONS(78), - [anon_sym_55] = ACTIONS(78), - [anon_sym_assert] = ACTIONS(78), - [anon_sym_56] = ACTIONS(78), - [anon_sym_wait] = ACTIONS(78), - [anon_sym_break] = ACTIONS(78), - [anon_sym_57] = ACTIONS(78), - [anon_sym_parse] = ACTIONS(78), - [anon_sym_random] = ACTIONS(78), - [anon_sym_58] = ACTIONS(78), - [anon_sym_gen] = ACTIONS(78), - [anon_sym_deal] = ACTIONS(78), - [anon_sym_tag] = ACTIONS(78), - [anon_sym_now] = ACTIONS(78), - [anon_sym_type] = ACTIONS(78), - [anon_sym_59] = ACTIONS(78), - [anon_sym_dump] = ACTIONS(78), - [anon_sym_regex] = ACTIONS(78), - [anon_sym_utf] = ACTIONS(78), - [anon_sym_rock] = ACTIONS(78), - [anon_sym_60] = ACTIONS(78), - [anon_sym_surface] = ACTIONS(78), - [anon_sym_TILDE] = ACTIONS(78), - [anon_sym_deep] = ACTIONS(78), - [anon_sym_de] = ACTIONS(536), - [anon_sym_61] = ACTIONS(78), - [anon_sym_abyss] = ACTIONS(78), - [anon_sym_ab] = ACTIONS(536), - [anon_sym_62] = ACTIONS(78), - [anon_sym_seabed] = ACTIONS(78), - [anon_sym_se] = ACTIONS(536), - [anon_sym_63] = ACTIONS(78), - [anon_sym_send] = ACTIONS(78), - [anon_sym_recv] = ACTIONS(78), - [anon_sym_tryrecv] = ACTIONS(78), - [anon_sym_reduce] = ACTIONS(78), - [anon_sym_SLASH] = ACTIONS(78), - [anon_sym_scan] = ACTIONS(78), - [anon_sym_BSLASH] = ACTIONS(78), - [anon_sym_each] = ACTIONS(78), - [anon_sym_64] = ACTIONS(78), - [anon_sym_rows] = ACTIONS(78), - [anon_sym_65] = ACTIONS(78), - [anon_sym_repeat] = ACTIONS(78), - [anon_sym_66] = ACTIONS(78), - [anon_sym_dip] = ACTIONS(78), - [anon_sym_di] = ACTIONS(536), - [anon_sym_67] = ACTIONS(78), - [anon_sym_gap] = ACTIONS(78), - [anon_sym_ga] = ACTIONS(536), - [anon_sym_68] = ACTIONS(78), - [anon_sym_oust] = ACTIONS(78), - [anon_sym_69] = ACTIONS(78), - [anon_sym_invert] = ACTIONS(78), - [anon_sym_70] = ACTIONS(78), - [anon_sym_spawn] = ACTIONS(78), - [anon_sym_pack] = ACTIONS(78), - [anon_sym_71] = ACTIONS(78), - [anon_sym_tribute] = ACTIONS(78), - [anon_sym_72] = ACTIONS(78), - [anon_sym_fold] = ACTIONS(78), - [anon_sym_73] = ACTIONS(78), - [anon_sym_distribute] = ACTIONS(78), - [anon_sym_74] = ACTIONS(78), - [anon_sym_table] = ACTIONS(78), - [anon_sym_75] = ACTIONS(78), - [anon_sym_cross] = ACTIONS(78), - [anon_sym_76] = ACTIONS(78), - [anon_sym_group] = ACTIONS(78), - [anon_sym_77] = ACTIONS(78), - [anon_sym_partition] = ACTIONS(78), - [anon_sym_78] = ACTIONS(78), - [anon_sym_both] = ACTIONS(78), - [anon_sym_79] = ACTIONS(78), - [anon_sym_bracket] = ACTIONS(78), - [anon_sym_80] = ACTIONS(78), - [anon_sym_fork] = ACTIONS(78), - [anon_sym_81] = ACTIONS(78), - [anon_sym_under] = ACTIONS(78), - [anon_sym_82] = ACTIONS(78), - [anon_sym_level] = ACTIONS(78), - [anon_sym_83] = ACTIONS(78), - [anon_sym_fill] = ACTIONS(78), - [anon_sym_84] = ACTIONS(78), - [anon_sym_bind] = ACTIONS(78), - [anon_sym_SQUOTE] = ACTIONS(78), - [anon_sym_QMARK] = ACTIONS(78), - [anon_sym_try] = ACTIONS(536), - [anon_sym_85] = ACTIONS(78), - [anon_sym_combinate] = ACTIONS(78), - [anon_sym_86] = ACTIONS(78), - [anon_sym_87] = ACTIONS(78), - [anon_sym_88] = ACTIONS(78), - [anon_sym_89] = ACTIONS(78), - [anon_sym_90] = ACTIONS(78), - [anon_sym_91] = ACTIONS(78), - [anon_sym_92] = ACTIONS(78), - [anon_sym_93] = ACTIONS(78), + [aux_sym_number_token1] = ACTIONS(518), + [anon_sym_os] = ACTIONS(518), + [anon_sym_Family] = ACTIONS(518), + [anon_sym_Arch] = ACTIONS(518), + [anon_sym_ExeExt] = ACTIONS(518), + [anon_sym_PllExt] = ACTIONS(518), + [anon_sym_Sep] = ACTIONS(518), + [aux_sym_character_token1] = ACTIONS(76), + [sym_string] = ACTIONS(76), + [sym_multiLineString] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(76), + [sym_identifier] = ACTIONS(518), + [sym_identifier_deprecated] = ACTIONS(518), + [sym_system] = ACTIONS(76), + [sym_comment] = ACTIONS(518), + [sym_openParen] = ACTIONS(76), + [sym_openCurly] = ACTIONS(76), + [sym_closeCurly] = ACTIONS(76), + [sym_openBracket] = ACTIONS(76), + [sym_closeBracket] = ACTIONS(76), + [sym_leftArrow] = ACTIONS(76), + [anon_sym_CARET] = ACTIONS(76), + [anon_sym_eta] = ACTIONS(76), + [anon_sym_] = ACTIONS(518), + [anon_sym_pi] = ACTIONS(518), + [anon_sym_2] = ACTIONS(518), + [anon_sym_tau] = ACTIONS(76), + [anon_sym_3] = ACTIONS(518), + [anon_sym_infinity] = ACTIONS(76), + [anon_sym_4] = ACTIONS(76), + [anon_sym_e] = ACTIONS(518), + [anon_sym_NaN] = ACTIONS(518), + [anon_sym_NumProcs] = ACTIONS(518), + [anon_sym_DOT] = ACTIONS(76), + [anon_sym_COMMA] = ACTIONS(76), + [anon_sym_5] = ACTIONS(76), + [anon_sym_SEMI] = ACTIONS(76), + [anon_sym_identity] = ACTIONS(76), + [anon_sym_id] = ACTIONS(518), + [anon_sym_6] = ACTIONS(76), + [anon_sym_not] = ACTIONS(76), + [anon_sym_7] = ACTIONS(76), + [anon_sym_sign] = ACTIONS(76), + [anon_sym_8] = ACTIONS(76), + [anon_sym_BQUOTE] = ACTIONS(76), + [anon_sym_9] = ACTIONS(76), + [anon_sym_absolutevalue] = ACTIONS(76), + [anon_sym_10] = ACTIONS(76), + [anon_sym_sqrt] = ACTIONS(76), + [anon_sym_11] = ACTIONS(76), + [anon_sym_sine] = ACTIONS(76), + [anon_sym_12] = ACTIONS(76), + [anon_sym_floor] = ACTIONS(76), + [anon_sym_13] = ACTIONS(76), + [anon_sym_ceiling] = ACTIONS(76), + [anon_sym_14] = ACTIONS(76), + [anon_sym_round] = ACTIONS(76), + [anon_sym_15] = ACTIONS(76), + [anon_sym_EQ] = ACTIONS(76), + [anon_sym_BANG_EQ] = ACTIONS(76), + [anon_sym_16] = ACTIONS(76), + [anon_sym_LT] = ACTIONS(518), + [anon_sym_LT_EQ] = ACTIONS(76), + [anon_sym_17] = ACTIONS(76), + [anon_sym_GT] = ACTIONS(518), + [anon_sym_GT_EQ] = ACTIONS(76), + [anon_sym_18] = ACTIONS(76), + [anon_sym_PLUS] = ACTIONS(76), + [anon_sym_DASH] = ACTIONS(76), + [anon_sym_STAR] = ACTIONS(76), + [anon_sym_19] = ACTIONS(76), + [anon_sym_PERCENT] = ACTIONS(76), + [anon_sym_20] = ACTIONS(76), + [anon_sym_modulus] = ACTIONS(76), + [anon_sym_21] = ACTIONS(76), + [anon_sym_power] = ACTIONS(76), + [anon_sym_22] = ACTIONS(76), + [anon_sym_logarithm] = ACTIONS(76), + [anon_sym_23] = ACTIONS(76), + [anon_sym_minimum] = ACTIONS(76), + [anon_sym_24] = ACTIONS(76), + [anon_sym_maximum] = ACTIONS(76), + [anon_sym_25] = ACTIONS(76), + [anon_sym_atangent] = ACTIONS(76), + [anon_sym_26] = ACTIONS(76), + [anon_sym_length] = ACTIONS(76), + [anon_sym_27] = ACTIONS(76), + [anon_sym_shape] = ACTIONS(76), + [anon_sym_28] = ACTIONS(76), + [anon_sym_range] = ACTIONS(76), + [anon_sym_29] = ACTIONS(76), + [anon_sym_first] = ACTIONS(76), + [anon_sym_30] = ACTIONS(76), + [anon_sym_reverse] = ACTIONS(76), + [anon_sym_31] = ACTIONS(76), + [anon_sym_deshape] = ACTIONS(76), + [anon_sym_32] = ACTIONS(76), + [anon_sym_bits] = ACTIONS(76), + [anon_sym_33] = ACTIONS(76), + [anon_sym_transpose] = ACTIONS(76), + [anon_sym_34] = ACTIONS(76), + [anon_sym_rise] = ACTIONS(76), + [anon_sym_35] = ACTIONS(76), + [anon_sym_fall] = ACTIONS(76), + [anon_sym_36] = ACTIONS(76), + [anon_sym_where] = ACTIONS(76), + [anon_sym_37] = ACTIONS(76), + [anon_sym_classify] = ACTIONS(76), + [anon_sym_38] = ACTIONS(76), + [anon_sym_deduplicate] = ACTIONS(76), + [anon_sym_39] = ACTIONS(76), + [anon_sym_box] = ACTIONS(76), + [anon_sym_40] = ACTIONS(76), + [anon_sym_unbox] = ACTIONS(76), + [anon_sym_41] = ACTIONS(76), + [anon_sym_match] = ACTIONS(76), + [anon_sym_42] = ACTIONS(76), + [anon_sym_couple] = ACTIONS(76), + [anon_sym_43] = ACTIONS(76), + [anon_sym_join] = ACTIONS(76), + [anon_sym_44] = ACTIONS(76), + [anon_sym_select] = ACTIONS(76), + [anon_sym_45] = ACTIONS(76), + [anon_sym_pick] = ACTIONS(76), + [anon_sym_46] = ACTIONS(76), + [anon_sym_reshape] = ACTIONS(76), + [anon_sym_47] = ACTIONS(76), + [anon_sym_take] = ACTIONS(76), + [anon_sym_48] = ACTIONS(76), + [anon_sym_drop] = ACTIONS(76), + [anon_sym_49] = ACTIONS(76), + [anon_sym_rotate] = ACTIONS(76), + [anon_sym_50] = ACTIONS(76), + [anon_sym_windows] = ACTIONS(76), + [anon_sym_51] = ACTIONS(76), + [anon_sym_keep] = ACTIONS(76), + [anon_sym_52] = ACTIONS(76), + [anon_sym_find] = ACTIONS(76), + [anon_sym_53] = ACTIONS(76), + [anon_sym_member] = ACTIONS(76), + [anon_sym_54] = ACTIONS(76), + [anon_sym_indexof] = ACTIONS(76), + [anon_sym_55] = ACTIONS(76), + [anon_sym_assert] = ACTIONS(76), + [anon_sym_56] = ACTIONS(76), + [anon_sym_wait] = ACTIONS(76), + [anon_sym_break] = ACTIONS(76), + [anon_sym_57] = ACTIONS(76), + [anon_sym_parse] = ACTIONS(76), + [anon_sym_random] = ACTIONS(76), + [anon_sym_58] = ACTIONS(76), + [anon_sym_gen] = ACTIONS(76), + [anon_sym_deal] = ACTIONS(76), + [anon_sym_tag] = ACTIONS(76), + [anon_sym_now] = ACTIONS(76), + [anon_sym_type] = ACTIONS(76), + [anon_sym_59] = ACTIONS(76), + [anon_sym_dump] = ACTIONS(76), + [anon_sym_regex] = ACTIONS(76), + [anon_sym_utf] = ACTIONS(76), + [anon_sym_rock] = ACTIONS(76), + [anon_sym_60] = ACTIONS(76), + [anon_sym_surface] = ACTIONS(76), + [anon_sym_TILDE] = ACTIONS(76), + [anon_sym_deep] = ACTIONS(76), + [anon_sym_de] = ACTIONS(518), + [anon_sym_61] = ACTIONS(76), + [anon_sym_abyss] = ACTIONS(76), + [anon_sym_ab] = ACTIONS(518), + [anon_sym_62] = ACTIONS(76), + [anon_sym_seabed] = ACTIONS(76), + [anon_sym_se] = ACTIONS(518), + [anon_sym_63] = ACTIONS(76), + [anon_sym_send] = ACTIONS(76), + [anon_sym_recv] = ACTIONS(76), + [anon_sym_tryrecv] = ACTIONS(76), + [anon_sym_reduce] = ACTIONS(76), + [anon_sym_SLASH] = ACTIONS(76), + [anon_sym_scan] = ACTIONS(76), + [anon_sym_BSLASH] = ACTIONS(76), + [anon_sym_each] = ACTIONS(76), + [anon_sym_64] = ACTIONS(76), + [anon_sym_rows] = ACTIONS(76), + [anon_sym_65] = ACTIONS(76), + [anon_sym_repeat] = ACTIONS(76), + [anon_sym_66] = ACTIONS(76), + [anon_sym_dip] = ACTIONS(76), + [anon_sym_67] = ACTIONS(76), + [anon_sym_gap] = ACTIONS(76), + [anon_sym_68] = ACTIONS(76), + [anon_sym_69] = ACTIONS(76), + [anon_sym_invert] = ACTIONS(76), + [anon_sym_70] = ACTIONS(76), + [anon_sym_spawn] = ACTIONS(76), + [anon_sym_pack] = ACTIONS(76), + [anon_sym_71] = ACTIONS(76), + [anon_sym_tribute] = ACTIONS(76), + [anon_sym_72] = ACTIONS(76), + [anon_sym_reach] = ACTIONS(76), + [anon_sym_fold] = ACTIONS(76), + [anon_sym_73] = ACTIONS(76), + [anon_sym_distribute] = ACTIONS(76), + [anon_sym_74] = ACTIONS(76), + [anon_sym_table] = ACTIONS(76), + [anon_sym_75] = ACTIONS(76), + [anon_sym_cross] = ACTIONS(76), + [anon_sym_76] = ACTIONS(76), + [anon_sym_group] = ACTIONS(76), + [anon_sym_77] = ACTIONS(76), + [anon_sym_partition] = ACTIONS(76), + [anon_sym_78] = ACTIONS(76), + [anon_sym_both] = ACTIONS(76), + [anon_sym_79] = ACTIONS(76), + [anon_sym_bracket] = ACTIONS(76), + [anon_sym_80] = ACTIONS(76), + [anon_sym_fork] = ACTIONS(76), + [anon_sym_81] = ACTIONS(76), + [anon_sym_under] = ACTIONS(76), + [anon_sym_82] = ACTIONS(76), + [anon_sym_level] = ACTIONS(76), + [anon_sym_83] = ACTIONS(76), + [anon_sym_fill] = ACTIONS(76), + [anon_sym_84] = ACTIONS(76), + [anon_sym_bind] = ACTIONS(76), + [anon_sym_SQUOTE] = ACTIONS(76), + [anon_sym_QMARK] = ACTIONS(76), + [anon_sym_try] = ACTIONS(518), + [anon_sym_85] = ACTIONS(76), + [anon_sym_combinate] = ACTIONS(76), + [anon_sym_86] = ACTIONS(76), + [anon_sym_87] = ACTIONS(76), + [anon_sym_88] = ACTIONS(76), + [anon_sym_89] = ACTIONS(76), + [anon_sym_90] = ACTIONS(76), + [anon_sym_91] = ACTIONS(76), + [anon_sym_92] = ACTIONS(76), + [anon_sym_93] = ACTIONS(76), [sym__whitespace] = ACTIONS(5), [sym__end_of_line] = ACTIONS(5), }, [106] = { - [ts_builtin_sym_end] = ACTIONS(488), - [aux_sym_number_token1] = ACTIONS(486), - [anon_sym_os] = ACTIONS(486), - [anon_sym_Family] = ACTIONS(486), - [anon_sym_Arch] = ACTIONS(486), - [anon_sym_ExeExt] = ACTIONS(486), - [anon_sym_PllExt] = ACTIONS(486), - [anon_sym_Sep] = ACTIONS(486), - [aux_sym_character_token1] = ACTIONS(488), - [sym_string] = ACTIONS(488), - [sym_multiLineString] = ACTIONS(488), - [anon_sym_PIPE] = ACTIONS(488), - [sym_identifier] = ACTIONS(486), - [sym_identifier_deprecated] = ACTIONS(486), - [sym_system] = ACTIONS(488), - [sym_comment] = ACTIONS(486), - [sym_openParen] = ACTIONS(488), - [sym_openCurly] = ACTIONS(488), - [sym_openBracket] = ACTIONS(488), - [sym_underscore] = ACTIONS(488), - [sym_leftArrow] = ACTIONS(488), - [anon_sym_CARET] = ACTIONS(488), - [anon_sym_eta] = ACTIONS(488), - [anon_sym_] = ACTIONS(486), - [anon_sym_pi] = ACTIONS(486), - [anon_sym_2] = ACTIONS(486), - [anon_sym_tau] = ACTIONS(488), - [anon_sym_3] = ACTIONS(486), - [anon_sym_infinity] = ACTIONS(488), - [anon_sym_4] = ACTIONS(488), - [anon_sym_e] = ACTIONS(486), - [anon_sym_NaN] = ACTIONS(486), - [anon_sym_NumProcs] = ACTIONS(486), - [anon_sym_DOT] = ACTIONS(488), - [anon_sym_COMMA] = ACTIONS(488), - [anon_sym_5] = ACTIONS(488), - [anon_sym_SEMI] = ACTIONS(488), - [anon_sym_identity] = ACTIONS(488), - [anon_sym_id] = ACTIONS(486), - [anon_sym_6] = ACTIONS(488), - [anon_sym_not] = ACTIONS(488), - [anon_sym_7] = ACTIONS(488), - [anon_sym_sign] = ACTIONS(488), - [anon_sym_8] = ACTIONS(488), - [anon_sym_BQUOTE] = ACTIONS(488), - [anon_sym_9] = ACTIONS(488), - [anon_sym_absolutevalue] = ACTIONS(488), - [anon_sym_10] = ACTIONS(488), - [anon_sym_sqrt] = ACTIONS(488), - [anon_sym_11] = ACTIONS(488), - [anon_sym_sine] = ACTIONS(488), - [anon_sym_12] = ACTIONS(488), - [anon_sym_floor] = ACTIONS(488), - [anon_sym_13] = ACTIONS(488), - [anon_sym_ceiling] = ACTIONS(488), - [anon_sym_14] = ACTIONS(488), - [anon_sym_round] = ACTIONS(488), - [anon_sym_15] = ACTIONS(488), - [anon_sym_EQ] = ACTIONS(488), - [anon_sym_BANG_EQ] = ACTIONS(488), - [anon_sym_16] = ACTIONS(488), - [anon_sym_LT] = ACTIONS(486), - [anon_sym_LT_EQ] = ACTIONS(488), - [anon_sym_17] = ACTIONS(488), - [anon_sym_GT] = ACTIONS(486), - [anon_sym_GT_EQ] = ACTIONS(488), - [anon_sym_18] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(488), - [anon_sym_DASH] = ACTIONS(488), - [anon_sym_STAR] = ACTIONS(488), - [anon_sym_19] = ACTIONS(488), - [anon_sym_PERCENT] = ACTIONS(488), - [anon_sym_20] = ACTIONS(488), - [anon_sym_modulus] = ACTIONS(488), - [anon_sym_21] = ACTIONS(488), - [anon_sym_power] = ACTIONS(488), - [anon_sym_22] = ACTIONS(488), - [anon_sym_logarithm] = ACTIONS(488), - [anon_sym_23] = ACTIONS(488), - [anon_sym_minimum] = ACTIONS(488), - [anon_sym_24] = ACTIONS(488), - [anon_sym_maximum] = ACTIONS(488), - [anon_sym_25] = ACTIONS(488), - [anon_sym_atangent] = ACTIONS(488), - [anon_sym_26] = ACTIONS(488), - [anon_sym_length] = ACTIONS(488), - [anon_sym_27] = ACTIONS(488), - [anon_sym_shape] = ACTIONS(488), - [anon_sym_28] = ACTIONS(488), - [anon_sym_range] = ACTIONS(488), - [anon_sym_29] = ACTIONS(488), - [anon_sym_first] = ACTIONS(488), - [anon_sym_30] = ACTIONS(488), - [anon_sym_reverse] = ACTIONS(488), - [anon_sym_31] = ACTIONS(488), - [anon_sym_deshape] = ACTIONS(488), - [anon_sym_32] = ACTIONS(488), - [anon_sym_bits] = ACTIONS(488), - [anon_sym_33] = ACTIONS(488), - [anon_sym_transpose] = ACTIONS(488), - [anon_sym_34] = ACTIONS(488), - [anon_sym_rise] = ACTIONS(488), - [anon_sym_35] = ACTIONS(488), - [anon_sym_fall] = ACTIONS(488), - [anon_sym_36] = ACTIONS(488), - [anon_sym_where] = ACTIONS(488), - [anon_sym_37] = ACTIONS(488), - [anon_sym_classify] = ACTIONS(488), - [anon_sym_38] = ACTIONS(488), - [anon_sym_deduplicate] = ACTIONS(488), - [anon_sym_39] = ACTIONS(488), - [anon_sym_box] = ACTIONS(488), - [anon_sym_40] = ACTIONS(488), - [anon_sym_unbox] = ACTIONS(488), - [anon_sym_41] = ACTIONS(488), - [anon_sym_match] = ACTIONS(488), - [anon_sym_42] = ACTIONS(488), - [anon_sym_couple] = ACTIONS(488), - [anon_sym_43] = ACTIONS(488), - [anon_sym_join] = ACTIONS(488), - [anon_sym_44] = ACTIONS(488), - [anon_sym_select] = ACTIONS(488), - [anon_sym_45] = ACTIONS(488), - [anon_sym_pick] = ACTIONS(488), - [anon_sym_46] = ACTIONS(488), - [anon_sym_reshape] = ACTIONS(488), - [anon_sym_47] = ACTIONS(488), - [anon_sym_take] = ACTIONS(488), - [anon_sym_48] = ACTIONS(488), - [anon_sym_drop] = ACTIONS(488), - [anon_sym_49] = ACTIONS(488), - [anon_sym_rotate] = ACTIONS(488), - [anon_sym_50] = ACTIONS(488), - [anon_sym_windows] = ACTIONS(488), - [anon_sym_51] = ACTIONS(488), - [anon_sym_keep] = ACTIONS(488), - [anon_sym_52] = ACTIONS(488), - [anon_sym_find] = ACTIONS(488), - [anon_sym_53] = ACTIONS(488), - [anon_sym_member] = ACTIONS(488), - [anon_sym_54] = ACTIONS(488), - [anon_sym_indexof] = ACTIONS(488), - [anon_sym_55] = ACTIONS(488), - [anon_sym_assert] = ACTIONS(488), - [anon_sym_56] = ACTIONS(488), - [anon_sym_wait] = ACTIONS(488), - [anon_sym_break] = ACTIONS(488), - [anon_sym_57] = ACTIONS(488), - [anon_sym_parse] = ACTIONS(488), - [anon_sym_random] = ACTIONS(488), - [anon_sym_58] = ACTIONS(488), - [anon_sym_gen] = ACTIONS(488), - [anon_sym_deal] = ACTIONS(488), - [anon_sym_tag] = ACTIONS(488), - [anon_sym_now] = ACTIONS(488), - [anon_sym_type] = ACTIONS(488), - [anon_sym_59] = ACTIONS(488), - [anon_sym_dump] = ACTIONS(488), - [anon_sym_regex] = ACTIONS(488), - [anon_sym_utf] = ACTIONS(488), - [anon_sym_rock] = ACTIONS(488), - [anon_sym_60] = ACTIONS(488), - [anon_sym_surface] = ACTIONS(488), - [anon_sym_TILDE] = ACTIONS(488), - [anon_sym_deep] = ACTIONS(488), - [anon_sym_de] = ACTIONS(486), - [anon_sym_61] = ACTIONS(488), - [anon_sym_abyss] = ACTIONS(488), - [anon_sym_ab] = ACTIONS(486), - [anon_sym_62] = ACTIONS(488), - [anon_sym_seabed] = ACTIONS(488), - [anon_sym_se] = ACTIONS(486), - [anon_sym_63] = ACTIONS(488), - [anon_sym_send] = ACTIONS(488), - [anon_sym_recv] = ACTIONS(488), - [anon_sym_tryrecv] = ACTIONS(488), - [anon_sym_reduce] = ACTIONS(488), - [anon_sym_SLASH] = ACTIONS(488), - [anon_sym_scan] = ACTIONS(488), - [anon_sym_BSLASH] = ACTIONS(488), - [anon_sym_each] = ACTIONS(488), - [anon_sym_64] = ACTIONS(488), - [anon_sym_rows] = ACTIONS(488), - [anon_sym_65] = ACTIONS(488), - [anon_sym_repeat] = ACTIONS(488), - [anon_sym_66] = ACTIONS(488), - [anon_sym_dip] = ACTIONS(488), - [anon_sym_di] = ACTIONS(486), - [anon_sym_67] = ACTIONS(488), - [anon_sym_gap] = ACTIONS(488), - [anon_sym_ga] = ACTIONS(486), - [anon_sym_68] = ACTIONS(488), - [anon_sym_oust] = ACTIONS(488), - [anon_sym_69] = ACTIONS(488), - [anon_sym_invert] = ACTIONS(488), - [anon_sym_70] = ACTIONS(488), - [anon_sym_spawn] = ACTIONS(488), - [anon_sym_pack] = ACTIONS(488), - [anon_sym_71] = ACTIONS(488), - [anon_sym_tribute] = ACTIONS(488), - [anon_sym_72] = ACTIONS(488), - [anon_sym_fold] = ACTIONS(488), - [anon_sym_73] = ACTIONS(488), - [anon_sym_distribute] = ACTIONS(488), - [anon_sym_74] = ACTIONS(488), - [anon_sym_table] = ACTIONS(488), - [anon_sym_75] = ACTIONS(488), - [anon_sym_cross] = ACTIONS(488), - [anon_sym_76] = ACTIONS(488), - [anon_sym_group] = ACTIONS(488), - [anon_sym_77] = ACTIONS(488), - [anon_sym_partition] = ACTIONS(488), - [anon_sym_78] = ACTIONS(488), - [anon_sym_both] = ACTIONS(488), - [anon_sym_79] = ACTIONS(488), - [anon_sym_bracket] = ACTIONS(488), - [anon_sym_80] = ACTIONS(488), - [anon_sym_fork] = ACTIONS(488), - [anon_sym_81] = ACTIONS(488), - [anon_sym_under] = ACTIONS(488), - [anon_sym_82] = ACTIONS(488), - [anon_sym_level] = ACTIONS(488), - [anon_sym_83] = ACTIONS(488), - [anon_sym_fill] = ACTIONS(488), - [anon_sym_84] = ACTIONS(488), - [anon_sym_bind] = ACTIONS(488), - [anon_sym_SQUOTE] = ACTIONS(488), - [anon_sym_QMARK] = ACTIONS(488), - [anon_sym_try] = ACTIONS(486), - [anon_sym_85] = ACTIONS(488), - [anon_sym_combinate] = ACTIONS(488), - [anon_sym_86] = ACTIONS(488), - [anon_sym_87] = ACTIONS(488), - [anon_sym_88] = ACTIONS(488), - [anon_sym_89] = ACTIONS(488), - [anon_sym_90] = ACTIONS(488), - [anon_sym_91] = ACTIONS(488), - [anon_sym_92] = ACTIONS(488), - [anon_sym_93] = ACTIONS(488), + [ts_builtin_sym_end] = ACTIONS(470), + [aux_sym_number_token1] = ACTIONS(468), + [anon_sym_os] = ACTIONS(468), + [anon_sym_Family] = ACTIONS(468), + [anon_sym_Arch] = ACTIONS(468), + [anon_sym_ExeExt] = ACTIONS(468), + [anon_sym_PllExt] = ACTIONS(468), + [anon_sym_Sep] = ACTIONS(468), + [aux_sym_character_token1] = ACTIONS(470), + [sym_string] = ACTIONS(470), + [sym_multiLineString] = ACTIONS(470), + [anon_sym_PIPE] = ACTIONS(470), + [sym_identifier] = ACTIONS(468), + [sym_identifier_deprecated] = ACTIONS(468), + [sym_system] = ACTIONS(470), + [sym_comment] = ACTIONS(468), + [sym_openParen] = ACTIONS(470), + [sym_openCurly] = ACTIONS(470), + [sym_openBracket] = ACTIONS(470), + [sym_underscore] = ACTIONS(470), + [sym_leftArrow] = ACTIONS(470), + [anon_sym_CARET] = ACTIONS(470), + [anon_sym_eta] = ACTIONS(470), + [anon_sym_] = ACTIONS(468), + [anon_sym_pi] = ACTIONS(468), + [anon_sym_2] = ACTIONS(468), + [anon_sym_tau] = ACTIONS(470), + [anon_sym_3] = ACTIONS(468), + [anon_sym_infinity] = ACTIONS(470), + [anon_sym_4] = ACTIONS(470), + [anon_sym_e] = ACTIONS(468), + [anon_sym_NaN] = ACTIONS(468), + [anon_sym_NumProcs] = ACTIONS(468), + [anon_sym_DOT] = ACTIONS(470), + [anon_sym_COMMA] = ACTIONS(470), + [anon_sym_5] = ACTIONS(470), + [anon_sym_SEMI] = ACTIONS(470), + [anon_sym_identity] = ACTIONS(470), + [anon_sym_id] = ACTIONS(468), + [anon_sym_6] = ACTIONS(470), + [anon_sym_not] = ACTIONS(470), + [anon_sym_7] = ACTIONS(470), + [anon_sym_sign] = ACTIONS(470), + [anon_sym_8] = ACTIONS(470), + [anon_sym_BQUOTE] = ACTIONS(470), + [anon_sym_9] = ACTIONS(470), + [anon_sym_absolutevalue] = ACTIONS(470), + [anon_sym_10] = ACTIONS(470), + [anon_sym_sqrt] = ACTIONS(470), + [anon_sym_11] = ACTIONS(470), + [anon_sym_sine] = ACTIONS(470), + [anon_sym_12] = ACTIONS(470), + [anon_sym_floor] = ACTIONS(470), + [anon_sym_13] = ACTIONS(470), + [anon_sym_ceiling] = ACTIONS(470), + [anon_sym_14] = ACTIONS(470), + [anon_sym_round] = ACTIONS(470), + [anon_sym_15] = ACTIONS(470), + [anon_sym_EQ] = ACTIONS(470), + [anon_sym_BANG_EQ] = ACTIONS(470), + [anon_sym_16] = ACTIONS(470), + [anon_sym_LT] = ACTIONS(468), + [anon_sym_LT_EQ] = ACTIONS(470), + [anon_sym_17] = ACTIONS(470), + [anon_sym_GT] = ACTIONS(468), + [anon_sym_GT_EQ] = ACTIONS(470), + [anon_sym_18] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(470), + [anon_sym_DASH] = ACTIONS(470), + [anon_sym_STAR] = ACTIONS(470), + [anon_sym_19] = ACTIONS(470), + [anon_sym_PERCENT] = ACTIONS(470), + [anon_sym_20] = ACTIONS(470), + [anon_sym_modulus] = ACTIONS(470), + [anon_sym_21] = ACTIONS(470), + [anon_sym_power] = ACTIONS(470), + [anon_sym_22] = ACTIONS(470), + [anon_sym_logarithm] = ACTIONS(470), + [anon_sym_23] = ACTIONS(470), + [anon_sym_minimum] = ACTIONS(470), + [anon_sym_24] = ACTIONS(470), + [anon_sym_maximum] = ACTIONS(470), + [anon_sym_25] = ACTIONS(470), + [anon_sym_atangent] = ACTIONS(470), + [anon_sym_26] = ACTIONS(470), + [anon_sym_length] = ACTIONS(470), + [anon_sym_27] = ACTIONS(470), + [anon_sym_shape] = ACTIONS(470), + [anon_sym_28] = ACTIONS(470), + [anon_sym_range] = ACTIONS(470), + [anon_sym_29] = ACTIONS(470), + [anon_sym_first] = ACTIONS(470), + [anon_sym_30] = ACTIONS(470), + [anon_sym_reverse] = ACTIONS(470), + [anon_sym_31] = ACTIONS(470), + [anon_sym_deshape] = ACTIONS(470), + [anon_sym_32] = ACTIONS(470), + [anon_sym_bits] = ACTIONS(470), + [anon_sym_33] = ACTIONS(470), + [anon_sym_transpose] = ACTIONS(470), + [anon_sym_34] = ACTIONS(470), + [anon_sym_rise] = ACTIONS(470), + [anon_sym_35] = ACTIONS(470), + [anon_sym_fall] = ACTIONS(470), + [anon_sym_36] = ACTIONS(470), + [anon_sym_where] = ACTIONS(470), + [anon_sym_37] = ACTIONS(470), + [anon_sym_classify] = ACTIONS(470), + [anon_sym_38] = ACTIONS(470), + [anon_sym_deduplicate] = ACTIONS(470), + [anon_sym_39] = ACTIONS(470), + [anon_sym_box] = ACTIONS(470), + [anon_sym_40] = ACTIONS(470), + [anon_sym_unbox] = ACTIONS(470), + [anon_sym_41] = ACTIONS(470), + [anon_sym_match] = ACTIONS(470), + [anon_sym_42] = ACTIONS(470), + [anon_sym_couple] = ACTIONS(470), + [anon_sym_43] = ACTIONS(470), + [anon_sym_join] = ACTIONS(470), + [anon_sym_44] = ACTIONS(470), + [anon_sym_select] = ACTIONS(470), + [anon_sym_45] = ACTIONS(470), + [anon_sym_pick] = ACTIONS(470), + [anon_sym_46] = ACTIONS(470), + [anon_sym_reshape] = ACTIONS(470), + [anon_sym_47] = ACTIONS(470), + [anon_sym_take] = ACTIONS(470), + [anon_sym_48] = ACTIONS(470), + [anon_sym_drop] = ACTIONS(470), + [anon_sym_49] = ACTIONS(470), + [anon_sym_rotate] = ACTIONS(470), + [anon_sym_50] = ACTIONS(470), + [anon_sym_windows] = ACTIONS(470), + [anon_sym_51] = ACTIONS(470), + [anon_sym_keep] = ACTIONS(470), + [anon_sym_52] = ACTIONS(470), + [anon_sym_find] = ACTIONS(470), + [anon_sym_53] = ACTIONS(470), + [anon_sym_member] = ACTIONS(470), + [anon_sym_54] = ACTIONS(470), + [anon_sym_indexof] = ACTIONS(470), + [anon_sym_55] = ACTIONS(470), + [anon_sym_assert] = ACTIONS(470), + [anon_sym_56] = ACTIONS(470), + [anon_sym_wait] = ACTIONS(470), + [anon_sym_break] = ACTIONS(470), + [anon_sym_57] = ACTIONS(470), + [anon_sym_parse] = ACTIONS(470), + [anon_sym_random] = ACTIONS(470), + [anon_sym_58] = ACTIONS(470), + [anon_sym_gen] = ACTIONS(470), + [anon_sym_deal] = ACTIONS(470), + [anon_sym_tag] = ACTIONS(470), + [anon_sym_now] = ACTIONS(470), + [anon_sym_type] = ACTIONS(470), + [anon_sym_59] = ACTIONS(470), + [anon_sym_dump] = ACTIONS(470), + [anon_sym_regex] = ACTIONS(470), + [anon_sym_utf] = ACTIONS(470), + [anon_sym_rock] = ACTIONS(470), + [anon_sym_60] = ACTIONS(470), + [anon_sym_surface] = ACTIONS(470), + [anon_sym_TILDE] = ACTIONS(470), + [anon_sym_deep] = ACTIONS(470), + [anon_sym_de] = ACTIONS(468), + [anon_sym_61] = ACTIONS(470), + [anon_sym_abyss] = ACTIONS(470), + [anon_sym_ab] = ACTIONS(468), + [anon_sym_62] = ACTIONS(470), + [anon_sym_seabed] = ACTIONS(470), + [anon_sym_se] = ACTIONS(468), + [anon_sym_63] = ACTIONS(470), + [anon_sym_send] = ACTIONS(470), + [anon_sym_recv] = ACTIONS(470), + [anon_sym_tryrecv] = ACTIONS(470), + [anon_sym_reduce] = ACTIONS(470), + [anon_sym_SLASH] = ACTIONS(470), + [anon_sym_scan] = ACTIONS(470), + [anon_sym_BSLASH] = ACTIONS(470), + [anon_sym_each] = ACTIONS(470), + [anon_sym_64] = ACTIONS(470), + [anon_sym_rows] = ACTIONS(470), + [anon_sym_65] = ACTIONS(470), + [anon_sym_repeat] = ACTIONS(470), + [anon_sym_66] = ACTIONS(470), + [anon_sym_dip] = ACTIONS(470), + [anon_sym_67] = ACTIONS(470), + [anon_sym_gap] = ACTIONS(470), + [anon_sym_68] = ACTIONS(470), + [anon_sym_69] = ACTIONS(470), + [anon_sym_invert] = ACTIONS(470), + [anon_sym_70] = ACTIONS(470), + [anon_sym_spawn] = ACTIONS(470), + [anon_sym_pack] = ACTIONS(470), + [anon_sym_71] = ACTIONS(470), + [anon_sym_tribute] = ACTIONS(470), + [anon_sym_72] = ACTIONS(470), + [anon_sym_reach] = ACTIONS(470), + [anon_sym_fold] = ACTIONS(470), + [anon_sym_73] = ACTIONS(470), + [anon_sym_distribute] = ACTIONS(470), + [anon_sym_74] = ACTIONS(470), + [anon_sym_table] = ACTIONS(470), + [anon_sym_75] = ACTIONS(470), + [anon_sym_cross] = ACTIONS(470), + [anon_sym_76] = ACTIONS(470), + [anon_sym_group] = ACTIONS(470), + [anon_sym_77] = ACTIONS(470), + [anon_sym_partition] = ACTIONS(470), + [anon_sym_78] = ACTIONS(470), + [anon_sym_both] = ACTIONS(470), + [anon_sym_79] = ACTIONS(470), + [anon_sym_bracket] = ACTIONS(470), + [anon_sym_80] = ACTIONS(470), + [anon_sym_fork] = ACTIONS(470), + [anon_sym_81] = ACTIONS(470), + [anon_sym_under] = ACTIONS(470), + [anon_sym_82] = ACTIONS(470), + [anon_sym_level] = ACTIONS(470), + [anon_sym_83] = ACTIONS(470), + [anon_sym_fill] = ACTIONS(470), + [anon_sym_84] = ACTIONS(470), + [anon_sym_bind] = ACTIONS(470), + [anon_sym_SQUOTE] = ACTIONS(470), + [anon_sym_QMARK] = ACTIONS(470), + [anon_sym_try] = ACTIONS(468), + [anon_sym_85] = ACTIONS(470), + [anon_sym_combinate] = ACTIONS(470), + [anon_sym_86] = ACTIONS(470), + [anon_sym_87] = ACTIONS(470), + [anon_sym_88] = ACTIONS(470), + [anon_sym_89] = ACTIONS(470), + [anon_sym_90] = ACTIONS(470), + [anon_sym_91] = ACTIONS(470), + [anon_sym_92] = ACTIONS(470), + [anon_sym_93] = ACTIONS(470), [sym__whitespace] = ACTIONS(5), - [sym__end_of_line] = ACTIONS(488), + [sym__end_of_line] = ACTIONS(470), }, [107] = { - [ts_builtin_sym_end] = ACTIONS(460), - [aux_sym_number_token1] = ACTIONS(458), - [anon_sym_os] = ACTIONS(458), - [anon_sym_Family] = ACTIONS(458), - [anon_sym_Arch] = ACTIONS(458), - [anon_sym_ExeExt] = ACTIONS(458), - [anon_sym_PllExt] = ACTIONS(458), - [anon_sym_Sep] = ACTIONS(458), - [aux_sym_character_token1] = ACTIONS(460), - [sym_string] = ACTIONS(460), - [sym_multiLineString] = ACTIONS(460), - [anon_sym_PIPE] = ACTIONS(460), - [sym_identifier] = ACTIONS(458), - [sym_identifier_deprecated] = ACTIONS(458), - [sym_system] = ACTIONS(460), - [sym_comment] = ACTIONS(458), - [sym_openParen] = ACTIONS(460), - [sym_openCurly] = ACTIONS(460), - [sym_openBracket] = ACTIONS(460), - [sym_underscore] = ACTIONS(460), - [sym_leftArrow] = ACTIONS(460), - [anon_sym_CARET] = ACTIONS(460), - [anon_sym_eta] = ACTIONS(460), - [anon_sym_] = ACTIONS(458), - [anon_sym_pi] = ACTIONS(458), - [anon_sym_2] = ACTIONS(458), - [anon_sym_tau] = ACTIONS(460), - [anon_sym_3] = ACTIONS(458), - [anon_sym_infinity] = ACTIONS(460), - [anon_sym_4] = ACTIONS(460), - [anon_sym_e] = ACTIONS(458), - [anon_sym_NaN] = ACTIONS(458), - [anon_sym_NumProcs] = ACTIONS(458), - [anon_sym_DOT] = ACTIONS(460), - [anon_sym_COMMA] = ACTIONS(460), - [anon_sym_5] = ACTIONS(460), - [anon_sym_SEMI] = ACTIONS(460), - [anon_sym_identity] = ACTIONS(460), - [anon_sym_id] = ACTIONS(458), - [anon_sym_6] = ACTIONS(460), - [anon_sym_not] = ACTIONS(460), - [anon_sym_7] = ACTIONS(460), - [anon_sym_sign] = ACTIONS(460), - [anon_sym_8] = ACTIONS(460), - [anon_sym_BQUOTE] = ACTIONS(460), - [anon_sym_9] = ACTIONS(460), - [anon_sym_absolutevalue] = ACTIONS(460), - [anon_sym_10] = ACTIONS(460), - [anon_sym_sqrt] = ACTIONS(460), - [anon_sym_11] = ACTIONS(460), - [anon_sym_sine] = ACTIONS(460), - [anon_sym_12] = ACTIONS(460), - [anon_sym_floor] = ACTIONS(460), - [anon_sym_13] = ACTIONS(460), - [anon_sym_ceiling] = ACTIONS(460), - [anon_sym_14] = ACTIONS(460), - [anon_sym_round] = ACTIONS(460), - [anon_sym_15] = ACTIONS(460), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BANG_EQ] = ACTIONS(460), - [anon_sym_16] = ACTIONS(460), - [anon_sym_LT] = ACTIONS(458), - [anon_sym_LT_EQ] = ACTIONS(460), - [anon_sym_17] = ACTIONS(460), - [anon_sym_GT] = ACTIONS(458), - [anon_sym_GT_EQ] = ACTIONS(460), - [anon_sym_18] = ACTIONS(460), - [anon_sym_PLUS] = ACTIONS(460), - [anon_sym_DASH] = ACTIONS(460), - [anon_sym_STAR] = ACTIONS(460), - [anon_sym_19] = ACTIONS(460), - [anon_sym_PERCENT] = ACTIONS(460), - [anon_sym_20] = ACTIONS(460), - [anon_sym_modulus] = ACTIONS(460), - [anon_sym_21] = ACTIONS(460), - [anon_sym_power] = ACTIONS(460), - [anon_sym_22] = ACTIONS(460), - [anon_sym_logarithm] = ACTIONS(460), - [anon_sym_23] = ACTIONS(460), - [anon_sym_minimum] = ACTIONS(460), - [anon_sym_24] = ACTIONS(460), - [anon_sym_maximum] = ACTIONS(460), - [anon_sym_25] = ACTIONS(460), - [anon_sym_atangent] = ACTIONS(460), - [anon_sym_26] = ACTIONS(460), - [anon_sym_length] = ACTIONS(460), - [anon_sym_27] = ACTIONS(460), - [anon_sym_shape] = ACTIONS(460), - [anon_sym_28] = ACTIONS(460), - [anon_sym_range] = ACTIONS(460), - [anon_sym_29] = ACTIONS(460), - [anon_sym_first] = ACTIONS(460), - [anon_sym_30] = ACTIONS(460), - [anon_sym_reverse] = ACTIONS(460), - [anon_sym_31] = ACTIONS(460), - [anon_sym_deshape] = ACTIONS(460), - [anon_sym_32] = ACTIONS(460), - [anon_sym_bits] = ACTIONS(460), - [anon_sym_33] = ACTIONS(460), - [anon_sym_transpose] = ACTIONS(460), - [anon_sym_34] = ACTIONS(460), - [anon_sym_rise] = ACTIONS(460), - [anon_sym_35] = ACTIONS(460), - [anon_sym_fall] = ACTIONS(460), - [anon_sym_36] = ACTIONS(460), - [anon_sym_where] = ACTIONS(460), - [anon_sym_37] = ACTIONS(460), - [anon_sym_classify] = ACTIONS(460), - [anon_sym_38] = ACTIONS(460), - [anon_sym_deduplicate] = ACTIONS(460), - [anon_sym_39] = ACTIONS(460), - [anon_sym_box] = ACTIONS(460), - [anon_sym_40] = ACTIONS(460), - [anon_sym_unbox] = ACTIONS(460), - [anon_sym_41] = ACTIONS(460), - [anon_sym_match] = ACTIONS(460), - [anon_sym_42] = ACTIONS(460), - [anon_sym_couple] = ACTIONS(460), - [anon_sym_43] = ACTIONS(460), - [anon_sym_join] = ACTIONS(460), - [anon_sym_44] = ACTIONS(460), - [anon_sym_select] = ACTIONS(460), - [anon_sym_45] = ACTIONS(460), - [anon_sym_pick] = ACTIONS(460), - [anon_sym_46] = ACTIONS(460), - [anon_sym_reshape] = ACTIONS(460), - [anon_sym_47] = ACTIONS(460), - [anon_sym_take] = ACTIONS(460), - [anon_sym_48] = ACTIONS(460), - [anon_sym_drop] = ACTIONS(460), - [anon_sym_49] = ACTIONS(460), - [anon_sym_rotate] = ACTIONS(460), - [anon_sym_50] = ACTIONS(460), - [anon_sym_windows] = ACTIONS(460), - [anon_sym_51] = ACTIONS(460), - [anon_sym_keep] = ACTIONS(460), - [anon_sym_52] = ACTIONS(460), - [anon_sym_find] = ACTIONS(460), - [anon_sym_53] = ACTIONS(460), - [anon_sym_member] = ACTIONS(460), - [anon_sym_54] = ACTIONS(460), - [anon_sym_indexof] = ACTIONS(460), - [anon_sym_55] = ACTIONS(460), - [anon_sym_assert] = ACTIONS(460), - [anon_sym_56] = ACTIONS(460), - [anon_sym_wait] = ACTIONS(460), - [anon_sym_break] = ACTIONS(460), - [anon_sym_57] = ACTIONS(460), - [anon_sym_parse] = ACTIONS(460), - [anon_sym_random] = ACTIONS(460), - [anon_sym_58] = ACTIONS(460), - [anon_sym_gen] = ACTIONS(460), - [anon_sym_deal] = ACTIONS(460), - [anon_sym_tag] = ACTIONS(460), - [anon_sym_now] = ACTIONS(460), - [anon_sym_type] = ACTIONS(460), - [anon_sym_59] = ACTIONS(460), - [anon_sym_dump] = ACTIONS(460), - [anon_sym_regex] = ACTIONS(460), - [anon_sym_utf] = ACTIONS(460), - [anon_sym_rock] = ACTIONS(460), - [anon_sym_60] = ACTIONS(460), - [anon_sym_surface] = ACTIONS(460), - [anon_sym_TILDE] = ACTIONS(460), - [anon_sym_deep] = ACTIONS(460), - [anon_sym_de] = ACTIONS(458), - [anon_sym_61] = ACTIONS(460), - [anon_sym_abyss] = ACTIONS(460), - [anon_sym_ab] = ACTIONS(458), - [anon_sym_62] = ACTIONS(460), - [anon_sym_seabed] = ACTIONS(460), - [anon_sym_se] = ACTIONS(458), - [anon_sym_63] = ACTIONS(460), - [anon_sym_send] = ACTIONS(460), - [anon_sym_recv] = ACTIONS(460), - [anon_sym_tryrecv] = ACTIONS(460), - [anon_sym_reduce] = ACTIONS(460), - [anon_sym_SLASH] = ACTIONS(460), - [anon_sym_scan] = ACTIONS(460), - [anon_sym_BSLASH] = ACTIONS(460), - [anon_sym_each] = ACTIONS(460), - [anon_sym_64] = ACTIONS(460), - [anon_sym_rows] = ACTIONS(460), - [anon_sym_65] = ACTIONS(460), - [anon_sym_repeat] = ACTIONS(460), - [anon_sym_66] = ACTIONS(460), - [anon_sym_dip] = ACTIONS(460), - [anon_sym_di] = ACTIONS(458), - [anon_sym_67] = ACTIONS(460), - [anon_sym_gap] = ACTIONS(460), - [anon_sym_ga] = ACTIONS(458), - [anon_sym_68] = ACTIONS(460), - [anon_sym_oust] = ACTIONS(460), - [anon_sym_69] = ACTIONS(460), - [anon_sym_invert] = ACTIONS(460), - [anon_sym_70] = ACTIONS(460), - [anon_sym_spawn] = ACTIONS(460), - [anon_sym_pack] = ACTIONS(460), - [anon_sym_71] = ACTIONS(460), - [anon_sym_tribute] = ACTIONS(460), - [anon_sym_72] = ACTIONS(460), - [anon_sym_fold] = ACTIONS(460), - [anon_sym_73] = ACTIONS(460), - [anon_sym_distribute] = ACTIONS(460), - [anon_sym_74] = ACTIONS(460), - [anon_sym_table] = ACTIONS(460), - [anon_sym_75] = ACTIONS(460), - [anon_sym_cross] = ACTIONS(460), - [anon_sym_76] = ACTIONS(460), - [anon_sym_group] = ACTIONS(460), - [anon_sym_77] = ACTIONS(460), - [anon_sym_partition] = ACTIONS(460), - [anon_sym_78] = ACTIONS(460), - [anon_sym_both] = ACTIONS(460), - [anon_sym_79] = ACTIONS(460), - [anon_sym_bracket] = ACTIONS(460), - [anon_sym_80] = ACTIONS(460), - [anon_sym_fork] = ACTIONS(460), - [anon_sym_81] = ACTIONS(460), - [anon_sym_under] = ACTIONS(460), - [anon_sym_82] = ACTIONS(460), - [anon_sym_level] = ACTIONS(460), - [anon_sym_83] = ACTIONS(460), - [anon_sym_fill] = ACTIONS(460), - [anon_sym_84] = ACTIONS(460), - [anon_sym_bind] = ACTIONS(460), - [anon_sym_SQUOTE] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_try] = ACTIONS(458), - [anon_sym_85] = ACTIONS(460), - [anon_sym_combinate] = ACTIONS(460), - [anon_sym_86] = ACTIONS(460), - [anon_sym_87] = ACTIONS(460), - [anon_sym_88] = ACTIONS(460), - [anon_sym_89] = ACTIONS(460), - [anon_sym_90] = ACTIONS(460), - [anon_sym_91] = ACTIONS(460), - [anon_sym_92] = ACTIONS(460), - [anon_sym_93] = ACTIONS(460), + [ts_builtin_sym_end] = ACTIONS(442), + [aux_sym_number_token1] = ACTIONS(440), + [anon_sym_os] = ACTIONS(440), + [anon_sym_Family] = ACTIONS(440), + [anon_sym_Arch] = ACTIONS(440), + [anon_sym_ExeExt] = ACTIONS(440), + [anon_sym_PllExt] = ACTIONS(440), + [anon_sym_Sep] = ACTIONS(440), + [aux_sym_character_token1] = ACTIONS(442), + [sym_string] = ACTIONS(442), + [sym_multiLineString] = ACTIONS(442), + [anon_sym_PIPE] = ACTIONS(442), + [sym_identifier] = ACTIONS(440), + [sym_identifier_deprecated] = ACTIONS(440), + [sym_system] = ACTIONS(442), + [sym_comment] = ACTIONS(440), + [sym_openParen] = ACTIONS(442), + [sym_openCurly] = ACTIONS(442), + [sym_openBracket] = ACTIONS(442), + [sym_underscore] = ACTIONS(442), + [sym_leftArrow] = ACTIONS(442), + [anon_sym_CARET] = ACTIONS(442), + [anon_sym_eta] = ACTIONS(442), + [anon_sym_] = ACTIONS(440), + [anon_sym_pi] = ACTIONS(440), + [anon_sym_2] = ACTIONS(440), + [anon_sym_tau] = ACTIONS(442), + [anon_sym_3] = ACTIONS(440), + [anon_sym_infinity] = ACTIONS(442), + [anon_sym_4] = ACTIONS(442), + [anon_sym_e] = ACTIONS(440), + [anon_sym_NaN] = ACTIONS(440), + [anon_sym_NumProcs] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(442), + [anon_sym_COMMA] = ACTIONS(442), + [anon_sym_5] = ACTIONS(442), + [anon_sym_SEMI] = ACTIONS(442), + [anon_sym_identity] = ACTIONS(442), + [anon_sym_id] = ACTIONS(440), + [anon_sym_6] = ACTIONS(442), + [anon_sym_not] = ACTIONS(442), + [anon_sym_7] = ACTIONS(442), + [anon_sym_sign] = ACTIONS(442), + [anon_sym_8] = ACTIONS(442), + [anon_sym_BQUOTE] = ACTIONS(442), + [anon_sym_9] = ACTIONS(442), + [anon_sym_absolutevalue] = ACTIONS(442), + [anon_sym_10] = ACTIONS(442), + [anon_sym_sqrt] = ACTIONS(442), + [anon_sym_11] = ACTIONS(442), + [anon_sym_sine] = ACTIONS(442), + [anon_sym_12] = ACTIONS(442), + [anon_sym_floor] = ACTIONS(442), + [anon_sym_13] = ACTIONS(442), + [anon_sym_ceiling] = ACTIONS(442), + [anon_sym_14] = ACTIONS(442), + [anon_sym_round] = ACTIONS(442), + [anon_sym_15] = ACTIONS(442), + [anon_sym_EQ] = ACTIONS(442), + [anon_sym_BANG_EQ] = ACTIONS(442), + [anon_sym_16] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(440), + [anon_sym_LT_EQ] = ACTIONS(442), + [anon_sym_17] = ACTIONS(442), + [anon_sym_GT] = ACTIONS(440), + [anon_sym_GT_EQ] = ACTIONS(442), + [anon_sym_18] = ACTIONS(442), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_STAR] = ACTIONS(442), + [anon_sym_19] = ACTIONS(442), + [anon_sym_PERCENT] = ACTIONS(442), + [anon_sym_20] = ACTIONS(442), + [anon_sym_modulus] = ACTIONS(442), + [anon_sym_21] = ACTIONS(442), + [anon_sym_power] = ACTIONS(442), + [anon_sym_22] = ACTIONS(442), + [anon_sym_logarithm] = ACTIONS(442), + [anon_sym_23] = ACTIONS(442), + [anon_sym_minimum] = ACTIONS(442), + [anon_sym_24] = ACTIONS(442), + [anon_sym_maximum] = ACTIONS(442), + [anon_sym_25] = ACTIONS(442), + [anon_sym_atangent] = ACTIONS(442), + [anon_sym_26] = ACTIONS(442), + [anon_sym_length] = ACTIONS(442), + [anon_sym_27] = ACTIONS(442), + [anon_sym_shape] = ACTIONS(442), + [anon_sym_28] = ACTIONS(442), + [anon_sym_range] = ACTIONS(442), + [anon_sym_29] = ACTIONS(442), + [anon_sym_first] = ACTIONS(442), + [anon_sym_30] = ACTIONS(442), + [anon_sym_reverse] = ACTIONS(442), + [anon_sym_31] = ACTIONS(442), + [anon_sym_deshape] = ACTIONS(442), + [anon_sym_32] = ACTIONS(442), + [anon_sym_bits] = ACTIONS(442), + [anon_sym_33] = ACTIONS(442), + [anon_sym_transpose] = ACTIONS(442), + [anon_sym_34] = ACTIONS(442), + [anon_sym_rise] = ACTIONS(442), + [anon_sym_35] = ACTIONS(442), + [anon_sym_fall] = ACTIONS(442), + [anon_sym_36] = ACTIONS(442), + [anon_sym_where] = ACTIONS(442), + [anon_sym_37] = ACTIONS(442), + [anon_sym_classify] = ACTIONS(442), + [anon_sym_38] = ACTIONS(442), + [anon_sym_deduplicate] = ACTIONS(442), + [anon_sym_39] = ACTIONS(442), + [anon_sym_box] = ACTIONS(442), + [anon_sym_40] = ACTIONS(442), + [anon_sym_unbox] = ACTIONS(442), + [anon_sym_41] = ACTIONS(442), + [anon_sym_match] = ACTIONS(442), + [anon_sym_42] = ACTIONS(442), + [anon_sym_couple] = ACTIONS(442), + [anon_sym_43] = ACTIONS(442), + [anon_sym_join] = ACTIONS(442), + [anon_sym_44] = ACTIONS(442), + [anon_sym_select] = ACTIONS(442), + [anon_sym_45] = ACTIONS(442), + [anon_sym_pick] = ACTIONS(442), + [anon_sym_46] = ACTIONS(442), + [anon_sym_reshape] = ACTIONS(442), + [anon_sym_47] = ACTIONS(442), + [anon_sym_take] = ACTIONS(442), + [anon_sym_48] = ACTIONS(442), + [anon_sym_drop] = ACTIONS(442), + [anon_sym_49] = ACTIONS(442), + [anon_sym_rotate] = ACTIONS(442), + [anon_sym_50] = ACTIONS(442), + [anon_sym_windows] = ACTIONS(442), + [anon_sym_51] = ACTIONS(442), + [anon_sym_keep] = ACTIONS(442), + [anon_sym_52] = ACTIONS(442), + [anon_sym_find] = ACTIONS(442), + [anon_sym_53] = ACTIONS(442), + [anon_sym_member] = ACTIONS(442), + [anon_sym_54] = ACTIONS(442), + [anon_sym_indexof] = ACTIONS(442), + [anon_sym_55] = ACTIONS(442), + [anon_sym_assert] = ACTIONS(442), + [anon_sym_56] = ACTIONS(442), + [anon_sym_wait] = ACTIONS(442), + [anon_sym_break] = ACTIONS(442), + [anon_sym_57] = ACTIONS(442), + [anon_sym_parse] = ACTIONS(442), + [anon_sym_random] = ACTIONS(442), + [anon_sym_58] = ACTIONS(442), + [anon_sym_gen] = ACTIONS(442), + [anon_sym_deal] = ACTIONS(442), + [anon_sym_tag] = ACTIONS(442), + [anon_sym_now] = ACTIONS(442), + [anon_sym_type] = ACTIONS(442), + [anon_sym_59] = ACTIONS(442), + [anon_sym_dump] = ACTIONS(442), + [anon_sym_regex] = ACTIONS(442), + [anon_sym_utf] = ACTIONS(442), + [anon_sym_rock] = ACTIONS(442), + [anon_sym_60] = ACTIONS(442), + [anon_sym_surface] = ACTIONS(442), + [anon_sym_TILDE] = ACTIONS(442), + [anon_sym_deep] = ACTIONS(442), + [anon_sym_de] = ACTIONS(440), + [anon_sym_61] = ACTIONS(442), + [anon_sym_abyss] = ACTIONS(442), + [anon_sym_ab] = ACTIONS(440), + [anon_sym_62] = ACTIONS(442), + [anon_sym_seabed] = ACTIONS(442), + [anon_sym_se] = ACTIONS(440), + [anon_sym_63] = ACTIONS(442), + [anon_sym_send] = ACTIONS(442), + [anon_sym_recv] = ACTIONS(442), + [anon_sym_tryrecv] = ACTIONS(442), + [anon_sym_reduce] = ACTIONS(442), + [anon_sym_SLASH] = ACTIONS(442), + [anon_sym_scan] = ACTIONS(442), + [anon_sym_BSLASH] = ACTIONS(442), + [anon_sym_each] = ACTIONS(442), + [anon_sym_64] = ACTIONS(442), + [anon_sym_rows] = ACTIONS(442), + [anon_sym_65] = ACTIONS(442), + [anon_sym_repeat] = ACTIONS(442), + [anon_sym_66] = ACTIONS(442), + [anon_sym_dip] = ACTIONS(442), + [anon_sym_67] = ACTIONS(442), + [anon_sym_gap] = ACTIONS(442), + [anon_sym_68] = ACTIONS(442), + [anon_sym_69] = ACTIONS(442), + [anon_sym_invert] = ACTIONS(442), + [anon_sym_70] = ACTIONS(442), + [anon_sym_spawn] = ACTIONS(442), + [anon_sym_pack] = ACTIONS(442), + [anon_sym_71] = ACTIONS(442), + [anon_sym_tribute] = ACTIONS(442), + [anon_sym_72] = ACTIONS(442), + [anon_sym_reach] = ACTIONS(442), + [anon_sym_fold] = ACTIONS(442), + [anon_sym_73] = ACTIONS(442), + [anon_sym_distribute] = ACTIONS(442), + [anon_sym_74] = ACTIONS(442), + [anon_sym_table] = ACTIONS(442), + [anon_sym_75] = ACTIONS(442), + [anon_sym_cross] = ACTIONS(442), + [anon_sym_76] = ACTIONS(442), + [anon_sym_group] = ACTIONS(442), + [anon_sym_77] = ACTIONS(442), + [anon_sym_partition] = ACTIONS(442), + [anon_sym_78] = ACTIONS(442), + [anon_sym_both] = ACTIONS(442), + [anon_sym_79] = ACTIONS(442), + [anon_sym_bracket] = ACTIONS(442), + [anon_sym_80] = ACTIONS(442), + [anon_sym_fork] = ACTIONS(442), + [anon_sym_81] = ACTIONS(442), + [anon_sym_under] = ACTIONS(442), + [anon_sym_82] = ACTIONS(442), + [anon_sym_level] = ACTIONS(442), + [anon_sym_83] = ACTIONS(442), + [anon_sym_fill] = ACTIONS(442), + [anon_sym_84] = ACTIONS(442), + [anon_sym_bind] = ACTIONS(442), + [anon_sym_SQUOTE] = ACTIONS(442), + [anon_sym_QMARK] = ACTIONS(442), + [anon_sym_try] = ACTIONS(440), + [anon_sym_85] = ACTIONS(442), + [anon_sym_combinate] = ACTIONS(442), + [anon_sym_86] = ACTIONS(442), + [anon_sym_87] = ACTIONS(442), + [anon_sym_88] = ACTIONS(442), + [anon_sym_89] = ACTIONS(442), + [anon_sym_90] = ACTIONS(442), + [anon_sym_91] = ACTIONS(442), + [anon_sym_92] = ACTIONS(442), + [anon_sym_93] = ACTIONS(442), [sym__whitespace] = ACTIONS(5), - [sym__end_of_line] = ACTIONS(460), + [sym__end_of_line] = ACTIONS(442), }, [108] = { - [ts_builtin_sym_end] = ACTIONS(484), - [aux_sym_number_token1] = ACTIONS(482), - [anon_sym_os] = ACTIONS(482), - [anon_sym_Family] = ACTIONS(482), - [anon_sym_Arch] = ACTIONS(482), - [anon_sym_ExeExt] = ACTIONS(482), - [anon_sym_PllExt] = ACTIONS(482), - [anon_sym_Sep] = ACTIONS(482), - [aux_sym_character_token1] = ACTIONS(484), - [sym_string] = ACTIONS(484), - [sym_multiLineString] = ACTIONS(484), - [anon_sym_PIPE] = ACTIONS(484), - [sym_identifier] = ACTIONS(482), - [sym_identifier_deprecated] = ACTIONS(482), - [sym_system] = ACTIONS(484), - [sym_comment] = ACTIONS(482), - [sym_openParen] = ACTIONS(484), - [sym_openCurly] = ACTIONS(484), - [sym_openBracket] = ACTIONS(484), - [sym_underscore] = ACTIONS(484), - [sym_leftArrow] = ACTIONS(484), - [anon_sym_CARET] = ACTIONS(484), - [anon_sym_eta] = ACTIONS(484), - [anon_sym_] = ACTIONS(482), - [anon_sym_pi] = ACTIONS(482), - [anon_sym_2] = ACTIONS(482), - [anon_sym_tau] = ACTIONS(484), - [anon_sym_3] = ACTIONS(482), - [anon_sym_infinity] = ACTIONS(484), - [anon_sym_4] = ACTIONS(484), - [anon_sym_e] = ACTIONS(482), - [anon_sym_NaN] = ACTIONS(482), - [anon_sym_NumProcs] = ACTIONS(482), - [anon_sym_DOT] = ACTIONS(484), - [anon_sym_COMMA] = ACTIONS(484), - [anon_sym_5] = ACTIONS(484), - [anon_sym_SEMI] = ACTIONS(484), - [anon_sym_identity] = ACTIONS(484), - [anon_sym_id] = ACTIONS(482), - [anon_sym_6] = ACTIONS(484), - [anon_sym_not] = ACTIONS(484), - [anon_sym_7] = ACTIONS(484), - [anon_sym_sign] = ACTIONS(484), - [anon_sym_8] = ACTIONS(484), - [anon_sym_BQUOTE] = ACTIONS(484), - [anon_sym_9] = ACTIONS(484), - [anon_sym_absolutevalue] = ACTIONS(484), - [anon_sym_10] = ACTIONS(484), - [anon_sym_sqrt] = ACTIONS(484), - [anon_sym_11] = ACTIONS(484), - [anon_sym_sine] = ACTIONS(484), - [anon_sym_12] = ACTIONS(484), - [anon_sym_floor] = ACTIONS(484), - [anon_sym_13] = ACTIONS(484), - [anon_sym_ceiling] = ACTIONS(484), - [anon_sym_14] = ACTIONS(484), - [anon_sym_round] = ACTIONS(484), - [anon_sym_15] = ACTIONS(484), - [anon_sym_EQ] = ACTIONS(484), - [anon_sym_BANG_EQ] = ACTIONS(484), - [anon_sym_16] = ACTIONS(484), - [anon_sym_LT] = ACTIONS(482), - [anon_sym_LT_EQ] = ACTIONS(484), - [anon_sym_17] = ACTIONS(484), - [anon_sym_GT] = ACTIONS(482), - [anon_sym_GT_EQ] = ACTIONS(484), - [anon_sym_18] = ACTIONS(484), - [anon_sym_PLUS] = ACTIONS(484), - [anon_sym_DASH] = ACTIONS(484), - [anon_sym_STAR] = ACTIONS(484), - [anon_sym_19] = ACTIONS(484), - [anon_sym_PERCENT] = ACTIONS(484), - [anon_sym_20] = ACTIONS(484), - [anon_sym_modulus] = ACTIONS(484), - [anon_sym_21] = ACTIONS(484), - [anon_sym_power] = ACTIONS(484), - [anon_sym_22] = ACTIONS(484), - [anon_sym_logarithm] = ACTIONS(484), - [anon_sym_23] = ACTIONS(484), - [anon_sym_minimum] = ACTIONS(484), - [anon_sym_24] = ACTIONS(484), - [anon_sym_maximum] = ACTIONS(484), - [anon_sym_25] = ACTIONS(484), - [anon_sym_atangent] = ACTIONS(484), - [anon_sym_26] = ACTIONS(484), - [anon_sym_length] = ACTIONS(484), - [anon_sym_27] = ACTIONS(484), - [anon_sym_shape] = ACTIONS(484), - [anon_sym_28] = ACTIONS(484), - [anon_sym_range] = ACTIONS(484), - [anon_sym_29] = ACTIONS(484), - [anon_sym_first] = ACTIONS(484), - [anon_sym_30] = ACTIONS(484), - [anon_sym_reverse] = ACTIONS(484), - [anon_sym_31] = ACTIONS(484), - [anon_sym_deshape] = ACTIONS(484), - [anon_sym_32] = ACTIONS(484), - [anon_sym_bits] = ACTIONS(484), - [anon_sym_33] = ACTIONS(484), - [anon_sym_transpose] = ACTIONS(484), - [anon_sym_34] = ACTIONS(484), - [anon_sym_rise] = ACTIONS(484), - [anon_sym_35] = ACTIONS(484), - [anon_sym_fall] = ACTIONS(484), - [anon_sym_36] = ACTIONS(484), - [anon_sym_where] = ACTIONS(484), - [anon_sym_37] = ACTIONS(484), - [anon_sym_classify] = ACTIONS(484), - [anon_sym_38] = ACTIONS(484), - [anon_sym_deduplicate] = ACTIONS(484), - [anon_sym_39] = ACTIONS(484), - [anon_sym_box] = ACTIONS(484), - [anon_sym_40] = ACTIONS(484), - [anon_sym_unbox] = ACTIONS(484), - [anon_sym_41] = ACTIONS(484), - [anon_sym_match] = ACTIONS(484), - [anon_sym_42] = ACTIONS(484), - [anon_sym_couple] = ACTIONS(484), - [anon_sym_43] = ACTIONS(484), - [anon_sym_join] = ACTIONS(484), - [anon_sym_44] = ACTIONS(484), - [anon_sym_select] = ACTIONS(484), - [anon_sym_45] = ACTIONS(484), - [anon_sym_pick] = ACTIONS(484), - [anon_sym_46] = ACTIONS(484), - [anon_sym_reshape] = ACTIONS(484), - [anon_sym_47] = ACTIONS(484), - [anon_sym_take] = ACTIONS(484), - [anon_sym_48] = ACTIONS(484), - [anon_sym_drop] = ACTIONS(484), - [anon_sym_49] = ACTIONS(484), - [anon_sym_rotate] = ACTIONS(484), - [anon_sym_50] = ACTIONS(484), - [anon_sym_windows] = ACTIONS(484), - [anon_sym_51] = ACTIONS(484), - [anon_sym_keep] = ACTIONS(484), - [anon_sym_52] = ACTIONS(484), - [anon_sym_find] = ACTIONS(484), - [anon_sym_53] = ACTIONS(484), - [anon_sym_member] = ACTIONS(484), - [anon_sym_54] = ACTIONS(484), - [anon_sym_indexof] = ACTIONS(484), - [anon_sym_55] = ACTIONS(484), - [anon_sym_assert] = ACTIONS(484), - [anon_sym_56] = ACTIONS(484), - [anon_sym_wait] = ACTIONS(484), - [anon_sym_break] = ACTIONS(484), - [anon_sym_57] = ACTIONS(484), - [anon_sym_parse] = ACTIONS(484), - [anon_sym_random] = ACTIONS(484), - [anon_sym_58] = ACTIONS(484), - [anon_sym_gen] = ACTIONS(484), - [anon_sym_deal] = ACTIONS(484), - [anon_sym_tag] = ACTIONS(484), - [anon_sym_now] = ACTIONS(484), - [anon_sym_type] = ACTIONS(484), - [anon_sym_59] = ACTIONS(484), - [anon_sym_dump] = ACTIONS(484), - [anon_sym_regex] = ACTIONS(484), - [anon_sym_utf] = ACTIONS(484), - [anon_sym_rock] = ACTIONS(484), - [anon_sym_60] = ACTIONS(484), - [anon_sym_surface] = ACTIONS(484), - [anon_sym_TILDE] = ACTIONS(484), - [anon_sym_deep] = ACTIONS(484), - [anon_sym_de] = ACTIONS(482), - [anon_sym_61] = ACTIONS(484), - [anon_sym_abyss] = ACTIONS(484), - [anon_sym_ab] = ACTIONS(482), - [anon_sym_62] = ACTIONS(484), - [anon_sym_seabed] = ACTIONS(484), - [anon_sym_se] = ACTIONS(482), - [anon_sym_63] = ACTIONS(484), - [anon_sym_send] = ACTIONS(484), - [anon_sym_recv] = ACTIONS(484), - [anon_sym_tryrecv] = ACTIONS(484), - [anon_sym_reduce] = ACTIONS(484), - [anon_sym_SLASH] = ACTIONS(484), - [anon_sym_scan] = ACTIONS(484), - [anon_sym_BSLASH] = ACTIONS(484), - [anon_sym_each] = ACTIONS(484), - [anon_sym_64] = ACTIONS(484), - [anon_sym_rows] = ACTIONS(484), - [anon_sym_65] = ACTIONS(484), - [anon_sym_repeat] = ACTIONS(484), - [anon_sym_66] = ACTIONS(484), - [anon_sym_dip] = ACTIONS(484), - [anon_sym_di] = ACTIONS(482), - [anon_sym_67] = ACTIONS(484), - [anon_sym_gap] = ACTIONS(484), - [anon_sym_ga] = ACTIONS(482), - [anon_sym_68] = ACTIONS(484), - [anon_sym_oust] = ACTIONS(484), - [anon_sym_69] = ACTIONS(484), - [anon_sym_invert] = ACTIONS(484), - [anon_sym_70] = ACTIONS(484), - [anon_sym_spawn] = ACTIONS(484), - [anon_sym_pack] = ACTIONS(484), - [anon_sym_71] = ACTIONS(484), - [anon_sym_tribute] = ACTIONS(484), - [anon_sym_72] = ACTIONS(484), - [anon_sym_fold] = ACTIONS(484), - [anon_sym_73] = ACTIONS(484), - [anon_sym_distribute] = ACTIONS(484), - [anon_sym_74] = ACTIONS(484), - [anon_sym_table] = ACTIONS(484), - [anon_sym_75] = ACTIONS(484), - [anon_sym_cross] = ACTIONS(484), - [anon_sym_76] = ACTIONS(484), - [anon_sym_group] = ACTIONS(484), - [anon_sym_77] = ACTIONS(484), - [anon_sym_partition] = ACTIONS(484), - [anon_sym_78] = ACTIONS(484), - [anon_sym_both] = ACTIONS(484), - [anon_sym_79] = ACTIONS(484), - [anon_sym_bracket] = ACTIONS(484), - [anon_sym_80] = ACTIONS(484), - [anon_sym_fork] = ACTIONS(484), - [anon_sym_81] = ACTIONS(484), - [anon_sym_under] = ACTIONS(484), - [anon_sym_82] = ACTIONS(484), - [anon_sym_level] = ACTIONS(484), - [anon_sym_83] = ACTIONS(484), - [anon_sym_fill] = ACTIONS(484), - [anon_sym_84] = ACTIONS(484), - [anon_sym_bind] = ACTIONS(484), - [anon_sym_SQUOTE] = ACTIONS(484), - [anon_sym_QMARK] = ACTIONS(484), - [anon_sym_try] = ACTIONS(482), - [anon_sym_85] = ACTIONS(484), - [anon_sym_combinate] = ACTIONS(484), - [anon_sym_86] = ACTIONS(484), - [anon_sym_87] = ACTIONS(484), - [anon_sym_88] = ACTIONS(484), - [anon_sym_89] = ACTIONS(484), - [anon_sym_90] = ACTIONS(484), - [anon_sym_91] = ACTIONS(484), - [anon_sym_92] = ACTIONS(484), - [anon_sym_93] = ACTIONS(484), + [ts_builtin_sym_end] = ACTIONS(466), + [aux_sym_number_token1] = ACTIONS(464), + [anon_sym_os] = ACTIONS(464), + [anon_sym_Family] = ACTIONS(464), + [anon_sym_Arch] = ACTIONS(464), + [anon_sym_ExeExt] = ACTIONS(464), + [anon_sym_PllExt] = ACTIONS(464), + [anon_sym_Sep] = ACTIONS(464), + [aux_sym_character_token1] = ACTIONS(466), + [sym_string] = ACTIONS(466), + [sym_multiLineString] = ACTIONS(466), + [anon_sym_PIPE] = ACTIONS(466), + [sym_identifier] = ACTIONS(464), + [sym_identifier_deprecated] = ACTIONS(464), + [sym_system] = ACTIONS(466), + [sym_comment] = ACTIONS(464), + [sym_openParen] = ACTIONS(466), + [sym_openCurly] = ACTIONS(466), + [sym_openBracket] = ACTIONS(466), + [sym_underscore] = ACTIONS(466), + [sym_leftArrow] = ACTIONS(466), + [anon_sym_CARET] = ACTIONS(466), + [anon_sym_eta] = ACTIONS(466), + [anon_sym_] = ACTIONS(464), + [anon_sym_pi] = ACTIONS(464), + [anon_sym_2] = ACTIONS(464), + [anon_sym_tau] = ACTIONS(466), + [anon_sym_3] = ACTIONS(464), + [anon_sym_infinity] = ACTIONS(466), + [anon_sym_4] = ACTIONS(466), + [anon_sym_e] = ACTIONS(464), + [anon_sym_NaN] = ACTIONS(464), + [anon_sym_NumProcs] = ACTIONS(464), + [anon_sym_DOT] = ACTIONS(466), + [anon_sym_COMMA] = ACTIONS(466), + [anon_sym_5] = ACTIONS(466), + [anon_sym_SEMI] = ACTIONS(466), + [anon_sym_identity] = ACTIONS(466), + [anon_sym_id] = ACTIONS(464), + [anon_sym_6] = ACTIONS(466), + [anon_sym_not] = ACTIONS(466), + [anon_sym_7] = ACTIONS(466), + [anon_sym_sign] = ACTIONS(466), + [anon_sym_8] = ACTIONS(466), + [anon_sym_BQUOTE] = ACTIONS(466), + [anon_sym_9] = ACTIONS(466), + [anon_sym_absolutevalue] = ACTIONS(466), + [anon_sym_10] = ACTIONS(466), + [anon_sym_sqrt] = ACTIONS(466), + [anon_sym_11] = ACTIONS(466), + [anon_sym_sine] = ACTIONS(466), + [anon_sym_12] = ACTIONS(466), + [anon_sym_floor] = ACTIONS(466), + [anon_sym_13] = ACTIONS(466), + [anon_sym_ceiling] = ACTIONS(466), + [anon_sym_14] = ACTIONS(466), + [anon_sym_round] = ACTIONS(466), + [anon_sym_15] = ACTIONS(466), + [anon_sym_EQ] = ACTIONS(466), + [anon_sym_BANG_EQ] = ACTIONS(466), + [anon_sym_16] = ACTIONS(466), + [anon_sym_LT] = ACTIONS(464), + [anon_sym_LT_EQ] = ACTIONS(466), + [anon_sym_17] = ACTIONS(466), + [anon_sym_GT] = ACTIONS(464), + [anon_sym_GT_EQ] = ACTIONS(466), + [anon_sym_18] = ACTIONS(466), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(466), + [anon_sym_STAR] = ACTIONS(466), + [anon_sym_19] = ACTIONS(466), + [anon_sym_PERCENT] = ACTIONS(466), + [anon_sym_20] = ACTIONS(466), + [anon_sym_modulus] = ACTIONS(466), + [anon_sym_21] = ACTIONS(466), + [anon_sym_power] = ACTIONS(466), + [anon_sym_22] = ACTIONS(466), + [anon_sym_logarithm] = ACTIONS(466), + [anon_sym_23] = ACTIONS(466), + [anon_sym_minimum] = ACTIONS(466), + [anon_sym_24] = ACTIONS(466), + [anon_sym_maximum] = ACTIONS(466), + [anon_sym_25] = ACTIONS(466), + [anon_sym_atangent] = ACTIONS(466), + [anon_sym_26] = ACTIONS(466), + [anon_sym_length] = ACTIONS(466), + [anon_sym_27] = ACTIONS(466), + [anon_sym_shape] = ACTIONS(466), + [anon_sym_28] = ACTIONS(466), + [anon_sym_range] = ACTIONS(466), + [anon_sym_29] = ACTIONS(466), + [anon_sym_first] = ACTIONS(466), + [anon_sym_30] = ACTIONS(466), + [anon_sym_reverse] = ACTIONS(466), + [anon_sym_31] = ACTIONS(466), + [anon_sym_deshape] = ACTIONS(466), + [anon_sym_32] = ACTIONS(466), + [anon_sym_bits] = ACTIONS(466), + [anon_sym_33] = ACTIONS(466), + [anon_sym_transpose] = ACTIONS(466), + [anon_sym_34] = ACTIONS(466), + [anon_sym_rise] = ACTIONS(466), + [anon_sym_35] = ACTIONS(466), + [anon_sym_fall] = ACTIONS(466), + [anon_sym_36] = ACTIONS(466), + [anon_sym_where] = ACTIONS(466), + [anon_sym_37] = ACTIONS(466), + [anon_sym_classify] = ACTIONS(466), + [anon_sym_38] = ACTIONS(466), + [anon_sym_deduplicate] = ACTIONS(466), + [anon_sym_39] = ACTIONS(466), + [anon_sym_box] = ACTIONS(466), + [anon_sym_40] = ACTIONS(466), + [anon_sym_unbox] = ACTIONS(466), + [anon_sym_41] = ACTIONS(466), + [anon_sym_match] = ACTIONS(466), + [anon_sym_42] = ACTIONS(466), + [anon_sym_couple] = ACTIONS(466), + [anon_sym_43] = ACTIONS(466), + [anon_sym_join] = ACTIONS(466), + [anon_sym_44] = ACTIONS(466), + [anon_sym_select] = ACTIONS(466), + [anon_sym_45] = ACTIONS(466), + [anon_sym_pick] = ACTIONS(466), + [anon_sym_46] = ACTIONS(466), + [anon_sym_reshape] = ACTIONS(466), + [anon_sym_47] = ACTIONS(466), + [anon_sym_take] = ACTIONS(466), + [anon_sym_48] = ACTIONS(466), + [anon_sym_drop] = ACTIONS(466), + [anon_sym_49] = ACTIONS(466), + [anon_sym_rotate] = ACTIONS(466), + [anon_sym_50] = ACTIONS(466), + [anon_sym_windows] = ACTIONS(466), + [anon_sym_51] = ACTIONS(466), + [anon_sym_keep] = ACTIONS(466), + [anon_sym_52] = ACTIONS(466), + [anon_sym_find] = ACTIONS(466), + [anon_sym_53] = ACTIONS(466), + [anon_sym_member] = ACTIONS(466), + [anon_sym_54] = ACTIONS(466), + [anon_sym_indexof] = ACTIONS(466), + [anon_sym_55] = ACTIONS(466), + [anon_sym_assert] = ACTIONS(466), + [anon_sym_56] = ACTIONS(466), + [anon_sym_wait] = ACTIONS(466), + [anon_sym_break] = ACTIONS(466), + [anon_sym_57] = ACTIONS(466), + [anon_sym_parse] = ACTIONS(466), + [anon_sym_random] = ACTIONS(466), + [anon_sym_58] = ACTIONS(466), + [anon_sym_gen] = ACTIONS(466), + [anon_sym_deal] = ACTIONS(466), + [anon_sym_tag] = ACTIONS(466), + [anon_sym_now] = ACTIONS(466), + [anon_sym_type] = ACTIONS(466), + [anon_sym_59] = ACTIONS(466), + [anon_sym_dump] = ACTIONS(466), + [anon_sym_regex] = ACTIONS(466), + [anon_sym_utf] = ACTIONS(466), + [anon_sym_rock] = ACTIONS(466), + [anon_sym_60] = ACTIONS(466), + [anon_sym_surface] = ACTIONS(466), + [anon_sym_TILDE] = ACTIONS(466), + [anon_sym_deep] = ACTIONS(466), + [anon_sym_de] = ACTIONS(464), + [anon_sym_61] = ACTIONS(466), + [anon_sym_abyss] = ACTIONS(466), + [anon_sym_ab] = ACTIONS(464), + [anon_sym_62] = ACTIONS(466), + [anon_sym_seabed] = ACTIONS(466), + [anon_sym_se] = ACTIONS(464), + [anon_sym_63] = ACTIONS(466), + [anon_sym_send] = ACTIONS(466), + [anon_sym_recv] = ACTIONS(466), + [anon_sym_tryrecv] = ACTIONS(466), + [anon_sym_reduce] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(466), + [anon_sym_scan] = ACTIONS(466), + [anon_sym_BSLASH] = ACTIONS(466), + [anon_sym_each] = ACTIONS(466), + [anon_sym_64] = ACTIONS(466), + [anon_sym_rows] = ACTIONS(466), + [anon_sym_65] = ACTIONS(466), + [anon_sym_repeat] = ACTIONS(466), + [anon_sym_66] = ACTIONS(466), + [anon_sym_dip] = ACTIONS(466), + [anon_sym_67] = ACTIONS(466), + [anon_sym_gap] = ACTIONS(466), + [anon_sym_68] = ACTIONS(466), + [anon_sym_69] = ACTIONS(466), + [anon_sym_invert] = ACTIONS(466), + [anon_sym_70] = ACTIONS(466), + [anon_sym_spawn] = ACTIONS(466), + [anon_sym_pack] = ACTIONS(466), + [anon_sym_71] = ACTIONS(466), + [anon_sym_tribute] = ACTIONS(466), + [anon_sym_72] = ACTIONS(466), + [anon_sym_reach] = ACTIONS(466), + [anon_sym_fold] = ACTIONS(466), + [anon_sym_73] = ACTIONS(466), + [anon_sym_distribute] = ACTIONS(466), + [anon_sym_74] = ACTIONS(466), + [anon_sym_table] = ACTIONS(466), + [anon_sym_75] = ACTIONS(466), + [anon_sym_cross] = ACTIONS(466), + [anon_sym_76] = ACTIONS(466), + [anon_sym_group] = ACTIONS(466), + [anon_sym_77] = ACTIONS(466), + [anon_sym_partition] = ACTIONS(466), + [anon_sym_78] = ACTIONS(466), + [anon_sym_both] = ACTIONS(466), + [anon_sym_79] = ACTIONS(466), + [anon_sym_bracket] = ACTIONS(466), + [anon_sym_80] = ACTIONS(466), + [anon_sym_fork] = ACTIONS(466), + [anon_sym_81] = ACTIONS(466), + [anon_sym_under] = ACTIONS(466), + [anon_sym_82] = ACTIONS(466), + [anon_sym_level] = ACTIONS(466), + [anon_sym_83] = ACTIONS(466), + [anon_sym_fill] = ACTIONS(466), + [anon_sym_84] = ACTIONS(466), + [anon_sym_bind] = ACTIONS(466), + [anon_sym_SQUOTE] = ACTIONS(466), + [anon_sym_QMARK] = ACTIONS(466), + [anon_sym_try] = ACTIONS(464), + [anon_sym_85] = ACTIONS(466), + [anon_sym_combinate] = ACTIONS(466), + [anon_sym_86] = ACTIONS(466), + [anon_sym_87] = ACTIONS(466), + [anon_sym_88] = ACTIONS(466), + [anon_sym_89] = ACTIONS(466), + [anon_sym_90] = ACTIONS(466), + [anon_sym_91] = ACTIONS(466), + [anon_sym_92] = ACTIONS(466), + [anon_sym_93] = ACTIONS(466), [sym__whitespace] = ACTIONS(5), - [sym__end_of_line] = ACTIONS(484), + [sym__end_of_line] = ACTIONS(466), }, [109] = { - [ts_builtin_sym_end] = ACTIONS(480), - [aux_sym_number_token1] = ACTIONS(478), - [anon_sym_os] = ACTIONS(478), - [anon_sym_Family] = ACTIONS(478), - [anon_sym_Arch] = ACTIONS(478), - [anon_sym_ExeExt] = ACTIONS(478), - [anon_sym_PllExt] = ACTIONS(478), - [anon_sym_Sep] = ACTIONS(478), - [aux_sym_character_token1] = ACTIONS(480), - [sym_string] = ACTIONS(480), - [sym_multiLineString] = ACTIONS(480), - [anon_sym_PIPE] = ACTIONS(480), - [sym_identifier] = ACTIONS(478), - [sym_identifier_deprecated] = ACTIONS(478), - [sym_system] = ACTIONS(480), - [sym_comment] = ACTIONS(478), - [sym_openParen] = ACTIONS(480), - [sym_openCurly] = ACTIONS(480), - [sym_openBracket] = ACTIONS(480), - [sym_underscore] = ACTIONS(480), - [sym_leftArrow] = ACTIONS(480), - [anon_sym_CARET] = ACTIONS(480), - [anon_sym_eta] = ACTIONS(480), - [anon_sym_] = ACTIONS(478), - [anon_sym_pi] = ACTIONS(478), - [anon_sym_2] = ACTIONS(478), - [anon_sym_tau] = ACTIONS(480), - [anon_sym_3] = ACTIONS(478), - [anon_sym_infinity] = ACTIONS(480), - [anon_sym_4] = ACTIONS(480), - [anon_sym_e] = ACTIONS(478), - [anon_sym_NaN] = ACTIONS(478), - [anon_sym_NumProcs] = ACTIONS(478), - [anon_sym_DOT] = ACTIONS(480), - [anon_sym_COMMA] = ACTIONS(480), - [anon_sym_5] = ACTIONS(480), - [anon_sym_SEMI] = ACTIONS(480), - [anon_sym_identity] = ACTIONS(480), - [anon_sym_id] = ACTIONS(478), - [anon_sym_6] = ACTIONS(480), - [anon_sym_not] = ACTIONS(480), - [anon_sym_7] = ACTIONS(480), - [anon_sym_sign] = ACTIONS(480), - [anon_sym_8] = ACTIONS(480), - [anon_sym_BQUOTE] = ACTIONS(480), - [anon_sym_9] = ACTIONS(480), - [anon_sym_absolutevalue] = ACTIONS(480), - [anon_sym_10] = ACTIONS(480), - [anon_sym_sqrt] = ACTIONS(480), - [anon_sym_11] = ACTIONS(480), - [anon_sym_sine] = ACTIONS(480), - [anon_sym_12] = ACTIONS(480), - [anon_sym_floor] = ACTIONS(480), - [anon_sym_13] = ACTIONS(480), - [anon_sym_ceiling] = ACTIONS(480), - [anon_sym_14] = ACTIONS(480), - [anon_sym_round] = ACTIONS(480), - [anon_sym_15] = ACTIONS(480), - [anon_sym_EQ] = ACTIONS(480), - [anon_sym_BANG_EQ] = ACTIONS(480), - [anon_sym_16] = ACTIONS(480), - [anon_sym_LT] = ACTIONS(478), - [anon_sym_LT_EQ] = ACTIONS(480), - [anon_sym_17] = ACTIONS(480), - [anon_sym_GT] = ACTIONS(478), - [anon_sym_GT_EQ] = ACTIONS(480), - [anon_sym_18] = ACTIONS(480), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_STAR] = ACTIONS(480), - [anon_sym_19] = ACTIONS(480), - [anon_sym_PERCENT] = ACTIONS(480), - [anon_sym_20] = ACTIONS(480), - [anon_sym_modulus] = ACTIONS(480), - [anon_sym_21] = ACTIONS(480), - [anon_sym_power] = ACTIONS(480), - [anon_sym_22] = ACTIONS(480), - [anon_sym_logarithm] = ACTIONS(480), - [anon_sym_23] = ACTIONS(480), - [anon_sym_minimum] = ACTIONS(480), - [anon_sym_24] = ACTIONS(480), - [anon_sym_maximum] = ACTIONS(480), - [anon_sym_25] = ACTIONS(480), - [anon_sym_atangent] = ACTIONS(480), - [anon_sym_26] = ACTIONS(480), - [anon_sym_length] = ACTIONS(480), - [anon_sym_27] = ACTIONS(480), - [anon_sym_shape] = ACTIONS(480), - [anon_sym_28] = ACTIONS(480), - [anon_sym_range] = ACTIONS(480), - [anon_sym_29] = ACTIONS(480), - [anon_sym_first] = ACTIONS(480), - [anon_sym_30] = ACTIONS(480), - [anon_sym_reverse] = ACTIONS(480), - [anon_sym_31] = ACTIONS(480), - [anon_sym_deshape] = ACTIONS(480), - [anon_sym_32] = ACTIONS(480), - [anon_sym_bits] = ACTIONS(480), - [anon_sym_33] = ACTIONS(480), - [anon_sym_transpose] = ACTIONS(480), - [anon_sym_34] = ACTIONS(480), - [anon_sym_rise] = ACTIONS(480), - [anon_sym_35] = ACTIONS(480), - [anon_sym_fall] = ACTIONS(480), - [anon_sym_36] = ACTIONS(480), - [anon_sym_where] = ACTIONS(480), - [anon_sym_37] = ACTIONS(480), - [anon_sym_classify] = ACTIONS(480), - [anon_sym_38] = ACTIONS(480), - [anon_sym_deduplicate] = ACTIONS(480), - [anon_sym_39] = ACTIONS(480), - [anon_sym_box] = ACTIONS(480), - [anon_sym_40] = ACTIONS(480), - [anon_sym_unbox] = ACTIONS(480), - [anon_sym_41] = ACTIONS(480), - [anon_sym_match] = ACTIONS(480), - [anon_sym_42] = ACTIONS(480), - [anon_sym_couple] = ACTIONS(480), - [anon_sym_43] = ACTIONS(480), - [anon_sym_join] = ACTIONS(480), - [anon_sym_44] = ACTIONS(480), - [anon_sym_select] = ACTIONS(480), - [anon_sym_45] = ACTIONS(480), - [anon_sym_pick] = ACTIONS(480), - [anon_sym_46] = ACTIONS(480), - [anon_sym_reshape] = ACTIONS(480), - [anon_sym_47] = ACTIONS(480), - [anon_sym_take] = ACTIONS(480), - [anon_sym_48] = ACTIONS(480), - [anon_sym_drop] = ACTIONS(480), - [anon_sym_49] = ACTIONS(480), - [anon_sym_rotate] = ACTIONS(480), - [anon_sym_50] = ACTIONS(480), - [anon_sym_windows] = ACTIONS(480), - [anon_sym_51] = ACTIONS(480), - [anon_sym_keep] = ACTIONS(480), - [anon_sym_52] = ACTIONS(480), - [anon_sym_find] = ACTIONS(480), - [anon_sym_53] = ACTIONS(480), - [anon_sym_member] = ACTIONS(480), - [anon_sym_54] = ACTIONS(480), - [anon_sym_indexof] = ACTIONS(480), - [anon_sym_55] = ACTIONS(480), - [anon_sym_assert] = ACTIONS(480), - [anon_sym_56] = ACTIONS(480), - [anon_sym_wait] = ACTIONS(480), - [anon_sym_break] = ACTIONS(480), - [anon_sym_57] = ACTIONS(480), - [anon_sym_parse] = ACTIONS(480), - [anon_sym_random] = ACTIONS(480), - [anon_sym_58] = ACTIONS(480), - [anon_sym_gen] = ACTIONS(480), - [anon_sym_deal] = ACTIONS(480), - [anon_sym_tag] = ACTIONS(480), - [anon_sym_now] = ACTIONS(480), - [anon_sym_type] = ACTIONS(480), - [anon_sym_59] = ACTIONS(480), - [anon_sym_dump] = ACTIONS(480), - [anon_sym_regex] = ACTIONS(480), - [anon_sym_utf] = ACTIONS(480), - [anon_sym_rock] = ACTIONS(480), - [anon_sym_60] = ACTIONS(480), - [anon_sym_surface] = ACTIONS(480), - [anon_sym_TILDE] = ACTIONS(480), - [anon_sym_deep] = ACTIONS(480), - [anon_sym_de] = ACTIONS(478), - [anon_sym_61] = ACTIONS(480), - [anon_sym_abyss] = ACTIONS(480), - [anon_sym_ab] = ACTIONS(478), - [anon_sym_62] = ACTIONS(480), - [anon_sym_seabed] = ACTIONS(480), - [anon_sym_se] = ACTIONS(478), - [anon_sym_63] = ACTIONS(480), - [anon_sym_send] = ACTIONS(480), - [anon_sym_recv] = ACTIONS(480), - [anon_sym_tryrecv] = ACTIONS(480), - [anon_sym_reduce] = ACTIONS(480), - [anon_sym_SLASH] = ACTIONS(480), - [anon_sym_scan] = ACTIONS(480), - [anon_sym_BSLASH] = ACTIONS(480), - [anon_sym_each] = ACTIONS(480), - [anon_sym_64] = ACTIONS(480), - [anon_sym_rows] = ACTIONS(480), - [anon_sym_65] = ACTIONS(480), - [anon_sym_repeat] = ACTIONS(480), - [anon_sym_66] = ACTIONS(480), - [anon_sym_dip] = ACTIONS(480), - [anon_sym_di] = ACTIONS(478), - [anon_sym_67] = ACTIONS(480), - [anon_sym_gap] = ACTIONS(480), - [anon_sym_ga] = ACTIONS(478), - [anon_sym_68] = ACTIONS(480), - [anon_sym_oust] = ACTIONS(480), - [anon_sym_69] = ACTIONS(480), - [anon_sym_invert] = ACTIONS(480), - [anon_sym_70] = ACTIONS(480), - [anon_sym_spawn] = ACTIONS(480), - [anon_sym_pack] = ACTIONS(480), - [anon_sym_71] = ACTIONS(480), - [anon_sym_tribute] = ACTIONS(480), - [anon_sym_72] = ACTIONS(480), - [anon_sym_fold] = ACTIONS(480), - [anon_sym_73] = ACTIONS(480), - [anon_sym_distribute] = ACTIONS(480), - [anon_sym_74] = ACTIONS(480), - [anon_sym_table] = ACTIONS(480), - [anon_sym_75] = ACTIONS(480), - [anon_sym_cross] = ACTIONS(480), - [anon_sym_76] = ACTIONS(480), - [anon_sym_group] = ACTIONS(480), - [anon_sym_77] = ACTIONS(480), - [anon_sym_partition] = ACTIONS(480), - [anon_sym_78] = ACTIONS(480), - [anon_sym_both] = ACTIONS(480), - [anon_sym_79] = ACTIONS(480), - [anon_sym_bracket] = ACTIONS(480), - [anon_sym_80] = ACTIONS(480), - [anon_sym_fork] = ACTIONS(480), - [anon_sym_81] = ACTIONS(480), - [anon_sym_under] = ACTIONS(480), - [anon_sym_82] = ACTIONS(480), - [anon_sym_level] = ACTIONS(480), - [anon_sym_83] = ACTIONS(480), - [anon_sym_fill] = ACTIONS(480), - [anon_sym_84] = ACTIONS(480), - [anon_sym_bind] = ACTIONS(480), - [anon_sym_SQUOTE] = ACTIONS(480), - [anon_sym_QMARK] = ACTIONS(480), - [anon_sym_try] = ACTIONS(478), - [anon_sym_85] = ACTIONS(480), - [anon_sym_combinate] = ACTIONS(480), - [anon_sym_86] = ACTIONS(480), - [anon_sym_87] = ACTIONS(480), - [anon_sym_88] = ACTIONS(480), - [anon_sym_89] = ACTIONS(480), - [anon_sym_90] = ACTIONS(480), - [anon_sym_91] = ACTIONS(480), - [anon_sym_92] = ACTIONS(480), - [anon_sym_93] = ACTIONS(480), + [ts_builtin_sym_end] = ACTIONS(462), + [aux_sym_number_token1] = ACTIONS(460), + [anon_sym_os] = ACTIONS(460), + [anon_sym_Family] = ACTIONS(460), + [anon_sym_Arch] = ACTIONS(460), + [anon_sym_ExeExt] = ACTIONS(460), + [anon_sym_PllExt] = ACTIONS(460), + [anon_sym_Sep] = ACTIONS(460), + [aux_sym_character_token1] = ACTIONS(462), + [sym_string] = ACTIONS(462), + [sym_multiLineString] = ACTIONS(462), + [anon_sym_PIPE] = ACTIONS(462), + [sym_identifier] = ACTIONS(460), + [sym_identifier_deprecated] = ACTIONS(460), + [sym_system] = ACTIONS(462), + [sym_comment] = ACTIONS(460), + [sym_openParen] = ACTIONS(462), + [sym_openCurly] = ACTIONS(462), + [sym_openBracket] = ACTIONS(462), + [sym_underscore] = ACTIONS(462), + [sym_leftArrow] = ACTIONS(462), + [anon_sym_CARET] = ACTIONS(462), + [anon_sym_eta] = ACTIONS(462), + [anon_sym_] = ACTIONS(460), + [anon_sym_pi] = ACTIONS(460), + [anon_sym_2] = ACTIONS(460), + [anon_sym_tau] = ACTIONS(462), + [anon_sym_3] = ACTIONS(460), + [anon_sym_infinity] = ACTIONS(462), + [anon_sym_4] = ACTIONS(462), + [anon_sym_e] = ACTIONS(460), + [anon_sym_NaN] = ACTIONS(460), + [anon_sym_NumProcs] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_COMMA] = ACTIONS(462), + [anon_sym_5] = ACTIONS(462), + [anon_sym_SEMI] = ACTIONS(462), + [anon_sym_identity] = ACTIONS(462), + [anon_sym_id] = ACTIONS(460), + [anon_sym_6] = ACTIONS(462), + [anon_sym_not] = ACTIONS(462), + [anon_sym_7] = ACTIONS(462), + [anon_sym_sign] = ACTIONS(462), + [anon_sym_8] = ACTIONS(462), + [anon_sym_BQUOTE] = ACTIONS(462), + [anon_sym_9] = ACTIONS(462), + [anon_sym_absolutevalue] = ACTIONS(462), + [anon_sym_10] = ACTIONS(462), + [anon_sym_sqrt] = ACTIONS(462), + [anon_sym_11] = ACTIONS(462), + [anon_sym_sine] = ACTIONS(462), + [anon_sym_12] = ACTIONS(462), + [anon_sym_floor] = ACTIONS(462), + [anon_sym_13] = ACTIONS(462), + [anon_sym_ceiling] = ACTIONS(462), + [anon_sym_14] = ACTIONS(462), + [anon_sym_round] = ACTIONS(462), + [anon_sym_15] = ACTIONS(462), + [anon_sym_EQ] = ACTIONS(462), + [anon_sym_BANG_EQ] = ACTIONS(462), + [anon_sym_16] = ACTIONS(462), + [anon_sym_LT] = ACTIONS(460), + [anon_sym_LT_EQ] = ACTIONS(462), + [anon_sym_17] = ACTIONS(462), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_GT_EQ] = ACTIONS(462), + [anon_sym_18] = ACTIONS(462), + [anon_sym_PLUS] = ACTIONS(462), + [anon_sym_DASH] = ACTIONS(462), + [anon_sym_STAR] = ACTIONS(462), + [anon_sym_19] = ACTIONS(462), + [anon_sym_PERCENT] = ACTIONS(462), + [anon_sym_20] = ACTIONS(462), + [anon_sym_modulus] = ACTIONS(462), + [anon_sym_21] = ACTIONS(462), + [anon_sym_power] = ACTIONS(462), + [anon_sym_22] = ACTIONS(462), + [anon_sym_logarithm] = ACTIONS(462), + [anon_sym_23] = ACTIONS(462), + [anon_sym_minimum] = ACTIONS(462), + [anon_sym_24] = ACTIONS(462), + [anon_sym_maximum] = ACTIONS(462), + [anon_sym_25] = ACTIONS(462), + [anon_sym_atangent] = ACTIONS(462), + [anon_sym_26] = ACTIONS(462), + [anon_sym_length] = ACTIONS(462), + [anon_sym_27] = ACTIONS(462), + [anon_sym_shape] = ACTIONS(462), + [anon_sym_28] = ACTIONS(462), + [anon_sym_range] = ACTIONS(462), + [anon_sym_29] = ACTIONS(462), + [anon_sym_first] = ACTIONS(462), + [anon_sym_30] = ACTIONS(462), + [anon_sym_reverse] = ACTIONS(462), + [anon_sym_31] = ACTIONS(462), + [anon_sym_deshape] = ACTIONS(462), + [anon_sym_32] = ACTIONS(462), + [anon_sym_bits] = ACTIONS(462), + [anon_sym_33] = ACTIONS(462), + [anon_sym_transpose] = ACTIONS(462), + [anon_sym_34] = ACTIONS(462), + [anon_sym_rise] = ACTIONS(462), + [anon_sym_35] = ACTIONS(462), + [anon_sym_fall] = ACTIONS(462), + [anon_sym_36] = ACTIONS(462), + [anon_sym_where] = ACTIONS(462), + [anon_sym_37] = ACTIONS(462), + [anon_sym_classify] = ACTIONS(462), + [anon_sym_38] = ACTIONS(462), + [anon_sym_deduplicate] = ACTIONS(462), + [anon_sym_39] = ACTIONS(462), + [anon_sym_box] = ACTIONS(462), + [anon_sym_40] = ACTIONS(462), + [anon_sym_unbox] = ACTIONS(462), + [anon_sym_41] = ACTIONS(462), + [anon_sym_match] = ACTIONS(462), + [anon_sym_42] = ACTIONS(462), + [anon_sym_couple] = ACTIONS(462), + [anon_sym_43] = ACTIONS(462), + [anon_sym_join] = ACTIONS(462), + [anon_sym_44] = ACTIONS(462), + [anon_sym_select] = ACTIONS(462), + [anon_sym_45] = ACTIONS(462), + [anon_sym_pick] = ACTIONS(462), + [anon_sym_46] = ACTIONS(462), + [anon_sym_reshape] = ACTIONS(462), + [anon_sym_47] = ACTIONS(462), + [anon_sym_take] = ACTIONS(462), + [anon_sym_48] = ACTIONS(462), + [anon_sym_drop] = ACTIONS(462), + [anon_sym_49] = ACTIONS(462), + [anon_sym_rotate] = ACTIONS(462), + [anon_sym_50] = ACTIONS(462), + [anon_sym_windows] = ACTIONS(462), + [anon_sym_51] = ACTIONS(462), + [anon_sym_keep] = ACTIONS(462), + [anon_sym_52] = ACTIONS(462), + [anon_sym_find] = ACTIONS(462), + [anon_sym_53] = ACTIONS(462), + [anon_sym_member] = ACTIONS(462), + [anon_sym_54] = ACTIONS(462), + [anon_sym_indexof] = ACTIONS(462), + [anon_sym_55] = ACTIONS(462), + [anon_sym_assert] = ACTIONS(462), + [anon_sym_56] = ACTIONS(462), + [anon_sym_wait] = ACTIONS(462), + [anon_sym_break] = ACTIONS(462), + [anon_sym_57] = ACTIONS(462), + [anon_sym_parse] = ACTIONS(462), + [anon_sym_random] = ACTIONS(462), + [anon_sym_58] = ACTIONS(462), + [anon_sym_gen] = ACTIONS(462), + [anon_sym_deal] = ACTIONS(462), + [anon_sym_tag] = ACTIONS(462), + [anon_sym_now] = ACTIONS(462), + [anon_sym_type] = ACTIONS(462), + [anon_sym_59] = ACTIONS(462), + [anon_sym_dump] = ACTIONS(462), + [anon_sym_regex] = ACTIONS(462), + [anon_sym_utf] = ACTIONS(462), + [anon_sym_rock] = ACTIONS(462), + [anon_sym_60] = ACTIONS(462), + [anon_sym_surface] = ACTIONS(462), + [anon_sym_TILDE] = ACTIONS(462), + [anon_sym_deep] = ACTIONS(462), + [anon_sym_de] = ACTIONS(460), + [anon_sym_61] = ACTIONS(462), + [anon_sym_abyss] = ACTIONS(462), + [anon_sym_ab] = ACTIONS(460), + [anon_sym_62] = ACTIONS(462), + [anon_sym_seabed] = ACTIONS(462), + [anon_sym_se] = ACTIONS(460), + [anon_sym_63] = ACTIONS(462), + [anon_sym_send] = ACTIONS(462), + [anon_sym_recv] = ACTIONS(462), + [anon_sym_tryrecv] = ACTIONS(462), + [anon_sym_reduce] = ACTIONS(462), + [anon_sym_SLASH] = ACTIONS(462), + [anon_sym_scan] = ACTIONS(462), + [anon_sym_BSLASH] = ACTIONS(462), + [anon_sym_each] = ACTIONS(462), + [anon_sym_64] = ACTIONS(462), + [anon_sym_rows] = ACTIONS(462), + [anon_sym_65] = ACTIONS(462), + [anon_sym_repeat] = ACTIONS(462), + [anon_sym_66] = ACTIONS(462), + [anon_sym_dip] = ACTIONS(462), + [anon_sym_67] = ACTIONS(462), + [anon_sym_gap] = ACTIONS(462), + [anon_sym_68] = ACTIONS(462), + [anon_sym_69] = ACTIONS(462), + [anon_sym_invert] = ACTIONS(462), + [anon_sym_70] = ACTIONS(462), + [anon_sym_spawn] = ACTIONS(462), + [anon_sym_pack] = ACTIONS(462), + [anon_sym_71] = ACTIONS(462), + [anon_sym_tribute] = ACTIONS(462), + [anon_sym_72] = ACTIONS(462), + [anon_sym_reach] = ACTIONS(462), + [anon_sym_fold] = ACTIONS(462), + [anon_sym_73] = ACTIONS(462), + [anon_sym_distribute] = ACTIONS(462), + [anon_sym_74] = ACTIONS(462), + [anon_sym_table] = ACTIONS(462), + [anon_sym_75] = ACTIONS(462), + [anon_sym_cross] = ACTIONS(462), + [anon_sym_76] = ACTIONS(462), + [anon_sym_group] = ACTIONS(462), + [anon_sym_77] = ACTIONS(462), + [anon_sym_partition] = ACTIONS(462), + [anon_sym_78] = ACTIONS(462), + [anon_sym_both] = ACTIONS(462), + [anon_sym_79] = ACTIONS(462), + [anon_sym_bracket] = ACTIONS(462), + [anon_sym_80] = ACTIONS(462), + [anon_sym_fork] = ACTIONS(462), + [anon_sym_81] = ACTIONS(462), + [anon_sym_under] = ACTIONS(462), + [anon_sym_82] = ACTIONS(462), + [anon_sym_level] = ACTIONS(462), + [anon_sym_83] = ACTIONS(462), + [anon_sym_fill] = ACTIONS(462), + [anon_sym_84] = ACTIONS(462), + [anon_sym_bind] = ACTIONS(462), + [anon_sym_SQUOTE] = ACTIONS(462), + [anon_sym_QMARK] = ACTIONS(462), + [anon_sym_try] = ACTIONS(460), + [anon_sym_85] = ACTIONS(462), + [anon_sym_combinate] = ACTIONS(462), + [anon_sym_86] = ACTIONS(462), + [anon_sym_87] = ACTIONS(462), + [anon_sym_88] = ACTIONS(462), + [anon_sym_89] = ACTIONS(462), + [anon_sym_90] = ACTIONS(462), + [anon_sym_91] = ACTIONS(462), + [anon_sym_92] = ACTIONS(462), + [anon_sym_93] = ACTIONS(462), [sym__whitespace] = ACTIONS(5), - [sym__end_of_line] = ACTIONS(480), + [sym__end_of_line] = ACTIONS(462), }, [110] = { - [ts_builtin_sym_end] = ACTIONS(464), - [aux_sym_number_token1] = ACTIONS(462), - [anon_sym_os] = ACTIONS(462), - [anon_sym_Family] = ACTIONS(462), - [anon_sym_Arch] = ACTIONS(462), - [anon_sym_ExeExt] = ACTIONS(462), - [anon_sym_PllExt] = ACTIONS(462), - [anon_sym_Sep] = ACTIONS(462), - [aux_sym_character_token1] = ACTIONS(464), - [sym_string] = ACTIONS(464), - [sym_multiLineString] = ACTIONS(464), - [anon_sym_PIPE] = ACTIONS(464), - [sym_identifier] = ACTIONS(462), - [sym_identifier_deprecated] = ACTIONS(462), - [sym_system] = ACTIONS(464), - [sym_comment] = ACTIONS(462), - [sym_openParen] = ACTIONS(464), - [sym_openCurly] = ACTIONS(464), - [sym_openBracket] = ACTIONS(464), - [sym_underscore] = ACTIONS(464), - [sym_leftArrow] = ACTIONS(464), - [anon_sym_CARET] = ACTIONS(464), - [anon_sym_eta] = ACTIONS(464), - [anon_sym_] = ACTIONS(462), - [anon_sym_pi] = ACTIONS(462), - [anon_sym_2] = ACTIONS(462), - [anon_sym_tau] = ACTIONS(464), - [anon_sym_3] = ACTIONS(462), - [anon_sym_infinity] = ACTIONS(464), - [anon_sym_4] = ACTIONS(464), - [anon_sym_e] = ACTIONS(462), - [anon_sym_NaN] = ACTIONS(462), - [anon_sym_NumProcs] = ACTIONS(462), - [anon_sym_DOT] = ACTIONS(464), - [anon_sym_COMMA] = ACTIONS(464), - [anon_sym_5] = ACTIONS(464), - [anon_sym_SEMI] = ACTIONS(464), - [anon_sym_identity] = ACTIONS(464), - [anon_sym_id] = ACTIONS(462), - [anon_sym_6] = ACTIONS(464), - [anon_sym_not] = ACTIONS(464), - [anon_sym_7] = ACTIONS(464), - [anon_sym_sign] = ACTIONS(464), - [anon_sym_8] = ACTIONS(464), - [anon_sym_BQUOTE] = ACTIONS(464), - [anon_sym_9] = ACTIONS(464), - [anon_sym_absolutevalue] = ACTIONS(464), - [anon_sym_10] = ACTIONS(464), - [anon_sym_sqrt] = ACTIONS(464), - [anon_sym_11] = ACTIONS(464), - [anon_sym_sine] = ACTIONS(464), - [anon_sym_12] = ACTIONS(464), - [anon_sym_floor] = ACTIONS(464), - [anon_sym_13] = ACTIONS(464), - [anon_sym_ceiling] = ACTIONS(464), - [anon_sym_14] = ACTIONS(464), - [anon_sym_round] = ACTIONS(464), - [anon_sym_15] = ACTIONS(464), - [anon_sym_EQ] = ACTIONS(464), - [anon_sym_BANG_EQ] = ACTIONS(464), - [anon_sym_16] = ACTIONS(464), - [anon_sym_LT] = ACTIONS(462), - [anon_sym_LT_EQ] = ACTIONS(464), - [anon_sym_17] = ACTIONS(464), - [anon_sym_GT] = ACTIONS(462), - [anon_sym_GT_EQ] = ACTIONS(464), - [anon_sym_18] = ACTIONS(464), - [anon_sym_PLUS] = ACTIONS(464), - [anon_sym_DASH] = ACTIONS(464), - [anon_sym_STAR] = ACTIONS(464), - [anon_sym_19] = ACTIONS(464), - [anon_sym_PERCENT] = ACTIONS(464), - [anon_sym_20] = ACTIONS(464), - [anon_sym_modulus] = ACTIONS(464), - [anon_sym_21] = ACTIONS(464), - [anon_sym_power] = ACTIONS(464), - [anon_sym_22] = ACTIONS(464), - [anon_sym_logarithm] = ACTIONS(464), - [anon_sym_23] = ACTIONS(464), - [anon_sym_minimum] = ACTIONS(464), - [anon_sym_24] = ACTIONS(464), - [anon_sym_maximum] = ACTIONS(464), - [anon_sym_25] = ACTIONS(464), - [anon_sym_atangent] = ACTIONS(464), - [anon_sym_26] = ACTIONS(464), - [anon_sym_length] = ACTIONS(464), - [anon_sym_27] = ACTIONS(464), - [anon_sym_shape] = ACTIONS(464), - [anon_sym_28] = ACTIONS(464), - [anon_sym_range] = ACTIONS(464), - [anon_sym_29] = ACTIONS(464), - [anon_sym_first] = ACTIONS(464), - [anon_sym_30] = ACTIONS(464), - [anon_sym_reverse] = ACTIONS(464), - [anon_sym_31] = ACTIONS(464), - [anon_sym_deshape] = ACTIONS(464), - [anon_sym_32] = ACTIONS(464), - [anon_sym_bits] = ACTIONS(464), - [anon_sym_33] = ACTIONS(464), - [anon_sym_transpose] = ACTIONS(464), - [anon_sym_34] = ACTIONS(464), - [anon_sym_rise] = ACTIONS(464), - [anon_sym_35] = ACTIONS(464), - [anon_sym_fall] = ACTIONS(464), - [anon_sym_36] = ACTIONS(464), - [anon_sym_where] = ACTIONS(464), - [anon_sym_37] = ACTIONS(464), - [anon_sym_classify] = ACTIONS(464), - [anon_sym_38] = ACTIONS(464), - [anon_sym_deduplicate] = ACTIONS(464), - [anon_sym_39] = ACTIONS(464), - [anon_sym_box] = ACTIONS(464), - [anon_sym_40] = ACTIONS(464), - [anon_sym_unbox] = ACTIONS(464), - [anon_sym_41] = ACTIONS(464), - [anon_sym_match] = ACTIONS(464), - [anon_sym_42] = ACTIONS(464), - [anon_sym_couple] = ACTIONS(464), - [anon_sym_43] = ACTIONS(464), - [anon_sym_join] = ACTIONS(464), - [anon_sym_44] = ACTIONS(464), - [anon_sym_select] = ACTIONS(464), - [anon_sym_45] = ACTIONS(464), - [anon_sym_pick] = ACTIONS(464), - [anon_sym_46] = ACTIONS(464), - [anon_sym_reshape] = ACTIONS(464), - [anon_sym_47] = ACTIONS(464), - [anon_sym_take] = ACTIONS(464), - [anon_sym_48] = ACTIONS(464), - [anon_sym_drop] = ACTIONS(464), - [anon_sym_49] = ACTIONS(464), - [anon_sym_rotate] = ACTIONS(464), - [anon_sym_50] = ACTIONS(464), - [anon_sym_windows] = ACTIONS(464), - [anon_sym_51] = ACTIONS(464), - [anon_sym_keep] = ACTIONS(464), - [anon_sym_52] = ACTIONS(464), - [anon_sym_find] = ACTIONS(464), - [anon_sym_53] = ACTIONS(464), - [anon_sym_member] = ACTIONS(464), - [anon_sym_54] = ACTIONS(464), - [anon_sym_indexof] = ACTIONS(464), - [anon_sym_55] = ACTIONS(464), - [anon_sym_assert] = ACTIONS(464), - [anon_sym_56] = ACTIONS(464), - [anon_sym_wait] = ACTIONS(464), - [anon_sym_break] = ACTIONS(464), - [anon_sym_57] = ACTIONS(464), - [anon_sym_parse] = ACTIONS(464), - [anon_sym_random] = ACTIONS(464), - [anon_sym_58] = ACTIONS(464), - [anon_sym_gen] = ACTIONS(464), - [anon_sym_deal] = ACTIONS(464), - [anon_sym_tag] = ACTIONS(464), - [anon_sym_now] = ACTIONS(464), - [anon_sym_type] = ACTIONS(464), - [anon_sym_59] = ACTIONS(464), - [anon_sym_dump] = ACTIONS(464), - [anon_sym_regex] = ACTIONS(464), - [anon_sym_utf] = ACTIONS(464), - [anon_sym_rock] = ACTIONS(464), - [anon_sym_60] = ACTIONS(464), - [anon_sym_surface] = ACTIONS(464), - [anon_sym_TILDE] = ACTIONS(464), - [anon_sym_deep] = ACTIONS(464), - [anon_sym_de] = ACTIONS(462), - [anon_sym_61] = ACTIONS(464), - [anon_sym_abyss] = ACTIONS(464), - [anon_sym_ab] = ACTIONS(462), - [anon_sym_62] = ACTIONS(464), - [anon_sym_seabed] = ACTIONS(464), - [anon_sym_se] = ACTIONS(462), - [anon_sym_63] = ACTIONS(464), - [anon_sym_send] = ACTIONS(464), - [anon_sym_recv] = ACTIONS(464), - [anon_sym_tryrecv] = ACTIONS(464), - [anon_sym_reduce] = ACTIONS(464), - [anon_sym_SLASH] = ACTIONS(464), - [anon_sym_scan] = ACTIONS(464), - [anon_sym_BSLASH] = ACTIONS(464), - [anon_sym_each] = ACTIONS(464), - [anon_sym_64] = ACTIONS(464), - [anon_sym_rows] = ACTIONS(464), - [anon_sym_65] = ACTIONS(464), - [anon_sym_repeat] = ACTIONS(464), - [anon_sym_66] = ACTIONS(464), - [anon_sym_dip] = ACTIONS(464), - [anon_sym_di] = ACTIONS(462), - [anon_sym_67] = ACTIONS(464), - [anon_sym_gap] = ACTIONS(464), - [anon_sym_ga] = ACTIONS(462), - [anon_sym_68] = ACTIONS(464), - [anon_sym_oust] = ACTIONS(464), - [anon_sym_69] = ACTIONS(464), - [anon_sym_invert] = ACTIONS(464), - [anon_sym_70] = ACTIONS(464), - [anon_sym_spawn] = ACTIONS(464), - [anon_sym_pack] = ACTIONS(464), - [anon_sym_71] = ACTIONS(464), - [anon_sym_tribute] = ACTIONS(464), - [anon_sym_72] = ACTIONS(464), - [anon_sym_fold] = ACTIONS(464), - [anon_sym_73] = ACTIONS(464), - [anon_sym_distribute] = ACTIONS(464), - [anon_sym_74] = ACTIONS(464), - [anon_sym_table] = ACTIONS(464), - [anon_sym_75] = ACTIONS(464), - [anon_sym_cross] = ACTIONS(464), - [anon_sym_76] = ACTIONS(464), - [anon_sym_group] = ACTIONS(464), - [anon_sym_77] = ACTIONS(464), - [anon_sym_partition] = ACTIONS(464), - [anon_sym_78] = ACTIONS(464), - [anon_sym_both] = ACTIONS(464), - [anon_sym_79] = ACTIONS(464), - [anon_sym_bracket] = ACTIONS(464), - [anon_sym_80] = ACTIONS(464), - [anon_sym_fork] = ACTIONS(464), - [anon_sym_81] = ACTIONS(464), - [anon_sym_under] = ACTIONS(464), - [anon_sym_82] = ACTIONS(464), - [anon_sym_level] = ACTIONS(464), - [anon_sym_83] = ACTIONS(464), - [anon_sym_fill] = ACTIONS(464), - [anon_sym_84] = ACTIONS(464), - [anon_sym_bind] = ACTIONS(464), - [anon_sym_SQUOTE] = ACTIONS(464), - [anon_sym_QMARK] = ACTIONS(464), - [anon_sym_try] = ACTIONS(462), - [anon_sym_85] = ACTIONS(464), - [anon_sym_combinate] = ACTIONS(464), - [anon_sym_86] = ACTIONS(464), - [anon_sym_87] = ACTIONS(464), - [anon_sym_88] = ACTIONS(464), - [anon_sym_89] = ACTIONS(464), - [anon_sym_90] = ACTIONS(464), - [anon_sym_91] = ACTIONS(464), - [anon_sym_92] = ACTIONS(464), - [anon_sym_93] = ACTIONS(464), + [ts_builtin_sym_end] = ACTIONS(446), + [aux_sym_number_token1] = ACTIONS(444), + [anon_sym_os] = ACTIONS(444), + [anon_sym_Family] = ACTIONS(444), + [anon_sym_Arch] = ACTIONS(444), + [anon_sym_ExeExt] = ACTIONS(444), + [anon_sym_PllExt] = ACTIONS(444), + [anon_sym_Sep] = ACTIONS(444), + [aux_sym_character_token1] = ACTIONS(446), + [sym_string] = ACTIONS(446), + [sym_multiLineString] = ACTIONS(446), + [anon_sym_PIPE] = ACTIONS(446), + [sym_identifier] = ACTIONS(444), + [sym_identifier_deprecated] = ACTIONS(444), + [sym_system] = ACTIONS(446), + [sym_comment] = ACTIONS(444), + [sym_openParen] = ACTIONS(446), + [sym_openCurly] = ACTIONS(446), + [sym_openBracket] = ACTIONS(446), + [sym_underscore] = ACTIONS(446), + [sym_leftArrow] = ACTIONS(446), + [anon_sym_CARET] = ACTIONS(446), + [anon_sym_eta] = ACTIONS(446), + [anon_sym_] = ACTIONS(444), + [anon_sym_pi] = ACTIONS(444), + [anon_sym_2] = ACTIONS(444), + [anon_sym_tau] = ACTIONS(446), + [anon_sym_3] = ACTIONS(444), + [anon_sym_infinity] = ACTIONS(446), + [anon_sym_4] = ACTIONS(446), + [anon_sym_e] = ACTIONS(444), + [anon_sym_NaN] = ACTIONS(444), + [anon_sym_NumProcs] = ACTIONS(444), + [anon_sym_DOT] = ACTIONS(446), + [anon_sym_COMMA] = ACTIONS(446), + [anon_sym_5] = ACTIONS(446), + [anon_sym_SEMI] = ACTIONS(446), + [anon_sym_identity] = ACTIONS(446), + [anon_sym_id] = ACTIONS(444), + [anon_sym_6] = ACTIONS(446), + [anon_sym_not] = ACTIONS(446), + [anon_sym_7] = ACTIONS(446), + [anon_sym_sign] = ACTIONS(446), + [anon_sym_8] = ACTIONS(446), + [anon_sym_BQUOTE] = ACTIONS(446), + [anon_sym_9] = ACTIONS(446), + [anon_sym_absolutevalue] = ACTIONS(446), + [anon_sym_10] = ACTIONS(446), + [anon_sym_sqrt] = ACTIONS(446), + [anon_sym_11] = ACTIONS(446), + [anon_sym_sine] = ACTIONS(446), + [anon_sym_12] = ACTIONS(446), + [anon_sym_floor] = ACTIONS(446), + [anon_sym_13] = ACTIONS(446), + [anon_sym_ceiling] = ACTIONS(446), + [anon_sym_14] = ACTIONS(446), + [anon_sym_round] = ACTIONS(446), + [anon_sym_15] = ACTIONS(446), + [anon_sym_EQ] = ACTIONS(446), + [anon_sym_BANG_EQ] = ACTIONS(446), + [anon_sym_16] = ACTIONS(446), + [anon_sym_LT] = ACTIONS(444), + [anon_sym_LT_EQ] = ACTIONS(446), + [anon_sym_17] = ACTIONS(446), + [anon_sym_GT] = ACTIONS(444), + [anon_sym_GT_EQ] = ACTIONS(446), + [anon_sym_18] = ACTIONS(446), + [anon_sym_PLUS] = ACTIONS(446), + [anon_sym_DASH] = ACTIONS(446), + [anon_sym_STAR] = ACTIONS(446), + [anon_sym_19] = ACTIONS(446), + [anon_sym_PERCENT] = ACTIONS(446), + [anon_sym_20] = ACTIONS(446), + [anon_sym_modulus] = ACTIONS(446), + [anon_sym_21] = ACTIONS(446), + [anon_sym_power] = ACTIONS(446), + [anon_sym_22] = ACTIONS(446), + [anon_sym_logarithm] = ACTIONS(446), + [anon_sym_23] = ACTIONS(446), + [anon_sym_minimum] = ACTIONS(446), + [anon_sym_24] = ACTIONS(446), + [anon_sym_maximum] = ACTIONS(446), + [anon_sym_25] = ACTIONS(446), + [anon_sym_atangent] = ACTIONS(446), + [anon_sym_26] = ACTIONS(446), + [anon_sym_length] = ACTIONS(446), + [anon_sym_27] = ACTIONS(446), + [anon_sym_shape] = ACTIONS(446), + [anon_sym_28] = ACTIONS(446), + [anon_sym_range] = ACTIONS(446), + [anon_sym_29] = ACTIONS(446), + [anon_sym_first] = ACTIONS(446), + [anon_sym_30] = ACTIONS(446), + [anon_sym_reverse] = ACTIONS(446), + [anon_sym_31] = ACTIONS(446), + [anon_sym_deshape] = ACTIONS(446), + [anon_sym_32] = ACTIONS(446), + [anon_sym_bits] = ACTIONS(446), + [anon_sym_33] = ACTIONS(446), + [anon_sym_transpose] = ACTIONS(446), + [anon_sym_34] = ACTIONS(446), + [anon_sym_rise] = ACTIONS(446), + [anon_sym_35] = ACTIONS(446), + [anon_sym_fall] = ACTIONS(446), + [anon_sym_36] = ACTIONS(446), + [anon_sym_where] = ACTIONS(446), + [anon_sym_37] = ACTIONS(446), + [anon_sym_classify] = ACTIONS(446), + [anon_sym_38] = ACTIONS(446), + [anon_sym_deduplicate] = ACTIONS(446), + [anon_sym_39] = ACTIONS(446), + [anon_sym_box] = ACTIONS(446), + [anon_sym_40] = ACTIONS(446), + [anon_sym_unbox] = ACTIONS(446), + [anon_sym_41] = ACTIONS(446), + [anon_sym_match] = ACTIONS(446), + [anon_sym_42] = ACTIONS(446), + [anon_sym_couple] = ACTIONS(446), + [anon_sym_43] = ACTIONS(446), + [anon_sym_join] = ACTIONS(446), + [anon_sym_44] = ACTIONS(446), + [anon_sym_select] = ACTIONS(446), + [anon_sym_45] = ACTIONS(446), + [anon_sym_pick] = ACTIONS(446), + [anon_sym_46] = ACTIONS(446), + [anon_sym_reshape] = ACTIONS(446), + [anon_sym_47] = ACTIONS(446), + [anon_sym_take] = ACTIONS(446), + [anon_sym_48] = ACTIONS(446), + [anon_sym_drop] = ACTIONS(446), + [anon_sym_49] = ACTIONS(446), + [anon_sym_rotate] = ACTIONS(446), + [anon_sym_50] = ACTIONS(446), + [anon_sym_windows] = ACTIONS(446), + [anon_sym_51] = ACTIONS(446), + [anon_sym_keep] = ACTIONS(446), + [anon_sym_52] = ACTIONS(446), + [anon_sym_find] = ACTIONS(446), + [anon_sym_53] = ACTIONS(446), + [anon_sym_member] = ACTIONS(446), + [anon_sym_54] = ACTIONS(446), + [anon_sym_indexof] = ACTIONS(446), + [anon_sym_55] = ACTIONS(446), + [anon_sym_assert] = ACTIONS(446), + [anon_sym_56] = ACTIONS(446), + [anon_sym_wait] = ACTIONS(446), + [anon_sym_break] = ACTIONS(446), + [anon_sym_57] = ACTIONS(446), + [anon_sym_parse] = ACTIONS(446), + [anon_sym_random] = ACTIONS(446), + [anon_sym_58] = ACTIONS(446), + [anon_sym_gen] = ACTIONS(446), + [anon_sym_deal] = ACTIONS(446), + [anon_sym_tag] = ACTIONS(446), + [anon_sym_now] = ACTIONS(446), + [anon_sym_type] = ACTIONS(446), + [anon_sym_59] = ACTIONS(446), + [anon_sym_dump] = ACTIONS(446), + [anon_sym_regex] = ACTIONS(446), + [anon_sym_utf] = ACTIONS(446), + [anon_sym_rock] = ACTIONS(446), + [anon_sym_60] = ACTIONS(446), + [anon_sym_surface] = ACTIONS(446), + [anon_sym_TILDE] = ACTIONS(446), + [anon_sym_deep] = ACTIONS(446), + [anon_sym_de] = ACTIONS(444), + [anon_sym_61] = ACTIONS(446), + [anon_sym_abyss] = ACTIONS(446), + [anon_sym_ab] = ACTIONS(444), + [anon_sym_62] = ACTIONS(446), + [anon_sym_seabed] = ACTIONS(446), + [anon_sym_se] = ACTIONS(444), + [anon_sym_63] = ACTIONS(446), + [anon_sym_send] = ACTIONS(446), + [anon_sym_recv] = ACTIONS(446), + [anon_sym_tryrecv] = ACTIONS(446), + [anon_sym_reduce] = ACTIONS(446), + [anon_sym_SLASH] = ACTIONS(446), + [anon_sym_scan] = ACTIONS(446), + [anon_sym_BSLASH] = ACTIONS(446), + [anon_sym_each] = ACTIONS(446), + [anon_sym_64] = ACTIONS(446), + [anon_sym_rows] = ACTIONS(446), + [anon_sym_65] = ACTIONS(446), + [anon_sym_repeat] = ACTIONS(446), + [anon_sym_66] = ACTIONS(446), + [anon_sym_dip] = ACTIONS(446), + [anon_sym_67] = ACTIONS(446), + [anon_sym_gap] = ACTIONS(446), + [anon_sym_68] = ACTIONS(446), + [anon_sym_69] = ACTIONS(446), + [anon_sym_invert] = ACTIONS(446), + [anon_sym_70] = ACTIONS(446), + [anon_sym_spawn] = ACTIONS(446), + [anon_sym_pack] = ACTIONS(446), + [anon_sym_71] = ACTIONS(446), + [anon_sym_tribute] = ACTIONS(446), + [anon_sym_72] = ACTIONS(446), + [anon_sym_reach] = ACTIONS(446), + [anon_sym_fold] = ACTIONS(446), + [anon_sym_73] = ACTIONS(446), + [anon_sym_distribute] = ACTIONS(446), + [anon_sym_74] = ACTIONS(446), + [anon_sym_table] = ACTIONS(446), + [anon_sym_75] = ACTIONS(446), + [anon_sym_cross] = ACTIONS(446), + [anon_sym_76] = ACTIONS(446), + [anon_sym_group] = ACTIONS(446), + [anon_sym_77] = ACTIONS(446), + [anon_sym_partition] = ACTIONS(446), + [anon_sym_78] = ACTIONS(446), + [anon_sym_both] = ACTIONS(446), + [anon_sym_79] = ACTIONS(446), + [anon_sym_bracket] = ACTIONS(446), + [anon_sym_80] = ACTIONS(446), + [anon_sym_fork] = ACTIONS(446), + [anon_sym_81] = ACTIONS(446), + [anon_sym_under] = ACTIONS(446), + [anon_sym_82] = ACTIONS(446), + [anon_sym_level] = ACTIONS(446), + [anon_sym_83] = ACTIONS(446), + [anon_sym_fill] = ACTIONS(446), + [anon_sym_84] = ACTIONS(446), + [anon_sym_bind] = ACTIONS(446), + [anon_sym_SQUOTE] = ACTIONS(446), + [anon_sym_QMARK] = ACTIONS(446), + [anon_sym_try] = ACTIONS(444), + [anon_sym_85] = ACTIONS(446), + [anon_sym_combinate] = ACTIONS(446), + [anon_sym_86] = ACTIONS(446), + [anon_sym_87] = ACTIONS(446), + [anon_sym_88] = ACTIONS(446), + [anon_sym_89] = ACTIONS(446), + [anon_sym_90] = ACTIONS(446), + [anon_sym_91] = ACTIONS(446), + [anon_sym_92] = ACTIONS(446), + [anon_sym_93] = ACTIONS(446), [sym__whitespace] = ACTIONS(5), - [sym__end_of_line] = ACTIONS(464), + [sym__end_of_line] = ACTIONS(446), }, [111] = { - [aux_sym_number_token1] = ACTIONS(538), - [anon_sym_os] = ACTIONS(538), - [anon_sym_Family] = ACTIONS(538), - [anon_sym_Arch] = ACTIONS(538), - [anon_sym_ExeExt] = ACTIONS(538), - [anon_sym_PllExt] = ACTIONS(538), - [anon_sym_Sep] = ACTIONS(538), - [aux_sym_character_token1] = ACTIONS(540), - [sym_string] = ACTIONS(540), - [sym_multiLineString] = ACTIONS(540), - [anon_sym_PIPE] = ACTIONS(540), - [sym_identifier] = ACTIONS(538), - [sym_identifier_deprecated] = ACTIONS(538), - [sym_system] = ACTIONS(540), - [sym_comment] = ACTIONS(538), - [sym_tripleMinus] = ACTIONS(540), - [sym_openParen] = ACTIONS(540), - [sym_openCurly] = ACTIONS(540), - [sym_openBracket] = ACTIONS(540), - [sym_leftArrow] = ACTIONS(540), - [anon_sym_CARET] = ACTIONS(540), - [anon_sym_eta] = ACTIONS(540), - [anon_sym_] = ACTIONS(538), - [anon_sym_pi] = ACTIONS(538), - [anon_sym_2] = ACTIONS(538), - [anon_sym_tau] = ACTIONS(540), - [anon_sym_3] = ACTIONS(538), - [anon_sym_infinity] = ACTIONS(540), - [anon_sym_4] = ACTIONS(540), - [anon_sym_e] = ACTIONS(538), - [anon_sym_NaN] = ACTIONS(538), - [anon_sym_NumProcs] = ACTIONS(538), - [anon_sym_DOT] = ACTIONS(540), - [anon_sym_COMMA] = ACTIONS(540), - [anon_sym_5] = ACTIONS(540), - [anon_sym_SEMI] = ACTIONS(540), - [anon_sym_identity] = ACTIONS(540), - [anon_sym_id] = ACTIONS(538), - [anon_sym_6] = ACTIONS(540), - [anon_sym_not] = ACTIONS(540), - [anon_sym_7] = ACTIONS(540), - [anon_sym_sign] = ACTIONS(540), - [anon_sym_8] = ACTIONS(540), - [anon_sym_BQUOTE] = ACTIONS(540), - [anon_sym_9] = ACTIONS(540), - [anon_sym_absolutevalue] = ACTIONS(540), - [anon_sym_10] = ACTIONS(540), - [anon_sym_sqrt] = ACTIONS(540), - [anon_sym_11] = ACTIONS(540), - [anon_sym_sine] = ACTIONS(540), - [anon_sym_12] = ACTIONS(540), - [anon_sym_floor] = ACTIONS(540), - [anon_sym_13] = ACTIONS(540), - [anon_sym_ceiling] = ACTIONS(540), - [anon_sym_14] = ACTIONS(540), - [anon_sym_round] = ACTIONS(540), - [anon_sym_15] = ACTIONS(540), - [anon_sym_EQ] = ACTIONS(540), - [anon_sym_BANG_EQ] = ACTIONS(540), - [anon_sym_16] = ACTIONS(540), - [anon_sym_LT] = ACTIONS(538), - [anon_sym_LT_EQ] = ACTIONS(540), - [anon_sym_17] = ACTIONS(540), - [anon_sym_GT] = ACTIONS(538), - [anon_sym_GT_EQ] = ACTIONS(540), - [anon_sym_18] = ACTIONS(540), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(538), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_19] = ACTIONS(540), - [anon_sym_PERCENT] = ACTIONS(540), - [anon_sym_20] = ACTIONS(540), - [anon_sym_modulus] = ACTIONS(540), - [anon_sym_21] = ACTIONS(540), - [anon_sym_power] = ACTIONS(540), - [anon_sym_22] = ACTIONS(540), - [anon_sym_logarithm] = ACTIONS(540), - [anon_sym_23] = ACTIONS(540), - [anon_sym_minimum] = ACTIONS(540), - [anon_sym_24] = ACTIONS(540), - [anon_sym_maximum] = ACTIONS(540), - [anon_sym_25] = ACTIONS(540), - [anon_sym_atangent] = ACTIONS(540), - [anon_sym_26] = ACTIONS(540), - [anon_sym_length] = ACTIONS(540), - [anon_sym_27] = ACTIONS(540), - [anon_sym_shape] = ACTIONS(540), - [anon_sym_28] = ACTIONS(540), - [anon_sym_range] = ACTIONS(540), - [anon_sym_29] = ACTIONS(540), - [anon_sym_first] = ACTIONS(540), - [anon_sym_30] = ACTIONS(540), - [anon_sym_reverse] = ACTIONS(540), - [anon_sym_31] = ACTIONS(540), - [anon_sym_deshape] = ACTIONS(540), - [anon_sym_32] = ACTIONS(540), - [anon_sym_bits] = ACTIONS(540), - [anon_sym_33] = ACTIONS(540), - [anon_sym_transpose] = ACTIONS(540), - [anon_sym_34] = ACTIONS(540), - [anon_sym_rise] = ACTIONS(540), - [anon_sym_35] = ACTIONS(540), - [anon_sym_fall] = ACTIONS(540), - [anon_sym_36] = ACTIONS(540), - [anon_sym_where] = ACTIONS(540), - [anon_sym_37] = ACTIONS(540), - [anon_sym_classify] = ACTIONS(540), - [anon_sym_38] = ACTIONS(540), - [anon_sym_deduplicate] = ACTIONS(540), - [anon_sym_39] = ACTIONS(540), - [anon_sym_box] = ACTIONS(540), - [anon_sym_40] = ACTIONS(540), - [anon_sym_unbox] = ACTIONS(540), - [anon_sym_41] = ACTIONS(540), - [anon_sym_match] = ACTIONS(540), - [anon_sym_42] = ACTIONS(540), - [anon_sym_couple] = ACTIONS(540), - [anon_sym_43] = ACTIONS(540), - [anon_sym_join] = ACTIONS(540), - [anon_sym_44] = ACTIONS(540), - [anon_sym_select] = ACTIONS(540), - [anon_sym_45] = ACTIONS(540), - [anon_sym_pick] = ACTIONS(540), - [anon_sym_46] = ACTIONS(540), - [anon_sym_reshape] = ACTIONS(540), - [anon_sym_47] = ACTIONS(540), - [anon_sym_take] = ACTIONS(540), - [anon_sym_48] = ACTIONS(540), - [anon_sym_drop] = ACTIONS(540), - [anon_sym_49] = ACTIONS(540), - [anon_sym_rotate] = ACTIONS(540), - [anon_sym_50] = ACTIONS(540), - [anon_sym_windows] = ACTIONS(540), - [anon_sym_51] = ACTIONS(540), - [anon_sym_keep] = ACTIONS(540), - [anon_sym_52] = ACTIONS(540), - [anon_sym_find] = ACTIONS(540), - [anon_sym_53] = ACTIONS(540), - [anon_sym_member] = ACTIONS(540), - [anon_sym_54] = ACTIONS(540), - [anon_sym_indexof] = ACTIONS(540), - [anon_sym_55] = ACTIONS(540), - [anon_sym_assert] = ACTIONS(540), - [anon_sym_56] = ACTIONS(540), - [anon_sym_wait] = ACTIONS(540), - [anon_sym_break] = ACTIONS(540), - [anon_sym_57] = ACTIONS(540), - [anon_sym_parse] = ACTIONS(540), - [anon_sym_random] = ACTIONS(540), - [anon_sym_58] = ACTIONS(540), - [anon_sym_gen] = ACTIONS(540), - [anon_sym_deal] = ACTIONS(540), - [anon_sym_tag] = ACTIONS(540), - [anon_sym_now] = ACTIONS(540), - [anon_sym_type] = ACTIONS(540), - [anon_sym_59] = ACTIONS(540), - [anon_sym_dump] = ACTIONS(540), - [anon_sym_regex] = ACTIONS(540), - [anon_sym_utf] = ACTIONS(540), - [anon_sym_rock] = ACTIONS(540), - [anon_sym_60] = ACTIONS(540), - [anon_sym_surface] = ACTIONS(540), - [anon_sym_TILDE] = ACTIONS(540), - [anon_sym_deep] = ACTIONS(540), - [anon_sym_de] = ACTIONS(538), - [anon_sym_61] = ACTIONS(540), - [anon_sym_abyss] = ACTIONS(540), - [anon_sym_ab] = ACTIONS(538), - [anon_sym_62] = ACTIONS(540), - [anon_sym_seabed] = ACTIONS(540), - [anon_sym_se] = ACTIONS(538), - [anon_sym_63] = ACTIONS(540), - [anon_sym_send] = ACTIONS(540), - [anon_sym_recv] = ACTIONS(540), - [anon_sym_tryrecv] = ACTIONS(540), - [anon_sym_reduce] = ACTIONS(540), - [anon_sym_SLASH] = ACTIONS(540), - [anon_sym_scan] = ACTIONS(540), - [anon_sym_BSLASH] = ACTIONS(540), - [anon_sym_each] = ACTIONS(540), - [anon_sym_64] = ACTIONS(540), - [anon_sym_rows] = ACTIONS(540), - [anon_sym_65] = ACTIONS(540), - [anon_sym_repeat] = ACTIONS(540), - [anon_sym_66] = ACTIONS(540), - [anon_sym_dip] = ACTIONS(540), - [anon_sym_di] = ACTIONS(538), - [anon_sym_67] = ACTIONS(540), - [anon_sym_gap] = ACTIONS(540), - [anon_sym_ga] = ACTIONS(538), - [anon_sym_68] = ACTIONS(540), - [anon_sym_oust] = ACTIONS(540), - [anon_sym_69] = ACTIONS(540), - [anon_sym_invert] = ACTIONS(540), - [anon_sym_70] = ACTIONS(540), - [anon_sym_spawn] = ACTIONS(540), - [anon_sym_pack] = ACTIONS(540), - [anon_sym_71] = ACTIONS(540), - [anon_sym_tribute] = ACTIONS(540), - [anon_sym_72] = ACTIONS(540), - [anon_sym_fold] = ACTIONS(540), - [anon_sym_73] = ACTIONS(540), - [anon_sym_distribute] = ACTIONS(540), - [anon_sym_74] = ACTIONS(540), - [anon_sym_table] = ACTIONS(540), - [anon_sym_75] = ACTIONS(540), - [anon_sym_cross] = ACTIONS(540), - [anon_sym_76] = ACTIONS(540), - [anon_sym_group] = ACTIONS(540), - [anon_sym_77] = ACTIONS(540), - [anon_sym_partition] = ACTIONS(540), - [anon_sym_78] = ACTIONS(540), - [anon_sym_both] = ACTIONS(540), - [anon_sym_79] = ACTIONS(540), - [anon_sym_bracket] = ACTIONS(540), - [anon_sym_80] = ACTIONS(540), - [anon_sym_fork] = ACTIONS(540), - [anon_sym_81] = ACTIONS(540), - [anon_sym_under] = ACTIONS(540), - [anon_sym_82] = ACTIONS(540), - [anon_sym_level] = ACTIONS(540), - [anon_sym_83] = ACTIONS(540), - [anon_sym_fill] = ACTIONS(540), - [anon_sym_84] = ACTIONS(540), - [anon_sym_bind] = ACTIONS(540), - [anon_sym_SQUOTE] = ACTIONS(540), - [anon_sym_QMARK] = ACTIONS(540), - [anon_sym_try] = ACTIONS(538), - [anon_sym_85] = ACTIONS(540), - [anon_sym_combinate] = ACTIONS(540), - [anon_sym_86] = ACTIONS(540), - [anon_sym_87] = ACTIONS(540), - [anon_sym_88] = ACTIONS(540), - [anon_sym_89] = ACTIONS(540), - [anon_sym_90] = ACTIONS(540), - [anon_sym_91] = ACTIONS(540), - [anon_sym_92] = ACTIONS(540), - [anon_sym_93] = ACTIONS(540), + [aux_sym_number_token1] = ACTIONS(520), + [anon_sym_os] = ACTIONS(520), + [anon_sym_Family] = ACTIONS(520), + [anon_sym_Arch] = ACTIONS(520), + [anon_sym_ExeExt] = ACTIONS(520), + [anon_sym_PllExt] = ACTIONS(520), + [anon_sym_Sep] = ACTIONS(520), + [aux_sym_character_token1] = ACTIONS(522), + [sym_string] = ACTIONS(522), + [sym_multiLineString] = ACTIONS(522), + [anon_sym_PIPE] = ACTIONS(522), + [sym_identifier] = ACTIONS(520), + [sym_identifier_deprecated] = ACTIONS(520), + [sym_system] = ACTIONS(522), + [sym_comment] = ACTIONS(520), + [sym_tripleMinus] = ACTIONS(522), + [sym_openParen] = ACTIONS(522), + [sym_openCurly] = ACTIONS(522), + [sym_openBracket] = ACTIONS(522), + [sym_leftArrow] = ACTIONS(522), + [anon_sym_CARET] = ACTIONS(522), + [anon_sym_eta] = ACTIONS(522), + [anon_sym_] = ACTIONS(520), + [anon_sym_pi] = ACTIONS(520), + [anon_sym_2] = ACTIONS(520), + [anon_sym_tau] = ACTIONS(522), + [anon_sym_3] = ACTIONS(520), + [anon_sym_infinity] = ACTIONS(522), + [anon_sym_4] = ACTIONS(522), + [anon_sym_e] = ACTIONS(520), + [anon_sym_NaN] = ACTIONS(520), + [anon_sym_NumProcs] = ACTIONS(520), + [anon_sym_DOT] = ACTIONS(522), + [anon_sym_COMMA] = ACTIONS(522), + [anon_sym_5] = ACTIONS(522), + [anon_sym_SEMI] = ACTIONS(522), + [anon_sym_identity] = ACTIONS(522), + [anon_sym_id] = ACTIONS(520), + [anon_sym_6] = ACTIONS(522), + [anon_sym_not] = ACTIONS(522), + [anon_sym_7] = ACTIONS(522), + [anon_sym_sign] = ACTIONS(522), + [anon_sym_8] = ACTIONS(522), + [anon_sym_BQUOTE] = ACTIONS(522), + [anon_sym_9] = ACTIONS(522), + [anon_sym_absolutevalue] = ACTIONS(522), + [anon_sym_10] = ACTIONS(522), + [anon_sym_sqrt] = ACTIONS(522), + [anon_sym_11] = ACTIONS(522), + [anon_sym_sine] = ACTIONS(522), + [anon_sym_12] = ACTIONS(522), + [anon_sym_floor] = ACTIONS(522), + [anon_sym_13] = ACTIONS(522), + [anon_sym_ceiling] = ACTIONS(522), + [anon_sym_14] = ACTIONS(522), + [anon_sym_round] = ACTIONS(522), + [anon_sym_15] = ACTIONS(522), + [anon_sym_EQ] = ACTIONS(522), + [anon_sym_BANG_EQ] = ACTIONS(522), + [anon_sym_16] = ACTIONS(522), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_LT_EQ] = ACTIONS(522), + [anon_sym_17] = ACTIONS(522), + [anon_sym_GT] = ACTIONS(520), + [anon_sym_GT_EQ] = ACTIONS(522), + [anon_sym_18] = ACTIONS(522), + [anon_sym_PLUS] = ACTIONS(522), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_STAR] = ACTIONS(522), + [anon_sym_19] = ACTIONS(522), + [anon_sym_PERCENT] = ACTIONS(522), + [anon_sym_20] = ACTIONS(522), + [anon_sym_modulus] = ACTIONS(522), + [anon_sym_21] = ACTIONS(522), + [anon_sym_power] = ACTIONS(522), + [anon_sym_22] = ACTIONS(522), + [anon_sym_logarithm] = ACTIONS(522), + [anon_sym_23] = ACTIONS(522), + [anon_sym_minimum] = ACTIONS(522), + [anon_sym_24] = ACTIONS(522), + [anon_sym_maximum] = ACTIONS(522), + [anon_sym_25] = ACTIONS(522), + [anon_sym_atangent] = ACTIONS(522), + [anon_sym_26] = ACTIONS(522), + [anon_sym_length] = ACTIONS(522), + [anon_sym_27] = ACTIONS(522), + [anon_sym_shape] = ACTIONS(522), + [anon_sym_28] = ACTIONS(522), + [anon_sym_range] = ACTIONS(522), + [anon_sym_29] = ACTIONS(522), + [anon_sym_first] = ACTIONS(522), + [anon_sym_30] = ACTIONS(522), + [anon_sym_reverse] = ACTIONS(522), + [anon_sym_31] = ACTIONS(522), + [anon_sym_deshape] = ACTIONS(522), + [anon_sym_32] = ACTIONS(522), + [anon_sym_bits] = ACTIONS(522), + [anon_sym_33] = ACTIONS(522), + [anon_sym_transpose] = ACTIONS(522), + [anon_sym_34] = ACTIONS(522), + [anon_sym_rise] = ACTIONS(522), + [anon_sym_35] = ACTIONS(522), + [anon_sym_fall] = ACTIONS(522), + [anon_sym_36] = ACTIONS(522), + [anon_sym_where] = ACTIONS(522), + [anon_sym_37] = ACTIONS(522), + [anon_sym_classify] = ACTIONS(522), + [anon_sym_38] = ACTIONS(522), + [anon_sym_deduplicate] = ACTIONS(522), + [anon_sym_39] = ACTIONS(522), + [anon_sym_box] = ACTIONS(522), + [anon_sym_40] = ACTIONS(522), + [anon_sym_unbox] = ACTIONS(522), + [anon_sym_41] = ACTIONS(522), + [anon_sym_match] = ACTIONS(522), + [anon_sym_42] = ACTIONS(522), + [anon_sym_couple] = ACTIONS(522), + [anon_sym_43] = ACTIONS(522), + [anon_sym_join] = ACTIONS(522), + [anon_sym_44] = ACTIONS(522), + [anon_sym_select] = ACTIONS(522), + [anon_sym_45] = ACTIONS(522), + [anon_sym_pick] = ACTIONS(522), + [anon_sym_46] = ACTIONS(522), + [anon_sym_reshape] = ACTIONS(522), + [anon_sym_47] = ACTIONS(522), + [anon_sym_take] = ACTIONS(522), + [anon_sym_48] = ACTIONS(522), + [anon_sym_drop] = ACTIONS(522), + [anon_sym_49] = ACTIONS(522), + [anon_sym_rotate] = ACTIONS(522), + [anon_sym_50] = ACTIONS(522), + [anon_sym_windows] = ACTIONS(522), + [anon_sym_51] = ACTIONS(522), + [anon_sym_keep] = ACTIONS(522), + [anon_sym_52] = ACTIONS(522), + [anon_sym_find] = ACTIONS(522), + [anon_sym_53] = ACTIONS(522), + [anon_sym_member] = ACTIONS(522), + [anon_sym_54] = ACTIONS(522), + [anon_sym_indexof] = ACTIONS(522), + [anon_sym_55] = ACTIONS(522), + [anon_sym_assert] = ACTIONS(522), + [anon_sym_56] = ACTIONS(522), + [anon_sym_wait] = ACTIONS(522), + [anon_sym_break] = ACTIONS(522), + [anon_sym_57] = ACTIONS(522), + [anon_sym_parse] = ACTIONS(522), + [anon_sym_random] = ACTIONS(522), + [anon_sym_58] = ACTIONS(522), + [anon_sym_gen] = ACTIONS(522), + [anon_sym_deal] = ACTIONS(522), + [anon_sym_tag] = ACTIONS(522), + [anon_sym_now] = ACTIONS(522), + [anon_sym_type] = ACTIONS(522), + [anon_sym_59] = ACTIONS(522), + [anon_sym_dump] = ACTIONS(522), + [anon_sym_regex] = ACTIONS(522), + [anon_sym_utf] = ACTIONS(522), + [anon_sym_rock] = ACTIONS(522), + [anon_sym_60] = ACTIONS(522), + [anon_sym_surface] = ACTIONS(522), + [anon_sym_TILDE] = ACTIONS(522), + [anon_sym_deep] = ACTIONS(522), + [anon_sym_de] = ACTIONS(520), + [anon_sym_61] = ACTIONS(522), + [anon_sym_abyss] = ACTIONS(522), + [anon_sym_ab] = ACTIONS(520), + [anon_sym_62] = ACTIONS(522), + [anon_sym_seabed] = ACTIONS(522), + [anon_sym_se] = ACTIONS(520), + [anon_sym_63] = ACTIONS(522), + [anon_sym_send] = ACTIONS(522), + [anon_sym_recv] = ACTIONS(522), + [anon_sym_tryrecv] = ACTIONS(522), + [anon_sym_reduce] = ACTIONS(522), + [anon_sym_SLASH] = ACTIONS(522), + [anon_sym_scan] = ACTIONS(522), + [anon_sym_BSLASH] = ACTIONS(522), + [anon_sym_each] = ACTIONS(522), + [anon_sym_64] = ACTIONS(522), + [anon_sym_rows] = ACTIONS(522), + [anon_sym_65] = ACTIONS(522), + [anon_sym_repeat] = ACTIONS(522), + [anon_sym_66] = ACTIONS(522), + [anon_sym_dip] = ACTIONS(522), + [anon_sym_67] = ACTIONS(522), + [anon_sym_gap] = ACTIONS(522), + [anon_sym_68] = ACTIONS(522), + [anon_sym_69] = ACTIONS(522), + [anon_sym_invert] = ACTIONS(522), + [anon_sym_70] = ACTIONS(522), + [anon_sym_spawn] = ACTIONS(522), + [anon_sym_pack] = ACTIONS(522), + [anon_sym_71] = ACTIONS(522), + [anon_sym_tribute] = ACTIONS(522), + [anon_sym_72] = ACTIONS(522), + [anon_sym_reach] = ACTIONS(522), + [anon_sym_fold] = ACTIONS(522), + [anon_sym_73] = ACTIONS(522), + [anon_sym_distribute] = ACTIONS(522), + [anon_sym_74] = ACTIONS(522), + [anon_sym_table] = ACTIONS(522), + [anon_sym_75] = ACTIONS(522), + [anon_sym_cross] = ACTIONS(522), + [anon_sym_76] = ACTIONS(522), + [anon_sym_group] = ACTIONS(522), + [anon_sym_77] = ACTIONS(522), + [anon_sym_partition] = ACTIONS(522), + [anon_sym_78] = ACTIONS(522), + [anon_sym_both] = ACTIONS(522), + [anon_sym_79] = ACTIONS(522), + [anon_sym_bracket] = ACTIONS(522), + [anon_sym_80] = ACTIONS(522), + [anon_sym_fork] = ACTIONS(522), + [anon_sym_81] = ACTIONS(522), + [anon_sym_under] = ACTIONS(522), + [anon_sym_82] = ACTIONS(522), + [anon_sym_level] = ACTIONS(522), + [anon_sym_83] = ACTIONS(522), + [anon_sym_fill] = ACTIONS(522), + [anon_sym_84] = ACTIONS(522), + [anon_sym_bind] = ACTIONS(522), + [anon_sym_SQUOTE] = ACTIONS(522), + [anon_sym_QMARK] = ACTIONS(522), + [anon_sym_try] = ACTIONS(520), + [anon_sym_85] = ACTIONS(522), + [anon_sym_combinate] = ACTIONS(522), + [anon_sym_86] = ACTIONS(522), + [anon_sym_87] = ACTIONS(522), + [anon_sym_88] = ACTIONS(522), + [anon_sym_89] = ACTIONS(522), + [anon_sym_90] = ACTIONS(522), + [anon_sym_91] = ACTIONS(522), + [anon_sym_92] = ACTIONS(522), + [anon_sym_93] = ACTIONS(522), [sym__whitespace] = ACTIONS(5), [sym__end_of_line] = ACTIONS(5), }, [112] = { - [aux_sym_number_token1] = ACTIONS(542), - [anon_sym_os] = ACTIONS(542), - [anon_sym_Family] = ACTIONS(542), - [anon_sym_Arch] = ACTIONS(542), - [anon_sym_ExeExt] = ACTIONS(542), - [anon_sym_PllExt] = ACTIONS(542), - [anon_sym_Sep] = ACTIONS(542), - [aux_sym_character_token1] = ACTIONS(544), - [sym_string] = ACTIONS(544), - [sym_multiLineString] = ACTIONS(544), - [anon_sym_PIPE] = ACTIONS(544), - [sym_identifier] = ACTIONS(542), - [sym_identifier_deprecated] = ACTIONS(542), - [sym_system] = ACTIONS(544), - [sym_comment] = ACTIONS(542), - [sym_tripleMinus] = ACTIONS(546), - [sym_openParen] = ACTIONS(544), - [sym_openCurly] = ACTIONS(544), - [sym_openBracket] = ACTIONS(544), - [sym_leftArrow] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(544), - [anon_sym_eta] = ACTIONS(544), - [anon_sym_] = ACTIONS(542), - [anon_sym_pi] = ACTIONS(542), - [anon_sym_2] = ACTIONS(542), - [anon_sym_tau] = ACTIONS(544), - [anon_sym_3] = ACTIONS(542), - [anon_sym_infinity] = ACTIONS(544), - [anon_sym_4] = ACTIONS(544), - [anon_sym_e] = ACTIONS(542), - [anon_sym_NaN] = ACTIONS(542), - [anon_sym_NumProcs] = ACTIONS(542), - [anon_sym_DOT] = ACTIONS(544), - [anon_sym_COMMA] = ACTIONS(544), - [anon_sym_5] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(544), - [anon_sym_identity] = ACTIONS(544), - [anon_sym_id] = ACTIONS(542), - [anon_sym_6] = ACTIONS(544), - [anon_sym_not] = ACTIONS(544), - [anon_sym_7] = ACTIONS(544), - [anon_sym_sign] = ACTIONS(544), - [anon_sym_8] = ACTIONS(544), - [anon_sym_BQUOTE] = ACTIONS(544), - [anon_sym_9] = ACTIONS(544), - [anon_sym_absolutevalue] = ACTIONS(544), - [anon_sym_10] = ACTIONS(544), - [anon_sym_sqrt] = ACTIONS(544), - [anon_sym_11] = ACTIONS(544), - [anon_sym_sine] = ACTIONS(544), - [anon_sym_12] = ACTIONS(544), - [anon_sym_floor] = ACTIONS(544), - [anon_sym_13] = ACTIONS(544), - [anon_sym_ceiling] = ACTIONS(544), - [anon_sym_14] = ACTIONS(544), - [anon_sym_round] = ACTIONS(544), - [anon_sym_15] = ACTIONS(544), - [anon_sym_EQ] = ACTIONS(544), - [anon_sym_BANG_EQ] = ACTIONS(544), - [anon_sym_16] = ACTIONS(544), - [anon_sym_LT] = ACTIONS(542), - [anon_sym_LT_EQ] = ACTIONS(544), - [anon_sym_17] = ACTIONS(544), - [anon_sym_GT] = ACTIONS(542), - [anon_sym_GT_EQ] = ACTIONS(544), - [anon_sym_18] = ACTIONS(544), - [anon_sym_PLUS] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(542), - [anon_sym_STAR] = ACTIONS(544), - [anon_sym_19] = ACTIONS(544), - [anon_sym_PERCENT] = ACTIONS(544), - [anon_sym_20] = ACTIONS(544), - [anon_sym_modulus] = ACTIONS(544), - [anon_sym_21] = ACTIONS(544), - [anon_sym_power] = ACTIONS(544), - [anon_sym_22] = ACTIONS(544), - [anon_sym_logarithm] = ACTIONS(544), - [anon_sym_23] = ACTIONS(544), - [anon_sym_minimum] = ACTIONS(544), - [anon_sym_24] = ACTIONS(544), - [anon_sym_maximum] = ACTIONS(544), - [anon_sym_25] = ACTIONS(544), - [anon_sym_atangent] = ACTIONS(544), - [anon_sym_26] = ACTIONS(544), - [anon_sym_length] = ACTIONS(544), - [anon_sym_27] = ACTIONS(544), - [anon_sym_shape] = ACTIONS(544), - [anon_sym_28] = ACTIONS(544), - [anon_sym_range] = ACTIONS(544), - [anon_sym_29] = ACTIONS(544), - [anon_sym_first] = ACTIONS(544), - [anon_sym_30] = ACTIONS(544), - [anon_sym_reverse] = ACTIONS(544), - [anon_sym_31] = ACTIONS(544), - [anon_sym_deshape] = ACTIONS(544), - [anon_sym_32] = ACTIONS(544), - [anon_sym_bits] = ACTIONS(544), - [anon_sym_33] = ACTIONS(544), - [anon_sym_transpose] = ACTIONS(544), - [anon_sym_34] = ACTIONS(544), - [anon_sym_rise] = ACTIONS(544), - [anon_sym_35] = ACTIONS(544), - [anon_sym_fall] = ACTIONS(544), - [anon_sym_36] = ACTIONS(544), - [anon_sym_where] = ACTIONS(544), - [anon_sym_37] = ACTIONS(544), - [anon_sym_classify] = ACTIONS(544), - [anon_sym_38] = ACTIONS(544), - [anon_sym_deduplicate] = ACTIONS(544), - [anon_sym_39] = ACTIONS(544), - [anon_sym_box] = ACTIONS(544), - [anon_sym_40] = ACTIONS(544), - [anon_sym_unbox] = ACTIONS(544), - [anon_sym_41] = ACTIONS(544), - [anon_sym_match] = ACTIONS(544), - [anon_sym_42] = ACTIONS(544), - [anon_sym_couple] = ACTIONS(544), - [anon_sym_43] = ACTIONS(544), - [anon_sym_join] = ACTIONS(544), - [anon_sym_44] = ACTIONS(544), - [anon_sym_select] = ACTIONS(544), - [anon_sym_45] = ACTIONS(544), - [anon_sym_pick] = ACTIONS(544), - [anon_sym_46] = ACTIONS(544), - [anon_sym_reshape] = ACTIONS(544), - [anon_sym_47] = ACTIONS(544), - [anon_sym_take] = ACTIONS(544), - [anon_sym_48] = ACTIONS(544), - [anon_sym_drop] = ACTIONS(544), - [anon_sym_49] = ACTIONS(544), - [anon_sym_rotate] = ACTIONS(544), - [anon_sym_50] = ACTIONS(544), - [anon_sym_windows] = ACTIONS(544), - [anon_sym_51] = ACTIONS(544), - [anon_sym_keep] = ACTIONS(544), - [anon_sym_52] = ACTIONS(544), - [anon_sym_find] = ACTIONS(544), - [anon_sym_53] = ACTIONS(544), - [anon_sym_member] = ACTIONS(544), - [anon_sym_54] = ACTIONS(544), - [anon_sym_indexof] = ACTIONS(544), - [anon_sym_55] = ACTIONS(544), - [anon_sym_assert] = ACTIONS(544), - [anon_sym_56] = ACTIONS(544), - [anon_sym_wait] = ACTIONS(544), - [anon_sym_break] = ACTIONS(544), - [anon_sym_57] = ACTIONS(544), - [anon_sym_parse] = ACTIONS(544), - [anon_sym_random] = ACTIONS(544), - [anon_sym_58] = ACTIONS(544), - [anon_sym_gen] = ACTIONS(544), - [anon_sym_deal] = ACTIONS(544), - [anon_sym_tag] = ACTIONS(544), - [anon_sym_now] = ACTIONS(544), - [anon_sym_type] = ACTIONS(544), - [anon_sym_59] = ACTIONS(544), - [anon_sym_dump] = ACTIONS(544), - [anon_sym_regex] = ACTIONS(544), - [anon_sym_utf] = ACTIONS(544), - [anon_sym_rock] = ACTIONS(544), - [anon_sym_60] = ACTIONS(544), - [anon_sym_surface] = ACTIONS(544), - [anon_sym_TILDE] = ACTIONS(544), - [anon_sym_deep] = ACTIONS(544), - [anon_sym_de] = ACTIONS(542), - [anon_sym_61] = ACTIONS(544), - [anon_sym_abyss] = ACTIONS(544), - [anon_sym_ab] = ACTIONS(542), - [anon_sym_62] = ACTIONS(544), - [anon_sym_seabed] = ACTIONS(544), - [anon_sym_se] = ACTIONS(542), - [anon_sym_63] = ACTIONS(544), - [anon_sym_send] = ACTIONS(544), - [anon_sym_recv] = ACTIONS(544), - [anon_sym_tryrecv] = ACTIONS(544), - [anon_sym_reduce] = ACTIONS(544), - [anon_sym_SLASH] = ACTIONS(544), - [anon_sym_scan] = ACTIONS(544), - [anon_sym_BSLASH] = ACTIONS(544), - [anon_sym_each] = ACTIONS(544), - [anon_sym_64] = ACTIONS(544), - [anon_sym_rows] = ACTIONS(544), - [anon_sym_65] = ACTIONS(544), - [anon_sym_repeat] = ACTIONS(544), - [anon_sym_66] = ACTIONS(544), - [anon_sym_dip] = ACTIONS(544), - [anon_sym_di] = ACTIONS(542), - [anon_sym_67] = ACTIONS(544), - [anon_sym_gap] = ACTIONS(544), - [anon_sym_ga] = ACTIONS(542), - [anon_sym_68] = ACTIONS(544), - [anon_sym_oust] = ACTIONS(544), - [anon_sym_69] = ACTIONS(544), - [anon_sym_invert] = ACTIONS(544), - [anon_sym_70] = ACTIONS(544), - [anon_sym_spawn] = ACTIONS(544), - [anon_sym_pack] = ACTIONS(544), - [anon_sym_71] = ACTIONS(544), - [anon_sym_tribute] = ACTIONS(544), - [anon_sym_72] = ACTIONS(544), - [anon_sym_fold] = ACTIONS(544), - [anon_sym_73] = ACTIONS(544), - [anon_sym_distribute] = ACTIONS(544), - [anon_sym_74] = ACTIONS(544), - [anon_sym_table] = ACTIONS(544), - [anon_sym_75] = ACTIONS(544), - [anon_sym_cross] = ACTIONS(544), - [anon_sym_76] = ACTIONS(544), - [anon_sym_group] = ACTIONS(544), - [anon_sym_77] = ACTIONS(544), - [anon_sym_partition] = ACTIONS(544), - [anon_sym_78] = ACTIONS(544), - [anon_sym_both] = ACTIONS(544), - [anon_sym_79] = ACTIONS(544), - [anon_sym_bracket] = ACTIONS(544), - [anon_sym_80] = ACTIONS(544), - [anon_sym_fork] = ACTIONS(544), - [anon_sym_81] = ACTIONS(544), - [anon_sym_under] = ACTIONS(544), - [anon_sym_82] = ACTIONS(544), - [anon_sym_level] = ACTIONS(544), - [anon_sym_83] = ACTIONS(544), - [anon_sym_fill] = ACTIONS(544), - [anon_sym_84] = ACTIONS(544), - [anon_sym_bind] = ACTIONS(544), - [anon_sym_SQUOTE] = ACTIONS(544), - [anon_sym_QMARK] = ACTIONS(544), - [anon_sym_try] = ACTIONS(542), - [anon_sym_85] = ACTIONS(544), - [anon_sym_combinate] = ACTIONS(544), - [anon_sym_86] = ACTIONS(544), - [anon_sym_87] = ACTIONS(544), - [anon_sym_88] = ACTIONS(544), - [anon_sym_89] = ACTIONS(544), - [anon_sym_90] = ACTIONS(544), - [anon_sym_91] = ACTIONS(544), - [anon_sym_92] = ACTIONS(544), - [anon_sym_93] = ACTIONS(544), + [aux_sym_number_token1] = ACTIONS(524), + [anon_sym_os] = ACTIONS(524), + [anon_sym_Family] = ACTIONS(524), + [anon_sym_Arch] = ACTIONS(524), + [anon_sym_ExeExt] = ACTIONS(524), + [anon_sym_PllExt] = ACTIONS(524), + [anon_sym_Sep] = ACTIONS(524), + [aux_sym_character_token1] = ACTIONS(526), + [sym_string] = ACTIONS(526), + [sym_multiLineString] = ACTIONS(526), + [anon_sym_PIPE] = ACTIONS(526), + [sym_identifier] = ACTIONS(524), + [sym_identifier_deprecated] = ACTIONS(524), + [sym_system] = ACTIONS(526), + [sym_comment] = ACTIONS(524), + [sym_tripleMinus] = ACTIONS(528), + [sym_openParen] = ACTIONS(526), + [sym_openCurly] = ACTIONS(526), + [sym_openBracket] = ACTIONS(526), + [sym_leftArrow] = ACTIONS(526), + [anon_sym_CARET] = ACTIONS(526), + [anon_sym_eta] = ACTIONS(526), + [anon_sym_] = ACTIONS(524), + [anon_sym_pi] = ACTIONS(524), + [anon_sym_2] = ACTIONS(524), + [anon_sym_tau] = ACTIONS(526), + [anon_sym_3] = ACTIONS(524), + [anon_sym_infinity] = ACTIONS(526), + [anon_sym_4] = ACTIONS(526), + [anon_sym_e] = ACTIONS(524), + [anon_sym_NaN] = ACTIONS(524), + [anon_sym_NumProcs] = ACTIONS(524), + [anon_sym_DOT] = ACTIONS(526), + [anon_sym_COMMA] = ACTIONS(526), + [anon_sym_5] = ACTIONS(526), + [anon_sym_SEMI] = ACTIONS(526), + [anon_sym_identity] = ACTIONS(526), + [anon_sym_id] = ACTIONS(524), + [anon_sym_6] = ACTIONS(526), + [anon_sym_not] = ACTIONS(526), + [anon_sym_7] = ACTIONS(526), + [anon_sym_sign] = ACTIONS(526), + [anon_sym_8] = ACTIONS(526), + [anon_sym_BQUOTE] = ACTIONS(526), + [anon_sym_9] = ACTIONS(526), + [anon_sym_absolutevalue] = ACTIONS(526), + [anon_sym_10] = ACTIONS(526), + [anon_sym_sqrt] = ACTIONS(526), + [anon_sym_11] = ACTIONS(526), + [anon_sym_sine] = ACTIONS(526), + [anon_sym_12] = ACTIONS(526), + [anon_sym_floor] = ACTIONS(526), + [anon_sym_13] = ACTIONS(526), + [anon_sym_ceiling] = ACTIONS(526), + [anon_sym_14] = ACTIONS(526), + [anon_sym_round] = ACTIONS(526), + [anon_sym_15] = ACTIONS(526), + [anon_sym_EQ] = ACTIONS(526), + [anon_sym_BANG_EQ] = ACTIONS(526), + [anon_sym_16] = ACTIONS(526), + [anon_sym_LT] = ACTIONS(524), + [anon_sym_LT_EQ] = ACTIONS(526), + [anon_sym_17] = ACTIONS(526), + [anon_sym_GT] = ACTIONS(524), + [anon_sym_GT_EQ] = ACTIONS(526), + [anon_sym_18] = ACTIONS(526), + [anon_sym_PLUS] = ACTIONS(526), + [anon_sym_DASH] = ACTIONS(524), + [anon_sym_STAR] = ACTIONS(526), + [anon_sym_19] = ACTIONS(526), + [anon_sym_PERCENT] = ACTIONS(526), + [anon_sym_20] = ACTIONS(526), + [anon_sym_modulus] = ACTIONS(526), + [anon_sym_21] = ACTIONS(526), + [anon_sym_power] = ACTIONS(526), + [anon_sym_22] = ACTIONS(526), + [anon_sym_logarithm] = ACTIONS(526), + [anon_sym_23] = ACTIONS(526), + [anon_sym_minimum] = ACTIONS(526), + [anon_sym_24] = ACTIONS(526), + [anon_sym_maximum] = ACTIONS(526), + [anon_sym_25] = ACTIONS(526), + [anon_sym_atangent] = ACTIONS(526), + [anon_sym_26] = ACTIONS(526), + [anon_sym_length] = ACTIONS(526), + [anon_sym_27] = ACTIONS(526), + [anon_sym_shape] = ACTIONS(526), + [anon_sym_28] = ACTIONS(526), + [anon_sym_range] = ACTIONS(526), + [anon_sym_29] = ACTIONS(526), + [anon_sym_first] = ACTIONS(526), + [anon_sym_30] = ACTIONS(526), + [anon_sym_reverse] = ACTIONS(526), + [anon_sym_31] = ACTIONS(526), + [anon_sym_deshape] = ACTIONS(526), + [anon_sym_32] = ACTIONS(526), + [anon_sym_bits] = ACTIONS(526), + [anon_sym_33] = ACTIONS(526), + [anon_sym_transpose] = ACTIONS(526), + [anon_sym_34] = ACTIONS(526), + [anon_sym_rise] = ACTIONS(526), + [anon_sym_35] = ACTIONS(526), + [anon_sym_fall] = ACTIONS(526), + [anon_sym_36] = ACTIONS(526), + [anon_sym_where] = ACTIONS(526), + [anon_sym_37] = ACTIONS(526), + [anon_sym_classify] = ACTIONS(526), + [anon_sym_38] = ACTIONS(526), + [anon_sym_deduplicate] = ACTIONS(526), + [anon_sym_39] = ACTIONS(526), + [anon_sym_box] = ACTIONS(526), + [anon_sym_40] = ACTIONS(526), + [anon_sym_unbox] = ACTIONS(526), + [anon_sym_41] = ACTIONS(526), + [anon_sym_match] = ACTIONS(526), + [anon_sym_42] = ACTIONS(526), + [anon_sym_couple] = ACTIONS(526), + [anon_sym_43] = ACTIONS(526), + [anon_sym_join] = ACTIONS(526), + [anon_sym_44] = ACTIONS(526), + [anon_sym_select] = ACTIONS(526), + [anon_sym_45] = ACTIONS(526), + [anon_sym_pick] = ACTIONS(526), + [anon_sym_46] = ACTIONS(526), + [anon_sym_reshape] = ACTIONS(526), + [anon_sym_47] = ACTIONS(526), + [anon_sym_take] = ACTIONS(526), + [anon_sym_48] = ACTIONS(526), + [anon_sym_drop] = ACTIONS(526), + [anon_sym_49] = ACTIONS(526), + [anon_sym_rotate] = ACTIONS(526), + [anon_sym_50] = ACTIONS(526), + [anon_sym_windows] = ACTIONS(526), + [anon_sym_51] = ACTIONS(526), + [anon_sym_keep] = ACTIONS(526), + [anon_sym_52] = ACTIONS(526), + [anon_sym_find] = ACTIONS(526), + [anon_sym_53] = ACTIONS(526), + [anon_sym_member] = ACTIONS(526), + [anon_sym_54] = ACTIONS(526), + [anon_sym_indexof] = ACTIONS(526), + [anon_sym_55] = ACTIONS(526), + [anon_sym_assert] = ACTIONS(526), + [anon_sym_56] = ACTIONS(526), + [anon_sym_wait] = ACTIONS(526), + [anon_sym_break] = ACTIONS(526), + [anon_sym_57] = ACTIONS(526), + [anon_sym_parse] = ACTIONS(526), + [anon_sym_random] = ACTIONS(526), + [anon_sym_58] = ACTIONS(526), + [anon_sym_gen] = ACTIONS(526), + [anon_sym_deal] = ACTIONS(526), + [anon_sym_tag] = ACTIONS(526), + [anon_sym_now] = ACTIONS(526), + [anon_sym_type] = ACTIONS(526), + [anon_sym_59] = ACTIONS(526), + [anon_sym_dump] = ACTIONS(526), + [anon_sym_regex] = ACTIONS(526), + [anon_sym_utf] = ACTIONS(526), + [anon_sym_rock] = ACTIONS(526), + [anon_sym_60] = ACTIONS(526), + [anon_sym_surface] = ACTIONS(526), + [anon_sym_TILDE] = ACTIONS(526), + [anon_sym_deep] = ACTIONS(526), + [anon_sym_de] = ACTIONS(524), + [anon_sym_61] = ACTIONS(526), + [anon_sym_abyss] = ACTIONS(526), + [anon_sym_ab] = ACTIONS(524), + [anon_sym_62] = ACTIONS(526), + [anon_sym_seabed] = ACTIONS(526), + [anon_sym_se] = ACTIONS(524), + [anon_sym_63] = ACTIONS(526), + [anon_sym_send] = ACTIONS(526), + [anon_sym_recv] = ACTIONS(526), + [anon_sym_tryrecv] = ACTIONS(526), + [anon_sym_reduce] = ACTIONS(526), + [anon_sym_SLASH] = ACTIONS(526), + [anon_sym_scan] = ACTIONS(526), + [anon_sym_BSLASH] = ACTIONS(526), + [anon_sym_each] = ACTIONS(526), + [anon_sym_64] = ACTIONS(526), + [anon_sym_rows] = ACTIONS(526), + [anon_sym_65] = ACTIONS(526), + [anon_sym_repeat] = ACTIONS(526), + [anon_sym_66] = ACTIONS(526), + [anon_sym_dip] = ACTIONS(526), + [anon_sym_67] = ACTIONS(526), + [anon_sym_gap] = ACTIONS(526), + [anon_sym_68] = ACTIONS(526), + [anon_sym_69] = ACTIONS(526), + [anon_sym_invert] = ACTIONS(526), + [anon_sym_70] = ACTIONS(526), + [anon_sym_spawn] = ACTIONS(526), + [anon_sym_pack] = ACTIONS(526), + [anon_sym_71] = ACTIONS(526), + [anon_sym_tribute] = ACTIONS(526), + [anon_sym_72] = ACTIONS(526), + [anon_sym_reach] = ACTIONS(526), + [anon_sym_fold] = ACTIONS(526), + [anon_sym_73] = ACTIONS(526), + [anon_sym_distribute] = ACTIONS(526), + [anon_sym_74] = ACTIONS(526), + [anon_sym_table] = ACTIONS(526), + [anon_sym_75] = ACTIONS(526), + [anon_sym_cross] = ACTIONS(526), + [anon_sym_76] = ACTIONS(526), + [anon_sym_group] = ACTIONS(526), + [anon_sym_77] = ACTIONS(526), + [anon_sym_partition] = ACTIONS(526), + [anon_sym_78] = ACTIONS(526), + [anon_sym_both] = ACTIONS(526), + [anon_sym_79] = ACTIONS(526), + [anon_sym_bracket] = ACTIONS(526), + [anon_sym_80] = ACTIONS(526), + [anon_sym_fork] = ACTIONS(526), + [anon_sym_81] = ACTIONS(526), + [anon_sym_under] = ACTIONS(526), + [anon_sym_82] = ACTIONS(526), + [anon_sym_level] = ACTIONS(526), + [anon_sym_83] = ACTIONS(526), + [anon_sym_fill] = ACTIONS(526), + [anon_sym_84] = ACTIONS(526), + [anon_sym_bind] = ACTIONS(526), + [anon_sym_SQUOTE] = ACTIONS(526), + [anon_sym_QMARK] = ACTIONS(526), + [anon_sym_try] = ACTIONS(524), + [anon_sym_85] = ACTIONS(526), + [anon_sym_combinate] = ACTIONS(526), + [anon_sym_86] = ACTIONS(526), + [anon_sym_87] = ACTIONS(526), + [anon_sym_88] = ACTIONS(526), + [anon_sym_89] = ACTIONS(526), + [anon_sym_90] = ACTIONS(526), + [anon_sym_91] = ACTIONS(526), + [anon_sym_92] = ACTIONS(526), + [anon_sym_93] = ACTIONS(526), [sym__whitespace] = ACTIONS(5), [sym__end_of_line] = ACTIONS(5), }, [113] = { - [aux_sym_number_token1] = ACTIONS(542), - [anon_sym_os] = ACTIONS(542), - [anon_sym_Family] = ACTIONS(542), - [anon_sym_Arch] = ACTIONS(542), - [anon_sym_ExeExt] = ACTIONS(542), - [anon_sym_PllExt] = ACTIONS(542), - [anon_sym_Sep] = ACTIONS(542), - [aux_sym_character_token1] = ACTIONS(544), - [sym_string] = ACTIONS(544), - [sym_multiLineString] = ACTIONS(544), - [anon_sym_PIPE] = ACTIONS(544), - [sym_identifier] = ACTIONS(542), - [sym_identifier_deprecated] = ACTIONS(542), - [sym_system] = ACTIONS(544), - [sym_comment] = ACTIONS(542), - [sym_openParen] = ACTIONS(544), - [sym_closeParen] = ACTIONS(548), - [sym_openCurly] = ACTIONS(544), - [sym_openBracket] = ACTIONS(544), - [sym_leftArrow] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(544), - [anon_sym_eta] = ACTIONS(544), - [anon_sym_] = ACTIONS(542), - [anon_sym_pi] = ACTIONS(542), - [anon_sym_2] = ACTIONS(542), - [anon_sym_tau] = ACTIONS(544), - [anon_sym_3] = ACTIONS(542), - [anon_sym_infinity] = ACTIONS(544), - [anon_sym_4] = ACTIONS(544), - [anon_sym_e] = ACTIONS(542), - [anon_sym_NaN] = ACTIONS(542), - [anon_sym_NumProcs] = ACTIONS(542), - [anon_sym_DOT] = ACTIONS(544), - [anon_sym_COMMA] = ACTIONS(544), - [anon_sym_5] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(544), - [anon_sym_identity] = ACTIONS(544), - [anon_sym_id] = ACTIONS(542), - [anon_sym_6] = ACTIONS(544), - [anon_sym_not] = ACTIONS(544), - [anon_sym_7] = ACTIONS(544), - [anon_sym_sign] = ACTIONS(544), - [anon_sym_8] = ACTIONS(544), - [anon_sym_BQUOTE] = ACTIONS(544), - [anon_sym_9] = ACTIONS(544), - [anon_sym_absolutevalue] = ACTIONS(544), - [anon_sym_10] = ACTIONS(544), - [anon_sym_sqrt] = ACTIONS(544), - [anon_sym_11] = ACTIONS(544), - [anon_sym_sine] = ACTIONS(544), - [anon_sym_12] = ACTIONS(544), - [anon_sym_floor] = ACTIONS(544), - [anon_sym_13] = ACTIONS(544), - [anon_sym_ceiling] = ACTIONS(544), - [anon_sym_14] = ACTIONS(544), - [anon_sym_round] = ACTIONS(544), - [anon_sym_15] = ACTIONS(544), - [anon_sym_EQ] = ACTIONS(544), - [anon_sym_BANG_EQ] = ACTIONS(544), - [anon_sym_16] = ACTIONS(544), - [anon_sym_LT] = ACTIONS(542), - [anon_sym_LT_EQ] = ACTIONS(544), - [anon_sym_17] = ACTIONS(544), - [anon_sym_GT] = ACTIONS(542), - [anon_sym_GT_EQ] = ACTIONS(544), - [anon_sym_18] = ACTIONS(544), - [anon_sym_PLUS] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(544), - [anon_sym_STAR] = ACTIONS(544), - [anon_sym_19] = ACTIONS(544), - [anon_sym_PERCENT] = ACTIONS(544), - [anon_sym_20] = ACTIONS(544), - [anon_sym_modulus] = ACTIONS(544), - [anon_sym_21] = ACTIONS(544), - [anon_sym_power] = ACTIONS(544), - [anon_sym_22] = ACTIONS(544), - [anon_sym_logarithm] = ACTIONS(544), - [anon_sym_23] = ACTIONS(544), - [anon_sym_minimum] = ACTIONS(544), - [anon_sym_24] = ACTIONS(544), - [anon_sym_maximum] = ACTIONS(544), - [anon_sym_25] = ACTIONS(544), - [anon_sym_atangent] = ACTIONS(544), - [anon_sym_26] = ACTIONS(544), - [anon_sym_length] = ACTIONS(544), - [anon_sym_27] = ACTIONS(544), - [anon_sym_shape] = ACTIONS(544), - [anon_sym_28] = ACTIONS(544), - [anon_sym_range] = ACTIONS(544), - [anon_sym_29] = ACTIONS(544), - [anon_sym_first] = ACTIONS(544), - [anon_sym_30] = ACTIONS(544), - [anon_sym_reverse] = ACTIONS(544), - [anon_sym_31] = ACTIONS(544), - [anon_sym_deshape] = ACTIONS(544), - [anon_sym_32] = ACTIONS(544), - [anon_sym_bits] = ACTIONS(544), - [anon_sym_33] = ACTIONS(544), - [anon_sym_transpose] = ACTIONS(544), - [anon_sym_34] = ACTIONS(544), - [anon_sym_rise] = ACTIONS(544), - [anon_sym_35] = ACTIONS(544), - [anon_sym_fall] = ACTIONS(544), - [anon_sym_36] = ACTIONS(544), - [anon_sym_where] = ACTIONS(544), - [anon_sym_37] = ACTIONS(544), - [anon_sym_classify] = ACTIONS(544), - [anon_sym_38] = ACTIONS(544), - [anon_sym_deduplicate] = ACTIONS(544), - [anon_sym_39] = ACTIONS(544), - [anon_sym_box] = ACTIONS(544), - [anon_sym_40] = ACTIONS(544), - [anon_sym_unbox] = ACTIONS(544), - [anon_sym_41] = ACTIONS(544), - [anon_sym_match] = ACTIONS(544), - [anon_sym_42] = ACTIONS(544), - [anon_sym_couple] = ACTIONS(544), - [anon_sym_43] = ACTIONS(544), - [anon_sym_join] = ACTIONS(544), - [anon_sym_44] = ACTIONS(544), - [anon_sym_select] = ACTIONS(544), - [anon_sym_45] = ACTIONS(544), - [anon_sym_pick] = ACTIONS(544), - [anon_sym_46] = ACTIONS(544), - [anon_sym_reshape] = ACTIONS(544), - [anon_sym_47] = ACTIONS(544), - [anon_sym_take] = ACTIONS(544), - [anon_sym_48] = ACTIONS(544), - [anon_sym_drop] = ACTIONS(544), - [anon_sym_49] = ACTIONS(544), - [anon_sym_rotate] = ACTIONS(544), - [anon_sym_50] = ACTIONS(544), - [anon_sym_windows] = ACTIONS(544), - [anon_sym_51] = ACTIONS(544), - [anon_sym_keep] = ACTIONS(544), - [anon_sym_52] = ACTIONS(544), - [anon_sym_find] = ACTIONS(544), - [anon_sym_53] = ACTIONS(544), - [anon_sym_member] = ACTIONS(544), - [anon_sym_54] = ACTIONS(544), - [anon_sym_indexof] = ACTIONS(544), - [anon_sym_55] = ACTIONS(544), - [anon_sym_assert] = ACTIONS(544), - [anon_sym_56] = ACTIONS(544), - [anon_sym_wait] = ACTIONS(544), - [anon_sym_break] = ACTIONS(544), - [anon_sym_57] = ACTIONS(544), - [anon_sym_parse] = ACTIONS(544), - [anon_sym_random] = ACTIONS(544), - [anon_sym_58] = ACTIONS(544), - [anon_sym_gen] = ACTIONS(544), - [anon_sym_deal] = ACTIONS(544), - [anon_sym_tag] = ACTIONS(544), - [anon_sym_now] = ACTIONS(544), - [anon_sym_type] = ACTIONS(544), - [anon_sym_59] = ACTIONS(544), - [anon_sym_dump] = ACTIONS(544), - [anon_sym_regex] = ACTIONS(544), - [anon_sym_utf] = ACTIONS(544), - [anon_sym_rock] = ACTIONS(544), - [anon_sym_60] = ACTIONS(544), - [anon_sym_surface] = ACTIONS(544), - [anon_sym_TILDE] = ACTIONS(544), - [anon_sym_deep] = ACTIONS(544), - [anon_sym_de] = ACTIONS(542), - [anon_sym_61] = ACTIONS(544), - [anon_sym_abyss] = ACTIONS(544), - [anon_sym_ab] = ACTIONS(542), - [anon_sym_62] = ACTIONS(544), - [anon_sym_seabed] = ACTIONS(544), - [anon_sym_se] = ACTIONS(542), - [anon_sym_63] = ACTIONS(544), - [anon_sym_send] = ACTIONS(544), - [anon_sym_recv] = ACTIONS(544), - [anon_sym_tryrecv] = ACTIONS(544), - [anon_sym_reduce] = ACTIONS(544), - [anon_sym_SLASH] = ACTIONS(544), - [anon_sym_scan] = ACTIONS(544), - [anon_sym_BSLASH] = ACTIONS(544), - [anon_sym_each] = ACTIONS(544), - [anon_sym_64] = ACTIONS(544), - [anon_sym_rows] = ACTIONS(544), - [anon_sym_65] = ACTIONS(544), - [anon_sym_repeat] = ACTIONS(544), - [anon_sym_66] = ACTIONS(544), - [anon_sym_dip] = ACTIONS(544), - [anon_sym_di] = ACTIONS(542), - [anon_sym_67] = ACTIONS(544), - [anon_sym_gap] = ACTIONS(544), - [anon_sym_ga] = ACTIONS(542), - [anon_sym_68] = ACTIONS(544), - [anon_sym_oust] = ACTIONS(544), - [anon_sym_69] = ACTIONS(544), - [anon_sym_invert] = ACTIONS(544), - [anon_sym_70] = ACTIONS(544), - [anon_sym_spawn] = ACTIONS(544), - [anon_sym_pack] = ACTIONS(544), - [anon_sym_71] = ACTIONS(544), - [anon_sym_tribute] = ACTIONS(544), - [anon_sym_72] = ACTIONS(544), - [anon_sym_fold] = ACTIONS(544), - [anon_sym_73] = ACTIONS(544), - [anon_sym_distribute] = ACTIONS(544), - [anon_sym_74] = ACTIONS(544), - [anon_sym_table] = ACTIONS(544), - [anon_sym_75] = ACTIONS(544), - [anon_sym_cross] = ACTIONS(544), - [anon_sym_76] = ACTIONS(544), - [anon_sym_group] = ACTIONS(544), - [anon_sym_77] = ACTIONS(544), - [anon_sym_partition] = ACTIONS(544), - [anon_sym_78] = ACTIONS(544), - [anon_sym_both] = ACTIONS(544), - [anon_sym_79] = ACTIONS(544), - [anon_sym_bracket] = ACTIONS(544), - [anon_sym_80] = ACTIONS(544), - [anon_sym_fork] = ACTIONS(544), - [anon_sym_81] = ACTIONS(544), - [anon_sym_under] = ACTIONS(544), - [anon_sym_82] = ACTIONS(544), - [anon_sym_level] = ACTIONS(544), - [anon_sym_83] = ACTIONS(544), - [anon_sym_fill] = ACTIONS(544), - [anon_sym_84] = ACTIONS(544), - [anon_sym_bind] = ACTIONS(544), - [anon_sym_SQUOTE] = ACTIONS(544), - [anon_sym_QMARK] = ACTIONS(544), - [anon_sym_try] = ACTIONS(542), - [anon_sym_85] = ACTIONS(544), - [anon_sym_combinate] = ACTIONS(544), - [anon_sym_86] = ACTIONS(544), - [anon_sym_87] = ACTIONS(544), - [anon_sym_88] = ACTIONS(544), - [anon_sym_89] = ACTIONS(544), - [anon_sym_90] = ACTIONS(544), - [anon_sym_91] = ACTIONS(544), - [anon_sym_92] = ACTIONS(544), - [anon_sym_93] = ACTIONS(544), + [aux_sym_number_token1] = ACTIONS(524), + [anon_sym_os] = ACTIONS(524), + [anon_sym_Family] = ACTIONS(524), + [anon_sym_Arch] = ACTIONS(524), + [anon_sym_ExeExt] = ACTIONS(524), + [anon_sym_PllExt] = ACTIONS(524), + [anon_sym_Sep] = ACTIONS(524), + [aux_sym_character_token1] = ACTIONS(526), + [sym_string] = ACTIONS(526), + [sym_multiLineString] = ACTIONS(526), + [anon_sym_PIPE] = ACTIONS(526), + [sym_identifier] = ACTIONS(524), + [sym_identifier_deprecated] = ACTIONS(524), + [sym_system] = ACTIONS(526), + [sym_comment] = ACTIONS(524), + [sym_openParen] = ACTIONS(526), + [sym_closeParen] = ACTIONS(530), + [sym_openCurly] = ACTIONS(526), + [sym_openBracket] = ACTIONS(526), + [sym_leftArrow] = ACTIONS(526), + [anon_sym_CARET] = ACTIONS(526), + [anon_sym_eta] = ACTIONS(526), + [anon_sym_] = ACTIONS(524), + [anon_sym_pi] = ACTIONS(524), + [anon_sym_2] = ACTIONS(524), + [anon_sym_tau] = ACTIONS(526), + [anon_sym_3] = ACTIONS(524), + [anon_sym_infinity] = ACTIONS(526), + [anon_sym_4] = ACTIONS(526), + [anon_sym_e] = ACTIONS(524), + [anon_sym_NaN] = ACTIONS(524), + [anon_sym_NumProcs] = ACTIONS(524), + [anon_sym_DOT] = ACTIONS(526), + [anon_sym_COMMA] = ACTIONS(526), + [anon_sym_5] = ACTIONS(526), + [anon_sym_SEMI] = ACTIONS(526), + [anon_sym_identity] = ACTIONS(526), + [anon_sym_id] = ACTIONS(524), + [anon_sym_6] = ACTIONS(526), + [anon_sym_not] = ACTIONS(526), + [anon_sym_7] = ACTIONS(526), + [anon_sym_sign] = ACTIONS(526), + [anon_sym_8] = ACTIONS(526), + [anon_sym_BQUOTE] = ACTIONS(526), + [anon_sym_9] = ACTIONS(526), + [anon_sym_absolutevalue] = ACTIONS(526), + [anon_sym_10] = ACTIONS(526), + [anon_sym_sqrt] = ACTIONS(526), + [anon_sym_11] = ACTIONS(526), + [anon_sym_sine] = ACTIONS(526), + [anon_sym_12] = ACTIONS(526), + [anon_sym_floor] = ACTIONS(526), + [anon_sym_13] = ACTIONS(526), + [anon_sym_ceiling] = ACTIONS(526), + [anon_sym_14] = ACTIONS(526), + [anon_sym_round] = ACTIONS(526), + [anon_sym_15] = ACTIONS(526), + [anon_sym_EQ] = ACTIONS(526), + [anon_sym_BANG_EQ] = ACTIONS(526), + [anon_sym_16] = ACTIONS(526), + [anon_sym_LT] = ACTIONS(524), + [anon_sym_LT_EQ] = ACTIONS(526), + [anon_sym_17] = ACTIONS(526), + [anon_sym_GT] = ACTIONS(524), + [anon_sym_GT_EQ] = ACTIONS(526), + [anon_sym_18] = ACTIONS(526), + [anon_sym_PLUS] = ACTIONS(526), + [anon_sym_DASH] = ACTIONS(526), + [anon_sym_STAR] = ACTIONS(526), + [anon_sym_19] = ACTIONS(526), + [anon_sym_PERCENT] = ACTIONS(526), + [anon_sym_20] = ACTIONS(526), + [anon_sym_modulus] = ACTIONS(526), + [anon_sym_21] = ACTIONS(526), + [anon_sym_power] = ACTIONS(526), + [anon_sym_22] = ACTIONS(526), + [anon_sym_logarithm] = ACTIONS(526), + [anon_sym_23] = ACTIONS(526), + [anon_sym_minimum] = ACTIONS(526), + [anon_sym_24] = ACTIONS(526), + [anon_sym_maximum] = ACTIONS(526), + [anon_sym_25] = ACTIONS(526), + [anon_sym_atangent] = ACTIONS(526), + [anon_sym_26] = ACTIONS(526), + [anon_sym_length] = ACTIONS(526), + [anon_sym_27] = ACTIONS(526), + [anon_sym_shape] = ACTIONS(526), + [anon_sym_28] = ACTIONS(526), + [anon_sym_range] = ACTIONS(526), + [anon_sym_29] = ACTIONS(526), + [anon_sym_first] = ACTIONS(526), + [anon_sym_30] = ACTIONS(526), + [anon_sym_reverse] = ACTIONS(526), + [anon_sym_31] = ACTIONS(526), + [anon_sym_deshape] = ACTIONS(526), + [anon_sym_32] = ACTIONS(526), + [anon_sym_bits] = ACTIONS(526), + [anon_sym_33] = ACTIONS(526), + [anon_sym_transpose] = ACTIONS(526), + [anon_sym_34] = ACTIONS(526), + [anon_sym_rise] = ACTIONS(526), + [anon_sym_35] = ACTIONS(526), + [anon_sym_fall] = ACTIONS(526), + [anon_sym_36] = ACTIONS(526), + [anon_sym_where] = ACTIONS(526), + [anon_sym_37] = ACTIONS(526), + [anon_sym_classify] = ACTIONS(526), + [anon_sym_38] = ACTIONS(526), + [anon_sym_deduplicate] = ACTIONS(526), + [anon_sym_39] = ACTIONS(526), + [anon_sym_box] = ACTIONS(526), + [anon_sym_40] = ACTIONS(526), + [anon_sym_unbox] = ACTIONS(526), + [anon_sym_41] = ACTIONS(526), + [anon_sym_match] = ACTIONS(526), + [anon_sym_42] = ACTIONS(526), + [anon_sym_couple] = ACTIONS(526), + [anon_sym_43] = ACTIONS(526), + [anon_sym_join] = ACTIONS(526), + [anon_sym_44] = ACTIONS(526), + [anon_sym_select] = ACTIONS(526), + [anon_sym_45] = ACTIONS(526), + [anon_sym_pick] = ACTIONS(526), + [anon_sym_46] = ACTIONS(526), + [anon_sym_reshape] = ACTIONS(526), + [anon_sym_47] = ACTIONS(526), + [anon_sym_take] = ACTIONS(526), + [anon_sym_48] = ACTIONS(526), + [anon_sym_drop] = ACTIONS(526), + [anon_sym_49] = ACTIONS(526), + [anon_sym_rotate] = ACTIONS(526), + [anon_sym_50] = ACTIONS(526), + [anon_sym_windows] = ACTIONS(526), + [anon_sym_51] = ACTIONS(526), + [anon_sym_keep] = ACTIONS(526), + [anon_sym_52] = ACTIONS(526), + [anon_sym_find] = ACTIONS(526), + [anon_sym_53] = ACTIONS(526), + [anon_sym_member] = ACTIONS(526), + [anon_sym_54] = ACTIONS(526), + [anon_sym_indexof] = ACTIONS(526), + [anon_sym_55] = ACTIONS(526), + [anon_sym_assert] = ACTIONS(526), + [anon_sym_56] = ACTIONS(526), + [anon_sym_wait] = ACTIONS(526), + [anon_sym_break] = ACTIONS(526), + [anon_sym_57] = ACTIONS(526), + [anon_sym_parse] = ACTIONS(526), + [anon_sym_random] = ACTIONS(526), + [anon_sym_58] = ACTIONS(526), + [anon_sym_gen] = ACTIONS(526), + [anon_sym_deal] = ACTIONS(526), + [anon_sym_tag] = ACTIONS(526), + [anon_sym_now] = ACTIONS(526), + [anon_sym_type] = ACTIONS(526), + [anon_sym_59] = ACTIONS(526), + [anon_sym_dump] = ACTIONS(526), + [anon_sym_regex] = ACTIONS(526), + [anon_sym_utf] = ACTIONS(526), + [anon_sym_rock] = ACTIONS(526), + [anon_sym_60] = ACTIONS(526), + [anon_sym_surface] = ACTIONS(526), + [anon_sym_TILDE] = ACTIONS(526), + [anon_sym_deep] = ACTIONS(526), + [anon_sym_de] = ACTIONS(524), + [anon_sym_61] = ACTIONS(526), + [anon_sym_abyss] = ACTIONS(526), + [anon_sym_ab] = ACTIONS(524), + [anon_sym_62] = ACTIONS(526), + [anon_sym_seabed] = ACTIONS(526), + [anon_sym_se] = ACTIONS(524), + [anon_sym_63] = ACTIONS(526), + [anon_sym_send] = ACTIONS(526), + [anon_sym_recv] = ACTIONS(526), + [anon_sym_tryrecv] = ACTIONS(526), + [anon_sym_reduce] = ACTIONS(526), + [anon_sym_SLASH] = ACTIONS(526), + [anon_sym_scan] = ACTIONS(526), + [anon_sym_BSLASH] = ACTIONS(526), + [anon_sym_each] = ACTIONS(526), + [anon_sym_64] = ACTIONS(526), + [anon_sym_rows] = ACTIONS(526), + [anon_sym_65] = ACTIONS(526), + [anon_sym_repeat] = ACTIONS(526), + [anon_sym_66] = ACTIONS(526), + [anon_sym_dip] = ACTIONS(526), + [anon_sym_67] = ACTIONS(526), + [anon_sym_gap] = ACTIONS(526), + [anon_sym_68] = ACTIONS(526), + [anon_sym_69] = ACTIONS(526), + [anon_sym_invert] = ACTIONS(526), + [anon_sym_70] = ACTIONS(526), + [anon_sym_spawn] = ACTIONS(526), + [anon_sym_pack] = ACTIONS(526), + [anon_sym_71] = ACTIONS(526), + [anon_sym_tribute] = ACTIONS(526), + [anon_sym_72] = ACTIONS(526), + [anon_sym_reach] = ACTIONS(526), + [anon_sym_fold] = ACTIONS(526), + [anon_sym_73] = ACTIONS(526), + [anon_sym_distribute] = ACTIONS(526), + [anon_sym_74] = ACTIONS(526), + [anon_sym_table] = ACTIONS(526), + [anon_sym_75] = ACTIONS(526), + [anon_sym_cross] = ACTIONS(526), + [anon_sym_76] = ACTIONS(526), + [anon_sym_group] = ACTIONS(526), + [anon_sym_77] = ACTIONS(526), + [anon_sym_partition] = ACTIONS(526), + [anon_sym_78] = ACTIONS(526), + [anon_sym_both] = ACTIONS(526), + [anon_sym_79] = ACTIONS(526), + [anon_sym_bracket] = ACTIONS(526), + [anon_sym_80] = ACTIONS(526), + [anon_sym_fork] = ACTIONS(526), + [anon_sym_81] = ACTIONS(526), + [anon_sym_under] = ACTIONS(526), + [anon_sym_82] = ACTIONS(526), + [anon_sym_level] = ACTIONS(526), + [anon_sym_83] = ACTIONS(526), + [anon_sym_fill] = ACTIONS(526), + [anon_sym_84] = ACTIONS(526), + [anon_sym_bind] = ACTIONS(526), + [anon_sym_SQUOTE] = ACTIONS(526), + [anon_sym_QMARK] = ACTIONS(526), + [anon_sym_try] = ACTIONS(524), + [anon_sym_85] = ACTIONS(526), + [anon_sym_combinate] = ACTIONS(526), + [anon_sym_86] = ACTIONS(526), + [anon_sym_87] = ACTIONS(526), + [anon_sym_88] = ACTIONS(526), + [anon_sym_89] = ACTIONS(526), + [anon_sym_90] = ACTIONS(526), + [anon_sym_91] = ACTIONS(526), + [anon_sym_92] = ACTIONS(526), + [anon_sym_93] = ACTIONS(526), [sym__whitespace] = ACTIONS(5), [sym__end_of_line] = ACTIONS(5), }, [114] = { - [aux_sym_number_token1] = ACTIONS(542), - [anon_sym_os] = ACTIONS(542), - [anon_sym_Family] = ACTIONS(542), - [anon_sym_Arch] = ACTIONS(542), - [anon_sym_ExeExt] = ACTIONS(542), - [anon_sym_PllExt] = ACTIONS(542), - [anon_sym_Sep] = ACTIONS(542), - [aux_sym_character_token1] = ACTIONS(544), - [sym_string] = ACTIONS(544), - [sym_multiLineString] = ACTIONS(544), - [anon_sym_PIPE] = ACTIONS(544), - [sym_identifier] = ACTIONS(542), - [sym_identifier_deprecated] = ACTIONS(542), - [sym_system] = ACTIONS(544), - [sym_comment] = ACTIONS(542), - [sym_openParen] = ACTIONS(544), - [sym_closeParen] = ACTIONS(550), - [sym_openCurly] = ACTIONS(544), - [sym_openBracket] = ACTIONS(544), - [sym_leftArrow] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(544), - [anon_sym_eta] = ACTIONS(544), - [anon_sym_] = ACTIONS(542), - [anon_sym_pi] = ACTIONS(542), - [anon_sym_2] = ACTIONS(542), - [anon_sym_tau] = ACTIONS(544), - [anon_sym_3] = ACTIONS(542), - [anon_sym_infinity] = ACTIONS(544), - [anon_sym_4] = ACTIONS(544), - [anon_sym_e] = ACTIONS(542), - [anon_sym_NaN] = ACTIONS(542), - [anon_sym_NumProcs] = ACTIONS(542), - [anon_sym_DOT] = ACTIONS(544), - [anon_sym_COMMA] = ACTIONS(544), - [anon_sym_5] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(544), - [anon_sym_identity] = ACTIONS(544), - [anon_sym_id] = ACTIONS(542), - [anon_sym_6] = ACTIONS(544), - [anon_sym_not] = ACTIONS(544), - [anon_sym_7] = ACTIONS(544), - [anon_sym_sign] = ACTIONS(544), - [anon_sym_8] = ACTIONS(544), - [anon_sym_BQUOTE] = ACTIONS(544), - [anon_sym_9] = ACTIONS(544), - [anon_sym_absolutevalue] = ACTIONS(544), - [anon_sym_10] = ACTIONS(544), - [anon_sym_sqrt] = ACTIONS(544), - [anon_sym_11] = ACTIONS(544), - [anon_sym_sine] = ACTIONS(544), - [anon_sym_12] = ACTIONS(544), - [anon_sym_floor] = ACTIONS(544), - [anon_sym_13] = ACTIONS(544), - [anon_sym_ceiling] = ACTIONS(544), - [anon_sym_14] = ACTIONS(544), - [anon_sym_round] = ACTIONS(544), - [anon_sym_15] = ACTIONS(544), - [anon_sym_EQ] = ACTIONS(544), - [anon_sym_BANG_EQ] = ACTIONS(544), - [anon_sym_16] = ACTIONS(544), - [anon_sym_LT] = ACTIONS(542), - [anon_sym_LT_EQ] = ACTIONS(544), - [anon_sym_17] = ACTIONS(544), - [anon_sym_GT] = ACTIONS(542), - [anon_sym_GT_EQ] = ACTIONS(544), - [anon_sym_18] = ACTIONS(544), - [anon_sym_PLUS] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(544), - [anon_sym_STAR] = ACTIONS(544), - [anon_sym_19] = ACTIONS(544), - [anon_sym_PERCENT] = ACTIONS(544), - [anon_sym_20] = ACTIONS(544), - [anon_sym_modulus] = ACTIONS(544), - [anon_sym_21] = ACTIONS(544), - [anon_sym_power] = ACTIONS(544), - [anon_sym_22] = ACTIONS(544), - [anon_sym_logarithm] = ACTIONS(544), - [anon_sym_23] = ACTIONS(544), - [anon_sym_minimum] = ACTIONS(544), - [anon_sym_24] = ACTIONS(544), - [anon_sym_maximum] = ACTIONS(544), - [anon_sym_25] = ACTIONS(544), - [anon_sym_atangent] = ACTIONS(544), - [anon_sym_26] = ACTIONS(544), - [anon_sym_length] = ACTIONS(544), - [anon_sym_27] = ACTIONS(544), - [anon_sym_shape] = ACTIONS(544), - [anon_sym_28] = ACTIONS(544), - [anon_sym_range] = ACTIONS(544), - [anon_sym_29] = ACTIONS(544), - [anon_sym_first] = ACTIONS(544), - [anon_sym_30] = ACTIONS(544), - [anon_sym_reverse] = ACTIONS(544), - [anon_sym_31] = ACTIONS(544), - [anon_sym_deshape] = ACTIONS(544), - [anon_sym_32] = ACTIONS(544), - [anon_sym_bits] = ACTIONS(544), - [anon_sym_33] = ACTIONS(544), - [anon_sym_transpose] = ACTIONS(544), - [anon_sym_34] = ACTIONS(544), - [anon_sym_rise] = ACTIONS(544), - [anon_sym_35] = ACTIONS(544), - [anon_sym_fall] = ACTIONS(544), - [anon_sym_36] = ACTIONS(544), - [anon_sym_where] = ACTIONS(544), - [anon_sym_37] = ACTIONS(544), - [anon_sym_classify] = ACTIONS(544), - [anon_sym_38] = ACTIONS(544), - [anon_sym_deduplicate] = ACTIONS(544), - [anon_sym_39] = ACTIONS(544), - [anon_sym_box] = ACTIONS(544), - [anon_sym_40] = ACTIONS(544), - [anon_sym_unbox] = ACTIONS(544), - [anon_sym_41] = ACTIONS(544), - [anon_sym_match] = ACTIONS(544), - [anon_sym_42] = ACTIONS(544), - [anon_sym_couple] = ACTIONS(544), - [anon_sym_43] = ACTIONS(544), - [anon_sym_join] = ACTIONS(544), - [anon_sym_44] = ACTIONS(544), - [anon_sym_select] = ACTIONS(544), - [anon_sym_45] = ACTIONS(544), - [anon_sym_pick] = ACTIONS(544), - [anon_sym_46] = ACTIONS(544), - [anon_sym_reshape] = ACTIONS(544), - [anon_sym_47] = ACTIONS(544), - [anon_sym_take] = ACTIONS(544), - [anon_sym_48] = ACTIONS(544), - [anon_sym_drop] = ACTIONS(544), - [anon_sym_49] = ACTIONS(544), - [anon_sym_rotate] = ACTIONS(544), - [anon_sym_50] = ACTIONS(544), - [anon_sym_windows] = ACTIONS(544), - [anon_sym_51] = ACTIONS(544), - [anon_sym_keep] = ACTIONS(544), - [anon_sym_52] = ACTIONS(544), - [anon_sym_find] = ACTIONS(544), - [anon_sym_53] = ACTIONS(544), - [anon_sym_member] = ACTIONS(544), - [anon_sym_54] = ACTIONS(544), - [anon_sym_indexof] = ACTIONS(544), - [anon_sym_55] = ACTIONS(544), - [anon_sym_assert] = ACTIONS(544), - [anon_sym_56] = ACTIONS(544), - [anon_sym_wait] = ACTIONS(544), - [anon_sym_break] = ACTIONS(544), - [anon_sym_57] = ACTIONS(544), - [anon_sym_parse] = ACTIONS(544), - [anon_sym_random] = ACTIONS(544), - [anon_sym_58] = ACTIONS(544), - [anon_sym_gen] = ACTIONS(544), - [anon_sym_deal] = ACTIONS(544), - [anon_sym_tag] = ACTIONS(544), - [anon_sym_now] = ACTIONS(544), - [anon_sym_type] = ACTIONS(544), - [anon_sym_59] = ACTIONS(544), - [anon_sym_dump] = ACTIONS(544), - [anon_sym_regex] = ACTIONS(544), - [anon_sym_utf] = ACTIONS(544), - [anon_sym_rock] = ACTIONS(544), - [anon_sym_60] = ACTIONS(544), - [anon_sym_surface] = ACTIONS(544), - [anon_sym_TILDE] = ACTIONS(544), - [anon_sym_deep] = ACTIONS(544), - [anon_sym_de] = ACTIONS(542), - [anon_sym_61] = ACTIONS(544), - [anon_sym_abyss] = ACTIONS(544), - [anon_sym_ab] = ACTIONS(542), - [anon_sym_62] = ACTIONS(544), - [anon_sym_seabed] = ACTIONS(544), - [anon_sym_se] = ACTIONS(542), - [anon_sym_63] = ACTIONS(544), - [anon_sym_send] = ACTIONS(544), - [anon_sym_recv] = ACTIONS(544), - [anon_sym_tryrecv] = ACTIONS(544), - [anon_sym_reduce] = ACTIONS(544), - [anon_sym_SLASH] = ACTIONS(544), - [anon_sym_scan] = ACTIONS(544), - [anon_sym_BSLASH] = ACTIONS(544), - [anon_sym_each] = ACTIONS(544), - [anon_sym_64] = ACTIONS(544), - [anon_sym_rows] = ACTIONS(544), - [anon_sym_65] = ACTIONS(544), - [anon_sym_repeat] = ACTIONS(544), - [anon_sym_66] = ACTIONS(544), - [anon_sym_dip] = ACTIONS(544), - [anon_sym_di] = ACTIONS(542), - [anon_sym_67] = ACTIONS(544), - [anon_sym_gap] = ACTIONS(544), - [anon_sym_ga] = ACTIONS(542), - [anon_sym_68] = ACTIONS(544), - [anon_sym_oust] = ACTIONS(544), - [anon_sym_69] = ACTIONS(544), - [anon_sym_invert] = ACTIONS(544), - [anon_sym_70] = ACTIONS(544), - [anon_sym_spawn] = ACTIONS(544), - [anon_sym_pack] = ACTIONS(544), - [anon_sym_71] = ACTIONS(544), - [anon_sym_tribute] = ACTIONS(544), - [anon_sym_72] = ACTIONS(544), - [anon_sym_fold] = ACTIONS(544), - [anon_sym_73] = ACTIONS(544), - [anon_sym_distribute] = ACTIONS(544), - [anon_sym_74] = ACTIONS(544), - [anon_sym_table] = ACTIONS(544), - [anon_sym_75] = ACTIONS(544), - [anon_sym_cross] = ACTIONS(544), - [anon_sym_76] = ACTIONS(544), - [anon_sym_group] = ACTIONS(544), - [anon_sym_77] = ACTIONS(544), - [anon_sym_partition] = ACTIONS(544), - [anon_sym_78] = ACTIONS(544), - [anon_sym_both] = ACTIONS(544), - [anon_sym_79] = ACTIONS(544), - [anon_sym_bracket] = ACTIONS(544), - [anon_sym_80] = ACTIONS(544), - [anon_sym_fork] = ACTIONS(544), - [anon_sym_81] = ACTIONS(544), - [anon_sym_under] = ACTIONS(544), - [anon_sym_82] = ACTIONS(544), - [anon_sym_level] = ACTIONS(544), - [anon_sym_83] = ACTIONS(544), - [anon_sym_fill] = ACTIONS(544), - [anon_sym_84] = ACTIONS(544), - [anon_sym_bind] = ACTIONS(544), - [anon_sym_SQUOTE] = ACTIONS(544), - [anon_sym_QMARK] = ACTIONS(544), - [anon_sym_try] = ACTIONS(542), - [anon_sym_85] = ACTIONS(544), - [anon_sym_combinate] = ACTIONS(544), - [anon_sym_86] = ACTIONS(544), - [anon_sym_87] = ACTIONS(544), - [anon_sym_88] = ACTIONS(544), - [anon_sym_89] = ACTIONS(544), - [anon_sym_90] = ACTIONS(544), - [anon_sym_91] = ACTIONS(544), - [anon_sym_92] = ACTIONS(544), - [anon_sym_93] = ACTIONS(544), + [aux_sym_number_token1] = ACTIONS(524), + [anon_sym_os] = ACTIONS(524), + [anon_sym_Family] = ACTIONS(524), + [anon_sym_Arch] = ACTIONS(524), + [anon_sym_ExeExt] = ACTIONS(524), + [anon_sym_PllExt] = ACTIONS(524), + [anon_sym_Sep] = ACTIONS(524), + [aux_sym_character_token1] = ACTIONS(526), + [sym_string] = ACTIONS(526), + [sym_multiLineString] = ACTIONS(526), + [anon_sym_PIPE] = ACTIONS(526), + [sym_identifier] = ACTIONS(524), + [sym_identifier_deprecated] = ACTIONS(524), + [sym_system] = ACTIONS(526), + [sym_comment] = ACTIONS(524), + [sym_openParen] = ACTIONS(526), + [sym_closeParen] = ACTIONS(532), + [sym_openCurly] = ACTIONS(526), + [sym_openBracket] = ACTIONS(526), + [sym_leftArrow] = ACTIONS(526), + [anon_sym_CARET] = ACTIONS(526), + [anon_sym_eta] = ACTIONS(526), + [anon_sym_] = ACTIONS(524), + [anon_sym_pi] = ACTIONS(524), + [anon_sym_2] = ACTIONS(524), + [anon_sym_tau] = ACTIONS(526), + [anon_sym_3] = ACTIONS(524), + [anon_sym_infinity] = ACTIONS(526), + [anon_sym_4] = ACTIONS(526), + [anon_sym_e] = ACTIONS(524), + [anon_sym_NaN] = ACTIONS(524), + [anon_sym_NumProcs] = ACTIONS(524), + [anon_sym_DOT] = ACTIONS(526), + [anon_sym_COMMA] = ACTIONS(526), + [anon_sym_5] = ACTIONS(526), + [anon_sym_SEMI] = ACTIONS(526), + [anon_sym_identity] = ACTIONS(526), + [anon_sym_id] = ACTIONS(524), + [anon_sym_6] = ACTIONS(526), + [anon_sym_not] = ACTIONS(526), + [anon_sym_7] = ACTIONS(526), + [anon_sym_sign] = ACTIONS(526), + [anon_sym_8] = ACTIONS(526), + [anon_sym_BQUOTE] = ACTIONS(526), + [anon_sym_9] = ACTIONS(526), + [anon_sym_absolutevalue] = ACTIONS(526), + [anon_sym_10] = ACTIONS(526), + [anon_sym_sqrt] = ACTIONS(526), + [anon_sym_11] = ACTIONS(526), + [anon_sym_sine] = ACTIONS(526), + [anon_sym_12] = ACTIONS(526), + [anon_sym_floor] = ACTIONS(526), + [anon_sym_13] = ACTIONS(526), + [anon_sym_ceiling] = ACTIONS(526), + [anon_sym_14] = ACTIONS(526), + [anon_sym_round] = ACTIONS(526), + [anon_sym_15] = ACTIONS(526), + [anon_sym_EQ] = ACTIONS(526), + [anon_sym_BANG_EQ] = ACTIONS(526), + [anon_sym_16] = ACTIONS(526), + [anon_sym_LT] = ACTIONS(524), + [anon_sym_LT_EQ] = ACTIONS(526), + [anon_sym_17] = ACTIONS(526), + [anon_sym_GT] = ACTIONS(524), + [anon_sym_GT_EQ] = ACTIONS(526), + [anon_sym_18] = ACTIONS(526), + [anon_sym_PLUS] = ACTIONS(526), + [anon_sym_DASH] = ACTIONS(526), + [anon_sym_STAR] = ACTIONS(526), + [anon_sym_19] = ACTIONS(526), + [anon_sym_PERCENT] = ACTIONS(526), + [anon_sym_20] = ACTIONS(526), + [anon_sym_modulus] = ACTIONS(526), + [anon_sym_21] = ACTIONS(526), + [anon_sym_power] = ACTIONS(526), + [anon_sym_22] = ACTIONS(526), + [anon_sym_logarithm] = ACTIONS(526), + [anon_sym_23] = ACTIONS(526), + [anon_sym_minimum] = ACTIONS(526), + [anon_sym_24] = ACTIONS(526), + [anon_sym_maximum] = ACTIONS(526), + [anon_sym_25] = ACTIONS(526), + [anon_sym_atangent] = ACTIONS(526), + [anon_sym_26] = ACTIONS(526), + [anon_sym_length] = ACTIONS(526), + [anon_sym_27] = ACTIONS(526), + [anon_sym_shape] = ACTIONS(526), + [anon_sym_28] = ACTIONS(526), + [anon_sym_range] = ACTIONS(526), + [anon_sym_29] = ACTIONS(526), + [anon_sym_first] = ACTIONS(526), + [anon_sym_30] = ACTIONS(526), + [anon_sym_reverse] = ACTIONS(526), + [anon_sym_31] = ACTIONS(526), + [anon_sym_deshape] = ACTIONS(526), + [anon_sym_32] = ACTIONS(526), + [anon_sym_bits] = ACTIONS(526), + [anon_sym_33] = ACTIONS(526), + [anon_sym_transpose] = ACTIONS(526), + [anon_sym_34] = ACTIONS(526), + [anon_sym_rise] = ACTIONS(526), + [anon_sym_35] = ACTIONS(526), + [anon_sym_fall] = ACTIONS(526), + [anon_sym_36] = ACTIONS(526), + [anon_sym_where] = ACTIONS(526), + [anon_sym_37] = ACTIONS(526), + [anon_sym_classify] = ACTIONS(526), + [anon_sym_38] = ACTIONS(526), + [anon_sym_deduplicate] = ACTIONS(526), + [anon_sym_39] = ACTIONS(526), + [anon_sym_box] = ACTIONS(526), + [anon_sym_40] = ACTIONS(526), + [anon_sym_unbox] = ACTIONS(526), + [anon_sym_41] = ACTIONS(526), + [anon_sym_match] = ACTIONS(526), + [anon_sym_42] = ACTIONS(526), + [anon_sym_couple] = ACTIONS(526), + [anon_sym_43] = ACTIONS(526), + [anon_sym_join] = ACTIONS(526), + [anon_sym_44] = ACTIONS(526), + [anon_sym_select] = ACTIONS(526), + [anon_sym_45] = ACTIONS(526), + [anon_sym_pick] = ACTIONS(526), + [anon_sym_46] = ACTIONS(526), + [anon_sym_reshape] = ACTIONS(526), + [anon_sym_47] = ACTIONS(526), + [anon_sym_take] = ACTIONS(526), + [anon_sym_48] = ACTIONS(526), + [anon_sym_drop] = ACTIONS(526), + [anon_sym_49] = ACTIONS(526), + [anon_sym_rotate] = ACTIONS(526), + [anon_sym_50] = ACTIONS(526), + [anon_sym_windows] = ACTIONS(526), + [anon_sym_51] = ACTIONS(526), + [anon_sym_keep] = ACTIONS(526), + [anon_sym_52] = ACTIONS(526), + [anon_sym_find] = ACTIONS(526), + [anon_sym_53] = ACTIONS(526), + [anon_sym_member] = ACTIONS(526), + [anon_sym_54] = ACTIONS(526), + [anon_sym_indexof] = ACTIONS(526), + [anon_sym_55] = ACTIONS(526), + [anon_sym_assert] = ACTIONS(526), + [anon_sym_56] = ACTIONS(526), + [anon_sym_wait] = ACTIONS(526), + [anon_sym_break] = ACTIONS(526), + [anon_sym_57] = ACTIONS(526), + [anon_sym_parse] = ACTIONS(526), + [anon_sym_random] = ACTIONS(526), + [anon_sym_58] = ACTIONS(526), + [anon_sym_gen] = ACTIONS(526), + [anon_sym_deal] = ACTIONS(526), + [anon_sym_tag] = ACTIONS(526), + [anon_sym_now] = ACTIONS(526), + [anon_sym_type] = ACTIONS(526), + [anon_sym_59] = ACTIONS(526), + [anon_sym_dump] = ACTIONS(526), + [anon_sym_regex] = ACTIONS(526), + [anon_sym_utf] = ACTIONS(526), + [anon_sym_rock] = ACTIONS(526), + [anon_sym_60] = ACTIONS(526), + [anon_sym_surface] = ACTIONS(526), + [anon_sym_TILDE] = ACTIONS(526), + [anon_sym_deep] = ACTIONS(526), + [anon_sym_de] = ACTIONS(524), + [anon_sym_61] = ACTIONS(526), + [anon_sym_abyss] = ACTIONS(526), + [anon_sym_ab] = ACTIONS(524), + [anon_sym_62] = ACTIONS(526), + [anon_sym_seabed] = ACTIONS(526), + [anon_sym_se] = ACTIONS(524), + [anon_sym_63] = ACTIONS(526), + [anon_sym_send] = ACTIONS(526), + [anon_sym_recv] = ACTIONS(526), + [anon_sym_tryrecv] = ACTIONS(526), + [anon_sym_reduce] = ACTIONS(526), + [anon_sym_SLASH] = ACTIONS(526), + [anon_sym_scan] = ACTIONS(526), + [anon_sym_BSLASH] = ACTIONS(526), + [anon_sym_each] = ACTIONS(526), + [anon_sym_64] = ACTIONS(526), + [anon_sym_rows] = ACTIONS(526), + [anon_sym_65] = ACTIONS(526), + [anon_sym_repeat] = ACTIONS(526), + [anon_sym_66] = ACTIONS(526), + [anon_sym_dip] = ACTIONS(526), + [anon_sym_67] = ACTIONS(526), + [anon_sym_gap] = ACTIONS(526), + [anon_sym_68] = ACTIONS(526), + [anon_sym_69] = ACTIONS(526), + [anon_sym_invert] = ACTIONS(526), + [anon_sym_70] = ACTIONS(526), + [anon_sym_spawn] = ACTIONS(526), + [anon_sym_pack] = ACTIONS(526), + [anon_sym_71] = ACTIONS(526), + [anon_sym_tribute] = ACTIONS(526), + [anon_sym_72] = ACTIONS(526), + [anon_sym_reach] = ACTIONS(526), + [anon_sym_fold] = ACTIONS(526), + [anon_sym_73] = ACTIONS(526), + [anon_sym_distribute] = ACTIONS(526), + [anon_sym_74] = ACTIONS(526), + [anon_sym_table] = ACTIONS(526), + [anon_sym_75] = ACTIONS(526), + [anon_sym_cross] = ACTIONS(526), + [anon_sym_76] = ACTIONS(526), + [anon_sym_group] = ACTIONS(526), + [anon_sym_77] = ACTIONS(526), + [anon_sym_partition] = ACTIONS(526), + [anon_sym_78] = ACTIONS(526), + [anon_sym_both] = ACTIONS(526), + [anon_sym_79] = ACTIONS(526), + [anon_sym_bracket] = ACTIONS(526), + [anon_sym_80] = ACTIONS(526), + [anon_sym_fork] = ACTIONS(526), + [anon_sym_81] = ACTIONS(526), + [anon_sym_under] = ACTIONS(526), + [anon_sym_82] = ACTIONS(526), + [anon_sym_level] = ACTIONS(526), + [anon_sym_83] = ACTIONS(526), + [anon_sym_fill] = ACTIONS(526), + [anon_sym_84] = ACTIONS(526), + [anon_sym_bind] = ACTIONS(526), + [anon_sym_SQUOTE] = ACTIONS(526), + [anon_sym_QMARK] = ACTIONS(526), + [anon_sym_try] = ACTIONS(524), + [anon_sym_85] = ACTIONS(526), + [anon_sym_combinate] = ACTIONS(526), + [anon_sym_86] = ACTIONS(526), + [anon_sym_87] = ACTIONS(526), + [anon_sym_88] = ACTIONS(526), + [anon_sym_89] = ACTIONS(526), + [anon_sym_90] = ACTIONS(526), + [anon_sym_91] = ACTIONS(526), + [anon_sym_92] = ACTIONS(526), + [anon_sym_93] = ACTIONS(526), [sym__whitespace] = ACTIONS(5), [sym__end_of_line] = ACTIONS(5), }, [115] = { - [aux_sym_number_token1] = ACTIONS(542), - [anon_sym_os] = ACTIONS(542), - [anon_sym_Family] = ACTIONS(542), - [anon_sym_Arch] = ACTIONS(542), - [anon_sym_ExeExt] = ACTIONS(542), - [anon_sym_PllExt] = ACTIONS(542), - [anon_sym_Sep] = ACTIONS(542), - [aux_sym_character_token1] = ACTIONS(544), - [sym_string] = ACTIONS(544), - [sym_multiLineString] = ACTIONS(544), - [anon_sym_PIPE] = ACTIONS(544), - [sym_identifier] = ACTIONS(542), - [sym_identifier_deprecated] = ACTIONS(542), - [sym_system] = ACTIONS(544), - [sym_comment] = ACTIONS(542), - [sym_openParen] = ACTIONS(544), - [sym_closeParen] = ACTIONS(552), - [sym_openCurly] = ACTIONS(544), - [sym_openBracket] = ACTIONS(544), - [sym_leftArrow] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(544), - [anon_sym_eta] = ACTIONS(544), - [anon_sym_] = ACTIONS(542), - [anon_sym_pi] = ACTIONS(542), - [anon_sym_2] = ACTIONS(542), - [anon_sym_tau] = ACTIONS(544), - [anon_sym_3] = ACTIONS(542), - [anon_sym_infinity] = ACTIONS(544), - [anon_sym_4] = ACTIONS(544), - [anon_sym_e] = ACTIONS(542), - [anon_sym_NaN] = ACTIONS(542), - [anon_sym_NumProcs] = ACTIONS(542), - [anon_sym_DOT] = ACTIONS(544), - [anon_sym_COMMA] = ACTIONS(544), - [anon_sym_5] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(544), - [anon_sym_identity] = ACTIONS(544), - [anon_sym_id] = ACTIONS(542), - [anon_sym_6] = ACTIONS(544), - [anon_sym_not] = ACTIONS(544), - [anon_sym_7] = ACTIONS(544), - [anon_sym_sign] = ACTIONS(544), - [anon_sym_8] = ACTIONS(544), - [anon_sym_BQUOTE] = ACTIONS(544), - [anon_sym_9] = ACTIONS(544), - [anon_sym_absolutevalue] = ACTIONS(544), - [anon_sym_10] = ACTIONS(544), - [anon_sym_sqrt] = ACTIONS(544), - [anon_sym_11] = ACTIONS(544), - [anon_sym_sine] = ACTIONS(544), - [anon_sym_12] = ACTIONS(544), - [anon_sym_floor] = ACTIONS(544), - [anon_sym_13] = ACTIONS(544), - [anon_sym_ceiling] = ACTIONS(544), - [anon_sym_14] = ACTIONS(544), - [anon_sym_round] = ACTIONS(544), - [anon_sym_15] = ACTIONS(544), - [anon_sym_EQ] = ACTIONS(544), - [anon_sym_BANG_EQ] = ACTIONS(544), - [anon_sym_16] = ACTIONS(544), - [anon_sym_LT] = ACTIONS(542), - [anon_sym_LT_EQ] = ACTIONS(544), - [anon_sym_17] = ACTIONS(544), - [anon_sym_GT] = ACTIONS(542), - [anon_sym_GT_EQ] = ACTIONS(544), - [anon_sym_18] = ACTIONS(544), - [anon_sym_PLUS] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(544), - [anon_sym_STAR] = ACTIONS(544), - [anon_sym_19] = ACTIONS(544), - [anon_sym_PERCENT] = ACTIONS(544), - [anon_sym_20] = ACTIONS(544), - [anon_sym_modulus] = ACTIONS(544), - [anon_sym_21] = ACTIONS(544), - [anon_sym_power] = ACTIONS(544), - [anon_sym_22] = ACTIONS(544), - [anon_sym_logarithm] = ACTIONS(544), - [anon_sym_23] = ACTIONS(544), - [anon_sym_minimum] = ACTIONS(544), - [anon_sym_24] = ACTIONS(544), - [anon_sym_maximum] = ACTIONS(544), - [anon_sym_25] = ACTIONS(544), - [anon_sym_atangent] = ACTIONS(544), - [anon_sym_26] = ACTIONS(544), - [anon_sym_length] = ACTIONS(544), - [anon_sym_27] = ACTIONS(544), - [anon_sym_shape] = ACTIONS(544), - [anon_sym_28] = ACTIONS(544), - [anon_sym_range] = ACTIONS(544), - [anon_sym_29] = ACTIONS(544), - [anon_sym_first] = ACTIONS(544), - [anon_sym_30] = ACTIONS(544), - [anon_sym_reverse] = ACTIONS(544), - [anon_sym_31] = ACTIONS(544), - [anon_sym_deshape] = ACTIONS(544), - [anon_sym_32] = ACTIONS(544), - [anon_sym_bits] = ACTIONS(544), - [anon_sym_33] = ACTIONS(544), - [anon_sym_transpose] = ACTIONS(544), - [anon_sym_34] = ACTIONS(544), - [anon_sym_rise] = ACTIONS(544), - [anon_sym_35] = ACTIONS(544), - [anon_sym_fall] = ACTIONS(544), - [anon_sym_36] = ACTIONS(544), - [anon_sym_where] = ACTIONS(544), - [anon_sym_37] = ACTIONS(544), - [anon_sym_classify] = ACTIONS(544), - [anon_sym_38] = ACTIONS(544), - [anon_sym_deduplicate] = ACTIONS(544), - [anon_sym_39] = ACTIONS(544), - [anon_sym_box] = ACTIONS(544), - [anon_sym_40] = ACTIONS(544), - [anon_sym_unbox] = ACTIONS(544), - [anon_sym_41] = ACTIONS(544), - [anon_sym_match] = ACTIONS(544), - [anon_sym_42] = ACTIONS(544), - [anon_sym_couple] = ACTIONS(544), - [anon_sym_43] = ACTIONS(544), - [anon_sym_join] = ACTIONS(544), - [anon_sym_44] = ACTIONS(544), - [anon_sym_select] = ACTIONS(544), - [anon_sym_45] = ACTIONS(544), - [anon_sym_pick] = ACTIONS(544), - [anon_sym_46] = ACTIONS(544), - [anon_sym_reshape] = ACTIONS(544), - [anon_sym_47] = ACTIONS(544), - [anon_sym_take] = ACTIONS(544), - [anon_sym_48] = ACTIONS(544), - [anon_sym_drop] = ACTIONS(544), - [anon_sym_49] = ACTIONS(544), - [anon_sym_rotate] = ACTIONS(544), - [anon_sym_50] = ACTIONS(544), - [anon_sym_windows] = ACTIONS(544), - [anon_sym_51] = ACTIONS(544), - [anon_sym_keep] = ACTIONS(544), - [anon_sym_52] = ACTIONS(544), - [anon_sym_find] = ACTIONS(544), - [anon_sym_53] = ACTIONS(544), - [anon_sym_member] = ACTIONS(544), - [anon_sym_54] = ACTIONS(544), - [anon_sym_indexof] = ACTIONS(544), - [anon_sym_55] = ACTIONS(544), - [anon_sym_assert] = ACTIONS(544), - [anon_sym_56] = ACTIONS(544), - [anon_sym_wait] = ACTIONS(544), - [anon_sym_break] = ACTIONS(544), - [anon_sym_57] = ACTIONS(544), - [anon_sym_parse] = ACTIONS(544), - [anon_sym_random] = ACTIONS(544), - [anon_sym_58] = ACTIONS(544), - [anon_sym_gen] = ACTIONS(544), - [anon_sym_deal] = ACTIONS(544), - [anon_sym_tag] = ACTIONS(544), - [anon_sym_now] = ACTIONS(544), - [anon_sym_type] = ACTIONS(544), - [anon_sym_59] = ACTIONS(544), - [anon_sym_dump] = ACTIONS(544), - [anon_sym_regex] = ACTIONS(544), - [anon_sym_utf] = ACTIONS(544), - [anon_sym_rock] = ACTIONS(544), - [anon_sym_60] = ACTIONS(544), - [anon_sym_surface] = ACTIONS(544), - [anon_sym_TILDE] = ACTIONS(544), - [anon_sym_deep] = ACTIONS(544), - [anon_sym_de] = ACTIONS(542), - [anon_sym_61] = ACTIONS(544), - [anon_sym_abyss] = ACTIONS(544), - [anon_sym_ab] = ACTIONS(542), - [anon_sym_62] = ACTIONS(544), - [anon_sym_seabed] = ACTIONS(544), - [anon_sym_se] = ACTIONS(542), - [anon_sym_63] = ACTIONS(544), - [anon_sym_send] = ACTIONS(544), - [anon_sym_recv] = ACTIONS(544), - [anon_sym_tryrecv] = ACTIONS(544), - [anon_sym_reduce] = ACTIONS(544), - [anon_sym_SLASH] = ACTIONS(544), - [anon_sym_scan] = ACTIONS(544), - [anon_sym_BSLASH] = ACTIONS(544), - [anon_sym_each] = ACTIONS(544), - [anon_sym_64] = ACTIONS(544), - [anon_sym_rows] = ACTIONS(544), - [anon_sym_65] = ACTIONS(544), - [anon_sym_repeat] = ACTIONS(544), - [anon_sym_66] = ACTIONS(544), - [anon_sym_dip] = ACTIONS(544), - [anon_sym_di] = ACTIONS(542), - [anon_sym_67] = ACTIONS(544), - [anon_sym_gap] = ACTIONS(544), - [anon_sym_ga] = ACTIONS(542), - [anon_sym_68] = ACTIONS(544), - [anon_sym_oust] = ACTIONS(544), - [anon_sym_69] = ACTIONS(544), - [anon_sym_invert] = ACTIONS(544), - [anon_sym_70] = ACTIONS(544), - [anon_sym_spawn] = ACTIONS(544), - [anon_sym_pack] = ACTIONS(544), - [anon_sym_71] = ACTIONS(544), - [anon_sym_tribute] = ACTIONS(544), - [anon_sym_72] = ACTIONS(544), - [anon_sym_fold] = ACTIONS(544), - [anon_sym_73] = ACTIONS(544), - [anon_sym_distribute] = ACTIONS(544), - [anon_sym_74] = ACTIONS(544), - [anon_sym_table] = ACTIONS(544), - [anon_sym_75] = ACTIONS(544), - [anon_sym_cross] = ACTIONS(544), - [anon_sym_76] = ACTIONS(544), - [anon_sym_group] = ACTIONS(544), - [anon_sym_77] = ACTIONS(544), - [anon_sym_partition] = ACTIONS(544), - [anon_sym_78] = ACTIONS(544), - [anon_sym_both] = ACTIONS(544), - [anon_sym_79] = ACTIONS(544), - [anon_sym_bracket] = ACTIONS(544), - [anon_sym_80] = ACTIONS(544), - [anon_sym_fork] = ACTIONS(544), - [anon_sym_81] = ACTIONS(544), - [anon_sym_under] = ACTIONS(544), - [anon_sym_82] = ACTIONS(544), - [anon_sym_level] = ACTIONS(544), - [anon_sym_83] = ACTIONS(544), - [anon_sym_fill] = ACTIONS(544), - [anon_sym_84] = ACTIONS(544), - [anon_sym_bind] = ACTIONS(544), - [anon_sym_SQUOTE] = ACTIONS(544), - [anon_sym_QMARK] = ACTIONS(544), - [anon_sym_try] = ACTIONS(542), - [anon_sym_85] = ACTIONS(544), - [anon_sym_combinate] = ACTIONS(544), - [anon_sym_86] = ACTIONS(544), - [anon_sym_87] = ACTIONS(544), - [anon_sym_88] = ACTIONS(544), - [anon_sym_89] = ACTIONS(544), - [anon_sym_90] = ACTIONS(544), - [anon_sym_91] = ACTIONS(544), - [anon_sym_92] = ACTIONS(544), - [anon_sym_93] = ACTIONS(544), + [aux_sym_number_token1] = ACTIONS(524), + [anon_sym_os] = ACTIONS(524), + [anon_sym_Family] = ACTIONS(524), + [anon_sym_Arch] = ACTIONS(524), + [anon_sym_ExeExt] = ACTIONS(524), + [anon_sym_PllExt] = ACTIONS(524), + [anon_sym_Sep] = ACTIONS(524), + [aux_sym_character_token1] = ACTIONS(526), + [sym_string] = ACTIONS(526), + [sym_multiLineString] = ACTIONS(526), + [anon_sym_PIPE] = ACTIONS(526), + [sym_identifier] = ACTIONS(524), + [sym_identifier_deprecated] = ACTIONS(524), + [sym_system] = ACTIONS(526), + [sym_comment] = ACTIONS(524), + [sym_openParen] = ACTIONS(526), + [sym_closeParen] = ACTIONS(534), + [sym_openCurly] = ACTIONS(526), + [sym_openBracket] = ACTIONS(526), + [sym_leftArrow] = ACTIONS(526), + [anon_sym_CARET] = ACTIONS(526), + [anon_sym_eta] = ACTIONS(526), + [anon_sym_] = ACTIONS(524), + [anon_sym_pi] = ACTIONS(524), + [anon_sym_2] = ACTIONS(524), + [anon_sym_tau] = ACTIONS(526), + [anon_sym_3] = ACTIONS(524), + [anon_sym_infinity] = ACTIONS(526), + [anon_sym_4] = ACTIONS(526), + [anon_sym_e] = ACTIONS(524), + [anon_sym_NaN] = ACTIONS(524), + [anon_sym_NumProcs] = ACTIONS(524), + [anon_sym_DOT] = ACTIONS(526), + [anon_sym_COMMA] = ACTIONS(526), + [anon_sym_5] = ACTIONS(526), + [anon_sym_SEMI] = ACTIONS(526), + [anon_sym_identity] = ACTIONS(526), + [anon_sym_id] = ACTIONS(524), + [anon_sym_6] = ACTIONS(526), + [anon_sym_not] = ACTIONS(526), + [anon_sym_7] = ACTIONS(526), + [anon_sym_sign] = ACTIONS(526), + [anon_sym_8] = ACTIONS(526), + [anon_sym_BQUOTE] = ACTIONS(526), + [anon_sym_9] = ACTIONS(526), + [anon_sym_absolutevalue] = ACTIONS(526), + [anon_sym_10] = ACTIONS(526), + [anon_sym_sqrt] = ACTIONS(526), + [anon_sym_11] = ACTIONS(526), + [anon_sym_sine] = ACTIONS(526), + [anon_sym_12] = ACTIONS(526), + [anon_sym_floor] = ACTIONS(526), + [anon_sym_13] = ACTIONS(526), + [anon_sym_ceiling] = ACTIONS(526), + [anon_sym_14] = ACTIONS(526), + [anon_sym_round] = ACTIONS(526), + [anon_sym_15] = ACTIONS(526), + [anon_sym_EQ] = ACTIONS(526), + [anon_sym_BANG_EQ] = ACTIONS(526), + [anon_sym_16] = ACTIONS(526), + [anon_sym_LT] = ACTIONS(524), + [anon_sym_LT_EQ] = ACTIONS(526), + [anon_sym_17] = ACTIONS(526), + [anon_sym_GT] = ACTIONS(524), + [anon_sym_GT_EQ] = ACTIONS(526), + [anon_sym_18] = ACTIONS(526), + [anon_sym_PLUS] = ACTIONS(526), + [anon_sym_DASH] = ACTIONS(526), + [anon_sym_STAR] = ACTIONS(526), + [anon_sym_19] = ACTIONS(526), + [anon_sym_PERCENT] = ACTIONS(526), + [anon_sym_20] = ACTIONS(526), + [anon_sym_modulus] = ACTIONS(526), + [anon_sym_21] = ACTIONS(526), + [anon_sym_power] = ACTIONS(526), + [anon_sym_22] = ACTIONS(526), + [anon_sym_logarithm] = ACTIONS(526), + [anon_sym_23] = ACTIONS(526), + [anon_sym_minimum] = ACTIONS(526), + [anon_sym_24] = ACTIONS(526), + [anon_sym_maximum] = ACTIONS(526), + [anon_sym_25] = ACTIONS(526), + [anon_sym_atangent] = ACTIONS(526), + [anon_sym_26] = ACTIONS(526), + [anon_sym_length] = ACTIONS(526), + [anon_sym_27] = ACTIONS(526), + [anon_sym_shape] = ACTIONS(526), + [anon_sym_28] = ACTIONS(526), + [anon_sym_range] = ACTIONS(526), + [anon_sym_29] = ACTIONS(526), + [anon_sym_first] = ACTIONS(526), + [anon_sym_30] = ACTIONS(526), + [anon_sym_reverse] = ACTIONS(526), + [anon_sym_31] = ACTIONS(526), + [anon_sym_deshape] = ACTIONS(526), + [anon_sym_32] = ACTIONS(526), + [anon_sym_bits] = ACTIONS(526), + [anon_sym_33] = ACTIONS(526), + [anon_sym_transpose] = ACTIONS(526), + [anon_sym_34] = ACTIONS(526), + [anon_sym_rise] = ACTIONS(526), + [anon_sym_35] = ACTIONS(526), + [anon_sym_fall] = ACTIONS(526), + [anon_sym_36] = ACTIONS(526), + [anon_sym_where] = ACTIONS(526), + [anon_sym_37] = ACTIONS(526), + [anon_sym_classify] = ACTIONS(526), + [anon_sym_38] = ACTIONS(526), + [anon_sym_deduplicate] = ACTIONS(526), + [anon_sym_39] = ACTIONS(526), + [anon_sym_box] = ACTIONS(526), + [anon_sym_40] = ACTIONS(526), + [anon_sym_unbox] = ACTIONS(526), + [anon_sym_41] = ACTIONS(526), + [anon_sym_match] = ACTIONS(526), + [anon_sym_42] = ACTIONS(526), + [anon_sym_couple] = ACTIONS(526), + [anon_sym_43] = ACTIONS(526), + [anon_sym_join] = ACTIONS(526), + [anon_sym_44] = ACTIONS(526), + [anon_sym_select] = ACTIONS(526), + [anon_sym_45] = ACTIONS(526), + [anon_sym_pick] = ACTIONS(526), + [anon_sym_46] = ACTIONS(526), + [anon_sym_reshape] = ACTIONS(526), + [anon_sym_47] = ACTIONS(526), + [anon_sym_take] = ACTIONS(526), + [anon_sym_48] = ACTIONS(526), + [anon_sym_drop] = ACTIONS(526), + [anon_sym_49] = ACTIONS(526), + [anon_sym_rotate] = ACTIONS(526), + [anon_sym_50] = ACTIONS(526), + [anon_sym_windows] = ACTIONS(526), + [anon_sym_51] = ACTIONS(526), + [anon_sym_keep] = ACTIONS(526), + [anon_sym_52] = ACTIONS(526), + [anon_sym_find] = ACTIONS(526), + [anon_sym_53] = ACTIONS(526), + [anon_sym_member] = ACTIONS(526), + [anon_sym_54] = ACTIONS(526), + [anon_sym_indexof] = ACTIONS(526), + [anon_sym_55] = ACTIONS(526), + [anon_sym_assert] = ACTIONS(526), + [anon_sym_56] = ACTIONS(526), + [anon_sym_wait] = ACTIONS(526), + [anon_sym_break] = ACTIONS(526), + [anon_sym_57] = ACTIONS(526), + [anon_sym_parse] = ACTIONS(526), + [anon_sym_random] = ACTIONS(526), + [anon_sym_58] = ACTIONS(526), + [anon_sym_gen] = ACTIONS(526), + [anon_sym_deal] = ACTIONS(526), + [anon_sym_tag] = ACTIONS(526), + [anon_sym_now] = ACTIONS(526), + [anon_sym_type] = ACTIONS(526), + [anon_sym_59] = ACTIONS(526), + [anon_sym_dump] = ACTIONS(526), + [anon_sym_regex] = ACTIONS(526), + [anon_sym_utf] = ACTIONS(526), + [anon_sym_rock] = ACTIONS(526), + [anon_sym_60] = ACTIONS(526), + [anon_sym_surface] = ACTIONS(526), + [anon_sym_TILDE] = ACTIONS(526), + [anon_sym_deep] = ACTIONS(526), + [anon_sym_de] = ACTIONS(524), + [anon_sym_61] = ACTIONS(526), + [anon_sym_abyss] = ACTIONS(526), + [anon_sym_ab] = ACTIONS(524), + [anon_sym_62] = ACTIONS(526), + [anon_sym_seabed] = ACTIONS(526), + [anon_sym_se] = ACTIONS(524), + [anon_sym_63] = ACTIONS(526), + [anon_sym_send] = ACTIONS(526), + [anon_sym_recv] = ACTIONS(526), + [anon_sym_tryrecv] = ACTIONS(526), + [anon_sym_reduce] = ACTIONS(526), + [anon_sym_SLASH] = ACTIONS(526), + [anon_sym_scan] = ACTIONS(526), + [anon_sym_BSLASH] = ACTIONS(526), + [anon_sym_each] = ACTIONS(526), + [anon_sym_64] = ACTIONS(526), + [anon_sym_rows] = ACTIONS(526), + [anon_sym_65] = ACTIONS(526), + [anon_sym_repeat] = ACTIONS(526), + [anon_sym_66] = ACTIONS(526), + [anon_sym_dip] = ACTIONS(526), + [anon_sym_67] = ACTIONS(526), + [anon_sym_gap] = ACTIONS(526), + [anon_sym_68] = ACTIONS(526), + [anon_sym_69] = ACTIONS(526), + [anon_sym_invert] = ACTIONS(526), + [anon_sym_70] = ACTIONS(526), + [anon_sym_spawn] = ACTIONS(526), + [anon_sym_pack] = ACTIONS(526), + [anon_sym_71] = ACTIONS(526), + [anon_sym_tribute] = ACTIONS(526), + [anon_sym_72] = ACTIONS(526), + [anon_sym_reach] = ACTIONS(526), + [anon_sym_fold] = ACTIONS(526), + [anon_sym_73] = ACTIONS(526), + [anon_sym_distribute] = ACTIONS(526), + [anon_sym_74] = ACTIONS(526), + [anon_sym_table] = ACTIONS(526), + [anon_sym_75] = ACTIONS(526), + [anon_sym_cross] = ACTIONS(526), + [anon_sym_76] = ACTIONS(526), + [anon_sym_group] = ACTIONS(526), + [anon_sym_77] = ACTIONS(526), + [anon_sym_partition] = ACTIONS(526), + [anon_sym_78] = ACTIONS(526), + [anon_sym_both] = ACTIONS(526), + [anon_sym_79] = ACTIONS(526), + [anon_sym_bracket] = ACTIONS(526), + [anon_sym_80] = ACTIONS(526), + [anon_sym_fork] = ACTIONS(526), + [anon_sym_81] = ACTIONS(526), + [anon_sym_under] = ACTIONS(526), + [anon_sym_82] = ACTIONS(526), + [anon_sym_level] = ACTIONS(526), + [anon_sym_83] = ACTIONS(526), + [anon_sym_fill] = ACTIONS(526), + [anon_sym_84] = ACTIONS(526), + [anon_sym_bind] = ACTIONS(526), + [anon_sym_SQUOTE] = ACTIONS(526), + [anon_sym_QMARK] = ACTIONS(526), + [anon_sym_try] = ACTIONS(524), + [anon_sym_85] = ACTIONS(526), + [anon_sym_combinate] = ACTIONS(526), + [anon_sym_86] = ACTIONS(526), + [anon_sym_87] = ACTIONS(526), + [anon_sym_88] = ACTIONS(526), + [anon_sym_89] = ACTIONS(526), + [anon_sym_90] = ACTIONS(526), + [anon_sym_91] = ACTIONS(526), + [anon_sym_92] = ACTIONS(526), + [anon_sym_93] = ACTIONS(526), [sym__whitespace] = ACTIONS(5), [sym__end_of_line] = ACTIONS(5), }, [116] = { - [aux_sym_number_token1] = ACTIONS(542), - [anon_sym_os] = ACTIONS(542), - [anon_sym_Family] = ACTIONS(542), - [anon_sym_Arch] = ACTIONS(542), - [anon_sym_ExeExt] = ACTIONS(542), - [anon_sym_PllExt] = ACTIONS(542), - [anon_sym_Sep] = ACTIONS(542), - [aux_sym_character_token1] = ACTIONS(544), - [sym_string] = ACTIONS(544), - [sym_multiLineString] = ACTIONS(544), - [anon_sym_PIPE] = ACTIONS(544), - [sym_identifier] = ACTIONS(542), - [sym_identifier_deprecated] = ACTIONS(542), - [sym_system] = ACTIONS(544), - [sym_comment] = ACTIONS(542), - [sym_tripleMinus] = ACTIONS(554), - [sym_openParen] = ACTIONS(544), - [sym_openCurly] = ACTIONS(544), - [sym_openBracket] = ACTIONS(544), - [sym_leftArrow] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(544), - [anon_sym_eta] = ACTIONS(544), - [anon_sym_] = ACTIONS(542), - [anon_sym_pi] = ACTIONS(542), - [anon_sym_2] = ACTIONS(542), - [anon_sym_tau] = ACTIONS(544), - [anon_sym_3] = ACTIONS(542), - [anon_sym_infinity] = ACTIONS(544), - [anon_sym_4] = ACTIONS(544), - [anon_sym_e] = ACTIONS(542), - [anon_sym_NaN] = ACTIONS(542), - [anon_sym_NumProcs] = ACTIONS(542), - [anon_sym_DOT] = ACTIONS(544), - [anon_sym_COMMA] = ACTIONS(544), - [anon_sym_5] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(544), - [anon_sym_identity] = ACTIONS(544), - [anon_sym_id] = ACTIONS(542), - [anon_sym_6] = ACTIONS(544), - [anon_sym_not] = ACTIONS(544), - [anon_sym_7] = ACTIONS(544), - [anon_sym_sign] = ACTIONS(544), - [anon_sym_8] = ACTIONS(544), - [anon_sym_BQUOTE] = ACTIONS(544), - [anon_sym_9] = ACTIONS(544), - [anon_sym_absolutevalue] = ACTIONS(544), - [anon_sym_10] = ACTIONS(544), - [anon_sym_sqrt] = ACTIONS(544), - [anon_sym_11] = ACTIONS(544), - [anon_sym_sine] = ACTIONS(544), - [anon_sym_12] = ACTIONS(544), - [anon_sym_floor] = ACTIONS(544), - [anon_sym_13] = ACTIONS(544), - [anon_sym_ceiling] = ACTIONS(544), - [anon_sym_14] = ACTIONS(544), - [anon_sym_round] = ACTIONS(544), - [anon_sym_15] = ACTIONS(544), - [anon_sym_EQ] = ACTIONS(544), - [anon_sym_BANG_EQ] = ACTIONS(544), - [anon_sym_16] = ACTIONS(544), - [anon_sym_LT] = ACTIONS(542), - [anon_sym_LT_EQ] = ACTIONS(544), - [anon_sym_17] = ACTIONS(544), - [anon_sym_GT] = ACTIONS(542), - [anon_sym_GT_EQ] = ACTIONS(544), - [anon_sym_18] = ACTIONS(544), - [anon_sym_PLUS] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(542), - [anon_sym_STAR] = ACTIONS(544), - [anon_sym_19] = ACTIONS(544), - [anon_sym_PERCENT] = ACTIONS(544), - [anon_sym_20] = ACTIONS(544), - [anon_sym_modulus] = ACTIONS(544), - [anon_sym_21] = ACTIONS(544), - [anon_sym_power] = ACTIONS(544), - [anon_sym_22] = ACTIONS(544), - [anon_sym_logarithm] = ACTIONS(544), - [anon_sym_23] = ACTIONS(544), - [anon_sym_minimum] = ACTIONS(544), - [anon_sym_24] = ACTIONS(544), - [anon_sym_maximum] = ACTIONS(544), - [anon_sym_25] = ACTIONS(544), - [anon_sym_atangent] = ACTIONS(544), - [anon_sym_26] = ACTIONS(544), - [anon_sym_length] = ACTIONS(544), - [anon_sym_27] = ACTIONS(544), - [anon_sym_shape] = ACTIONS(544), - [anon_sym_28] = ACTIONS(544), - [anon_sym_range] = ACTIONS(544), - [anon_sym_29] = ACTIONS(544), - [anon_sym_first] = ACTIONS(544), - [anon_sym_30] = ACTIONS(544), - [anon_sym_reverse] = ACTIONS(544), - [anon_sym_31] = ACTIONS(544), - [anon_sym_deshape] = ACTIONS(544), - [anon_sym_32] = ACTIONS(544), - [anon_sym_bits] = ACTIONS(544), - [anon_sym_33] = ACTIONS(544), - [anon_sym_transpose] = ACTIONS(544), - [anon_sym_34] = ACTIONS(544), - [anon_sym_rise] = ACTIONS(544), - [anon_sym_35] = ACTIONS(544), - [anon_sym_fall] = ACTIONS(544), - [anon_sym_36] = ACTIONS(544), - [anon_sym_where] = ACTIONS(544), - [anon_sym_37] = ACTIONS(544), - [anon_sym_classify] = ACTIONS(544), - [anon_sym_38] = ACTIONS(544), - [anon_sym_deduplicate] = ACTIONS(544), - [anon_sym_39] = ACTIONS(544), - [anon_sym_box] = ACTIONS(544), - [anon_sym_40] = ACTIONS(544), - [anon_sym_unbox] = ACTIONS(544), - [anon_sym_41] = ACTIONS(544), - [anon_sym_match] = ACTIONS(544), - [anon_sym_42] = ACTIONS(544), - [anon_sym_couple] = ACTIONS(544), - [anon_sym_43] = ACTIONS(544), - [anon_sym_join] = ACTIONS(544), - [anon_sym_44] = ACTIONS(544), - [anon_sym_select] = ACTIONS(544), - [anon_sym_45] = ACTIONS(544), - [anon_sym_pick] = ACTIONS(544), - [anon_sym_46] = ACTIONS(544), - [anon_sym_reshape] = ACTIONS(544), - [anon_sym_47] = ACTIONS(544), - [anon_sym_take] = ACTIONS(544), - [anon_sym_48] = ACTIONS(544), - [anon_sym_drop] = ACTIONS(544), - [anon_sym_49] = ACTIONS(544), - [anon_sym_rotate] = ACTIONS(544), - [anon_sym_50] = ACTIONS(544), - [anon_sym_windows] = ACTIONS(544), - [anon_sym_51] = ACTIONS(544), - [anon_sym_keep] = ACTIONS(544), - [anon_sym_52] = ACTIONS(544), - [anon_sym_find] = ACTIONS(544), - [anon_sym_53] = ACTIONS(544), - [anon_sym_member] = ACTIONS(544), - [anon_sym_54] = ACTIONS(544), - [anon_sym_indexof] = ACTIONS(544), - [anon_sym_55] = ACTIONS(544), - [anon_sym_assert] = ACTIONS(544), - [anon_sym_56] = ACTIONS(544), - [anon_sym_wait] = ACTIONS(544), - [anon_sym_break] = ACTIONS(544), - [anon_sym_57] = ACTIONS(544), - [anon_sym_parse] = ACTIONS(544), - [anon_sym_random] = ACTIONS(544), - [anon_sym_58] = ACTIONS(544), - [anon_sym_gen] = ACTIONS(544), - [anon_sym_deal] = ACTIONS(544), - [anon_sym_tag] = ACTIONS(544), - [anon_sym_now] = ACTIONS(544), - [anon_sym_type] = ACTIONS(544), - [anon_sym_59] = ACTIONS(544), - [anon_sym_dump] = ACTIONS(544), - [anon_sym_regex] = ACTIONS(544), - [anon_sym_utf] = ACTIONS(544), - [anon_sym_rock] = ACTIONS(544), - [anon_sym_60] = ACTIONS(544), - [anon_sym_surface] = ACTIONS(544), - [anon_sym_TILDE] = ACTIONS(544), - [anon_sym_deep] = ACTIONS(544), - [anon_sym_de] = ACTIONS(542), - [anon_sym_61] = ACTIONS(544), - [anon_sym_abyss] = ACTIONS(544), - [anon_sym_ab] = ACTIONS(542), - [anon_sym_62] = ACTIONS(544), - [anon_sym_seabed] = ACTIONS(544), - [anon_sym_se] = ACTIONS(542), - [anon_sym_63] = ACTIONS(544), - [anon_sym_send] = ACTIONS(544), - [anon_sym_recv] = ACTIONS(544), - [anon_sym_tryrecv] = ACTIONS(544), - [anon_sym_reduce] = ACTIONS(544), - [anon_sym_SLASH] = ACTIONS(544), - [anon_sym_scan] = ACTIONS(544), - [anon_sym_BSLASH] = ACTIONS(544), - [anon_sym_each] = ACTIONS(544), - [anon_sym_64] = ACTIONS(544), - [anon_sym_rows] = ACTIONS(544), - [anon_sym_65] = ACTIONS(544), - [anon_sym_repeat] = ACTIONS(544), - [anon_sym_66] = ACTIONS(544), - [anon_sym_dip] = ACTIONS(544), - [anon_sym_di] = ACTIONS(542), - [anon_sym_67] = ACTIONS(544), - [anon_sym_gap] = ACTIONS(544), - [anon_sym_ga] = ACTIONS(542), - [anon_sym_68] = ACTIONS(544), - [anon_sym_oust] = ACTIONS(544), - [anon_sym_69] = ACTIONS(544), - [anon_sym_invert] = ACTIONS(544), - [anon_sym_70] = ACTIONS(544), - [anon_sym_spawn] = ACTIONS(544), - [anon_sym_pack] = ACTIONS(544), - [anon_sym_71] = ACTIONS(544), - [anon_sym_tribute] = ACTIONS(544), - [anon_sym_72] = ACTIONS(544), - [anon_sym_fold] = ACTIONS(544), - [anon_sym_73] = ACTIONS(544), - [anon_sym_distribute] = ACTIONS(544), - [anon_sym_74] = ACTIONS(544), - [anon_sym_table] = ACTIONS(544), - [anon_sym_75] = ACTIONS(544), - [anon_sym_cross] = ACTIONS(544), - [anon_sym_76] = ACTIONS(544), - [anon_sym_group] = ACTIONS(544), - [anon_sym_77] = ACTIONS(544), - [anon_sym_partition] = ACTIONS(544), - [anon_sym_78] = ACTIONS(544), - [anon_sym_both] = ACTIONS(544), - [anon_sym_79] = ACTIONS(544), - [anon_sym_bracket] = ACTIONS(544), - [anon_sym_80] = ACTIONS(544), - [anon_sym_fork] = ACTIONS(544), - [anon_sym_81] = ACTIONS(544), - [anon_sym_under] = ACTIONS(544), - [anon_sym_82] = ACTIONS(544), - [anon_sym_level] = ACTIONS(544), - [anon_sym_83] = ACTIONS(544), - [anon_sym_fill] = ACTIONS(544), - [anon_sym_84] = ACTIONS(544), - [anon_sym_bind] = ACTIONS(544), - [anon_sym_SQUOTE] = ACTIONS(544), - [anon_sym_QMARK] = ACTIONS(544), - [anon_sym_try] = ACTIONS(542), - [anon_sym_85] = ACTIONS(544), - [anon_sym_combinate] = ACTIONS(544), - [anon_sym_86] = ACTIONS(544), - [anon_sym_87] = ACTIONS(544), - [anon_sym_88] = ACTIONS(544), - [anon_sym_89] = ACTIONS(544), - [anon_sym_90] = ACTIONS(544), - [anon_sym_91] = ACTIONS(544), - [anon_sym_92] = ACTIONS(544), - [anon_sym_93] = ACTIONS(544), + [aux_sym_number_token1] = ACTIONS(524), + [anon_sym_os] = ACTIONS(524), + [anon_sym_Family] = ACTIONS(524), + [anon_sym_Arch] = ACTIONS(524), + [anon_sym_ExeExt] = ACTIONS(524), + [anon_sym_PllExt] = ACTIONS(524), + [anon_sym_Sep] = ACTIONS(524), + [aux_sym_character_token1] = ACTIONS(526), + [sym_string] = ACTIONS(526), + [sym_multiLineString] = ACTIONS(526), + [anon_sym_PIPE] = ACTIONS(526), + [sym_identifier] = ACTIONS(524), + [sym_identifier_deprecated] = ACTIONS(524), + [sym_system] = ACTIONS(526), + [sym_comment] = ACTIONS(524), + [sym_tripleMinus] = ACTIONS(536), + [sym_openParen] = ACTIONS(526), + [sym_openCurly] = ACTIONS(526), + [sym_openBracket] = ACTIONS(526), + [sym_leftArrow] = ACTIONS(526), + [anon_sym_CARET] = ACTIONS(526), + [anon_sym_eta] = ACTIONS(526), + [anon_sym_] = ACTIONS(524), + [anon_sym_pi] = ACTIONS(524), + [anon_sym_2] = ACTIONS(524), + [anon_sym_tau] = ACTIONS(526), + [anon_sym_3] = ACTIONS(524), + [anon_sym_infinity] = ACTIONS(526), + [anon_sym_4] = ACTIONS(526), + [anon_sym_e] = ACTIONS(524), + [anon_sym_NaN] = ACTIONS(524), + [anon_sym_NumProcs] = ACTIONS(524), + [anon_sym_DOT] = ACTIONS(526), + [anon_sym_COMMA] = ACTIONS(526), + [anon_sym_5] = ACTIONS(526), + [anon_sym_SEMI] = ACTIONS(526), + [anon_sym_identity] = ACTIONS(526), + [anon_sym_id] = ACTIONS(524), + [anon_sym_6] = ACTIONS(526), + [anon_sym_not] = ACTIONS(526), + [anon_sym_7] = ACTIONS(526), + [anon_sym_sign] = ACTIONS(526), + [anon_sym_8] = ACTIONS(526), + [anon_sym_BQUOTE] = ACTIONS(526), + [anon_sym_9] = ACTIONS(526), + [anon_sym_absolutevalue] = ACTIONS(526), + [anon_sym_10] = ACTIONS(526), + [anon_sym_sqrt] = ACTIONS(526), + [anon_sym_11] = ACTIONS(526), + [anon_sym_sine] = ACTIONS(526), + [anon_sym_12] = ACTIONS(526), + [anon_sym_floor] = ACTIONS(526), + [anon_sym_13] = ACTIONS(526), + [anon_sym_ceiling] = ACTIONS(526), + [anon_sym_14] = ACTIONS(526), + [anon_sym_round] = ACTIONS(526), + [anon_sym_15] = ACTIONS(526), + [anon_sym_EQ] = ACTIONS(526), + [anon_sym_BANG_EQ] = ACTIONS(526), + [anon_sym_16] = ACTIONS(526), + [anon_sym_LT] = ACTIONS(524), + [anon_sym_LT_EQ] = ACTIONS(526), + [anon_sym_17] = ACTIONS(526), + [anon_sym_GT] = ACTIONS(524), + [anon_sym_GT_EQ] = ACTIONS(526), + [anon_sym_18] = ACTIONS(526), + [anon_sym_PLUS] = ACTIONS(526), + [anon_sym_DASH] = ACTIONS(524), + [anon_sym_STAR] = ACTIONS(526), + [anon_sym_19] = ACTIONS(526), + [anon_sym_PERCENT] = ACTIONS(526), + [anon_sym_20] = ACTIONS(526), + [anon_sym_modulus] = ACTIONS(526), + [anon_sym_21] = ACTIONS(526), + [anon_sym_power] = ACTIONS(526), + [anon_sym_22] = ACTIONS(526), + [anon_sym_logarithm] = ACTIONS(526), + [anon_sym_23] = ACTIONS(526), + [anon_sym_minimum] = ACTIONS(526), + [anon_sym_24] = ACTIONS(526), + [anon_sym_maximum] = ACTIONS(526), + [anon_sym_25] = ACTIONS(526), + [anon_sym_atangent] = ACTIONS(526), + [anon_sym_26] = ACTIONS(526), + [anon_sym_length] = ACTIONS(526), + [anon_sym_27] = ACTIONS(526), + [anon_sym_shape] = ACTIONS(526), + [anon_sym_28] = ACTIONS(526), + [anon_sym_range] = ACTIONS(526), + [anon_sym_29] = ACTIONS(526), + [anon_sym_first] = ACTIONS(526), + [anon_sym_30] = ACTIONS(526), + [anon_sym_reverse] = ACTIONS(526), + [anon_sym_31] = ACTIONS(526), + [anon_sym_deshape] = ACTIONS(526), + [anon_sym_32] = ACTIONS(526), + [anon_sym_bits] = ACTIONS(526), + [anon_sym_33] = ACTIONS(526), + [anon_sym_transpose] = ACTIONS(526), + [anon_sym_34] = ACTIONS(526), + [anon_sym_rise] = ACTIONS(526), + [anon_sym_35] = ACTIONS(526), + [anon_sym_fall] = ACTIONS(526), + [anon_sym_36] = ACTIONS(526), + [anon_sym_where] = ACTIONS(526), + [anon_sym_37] = ACTIONS(526), + [anon_sym_classify] = ACTIONS(526), + [anon_sym_38] = ACTIONS(526), + [anon_sym_deduplicate] = ACTIONS(526), + [anon_sym_39] = ACTIONS(526), + [anon_sym_box] = ACTIONS(526), + [anon_sym_40] = ACTIONS(526), + [anon_sym_unbox] = ACTIONS(526), + [anon_sym_41] = ACTIONS(526), + [anon_sym_match] = ACTIONS(526), + [anon_sym_42] = ACTIONS(526), + [anon_sym_couple] = ACTIONS(526), + [anon_sym_43] = ACTIONS(526), + [anon_sym_join] = ACTIONS(526), + [anon_sym_44] = ACTIONS(526), + [anon_sym_select] = ACTIONS(526), + [anon_sym_45] = ACTIONS(526), + [anon_sym_pick] = ACTIONS(526), + [anon_sym_46] = ACTIONS(526), + [anon_sym_reshape] = ACTIONS(526), + [anon_sym_47] = ACTIONS(526), + [anon_sym_take] = ACTIONS(526), + [anon_sym_48] = ACTIONS(526), + [anon_sym_drop] = ACTIONS(526), + [anon_sym_49] = ACTIONS(526), + [anon_sym_rotate] = ACTIONS(526), + [anon_sym_50] = ACTIONS(526), + [anon_sym_windows] = ACTIONS(526), + [anon_sym_51] = ACTIONS(526), + [anon_sym_keep] = ACTIONS(526), + [anon_sym_52] = ACTIONS(526), + [anon_sym_find] = ACTIONS(526), + [anon_sym_53] = ACTIONS(526), + [anon_sym_member] = ACTIONS(526), + [anon_sym_54] = ACTIONS(526), + [anon_sym_indexof] = ACTIONS(526), + [anon_sym_55] = ACTIONS(526), + [anon_sym_assert] = ACTIONS(526), + [anon_sym_56] = ACTIONS(526), + [anon_sym_wait] = ACTIONS(526), + [anon_sym_break] = ACTIONS(526), + [anon_sym_57] = ACTIONS(526), + [anon_sym_parse] = ACTIONS(526), + [anon_sym_random] = ACTIONS(526), + [anon_sym_58] = ACTIONS(526), + [anon_sym_gen] = ACTIONS(526), + [anon_sym_deal] = ACTIONS(526), + [anon_sym_tag] = ACTIONS(526), + [anon_sym_now] = ACTIONS(526), + [anon_sym_type] = ACTIONS(526), + [anon_sym_59] = ACTIONS(526), + [anon_sym_dump] = ACTIONS(526), + [anon_sym_regex] = ACTIONS(526), + [anon_sym_utf] = ACTIONS(526), + [anon_sym_rock] = ACTIONS(526), + [anon_sym_60] = ACTIONS(526), + [anon_sym_surface] = ACTIONS(526), + [anon_sym_TILDE] = ACTIONS(526), + [anon_sym_deep] = ACTIONS(526), + [anon_sym_de] = ACTIONS(524), + [anon_sym_61] = ACTIONS(526), + [anon_sym_abyss] = ACTIONS(526), + [anon_sym_ab] = ACTIONS(524), + [anon_sym_62] = ACTIONS(526), + [anon_sym_seabed] = ACTIONS(526), + [anon_sym_se] = ACTIONS(524), + [anon_sym_63] = ACTIONS(526), + [anon_sym_send] = ACTIONS(526), + [anon_sym_recv] = ACTIONS(526), + [anon_sym_tryrecv] = ACTIONS(526), + [anon_sym_reduce] = ACTIONS(526), + [anon_sym_SLASH] = ACTIONS(526), + [anon_sym_scan] = ACTIONS(526), + [anon_sym_BSLASH] = ACTIONS(526), + [anon_sym_each] = ACTIONS(526), + [anon_sym_64] = ACTIONS(526), + [anon_sym_rows] = ACTIONS(526), + [anon_sym_65] = ACTIONS(526), + [anon_sym_repeat] = ACTIONS(526), + [anon_sym_66] = ACTIONS(526), + [anon_sym_dip] = ACTIONS(526), + [anon_sym_67] = ACTIONS(526), + [anon_sym_gap] = ACTIONS(526), + [anon_sym_68] = ACTIONS(526), + [anon_sym_69] = ACTIONS(526), + [anon_sym_invert] = ACTIONS(526), + [anon_sym_70] = ACTIONS(526), + [anon_sym_spawn] = ACTIONS(526), + [anon_sym_pack] = ACTIONS(526), + [anon_sym_71] = ACTIONS(526), + [anon_sym_tribute] = ACTIONS(526), + [anon_sym_72] = ACTIONS(526), + [anon_sym_reach] = ACTIONS(526), + [anon_sym_fold] = ACTIONS(526), + [anon_sym_73] = ACTIONS(526), + [anon_sym_distribute] = ACTIONS(526), + [anon_sym_74] = ACTIONS(526), + [anon_sym_table] = ACTIONS(526), + [anon_sym_75] = ACTIONS(526), + [anon_sym_cross] = ACTIONS(526), + [anon_sym_76] = ACTIONS(526), + [anon_sym_group] = ACTIONS(526), + [anon_sym_77] = ACTIONS(526), + [anon_sym_partition] = ACTIONS(526), + [anon_sym_78] = ACTIONS(526), + [anon_sym_both] = ACTIONS(526), + [anon_sym_79] = ACTIONS(526), + [anon_sym_bracket] = ACTIONS(526), + [anon_sym_80] = ACTIONS(526), + [anon_sym_fork] = ACTIONS(526), + [anon_sym_81] = ACTIONS(526), + [anon_sym_under] = ACTIONS(526), + [anon_sym_82] = ACTIONS(526), + [anon_sym_level] = ACTIONS(526), + [anon_sym_83] = ACTIONS(526), + [anon_sym_fill] = ACTIONS(526), + [anon_sym_84] = ACTIONS(526), + [anon_sym_bind] = ACTIONS(526), + [anon_sym_SQUOTE] = ACTIONS(526), + [anon_sym_QMARK] = ACTIONS(526), + [anon_sym_try] = ACTIONS(524), + [anon_sym_85] = ACTIONS(526), + [anon_sym_combinate] = ACTIONS(526), + [anon_sym_86] = ACTIONS(526), + [anon_sym_87] = ACTIONS(526), + [anon_sym_88] = ACTIONS(526), + [anon_sym_89] = ACTIONS(526), + [anon_sym_90] = ACTIONS(526), + [anon_sym_91] = ACTIONS(526), + [anon_sym_92] = ACTIONS(526), + [anon_sym_93] = ACTIONS(526), [sym__whitespace] = ACTIONS(5), [sym__end_of_line] = ACTIONS(5), }, [117] = { - [aux_sym_number_token1] = ACTIONS(542), - [anon_sym_os] = ACTIONS(542), - [anon_sym_Family] = ACTIONS(542), - [anon_sym_Arch] = ACTIONS(542), - [anon_sym_ExeExt] = ACTIONS(542), - [anon_sym_PllExt] = ACTIONS(542), - [anon_sym_Sep] = ACTIONS(542), - [aux_sym_character_token1] = ACTIONS(544), - [sym_string] = ACTIONS(544), - [sym_multiLineString] = ACTIONS(544), - [anon_sym_PIPE] = ACTIONS(544), - [sym_identifier] = ACTIONS(542), - [sym_identifier_deprecated] = ACTIONS(542), - [sym_system] = ACTIONS(544), - [sym_comment] = ACTIONS(542), - [sym_openParen] = ACTIONS(544), - [sym_closeParen] = ACTIONS(556), - [sym_openCurly] = ACTIONS(544), - [sym_openBracket] = ACTIONS(544), - [sym_leftArrow] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(544), - [anon_sym_eta] = ACTIONS(544), - [anon_sym_] = ACTIONS(542), - [anon_sym_pi] = ACTIONS(542), - [anon_sym_2] = ACTIONS(542), - [anon_sym_tau] = ACTIONS(544), - [anon_sym_3] = ACTIONS(542), - [anon_sym_infinity] = ACTIONS(544), - [anon_sym_4] = ACTIONS(544), - [anon_sym_e] = ACTIONS(542), - [anon_sym_NaN] = ACTIONS(542), - [anon_sym_NumProcs] = ACTIONS(542), - [anon_sym_DOT] = ACTIONS(544), - [anon_sym_COMMA] = ACTIONS(544), - [anon_sym_5] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(544), - [anon_sym_identity] = ACTIONS(544), - [anon_sym_id] = ACTIONS(542), - [anon_sym_6] = ACTIONS(544), - [anon_sym_not] = ACTIONS(544), - [anon_sym_7] = ACTIONS(544), - [anon_sym_sign] = ACTIONS(544), - [anon_sym_8] = ACTIONS(544), - [anon_sym_BQUOTE] = ACTIONS(544), - [anon_sym_9] = ACTIONS(544), - [anon_sym_absolutevalue] = ACTIONS(544), - [anon_sym_10] = ACTIONS(544), - [anon_sym_sqrt] = ACTIONS(544), - [anon_sym_11] = ACTIONS(544), - [anon_sym_sine] = ACTIONS(544), - [anon_sym_12] = ACTIONS(544), - [anon_sym_floor] = ACTIONS(544), - [anon_sym_13] = ACTIONS(544), - [anon_sym_ceiling] = ACTIONS(544), - [anon_sym_14] = ACTIONS(544), - [anon_sym_round] = ACTIONS(544), - [anon_sym_15] = ACTIONS(544), - [anon_sym_EQ] = ACTIONS(544), - [anon_sym_BANG_EQ] = ACTIONS(544), - [anon_sym_16] = ACTIONS(544), - [anon_sym_LT] = ACTIONS(542), - [anon_sym_LT_EQ] = ACTIONS(544), - [anon_sym_17] = ACTIONS(544), - [anon_sym_GT] = ACTIONS(542), - [anon_sym_GT_EQ] = ACTIONS(544), - [anon_sym_18] = ACTIONS(544), - [anon_sym_PLUS] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(544), - [anon_sym_STAR] = ACTIONS(544), - [anon_sym_19] = ACTIONS(544), - [anon_sym_PERCENT] = ACTIONS(544), - [anon_sym_20] = ACTIONS(544), - [anon_sym_modulus] = ACTIONS(544), - [anon_sym_21] = ACTIONS(544), - [anon_sym_power] = ACTIONS(544), - [anon_sym_22] = ACTIONS(544), - [anon_sym_logarithm] = ACTIONS(544), - [anon_sym_23] = ACTIONS(544), - [anon_sym_minimum] = ACTIONS(544), - [anon_sym_24] = ACTIONS(544), - [anon_sym_maximum] = ACTIONS(544), - [anon_sym_25] = ACTIONS(544), - [anon_sym_atangent] = ACTIONS(544), - [anon_sym_26] = ACTIONS(544), - [anon_sym_length] = ACTIONS(544), - [anon_sym_27] = ACTIONS(544), - [anon_sym_shape] = ACTIONS(544), - [anon_sym_28] = ACTIONS(544), - [anon_sym_range] = ACTIONS(544), - [anon_sym_29] = ACTIONS(544), - [anon_sym_first] = ACTIONS(544), - [anon_sym_30] = ACTIONS(544), - [anon_sym_reverse] = ACTIONS(544), - [anon_sym_31] = ACTIONS(544), - [anon_sym_deshape] = ACTIONS(544), - [anon_sym_32] = ACTIONS(544), - [anon_sym_bits] = ACTIONS(544), - [anon_sym_33] = ACTIONS(544), - [anon_sym_transpose] = ACTIONS(544), - [anon_sym_34] = ACTIONS(544), - [anon_sym_rise] = ACTIONS(544), - [anon_sym_35] = ACTIONS(544), - [anon_sym_fall] = ACTIONS(544), - [anon_sym_36] = ACTIONS(544), - [anon_sym_where] = ACTIONS(544), - [anon_sym_37] = ACTIONS(544), - [anon_sym_classify] = ACTIONS(544), - [anon_sym_38] = ACTIONS(544), - [anon_sym_deduplicate] = ACTIONS(544), - [anon_sym_39] = ACTIONS(544), - [anon_sym_box] = ACTIONS(544), - [anon_sym_40] = ACTIONS(544), - [anon_sym_unbox] = ACTIONS(544), - [anon_sym_41] = ACTIONS(544), - [anon_sym_match] = ACTIONS(544), - [anon_sym_42] = ACTIONS(544), - [anon_sym_couple] = ACTIONS(544), - [anon_sym_43] = ACTIONS(544), - [anon_sym_join] = ACTIONS(544), - [anon_sym_44] = ACTIONS(544), - [anon_sym_select] = ACTIONS(544), - [anon_sym_45] = ACTIONS(544), - [anon_sym_pick] = ACTIONS(544), - [anon_sym_46] = ACTIONS(544), - [anon_sym_reshape] = ACTIONS(544), - [anon_sym_47] = ACTIONS(544), - [anon_sym_take] = ACTIONS(544), - [anon_sym_48] = ACTIONS(544), - [anon_sym_drop] = ACTIONS(544), - [anon_sym_49] = ACTIONS(544), - [anon_sym_rotate] = ACTIONS(544), - [anon_sym_50] = ACTIONS(544), - [anon_sym_windows] = ACTIONS(544), - [anon_sym_51] = ACTIONS(544), - [anon_sym_keep] = ACTIONS(544), - [anon_sym_52] = ACTIONS(544), - [anon_sym_find] = ACTIONS(544), - [anon_sym_53] = ACTIONS(544), - [anon_sym_member] = ACTIONS(544), - [anon_sym_54] = ACTIONS(544), - [anon_sym_indexof] = ACTIONS(544), - [anon_sym_55] = ACTIONS(544), - [anon_sym_assert] = ACTIONS(544), - [anon_sym_56] = ACTIONS(544), - [anon_sym_wait] = ACTIONS(544), - [anon_sym_break] = ACTIONS(544), - [anon_sym_57] = ACTIONS(544), - [anon_sym_parse] = ACTIONS(544), - [anon_sym_random] = ACTIONS(544), - [anon_sym_58] = ACTIONS(544), - [anon_sym_gen] = ACTIONS(544), - [anon_sym_deal] = ACTIONS(544), - [anon_sym_tag] = ACTIONS(544), - [anon_sym_now] = ACTIONS(544), - [anon_sym_type] = ACTIONS(544), - [anon_sym_59] = ACTIONS(544), - [anon_sym_dump] = ACTIONS(544), - [anon_sym_regex] = ACTIONS(544), - [anon_sym_utf] = ACTIONS(544), - [anon_sym_rock] = ACTIONS(544), - [anon_sym_60] = ACTIONS(544), - [anon_sym_surface] = ACTIONS(544), - [anon_sym_TILDE] = ACTIONS(544), - [anon_sym_deep] = ACTIONS(544), - [anon_sym_de] = ACTIONS(542), - [anon_sym_61] = ACTIONS(544), - [anon_sym_abyss] = ACTIONS(544), - [anon_sym_ab] = ACTIONS(542), - [anon_sym_62] = ACTIONS(544), - [anon_sym_seabed] = ACTIONS(544), - [anon_sym_se] = ACTIONS(542), - [anon_sym_63] = ACTIONS(544), - [anon_sym_send] = ACTIONS(544), - [anon_sym_recv] = ACTIONS(544), - [anon_sym_tryrecv] = ACTIONS(544), - [anon_sym_reduce] = ACTIONS(544), - [anon_sym_SLASH] = ACTIONS(544), - [anon_sym_scan] = ACTIONS(544), - [anon_sym_BSLASH] = ACTIONS(544), - [anon_sym_each] = ACTIONS(544), - [anon_sym_64] = ACTIONS(544), - [anon_sym_rows] = ACTIONS(544), - [anon_sym_65] = ACTIONS(544), - [anon_sym_repeat] = ACTIONS(544), - [anon_sym_66] = ACTIONS(544), - [anon_sym_dip] = ACTIONS(544), - [anon_sym_di] = ACTIONS(542), - [anon_sym_67] = ACTIONS(544), - [anon_sym_gap] = ACTIONS(544), - [anon_sym_ga] = ACTIONS(542), - [anon_sym_68] = ACTIONS(544), - [anon_sym_oust] = ACTIONS(544), - [anon_sym_69] = ACTIONS(544), - [anon_sym_invert] = ACTIONS(544), - [anon_sym_70] = ACTIONS(544), - [anon_sym_spawn] = ACTIONS(544), - [anon_sym_pack] = ACTIONS(544), - [anon_sym_71] = ACTIONS(544), - [anon_sym_tribute] = ACTIONS(544), - [anon_sym_72] = ACTIONS(544), - [anon_sym_fold] = ACTIONS(544), - [anon_sym_73] = ACTIONS(544), - [anon_sym_distribute] = ACTIONS(544), - [anon_sym_74] = ACTIONS(544), - [anon_sym_table] = ACTIONS(544), - [anon_sym_75] = ACTIONS(544), - [anon_sym_cross] = ACTIONS(544), - [anon_sym_76] = ACTIONS(544), - [anon_sym_group] = ACTIONS(544), - [anon_sym_77] = ACTIONS(544), - [anon_sym_partition] = ACTIONS(544), - [anon_sym_78] = ACTIONS(544), - [anon_sym_both] = ACTIONS(544), - [anon_sym_79] = ACTIONS(544), - [anon_sym_bracket] = ACTIONS(544), - [anon_sym_80] = ACTIONS(544), - [anon_sym_fork] = ACTIONS(544), - [anon_sym_81] = ACTIONS(544), - [anon_sym_under] = ACTIONS(544), - [anon_sym_82] = ACTIONS(544), - [anon_sym_level] = ACTIONS(544), - [anon_sym_83] = ACTIONS(544), - [anon_sym_fill] = ACTIONS(544), - [anon_sym_84] = ACTIONS(544), - [anon_sym_bind] = ACTIONS(544), - [anon_sym_SQUOTE] = ACTIONS(544), - [anon_sym_QMARK] = ACTIONS(544), - [anon_sym_try] = ACTIONS(542), - [anon_sym_85] = ACTIONS(544), - [anon_sym_combinate] = ACTIONS(544), - [anon_sym_86] = ACTIONS(544), - [anon_sym_87] = ACTIONS(544), - [anon_sym_88] = ACTIONS(544), - [anon_sym_89] = ACTIONS(544), - [anon_sym_90] = ACTIONS(544), - [anon_sym_91] = ACTIONS(544), - [anon_sym_92] = ACTIONS(544), - [anon_sym_93] = ACTIONS(544), + [aux_sym_number_token1] = ACTIONS(524), + [anon_sym_os] = ACTIONS(524), + [anon_sym_Family] = ACTIONS(524), + [anon_sym_Arch] = ACTIONS(524), + [anon_sym_ExeExt] = ACTIONS(524), + [anon_sym_PllExt] = ACTIONS(524), + [anon_sym_Sep] = ACTIONS(524), + [aux_sym_character_token1] = ACTIONS(526), + [sym_string] = ACTIONS(526), + [sym_multiLineString] = ACTIONS(526), + [anon_sym_PIPE] = ACTIONS(526), + [sym_identifier] = ACTIONS(524), + [sym_identifier_deprecated] = ACTIONS(524), + [sym_system] = ACTIONS(526), + [sym_comment] = ACTIONS(524), + [sym_openParen] = ACTIONS(526), + [sym_closeParen] = ACTIONS(538), + [sym_openCurly] = ACTIONS(526), + [sym_openBracket] = ACTIONS(526), + [sym_leftArrow] = ACTIONS(526), + [anon_sym_CARET] = ACTIONS(526), + [anon_sym_eta] = ACTIONS(526), + [anon_sym_] = ACTIONS(524), + [anon_sym_pi] = ACTIONS(524), + [anon_sym_2] = ACTIONS(524), + [anon_sym_tau] = ACTIONS(526), + [anon_sym_3] = ACTIONS(524), + [anon_sym_infinity] = ACTIONS(526), + [anon_sym_4] = ACTIONS(526), + [anon_sym_e] = ACTIONS(524), + [anon_sym_NaN] = ACTIONS(524), + [anon_sym_NumProcs] = ACTIONS(524), + [anon_sym_DOT] = ACTIONS(526), + [anon_sym_COMMA] = ACTIONS(526), + [anon_sym_5] = ACTIONS(526), + [anon_sym_SEMI] = ACTIONS(526), + [anon_sym_identity] = ACTIONS(526), + [anon_sym_id] = ACTIONS(524), + [anon_sym_6] = ACTIONS(526), + [anon_sym_not] = ACTIONS(526), + [anon_sym_7] = ACTIONS(526), + [anon_sym_sign] = ACTIONS(526), + [anon_sym_8] = ACTIONS(526), + [anon_sym_BQUOTE] = ACTIONS(526), + [anon_sym_9] = ACTIONS(526), + [anon_sym_absolutevalue] = ACTIONS(526), + [anon_sym_10] = ACTIONS(526), + [anon_sym_sqrt] = ACTIONS(526), + [anon_sym_11] = ACTIONS(526), + [anon_sym_sine] = ACTIONS(526), + [anon_sym_12] = ACTIONS(526), + [anon_sym_floor] = ACTIONS(526), + [anon_sym_13] = ACTIONS(526), + [anon_sym_ceiling] = ACTIONS(526), + [anon_sym_14] = ACTIONS(526), + [anon_sym_round] = ACTIONS(526), + [anon_sym_15] = ACTIONS(526), + [anon_sym_EQ] = ACTIONS(526), + [anon_sym_BANG_EQ] = ACTIONS(526), + [anon_sym_16] = ACTIONS(526), + [anon_sym_LT] = ACTIONS(524), + [anon_sym_LT_EQ] = ACTIONS(526), + [anon_sym_17] = ACTIONS(526), + [anon_sym_GT] = ACTIONS(524), + [anon_sym_GT_EQ] = ACTIONS(526), + [anon_sym_18] = ACTIONS(526), + [anon_sym_PLUS] = ACTIONS(526), + [anon_sym_DASH] = ACTIONS(526), + [anon_sym_STAR] = ACTIONS(526), + [anon_sym_19] = ACTIONS(526), + [anon_sym_PERCENT] = ACTIONS(526), + [anon_sym_20] = ACTIONS(526), + [anon_sym_modulus] = ACTIONS(526), + [anon_sym_21] = ACTIONS(526), + [anon_sym_power] = ACTIONS(526), + [anon_sym_22] = ACTIONS(526), + [anon_sym_logarithm] = ACTIONS(526), + [anon_sym_23] = ACTIONS(526), + [anon_sym_minimum] = ACTIONS(526), + [anon_sym_24] = ACTIONS(526), + [anon_sym_maximum] = ACTIONS(526), + [anon_sym_25] = ACTIONS(526), + [anon_sym_atangent] = ACTIONS(526), + [anon_sym_26] = ACTIONS(526), + [anon_sym_length] = ACTIONS(526), + [anon_sym_27] = ACTIONS(526), + [anon_sym_shape] = ACTIONS(526), + [anon_sym_28] = ACTIONS(526), + [anon_sym_range] = ACTIONS(526), + [anon_sym_29] = ACTIONS(526), + [anon_sym_first] = ACTIONS(526), + [anon_sym_30] = ACTIONS(526), + [anon_sym_reverse] = ACTIONS(526), + [anon_sym_31] = ACTIONS(526), + [anon_sym_deshape] = ACTIONS(526), + [anon_sym_32] = ACTIONS(526), + [anon_sym_bits] = ACTIONS(526), + [anon_sym_33] = ACTIONS(526), + [anon_sym_transpose] = ACTIONS(526), + [anon_sym_34] = ACTIONS(526), + [anon_sym_rise] = ACTIONS(526), + [anon_sym_35] = ACTIONS(526), + [anon_sym_fall] = ACTIONS(526), + [anon_sym_36] = ACTIONS(526), + [anon_sym_where] = ACTIONS(526), + [anon_sym_37] = ACTIONS(526), + [anon_sym_classify] = ACTIONS(526), + [anon_sym_38] = ACTIONS(526), + [anon_sym_deduplicate] = ACTIONS(526), + [anon_sym_39] = ACTIONS(526), + [anon_sym_box] = ACTIONS(526), + [anon_sym_40] = ACTIONS(526), + [anon_sym_unbox] = ACTIONS(526), + [anon_sym_41] = ACTIONS(526), + [anon_sym_match] = ACTIONS(526), + [anon_sym_42] = ACTIONS(526), + [anon_sym_couple] = ACTIONS(526), + [anon_sym_43] = ACTIONS(526), + [anon_sym_join] = ACTIONS(526), + [anon_sym_44] = ACTIONS(526), + [anon_sym_select] = ACTIONS(526), + [anon_sym_45] = ACTIONS(526), + [anon_sym_pick] = ACTIONS(526), + [anon_sym_46] = ACTIONS(526), + [anon_sym_reshape] = ACTIONS(526), + [anon_sym_47] = ACTIONS(526), + [anon_sym_take] = ACTIONS(526), + [anon_sym_48] = ACTIONS(526), + [anon_sym_drop] = ACTIONS(526), + [anon_sym_49] = ACTIONS(526), + [anon_sym_rotate] = ACTIONS(526), + [anon_sym_50] = ACTIONS(526), + [anon_sym_windows] = ACTIONS(526), + [anon_sym_51] = ACTIONS(526), + [anon_sym_keep] = ACTIONS(526), + [anon_sym_52] = ACTIONS(526), + [anon_sym_find] = ACTIONS(526), + [anon_sym_53] = ACTIONS(526), + [anon_sym_member] = ACTIONS(526), + [anon_sym_54] = ACTIONS(526), + [anon_sym_indexof] = ACTIONS(526), + [anon_sym_55] = ACTIONS(526), + [anon_sym_assert] = ACTIONS(526), + [anon_sym_56] = ACTIONS(526), + [anon_sym_wait] = ACTIONS(526), + [anon_sym_break] = ACTIONS(526), + [anon_sym_57] = ACTIONS(526), + [anon_sym_parse] = ACTIONS(526), + [anon_sym_random] = ACTIONS(526), + [anon_sym_58] = ACTIONS(526), + [anon_sym_gen] = ACTIONS(526), + [anon_sym_deal] = ACTIONS(526), + [anon_sym_tag] = ACTIONS(526), + [anon_sym_now] = ACTIONS(526), + [anon_sym_type] = ACTIONS(526), + [anon_sym_59] = ACTIONS(526), + [anon_sym_dump] = ACTIONS(526), + [anon_sym_regex] = ACTIONS(526), + [anon_sym_utf] = ACTIONS(526), + [anon_sym_rock] = ACTIONS(526), + [anon_sym_60] = ACTIONS(526), + [anon_sym_surface] = ACTIONS(526), + [anon_sym_TILDE] = ACTIONS(526), + [anon_sym_deep] = ACTIONS(526), + [anon_sym_de] = ACTIONS(524), + [anon_sym_61] = ACTIONS(526), + [anon_sym_abyss] = ACTIONS(526), + [anon_sym_ab] = ACTIONS(524), + [anon_sym_62] = ACTIONS(526), + [anon_sym_seabed] = ACTIONS(526), + [anon_sym_se] = ACTIONS(524), + [anon_sym_63] = ACTIONS(526), + [anon_sym_send] = ACTIONS(526), + [anon_sym_recv] = ACTIONS(526), + [anon_sym_tryrecv] = ACTIONS(526), + [anon_sym_reduce] = ACTIONS(526), + [anon_sym_SLASH] = ACTIONS(526), + [anon_sym_scan] = ACTIONS(526), + [anon_sym_BSLASH] = ACTIONS(526), + [anon_sym_each] = ACTIONS(526), + [anon_sym_64] = ACTIONS(526), + [anon_sym_rows] = ACTIONS(526), + [anon_sym_65] = ACTIONS(526), + [anon_sym_repeat] = ACTIONS(526), + [anon_sym_66] = ACTIONS(526), + [anon_sym_dip] = ACTIONS(526), + [anon_sym_67] = ACTIONS(526), + [anon_sym_gap] = ACTIONS(526), + [anon_sym_68] = ACTIONS(526), + [anon_sym_69] = ACTIONS(526), + [anon_sym_invert] = ACTIONS(526), + [anon_sym_70] = ACTIONS(526), + [anon_sym_spawn] = ACTIONS(526), + [anon_sym_pack] = ACTIONS(526), + [anon_sym_71] = ACTIONS(526), + [anon_sym_tribute] = ACTIONS(526), + [anon_sym_72] = ACTIONS(526), + [anon_sym_reach] = ACTIONS(526), + [anon_sym_fold] = ACTIONS(526), + [anon_sym_73] = ACTIONS(526), + [anon_sym_distribute] = ACTIONS(526), + [anon_sym_74] = ACTIONS(526), + [anon_sym_table] = ACTIONS(526), + [anon_sym_75] = ACTIONS(526), + [anon_sym_cross] = ACTIONS(526), + [anon_sym_76] = ACTIONS(526), + [anon_sym_group] = ACTIONS(526), + [anon_sym_77] = ACTIONS(526), + [anon_sym_partition] = ACTIONS(526), + [anon_sym_78] = ACTIONS(526), + [anon_sym_both] = ACTIONS(526), + [anon_sym_79] = ACTIONS(526), + [anon_sym_bracket] = ACTIONS(526), + [anon_sym_80] = ACTIONS(526), + [anon_sym_fork] = ACTIONS(526), + [anon_sym_81] = ACTIONS(526), + [anon_sym_under] = ACTIONS(526), + [anon_sym_82] = ACTIONS(526), + [anon_sym_level] = ACTIONS(526), + [anon_sym_83] = ACTIONS(526), + [anon_sym_fill] = ACTIONS(526), + [anon_sym_84] = ACTIONS(526), + [anon_sym_bind] = ACTIONS(526), + [anon_sym_SQUOTE] = ACTIONS(526), + [anon_sym_QMARK] = ACTIONS(526), + [anon_sym_try] = ACTIONS(524), + [anon_sym_85] = ACTIONS(526), + [anon_sym_combinate] = ACTIONS(526), + [anon_sym_86] = ACTIONS(526), + [anon_sym_87] = ACTIONS(526), + [anon_sym_88] = ACTIONS(526), + [anon_sym_89] = ACTIONS(526), + [anon_sym_90] = ACTIONS(526), + [anon_sym_91] = ACTIONS(526), + [anon_sym_92] = ACTIONS(526), + [anon_sym_93] = ACTIONS(526), [sym__whitespace] = ACTIONS(5), [sym__end_of_line] = ACTIONS(5), }, [118] = { - [aux_sym_number_token1] = ACTIONS(542), - [anon_sym_os] = ACTIONS(542), - [anon_sym_Family] = ACTIONS(542), - [anon_sym_Arch] = ACTIONS(542), - [anon_sym_ExeExt] = ACTIONS(542), - [anon_sym_PllExt] = ACTIONS(542), - [anon_sym_Sep] = ACTIONS(542), - [aux_sym_character_token1] = ACTIONS(544), - [sym_string] = ACTIONS(544), - [sym_multiLineString] = ACTIONS(544), - [anon_sym_PIPE] = ACTIONS(544), - [sym_identifier] = ACTIONS(542), - [sym_identifier_deprecated] = ACTIONS(542), - [sym_system] = ACTIONS(544), - [sym_comment] = ACTIONS(542), - [sym_openParen] = ACTIONS(544), - [sym_closeParen] = ACTIONS(558), - [sym_openCurly] = ACTIONS(544), - [sym_openBracket] = ACTIONS(544), - [sym_leftArrow] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(544), - [anon_sym_eta] = ACTIONS(544), - [anon_sym_] = ACTIONS(542), - [anon_sym_pi] = ACTIONS(542), - [anon_sym_2] = ACTIONS(542), - [anon_sym_tau] = ACTIONS(544), - [anon_sym_3] = ACTIONS(542), - [anon_sym_infinity] = ACTIONS(544), - [anon_sym_4] = ACTIONS(544), - [anon_sym_e] = ACTIONS(542), - [anon_sym_NaN] = ACTIONS(542), - [anon_sym_NumProcs] = ACTIONS(542), - [anon_sym_DOT] = ACTIONS(544), - [anon_sym_COMMA] = ACTIONS(544), - [anon_sym_5] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(544), - [anon_sym_identity] = ACTIONS(544), - [anon_sym_id] = ACTIONS(542), - [anon_sym_6] = ACTIONS(544), - [anon_sym_not] = ACTIONS(544), - [anon_sym_7] = ACTIONS(544), - [anon_sym_sign] = ACTIONS(544), - [anon_sym_8] = ACTIONS(544), - [anon_sym_BQUOTE] = ACTIONS(544), - [anon_sym_9] = ACTIONS(544), - [anon_sym_absolutevalue] = ACTIONS(544), - [anon_sym_10] = ACTIONS(544), - [anon_sym_sqrt] = ACTIONS(544), - [anon_sym_11] = ACTIONS(544), - [anon_sym_sine] = ACTIONS(544), - [anon_sym_12] = ACTIONS(544), - [anon_sym_floor] = ACTIONS(544), - [anon_sym_13] = ACTIONS(544), - [anon_sym_ceiling] = ACTIONS(544), - [anon_sym_14] = ACTIONS(544), - [anon_sym_round] = ACTIONS(544), - [anon_sym_15] = ACTIONS(544), - [anon_sym_EQ] = ACTIONS(544), - [anon_sym_BANG_EQ] = ACTIONS(544), - [anon_sym_16] = ACTIONS(544), - [anon_sym_LT] = ACTIONS(542), - [anon_sym_LT_EQ] = ACTIONS(544), - [anon_sym_17] = ACTIONS(544), - [anon_sym_GT] = ACTIONS(542), - [anon_sym_GT_EQ] = ACTIONS(544), - [anon_sym_18] = ACTIONS(544), - [anon_sym_PLUS] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(544), - [anon_sym_STAR] = ACTIONS(544), - [anon_sym_19] = ACTIONS(544), - [anon_sym_PERCENT] = ACTIONS(544), - [anon_sym_20] = ACTIONS(544), - [anon_sym_modulus] = ACTIONS(544), - [anon_sym_21] = ACTIONS(544), - [anon_sym_power] = ACTIONS(544), - [anon_sym_22] = ACTIONS(544), - [anon_sym_logarithm] = ACTIONS(544), - [anon_sym_23] = ACTIONS(544), - [anon_sym_minimum] = ACTIONS(544), - [anon_sym_24] = ACTIONS(544), - [anon_sym_maximum] = ACTIONS(544), - [anon_sym_25] = ACTIONS(544), - [anon_sym_atangent] = ACTIONS(544), - [anon_sym_26] = ACTIONS(544), - [anon_sym_length] = ACTIONS(544), - [anon_sym_27] = ACTIONS(544), - [anon_sym_shape] = ACTIONS(544), - [anon_sym_28] = ACTIONS(544), - [anon_sym_range] = ACTIONS(544), - [anon_sym_29] = ACTIONS(544), - [anon_sym_first] = ACTIONS(544), - [anon_sym_30] = ACTIONS(544), - [anon_sym_reverse] = ACTIONS(544), - [anon_sym_31] = ACTIONS(544), - [anon_sym_deshape] = ACTIONS(544), - [anon_sym_32] = ACTIONS(544), - [anon_sym_bits] = ACTIONS(544), - [anon_sym_33] = ACTIONS(544), - [anon_sym_transpose] = ACTIONS(544), - [anon_sym_34] = ACTIONS(544), - [anon_sym_rise] = ACTIONS(544), - [anon_sym_35] = ACTIONS(544), - [anon_sym_fall] = ACTIONS(544), - [anon_sym_36] = ACTIONS(544), - [anon_sym_where] = ACTIONS(544), - [anon_sym_37] = ACTIONS(544), - [anon_sym_classify] = ACTIONS(544), - [anon_sym_38] = ACTIONS(544), - [anon_sym_deduplicate] = ACTIONS(544), - [anon_sym_39] = ACTIONS(544), - [anon_sym_box] = ACTIONS(544), - [anon_sym_40] = ACTIONS(544), - [anon_sym_unbox] = ACTIONS(544), - [anon_sym_41] = ACTIONS(544), - [anon_sym_match] = ACTIONS(544), - [anon_sym_42] = ACTIONS(544), - [anon_sym_couple] = ACTIONS(544), - [anon_sym_43] = ACTIONS(544), - [anon_sym_join] = ACTIONS(544), - [anon_sym_44] = ACTIONS(544), - [anon_sym_select] = ACTIONS(544), - [anon_sym_45] = ACTIONS(544), - [anon_sym_pick] = ACTIONS(544), - [anon_sym_46] = ACTIONS(544), - [anon_sym_reshape] = ACTIONS(544), - [anon_sym_47] = ACTIONS(544), - [anon_sym_take] = ACTIONS(544), - [anon_sym_48] = ACTIONS(544), - [anon_sym_drop] = ACTIONS(544), - [anon_sym_49] = ACTIONS(544), - [anon_sym_rotate] = ACTIONS(544), - [anon_sym_50] = ACTIONS(544), - [anon_sym_windows] = ACTIONS(544), - [anon_sym_51] = ACTIONS(544), - [anon_sym_keep] = ACTIONS(544), - [anon_sym_52] = ACTIONS(544), - [anon_sym_find] = ACTIONS(544), - [anon_sym_53] = ACTIONS(544), - [anon_sym_member] = ACTIONS(544), - [anon_sym_54] = ACTIONS(544), - [anon_sym_indexof] = ACTIONS(544), - [anon_sym_55] = ACTIONS(544), - [anon_sym_assert] = ACTIONS(544), - [anon_sym_56] = ACTIONS(544), - [anon_sym_wait] = ACTIONS(544), - [anon_sym_break] = ACTIONS(544), - [anon_sym_57] = ACTIONS(544), - [anon_sym_parse] = ACTIONS(544), - [anon_sym_random] = ACTIONS(544), - [anon_sym_58] = ACTIONS(544), - [anon_sym_gen] = ACTIONS(544), - [anon_sym_deal] = ACTIONS(544), - [anon_sym_tag] = ACTIONS(544), - [anon_sym_now] = ACTIONS(544), - [anon_sym_type] = ACTIONS(544), - [anon_sym_59] = ACTIONS(544), - [anon_sym_dump] = ACTIONS(544), - [anon_sym_regex] = ACTIONS(544), - [anon_sym_utf] = ACTIONS(544), - [anon_sym_rock] = ACTIONS(544), - [anon_sym_60] = ACTIONS(544), - [anon_sym_surface] = ACTIONS(544), - [anon_sym_TILDE] = ACTIONS(544), - [anon_sym_deep] = ACTIONS(544), - [anon_sym_de] = ACTIONS(542), - [anon_sym_61] = ACTIONS(544), - [anon_sym_abyss] = ACTIONS(544), - [anon_sym_ab] = ACTIONS(542), - [anon_sym_62] = ACTIONS(544), - [anon_sym_seabed] = ACTIONS(544), - [anon_sym_se] = ACTIONS(542), - [anon_sym_63] = ACTIONS(544), - [anon_sym_send] = ACTIONS(544), - [anon_sym_recv] = ACTIONS(544), - [anon_sym_tryrecv] = ACTIONS(544), - [anon_sym_reduce] = ACTIONS(544), - [anon_sym_SLASH] = ACTIONS(544), - [anon_sym_scan] = ACTIONS(544), - [anon_sym_BSLASH] = ACTIONS(544), - [anon_sym_each] = ACTIONS(544), - [anon_sym_64] = ACTIONS(544), - [anon_sym_rows] = ACTIONS(544), - [anon_sym_65] = ACTIONS(544), - [anon_sym_repeat] = ACTIONS(544), - [anon_sym_66] = ACTIONS(544), - [anon_sym_dip] = ACTIONS(544), - [anon_sym_di] = ACTIONS(542), - [anon_sym_67] = ACTIONS(544), - [anon_sym_gap] = ACTIONS(544), - [anon_sym_ga] = ACTIONS(542), - [anon_sym_68] = ACTIONS(544), - [anon_sym_oust] = ACTIONS(544), - [anon_sym_69] = ACTIONS(544), - [anon_sym_invert] = ACTIONS(544), - [anon_sym_70] = ACTIONS(544), - [anon_sym_spawn] = ACTIONS(544), - [anon_sym_pack] = ACTIONS(544), - [anon_sym_71] = ACTIONS(544), - [anon_sym_tribute] = ACTIONS(544), - [anon_sym_72] = ACTIONS(544), - [anon_sym_fold] = ACTIONS(544), - [anon_sym_73] = ACTIONS(544), - [anon_sym_distribute] = ACTIONS(544), - [anon_sym_74] = ACTIONS(544), - [anon_sym_table] = ACTIONS(544), - [anon_sym_75] = ACTIONS(544), - [anon_sym_cross] = ACTIONS(544), - [anon_sym_76] = ACTIONS(544), - [anon_sym_group] = ACTIONS(544), - [anon_sym_77] = ACTIONS(544), - [anon_sym_partition] = ACTIONS(544), - [anon_sym_78] = ACTIONS(544), - [anon_sym_both] = ACTIONS(544), - [anon_sym_79] = ACTIONS(544), - [anon_sym_bracket] = ACTIONS(544), - [anon_sym_80] = ACTIONS(544), - [anon_sym_fork] = ACTIONS(544), - [anon_sym_81] = ACTIONS(544), - [anon_sym_under] = ACTIONS(544), - [anon_sym_82] = ACTIONS(544), - [anon_sym_level] = ACTIONS(544), - [anon_sym_83] = ACTIONS(544), - [anon_sym_fill] = ACTIONS(544), - [anon_sym_84] = ACTIONS(544), - [anon_sym_bind] = ACTIONS(544), - [anon_sym_SQUOTE] = ACTIONS(544), - [anon_sym_QMARK] = ACTIONS(544), - [anon_sym_try] = ACTIONS(542), - [anon_sym_85] = ACTIONS(544), - [anon_sym_combinate] = ACTIONS(544), - [anon_sym_86] = ACTIONS(544), - [anon_sym_87] = ACTIONS(544), - [anon_sym_88] = ACTIONS(544), - [anon_sym_89] = ACTIONS(544), - [anon_sym_90] = ACTIONS(544), - [anon_sym_91] = ACTIONS(544), - [anon_sym_92] = ACTIONS(544), - [anon_sym_93] = ACTIONS(544), + [aux_sym_number_token1] = ACTIONS(524), + [anon_sym_os] = ACTIONS(524), + [anon_sym_Family] = ACTIONS(524), + [anon_sym_Arch] = ACTIONS(524), + [anon_sym_ExeExt] = ACTIONS(524), + [anon_sym_PllExt] = ACTIONS(524), + [anon_sym_Sep] = ACTIONS(524), + [aux_sym_character_token1] = ACTIONS(526), + [sym_string] = ACTIONS(526), + [sym_multiLineString] = ACTIONS(526), + [anon_sym_PIPE] = ACTIONS(526), + [sym_identifier] = ACTIONS(524), + [sym_identifier_deprecated] = ACTIONS(524), + [sym_system] = ACTIONS(526), + [sym_comment] = ACTIONS(524), + [sym_openParen] = ACTIONS(526), + [sym_closeParen] = ACTIONS(540), + [sym_openCurly] = ACTIONS(526), + [sym_openBracket] = ACTIONS(526), + [sym_leftArrow] = ACTIONS(526), + [anon_sym_CARET] = ACTIONS(526), + [anon_sym_eta] = ACTIONS(526), + [anon_sym_] = ACTIONS(524), + [anon_sym_pi] = ACTIONS(524), + [anon_sym_2] = ACTIONS(524), + [anon_sym_tau] = ACTIONS(526), + [anon_sym_3] = ACTIONS(524), + [anon_sym_infinity] = ACTIONS(526), + [anon_sym_4] = ACTIONS(526), + [anon_sym_e] = ACTIONS(524), + [anon_sym_NaN] = ACTIONS(524), + [anon_sym_NumProcs] = ACTIONS(524), + [anon_sym_DOT] = ACTIONS(526), + [anon_sym_COMMA] = ACTIONS(526), + [anon_sym_5] = ACTIONS(526), + [anon_sym_SEMI] = ACTIONS(526), + [anon_sym_identity] = ACTIONS(526), + [anon_sym_id] = ACTIONS(524), + [anon_sym_6] = ACTIONS(526), + [anon_sym_not] = ACTIONS(526), + [anon_sym_7] = ACTIONS(526), + [anon_sym_sign] = ACTIONS(526), + [anon_sym_8] = ACTIONS(526), + [anon_sym_BQUOTE] = ACTIONS(526), + [anon_sym_9] = ACTIONS(526), + [anon_sym_absolutevalue] = ACTIONS(526), + [anon_sym_10] = ACTIONS(526), + [anon_sym_sqrt] = ACTIONS(526), + [anon_sym_11] = ACTIONS(526), + [anon_sym_sine] = ACTIONS(526), + [anon_sym_12] = ACTIONS(526), + [anon_sym_floor] = ACTIONS(526), + [anon_sym_13] = ACTIONS(526), + [anon_sym_ceiling] = ACTIONS(526), + [anon_sym_14] = ACTIONS(526), + [anon_sym_round] = ACTIONS(526), + [anon_sym_15] = ACTIONS(526), + [anon_sym_EQ] = ACTIONS(526), + [anon_sym_BANG_EQ] = ACTIONS(526), + [anon_sym_16] = ACTIONS(526), + [anon_sym_LT] = ACTIONS(524), + [anon_sym_LT_EQ] = ACTIONS(526), + [anon_sym_17] = ACTIONS(526), + [anon_sym_GT] = ACTIONS(524), + [anon_sym_GT_EQ] = ACTIONS(526), + [anon_sym_18] = ACTIONS(526), + [anon_sym_PLUS] = ACTIONS(526), + [anon_sym_DASH] = ACTIONS(526), + [anon_sym_STAR] = ACTIONS(526), + [anon_sym_19] = ACTIONS(526), + [anon_sym_PERCENT] = ACTIONS(526), + [anon_sym_20] = ACTIONS(526), + [anon_sym_modulus] = ACTIONS(526), + [anon_sym_21] = ACTIONS(526), + [anon_sym_power] = ACTIONS(526), + [anon_sym_22] = ACTIONS(526), + [anon_sym_logarithm] = ACTIONS(526), + [anon_sym_23] = ACTIONS(526), + [anon_sym_minimum] = ACTIONS(526), + [anon_sym_24] = ACTIONS(526), + [anon_sym_maximum] = ACTIONS(526), + [anon_sym_25] = ACTIONS(526), + [anon_sym_atangent] = ACTIONS(526), + [anon_sym_26] = ACTIONS(526), + [anon_sym_length] = ACTIONS(526), + [anon_sym_27] = ACTIONS(526), + [anon_sym_shape] = ACTIONS(526), + [anon_sym_28] = ACTIONS(526), + [anon_sym_range] = ACTIONS(526), + [anon_sym_29] = ACTIONS(526), + [anon_sym_first] = ACTIONS(526), + [anon_sym_30] = ACTIONS(526), + [anon_sym_reverse] = ACTIONS(526), + [anon_sym_31] = ACTIONS(526), + [anon_sym_deshape] = ACTIONS(526), + [anon_sym_32] = ACTIONS(526), + [anon_sym_bits] = ACTIONS(526), + [anon_sym_33] = ACTIONS(526), + [anon_sym_transpose] = ACTIONS(526), + [anon_sym_34] = ACTIONS(526), + [anon_sym_rise] = ACTIONS(526), + [anon_sym_35] = ACTIONS(526), + [anon_sym_fall] = ACTIONS(526), + [anon_sym_36] = ACTIONS(526), + [anon_sym_where] = ACTIONS(526), + [anon_sym_37] = ACTIONS(526), + [anon_sym_classify] = ACTIONS(526), + [anon_sym_38] = ACTIONS(526), + [anon_sym_deduplicate] = ACTIONS(526), + [anon_sym_39] = ACTIONS(526), + [anon_sym_box] = ACTIONS(526), + [anon_sym_40] = ACTIONS(526), + [anon_sym_unbox] = ACTIONS(526), + [anon_sym_41] = ACTIONS(526), + [anon_sym_match] = ACTIONS(526), + [anon_sym_42] = ACTIONS(526), + [anon_sym_couple] = ACTIONS(526), + [anon_sym_43] = ACTIONS(526), + [anon_sym_join] = ACTIONS(526), + [anon_sym_44] = ACTIONS(526), + [anon_sym_select] = ACTIONS(526), + [anon_sym_45] = ACTIONS(526), + [anon_sym_pick] = ACTIONS(526), + [anon_sym_46] = ACTIONS(526), + [anon_sym_reshape] = ACTIONS(526), + [anon_sym_47] = ACTIONS(526), + [anon_sym_take] = ACTIONS(526), + [anon_sym_48] = ACTIONS(526), + [anon_sym_drop] = ACTIONS(526), + [anon_sym_49] = ACTIONS(526), + [anon_sym_rotate] = ACTIONS(526), + [anon_sym_50] = ACTIONS(526), + [anon_sym_windows] = ACTIONS(526), + [anon_sym_51] = ACTIONS(526), + [anon_sym_keep] = ACTIONS(526), + [anon_sym_52] = ACTIONS(526), + [anon_sym_find] = ACTIONS(526), + [anon_sym_53] = ACTIONS(526), + [anon_sym_member] = ACTIONS(526), + [anon_sym_54] = ACTIONS(526), + [anon_sym_indexof] = ACTIONS(526), + [anon_sym_55] = ACTIONS(526), + [anon_sym_assert] = ACTIONS(526), + [anon_sym_56] = ACTIONS(526), + [anon_sym_wait] = ACTIONS(526), + [anon_sym_break] = ACTIONS(526), + [anon_sym_57] = ACTIONS(526), + [anon_sym_parse] = ACTIONS(526), + [anon_sym_random] = ACTIONS(526), + [anon_sym_58] = ACTIONS(526), + [anon_sym_gen] = ACTIONS(526), + [anon_sym_deal] = ACTIONS(526), + [anon_sym_tag] = ACTIONS(526), + [anon_sym_now] = ACTIONS(526), + [anon_sym_type] = ACTIONS(526), + [anon_sym_59] = ACTIONS(526), + [anon_sym_dump] = ACTIONS(526), + [anon_sym_regex] = ACTIONS(526), + [anon_sym_utf] = ACTIONS(526), + [anon_sym_rock] = ACTIONS(526), + [anon_sym_60] = ACTIONS(526), + [anon_sym_surface] = ACTIONS(526), + [anon_sym_TILDE] = ACTIONS(526), + [anon_sym_deep] = ACTIONS(526), + [anon_sym_de] = ACTIONS(524), + [anon_sym_61] = ACTIONS(526), + [anon_sym_abyss] = ACTIONS(526), + [anon_sym_ab] = ACTIONS(524), + [anon_sym_62] = ACTIONS(526), + [anon_sym_seabed] = ACTIONS(526), + [anon_sym_se] = ACTIONS(524), + [anon_sym_63] = ACTIONS(526), + [anon_sym_send] = ACTIONS(526), + [anon_sym_recv] = ACTIONS(526), + [anon_sym_tryrecv] = ACTIONS(526), + [anon_sym_reduce] = ACTIONS(526), + [anon_sym_SLASH] = ACTIONS(526), + [anon_sym_scan] = ACTIONS(526), + [anon_sym_BSLASH] = ACTIONS(526), + [anon_sym_each] = ACTIONS(526), + [anon_sym_64] = ACTIONS(526), + [anon_sym_rows] = ACTIONS(526), + [anon_sym_65] = ACTIONS(526), + [anon_sym_repeat] = ACTIONS(526), + [anon_sym_66] = ACTIONS(526), + [anon_sym_dip] = ACTIONS(526), + [anon_sym_67] = ACTIONS(526), + [anon_sym_gap] = ACTIONS(526), + [anon_sym_68] = ACTIONS(526), + [anon_sym_69] = ACTIONS(526), + [anon_sym_invert] = ACTIONS(526), + [anon_sym_70] = ACTIONS(526), + [anon_sym_spawn] = ACTIONS(526), + [anon_sym_pack] = ACTIONS(526), + [anon_sym_71] = ACTIONS(526), + [anon_sym_tribute] = ACTIONS(526), + [anon_sym_72] = ACTIONS(526), + [anon_sym_reach] = ACTIONS(526), + [anon_sym_fold] = ACTIONS(526), + [anon_sym_73] = ACTIONS(526), + [anon_sym_distribute] = ACTIONS(526), + [anon_sym_74] = ACTIONS(526), + [anon_sym_table] = ACTIONS(526), + [anon_sym_75] = ACTIONS(526), + [anon_sym_cross] = ACTIONS(526), + [anon_sym_76] = ACTIONS(526), + [anon_sym_group] = ACTIONS(526), + [anon_sym_77] = ACTIONS(526), + [anon_sym_partition] = ACTIONS(526), + [anon_sym_78] = ACTIONS(526), + [anon_sym_both] = ACTIONS(526), + [anon_sym_79] = ACTIONS(526), + [anon_sym_bracket] = ACTIONS(526), + [anon_sym_80] = ACTIONS(526), + [anon_sym_fork] = ACTIONS(526), + [anon_sym_81] = ACTIONS(526), + [anon_sym_under] = ACTIONS(526), + [anon_sym_82] = ACTIONS(526), + [anon_sym_level] = ACTIONS(526), + [anon_sym_83] = ACTIONS(526), + [anon_sym_fill] = ACTIONS(526), + [anon_sym_84] = ACTIONS(526), + [anon_sym_bind] = ACTIONS(526), + [anon_sym_SQUOTE] = ACTIONS(526), + [anon_sym_QMARK] = ACTIONS(526), + [anon_sym_try] = ACTIONS(524), + [anon_sym_85] = ACTIONS(526), + [anon_sym_combinate] = ACTIONS(526), + [anon_sym_86] = ACTIONS(526), + [anon_sym_87] = ACTIONS(526), + [anon_sym_88] = ACTIONS(526), + [anon_sym_89] = ACTIONS(526), + [anon_sym_90] = ACTIONS(526), + [anon_sym_91] = ACTIONS(526), + [anon_sym_92] = ACTIONS(526), + [anon_sym_93] = ACTIONS(526), [sym__whitespace] = ACTIONS(5), [sym__end_of_line] = ACTIONS(5), }, [119] = { - [aux_sym_number_token1] = ACTIONS(542), - [anon_sym_os] = ACTIONS(542), - [anon_sym_Family] = ACTIONS(542), - [anon_sym_Arch] = ACTIONS(542), - [anon_sym_ExeExt] = ACTIONS(542), - [anon_sym_PllExt] = ACTIONS(542), - [anon_sym_Sep] = ACTIONS(542), - [aux_sym_character_token1] = ACTIONS(544), - [sym_string] = ACTIONS(544), - [sym_multiLineString] = ACTIONS(544), - [anon_sym_PIPE] = ACTIONS(544), - [sym_identifier] = ACTIONS(542), - [sym_identifier_deprecated] = ACTIONS(542), - [sym_system] = ACTIONS(544), - [sym_comment] = ACTIONS(542), - [sym_openParen] = ACTIONS(544), - [sym_closeParen] = ACTIONS(560), - [sym_openCurly] = ACTIONS(544), - [sym_openBracket] = ACTIONS(544), - [sym_leftArrow] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(544), - [anon_sym_eta] = ACTIONS(544), - [anon_sym_] = ACTIONS(542), - [anon_sym_pi] = ACTIONS(542), - [anon_sym_2] = ACTIONS(542), - [anon_sym_tau] = ACTIONS(544), - [anon_sym_3] = ACTIONS(542), - [anon_sym_infinity] = ACTIONS(544), - [anon_sym_4] = ACTIONS(544), - [anon_sym_e] = ACTIONS(542), - [anon_sym_NaN] = ACTIONS(542), - [anon_sym_NumProcs] = ACTIONS(542), - [anon_sym_DOT] = ACTIONS(544), - [anon_sym_COMMA] = ACTIONS(544), - [anon_sym_5] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(544), - [anon_sym_identity] = ACTIONS(544), - [anon_sym_id] = ACTIONS(542), - [anon_sym_6] = ACTIONS(544), - [anon_sym_not] = ACTIONS(544), - [anon_sym_7] = ACTIONS(544), - [anon_sym_sign] = ACTIONS(544), - [anon_sym_8] = ACTIONS(544), - [anon_sym_BQUOTE] = ACTIONS(544), - [anon_sym_9] = ACTIONS(544), - [anon_sym_absolutevalue] = ACTIONS(544), - [anon_sym_10] = ACTIONS(544), - [anon_sym_sqrt] = ACTIONS(544), - [anon_sym_11] = ACTIONS(544), - [anon_sym_sine] = ACTIONS(544), - [anon_sym_12] = ACTIONS(544), - [anon_sym_floor] = ACTIONS(544), - [anon_sym_13] = ACTIONS(544), - [anon_sym_ceiling] = ACTIONS(544), - [anon_sym_14] = ACTIONS(544), - [anon_sym_round] = ACTIONS(544), - [anon_sym_15] = ACTIONS(544), - [anon_sym_EQ] = ACTIONS(544), - [anon_sym_BANG_EQ] = ACTIONS(544), - [anon_sym_16] = ACTIONS(544), - [anon_sym_LT] = ACTIONS(542), - [anon_sym_LT_EQ] = ACTIONS(544), - [anon_sym_17] = ACTIONS(544), - [anon_sym_GT] = ACTIONS(542), - [anon_sym_GT_EQ] = ACTIONS(544), - [anon_sym_18] = ACTIONS(544), - [anon_sym_PLUS] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(544), - [anon_sym_STAR] = ACTIONS(544), - [anon_sym_19] = ACTIONS(544), - [anon_sym_PERCENT] = ACTIONS(544), - [anon_sym_20] = ACTIONS(544), - [anon_sym_modulus] = ACTIONS(544), - [anon_sym_21] = ACTIONS(544), - [anon_sym_power] = ACTIONS(544), - [anon_sym_22] = ACTIONS(544), - [anon_sym_logarithm] = ACTIONS(544), - [anon_sym_23] = ACTIONS(544), - [anon_sym_minimum] = ACTIONS(544), - [anon_sym_24] = ACTIONS(544), - [anon_sym_maximum] = ACTIONS(544), - [anon_sym_25] = ACTIONS(544), - [anon_sym_atangent] = ACTIONS(544), - [anon_sym_26] = ACTIONS(544), - [anon_sym_length] = ACTIONS(544), - [anon_sym_27] = ACTIONS(544), - [anon_sym_shape] = ACTIONS(544), - [anon_sym_28] = ACTIONS(544), - [anon_sym_range] = ACTIONS(544), - [anon_sym_29] = ACTIONS(544), - [anon_sym_first] = ACTIONS(544), - [anon_sym_30] = ACTIONS(544), - [anon_sym_reverse] = ACTIONS(544), - [anon_sym_31] = ACTIONS(544), - [anon_sym_deshape] = ACTIONS(544), - [anon_sym_32] = ACTIONS(544), - [anon_sym_bits] = ACTIONS(544), - [anon_sym_33] = ACTIONS(544), - [anon_sym_transpose] = ACTIONS(544), - [anon_sym_34] = ACTIONS(544), - [anon_sym_rise] = ACTIONS(544), - [anon_sym_35] = ACTIONS(544), - [anon_sym_fall] = ACTIONS(544), - [anon_sym_36] = ACTIONS(544), - [anon_sym_where] = ACTIONS(544), - [anon_sym_37] = ACTIONS(544), - [anon_sym_classify] = ACTIONS(544), - [anon_sym_38] = ACTIONS(544), - [anon_sym_deduplicate] = ACTIONS(544), - [anon_sym_39] = ACTIONS(544), - [anon_sym_box] = ACTIONS(544), - [anon_sym_40] = ACTIONS(544), - [anon_sym_unbox] = ACTIONS(544), - [anon_sym_41] = ACTIONS(544), - [anon_sym_match] = ACTIONS(544), - [anon_sym_42] = ACTIONS(544), - [anon_sym_couple] = ACTIONS(544), - [anon_sym_43] = ACTIONS(544), - [anon_sym_join] = ACTIONS(544), - [anon_sym_44] = ACTIONS(544), - [anon_sym_select] = ACTIONS(544), - [anon_sym_45] = ACTIONS(544), - [anon_sym_pick] = ACTIONS(544), - [anon_sym_46] = ACTIONS(544), - [anon_sym_reshape] = ACTIONS(544), - [anon_sym_47] = ACTIONS(544), - [anon_sym_take] = ACTIONS(544), - [anon_sym_48] = ACTIONS(544), - [anon_sym_drop] = ACTIONS(544), - [anon_sym_49] = ACTIONS(544), - [anon_sym_rotate] = ACTIONS(544), - [anon_sym_50] = ACTIONS(544), - [anon_sym_windows] = ACTIONS(544), - [anon_sym_51] = ACTIONS(544), - [anon_sym_keep] = ACTIONS(544), - [anon_sym_52] = ACTIONS(544), - [anon_sym_find] = ACTIONS(544), - [anon_sym_53] = ACTIONS(544), - [anon_sym_member] = ACTIONS(544), - [anon_sym_54] = ACTIONS(544), - [anon_sym_indexof] = ACTIONS(544), - [anon_sym_55] = ACTIONS(544), - [anon_sym_assert] = ACTIONS(544), - [anon_sym_56] = ACTIONS(544), - [anon_sym_wait] = ACTIONS(544), - [anon_sym_break] = ACTIONS(544), - [anon_sym_57] = ACTIONS(544), - [anon_sym_parse] = ACTIONS(544), - [anon_sym_random] = ACTIONS(544), - [anon_sym_58] = ACTIONS(544), - [anon_sym_gen] = ACTIONS(544), - [anon_sym_deal] = ACTIONS(544), - [anon_sym_tag] = ACTIONS(544), - [anon_sym_now] = ACTIONS(544), - [anon_sym_type] = ACTIONS(544), - [anon_sym_59] = ACTIONS(544), - [anon_sym_dump] = ACTIONS(544), - [anon_sym_regex] = ACTIONS(544), - [anon_sym_utf] = ACTIONS(544), - [anon_sym_rock] = ACTIONS(544), - [anon_sym_60] = ACTIONS(544), - [anon_sym_surface] = ACTIONS(544), - [anon_sym_TILDE] = ACTIONS(544), - [anon_sym_deep] = ACTIONS(544), - [anon_sym_de] = ACTIONS(542), - [anon_sym_61] = ACTIONS(544), - [anon_sym_abyss] = ACTIONS(544), - [anon_sym_ab] = ACTIONS(542), - [anon_sym_62] = ACTIONS(544), - [anon_sym_seabed] = ACTIONS(544), - [anon_sym_se] = ACTIONS(542), - [anon_sym_63] = ACTIONS(544), - [anon_sym_send] = ACTIONS(544), - [anon_sym_recv] = ACTIONS(544), - [anon_sym_tryrecv] = ACTIONS(544), - [anon_sym_reduce] = ACTIONS(544), - [anon_sym_SLASH] = ACTIONS(544), - [anon_sym_scan] = ACTIONS(544), - [anon_sym_BSLASH] = ACTIONS(544), - [anon_sym_each] = ACTIONS(544), - [anon_sym_64] = ACTIONS(544), - [anon_sym_rows] = ACTIONS(544), - [anon_sym_65] = ACTIONS(544), - [anon_sym_repeat] = ACTIONS(544), - [anon_sym_66] = ACTIONS(544), - [anon_sym_dip] = ACTIONS(544), - [anon_sym_di] = ACTIONS(542), - [anon_sym_67] = ACTIONS(544), - [anon_sym_gap] = ACTIONS(544), - [anon_sym_ga] = ACTIONS(542), - [anon_sym_68] = ACTIONS(544), - [anon_sym_oust] = ACTIONS(544), - [anon_sym_69] = ACTIONS(544), - [anon_sym_invert] = ACTIONS(544), - [anon_sym_70] = ACTIONS(544), - [anon_sym_spawn] = ACTIONS(544), - [anon_sym_pack] = ACTIONS(544), - [anon_sym_71] = ACTIONS(544), - [anon_sym_tribute] = ACTIONS(544), - [anon_sym_72] = ACTIONS(544), - [anon_sym_fold] = ACTIONS(544), - [anon_sym_73] = ACTIONS(544), - [anon_sym_distribute] = ACTIONS(544), - [anon_sym_74] = ACTIONS(544), - [anon_sym_table] = ACTIONS(544), - [anon_sym_75] = ACTIONS(544), - [anon_sym_cross] = ACTIONS(544), - [anon_sym_76] = ACTIONS(544), - [anon_sym_group] = ACTIONS(544), - [anon_sym_77] = ACTIONS(544), - [anon_sym_partition] = ACTIONS(544), - [anon_sym_78] = ACTIONS(544), - [anon_sym_both] = ACTIONS(544), - [anon_sym_79] = ACTIONS(544), - [anon_sym_bracket] = ACTIONS(544), - [anon_sym_80] = ACTIONS(544), - [anon_sym_fork] = ACTIONS(544), - [anon_sym_81] = ACTIONS(544), - [anon_sym_under] = ACTIONS(544), - [anon_sym_82] = ACTIONS(544), - [anon_sym_level] = ACTIONS(544), - [anon_sym_83] = ACTIONS(544), - [anon_sym_fill] = ACTIONS(544), - [anon_sym_84] = ACTIONS(544), - [anon_sym_bind] = ACTIONS(544), - [anon_sym_SQUOTE] = ACTIONS(544), - [anon_sym_QMARK] = ACTIONS(544), - [anon_sym_try] = ACTIONS(542), - [anon_sym_85] = ACTIONS(544), - [anon_sym_combinate] = ACTIONS(544), - [anon_sym_86] = ACTIONS(544), - [anon_sym_87] = ACTIONS(544), - [anon_sym_88] = ACTIONS(544), - [anon_sym_89] = ACTIONS(544), - [anon_sym_90] = ACTIONS(544), - [anon_sym_91] = ACTIONS(544), - [anon_sym_92] = ACTIONS(544), - [anon_sym_93] = ACTIONS(544), + [aux_sym_number_token1] = ACTIONS(524), + [anon_sym_os] = ACTIONS(524), + [anon_sym_Family] = ACTIONS(524), + [anon_sym_Arch] = ACTIONS(524), + [anon_sym_ExeExt] = ACTIONS(524), + [anon_sym_PllExt] = ACTIONS(524), + [anon_sym_Sep] = ACTIONS(524), + [aux_sym_character_token1] = ACTIONS(526), + [sym_string] = ACTIONS(526), + [sym_multiLineString] = ACTIONS(526), + [anon_sym_PIPE] = ACTIONS(526), + [sym_identifier] = ACTIONS(524), + [sym_identifier_deprecated] = ACTIONS(524), + [sym_system] = ACTIONS(526), + [sym_comment] = ACTIONS(524), + [sym_openParen] = ACTIONS(526), + [sym_closeParen] = ACTIONS(542), + [sym_openCurly] = ACTIONS(526), + [sym_openBracket] = ACTIONS(526), + [sym_leftArrow] = ACTIONS(526), + [anon_sym_CARET] = ACTIONS(526), + [anon_sym_eta] = ACTIONS(526), + [anon_sym_] = ACTIONS(524), + [anon_sym_pi] = ACTIONS(524), + [anon_sym_2] = ACTIONS(524), + [anon_sym_tau] = ACTIONS(526), + [anon_sym_3] = ACTIONS(524), + [anon_sym_infinity] = ACTIONS(526), + [anon_sym_4] = ACTIONS(526), + [anon_sym_e] = ACTIONS(524), + [anon_sym_NaN] = ACTIONS(524), + [anon_sym_NumProcs] = ACTIONS(524), + [anon_sym_DOT] = ACTIONS(526), + [anon_sym_COMMA] = ACTIONS(526), + [anon_sym_5] = ACTIONS(526), + [anon_sym_SEMI] = ACTIONS(526), + [anon_sym_identity] = ACTIONS(526), + [anon_sym_id] = ACTIONS(524), + [anon_sym_6] = ACTIONS(526), + [anon_sym_not] = ACTIONS(526), + [anon_sym_7] = ACTIONS(526), + [anon_sym_sign] = ACTIONS(526), + [anon_sym_8] = ACTIONS(526), + [anon_sym_BQUOTE] = ACTIONS(526), + [anon_sym_9] = ACTIONS(526), + [anon_sym_absolutevalue] = ACTIONS(526), + [anon_sym_10] = ACTIONS(526), + [anon_sym_sqrt] = ACTIONS(526), + [anon_sym_11] = ACTIONS(526), + [anon_sym_sine] = ACTIONS(526), + [anon_sym_12] = ACTIONS(526), + [anon_sym_floor] = ACTIONS(526), + [anon_sym_13] = ACTIONS(526), + [anon_sym_ceiling] = ACTIONS(526), + [anon_sym_14] = ACTIONS(526), + [anon_sym_round] = ACTIONS(526), + [anon_sym_15] = ACTIONS(526), + [anon_sym_EQ] = ACTIONS(526), + [anon_sym_BANG_EQ] = ACTIONS(526), + [anon_sym_16] = ACTIONS(526), + [anon_sym_LT] = ACTIONS(524), + [anon_sym_LT_EQ] = ACTIONS(526), + [anon_sym_17] = ACTIONS(526), + [anon_sym_GT] = ACTIONS(524), + [anon_sym_GT_EQ] = ACTIONS(526), + [anon_sym_18] = ACTIONS(526), + [anon_sym_PLUS] = ACTIONS(526), + [anon_sym_DASH] = ACTIONS(526), + [anon_sym_STAR] = ACTIONS(526), + [anon_sym_19] = ACTIONS(526), + [anon_sym_PERCENT] = ACTIONS(526), + [anon_sym_20] = ACTIONS(526), + [anon_sym_modulus] = ACTIONS(526), + [anon_sym_21] = ACTIONS(526), + [anon_sym_power] = ACTIONS(526), + [anon_sym_22] = ACTIONS(526), + [anon_sym_logarithm] = ACTIONS(526), + [anon_sym_23] = ACTIONS(526), + [anon_sym_minimum] = ACTIONS(526), + [anon_sym_24] = ACTIONS(526), + [anon_sym_maximum] = ACTIONS(526), + [anon_sym_25] = ACTIONS(526), + [anon_sym_atangent] = ACTIONS(526), + [anon_sym_26] = ACTIONS(526), + [anon_sym_length] = ACTIONS(526), + [anon_sym_27] = ACTIONS(526), + [anon_sym_shape] = ACTIONS(526), + [anon_sym_28] = ACTIONS(526), + [anon_sym_range] = ACTIONS(526), + [anon_sym_29] = ACTIONS(526), + [anon_sym_first] = ACTIONS(526), + [anon_sym_30] = ACTIONS(526), + [anon_sym_reverse] = ACTIONS(526), + [anon_sym_31] = ACTIONS(526), + [anon_sym_deshape] = ACTIONS(526), + [anon_sym_32] = ACTIONS(526), + [anon_sym_bits] = ACTIONS(526), + [anon_sym_33] = ACTIONS(526), + [anon_sym_transpose] = ACTIONS(526), + [anon_sym_34] = ACTIONS(526), + [anon_sym_rise] = ACTIONS(526), + [anon_sym_35] = ACTIONS(526), + [anon_sym_fall] = ACTIONS(526), + [anon_sym_36] = ACTIONS(526), + [anon_sym_where] = ACTIONS(526), + [anon_sym_37] = ACTIONS(526), + [anon_sym_classify] = ACTIONS(526), + [anon_sym_38] = ACTIONS(526), + [anon_sym_deduplicate] = ACTIONS(526), + [anon_sym_39] = ACTIONS(526), + [anon_sym_box] = ACTIONS(526), + [anon_sym_40] = ACTIONS(526), + [anon_sym_unbox] = ACTIONS(526), + [anon_sym_41] = ACTIONS(526), + [anon_sym_match] = ACTIONS(526), + [anon_sym_42] = ACTIONS(526), + [anon_sym_couple] = ACTIONS(526), + [anon_sym_43] = ACTIONS(526), + [anon_sym_join] = ACTIONS(526), + [anon_sym_44] = ACTIONS(526), + [anon_sym_select] = ACTIONS(526), + [anon_sym_45] = ACTIONS(526), + [anon_sym_pick] = ACTIONS(526), + [anon_sym_46] = ACTIONS(526), + [anon_sym_reshape] = ACTIONS(526), + [anon_sym_47] = ACTIONS(526), + [anon_sym_take] = ACTIONS(526), + [anon_sym_48] = ACTIONS(526), + [anon_sym_drop] = ACTIONS(526), + [anon_sym_49] = ACTIONS(526), + [anon_sym_rotate] = ACTIONS(526), + [anon_sym_50] = ACTIONS(526), + [anon_sym_windows] = ACTIONS(526), + [anon_sym_51] = ACTIONS(526), + [anon_sym_keep] = ACTIONS(526), + [anon_sym_52] = ACTIONS(526), + [anon_sym_find] = ACTIONS(526), + [anon_sym_53] = ACTIONS(526), + [anon_sym_member] = ACTIONS(526), + [anon_sym_54] = ACTIONS(526), + [anon_sym_indexof] = ACTIONS(526), + [anon_sym_55] = ACTIONS(526), + [anon_sym_assert] = ACTIONS(526), + [anon_sym_56] = ACTIONS(526), + [anon_sym_wait] = ACTIONS(526), + [anon_sym_break] = ACTIONS(526), + [anon_sym_57] = ACTIONS(526), + [anon_sym_parse] = ACTIONS(526), + [anon_sym_random] = ACTIONS(526), + [anon_sym_58] = ACTIONS(526), + [anon_sym_gen] = ACTIONS(526), + [anon_sym_deal] = ACTIONS(526), + [anon_sym_tag] = ACTIONS(526), + [anon_sym_now] = ACTIONS(526), + [anon_sym_type] = ACTIONS(526), + [anon_sym_59] = ACTIONS(526), + [anon_sym_dump] = ACTIONS(526), + [anon_sym_regex] = ACTIONS(526), + [anon_sym_utf] = ACTIONS(526), + [anon_sym_rock] = ACTIONS(526), + [anon_sym_60] = ACTIONS(526), + [anon_sym_surface] = ACTIONS(526), + [anon_sym_TILDE] = ACTIONS(526), + [anon_sym_deep] = ACTIONS(526), + [anon_sym_de] = ACTIONS(524), + [anon_sym_61] = ACTIONS(526), + [anon_sym_abyss] = ACTIONS(526), + [anon_sym_ab] = ACTIONS(524), + [anon_sym_62] = ACTIONS(526), + [anon_sym_seabed] = ACTIONS(526), + [anon_sym_se] = ACTIONS(524), + [anon_sym_63] = ACTIONS(526), + [anon_sym_send] = ACTIONS(526), + [anon_sym_recv] = ACTIONS(526), + [anon_sym_tryrecv] = ACTIONS(526), + [anon_sym_reduce] = ACTIONS(526), + [anon_sym_SLASH] = ACTIONS(526), + [anon_sym_scan] = ACTIONS(526), + [anon_sym_BSLASH] = ACTIONS(526), + [anon_sym_each] = ACTIONS(526), + [anon_sym_64] = ACTIONS(526), + [anon_sym_rows] = ACTIONS(526), + [anon_sym_65] = ACTIONS(526), + [anon_sym_repeat] = ACTIONS(526), + [anon_sym_66] = ACTIONS(526), + [anon_sym_dip] = ACTIONS(526), + [anon_sym_67] = ACTIONS(526), + [anon_sym_gap] = ACTIONS(526), + [anon_sym_68] = ACTIONS(526), + [anon_sym_69] = ACTIONS(526), + [anon_sym_invert] = ACTIONS(526), + [anon_sym_70] = ACTIONS(526), + [anon_sym_spawn] = ACTIONS(526), + [anon_sym_pack] = ACTIONS(526), + [anon_sym_71] = ACTIONS(526), + [anon_sym_tribute] = ACTIONS(526), + [anon_sym_72] = ACTIONS(526), + [anon_sym_reach] = ACTIONS(526), + [anon_sym_fold] = ACTIONS(526), + [anon_sym_73] = ACTIONS(526), + [anon_sym_distribute] = ACTIONS(526), + [anon_sym_74] = ACTIONS(526), + [anon_sym_table] = ACTIONS(526), + [anon_sym_75] = ACTIONS(526), + [anon_sym_cross] = ACTIONS(526), + [anon_sym_76] = ACTIONS(526), + [anon_sym_group] = ACTIONS(526), + [anon_sym_77] = ACTIONS(526), + [anon_sym_partition] = ACTIONS(526), + [anon_sym_78] = ACTIONS(526), + [anon_sym_both] = ACTIONS(526), + [anon_sym_79] = ACTIONS(526), + [anon_sym_bracket] = ACTIONS(526), + [anon_sym_80] = ACTIONS(526), + [anon_sym_fork] = ACTIONS(526), + [anon_sym_81] = ACTIONS(526), + [anon_sym_under] = ACTIONS(526), + [anon_sym_82] = ACTIONS(526), + [anon_sym_level] = ACTIONS(526), + [anon_sym_83] = ACTIONS(526), + [anon_sym_fill] = ACTIONS(526), + [anon_sym_84] = ACTIONS(526), + [anon_sym_bind] = ACTIONS(526), + [anon_sym_SQUOTE] = ACTIONS(526), + [anon_sym_QMARK] = ACTIONS(526), + [anon_sym_try] = ACTIONS(524), + [anon_sym_85] = ACTIONS(526), + [anon_sym_combinate] = ACTIONS(526), + [anon_sym_86] = ACTIONS(526), + [anon_sym_87] = ACTIONS(526), + [anon_sym_88] = ACTIONS(526), + [anon_sym_89] = ACTIONS(526), + [anon_sym_90] = ACTIONS(526), + [anon_sym_91] = ACTIONS(526), + [anon_sym_92] = ACTIONS(526), + [anon_sym_93] = ACTIONS(526), [sym__whitespace] = ACTIONS(5), [sym__end_of_line] = ACTIONS(5), }, [120] = { - [aux_sym_number_token1] = ACTIONS(562), - [anon_sym_os] = ACTIONS(562), - [anon_sym_Family] = ACTIONS(562), - [anon_sym_Arch] = ACTIONS(562), - [anon_sym_ExeExt] = ACTIONS(562), - [anon_sym_PllExt] = ACTIONS(562), - [anon_sym_Sep] = ACTIONS(562), - [aux_sym_character_token1] = ACTIONS(564), - [sym_string] = ACTIONS(564), - [sym_multiLineString] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [aux_sym_signature_token1] = ACTIONS(566), - [sym_identifier] = ACTIONS(562), - [sym_identifier_deprecated] = ACTIONS(562), - [sym_system] = ACTIONS(564), + [aux_sym_number_token1] = ACTIONS(544), + [anon_sym_os] = ACTIONS(544), + [anon_sym_Family] = ACTIONS(544), + [anon_sym_Arch] = ACTIONS(544), + [anon_sym_ExeExt] = ACTIONS(544), + [anon_sym_PllExt] = ACTIONS(544), + [anon_sym_Sep] = ACTIONS(544), + [aux_sym_character_token1] = ACTIONS(546), + [sym_string] = ACTIONS(546), + [sym_multiLineString] = ACTIONS(546), + [anon_sym_PIPE] = ACTIONS(546), + [aux_sym_signature_token1] = ACTIONS(548), + [sym_identifier] = ACTIONS(544), + [sym_identifier_deprecated] = ACTIONS(544), + [sym_system] = ACTIONS(546), [sym_comment] = ACTIONS(3), - [sym_openParen] = ACTIONS(564), - [sym_openCurly] = ACTIONS(564), - [sym_openBracket] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_eta] = ACTIONS(564), - [anon_sym_] = ACTIONS(562), - [anon_sym_pi] = ACTIONS(562), - [anon_sym_2] = ACTIONS(562), - [anon_sym_tau] = ACTIONS(564), - [anon_sym_3] = ACTIONS(562), - [anon_sym_infinity] = ACTIONS(564), - [anon_sym_4] = ACTIONS(564), - [anon_sym_e] = ACTIONS(562), - [anon_sym_NaN] = ACTIONS(562), - [anon_sym_NumProcs] = ACTIONS(562), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_COMMA] = ACTIONS(564), - [anon_sym_5] = ACTIONS(564), - [anon_sym_SEMI] = ACTIONS(564), - [anon_sym_identity] = ACTIONS(564), - [anon_sym_id] = ACTIONS(562), - [anon_sym_6] = ACTIONS(564), - [anon_sym_not] = ACTIONS(564), - [anon_sym_7] = ACTIONS(564), - [anon_sym_sign] = ACTIONS(564), - [anon_sym_8] = ACTIONS(564), - [anon_sym_BQUOTE] = ACTIONS(564), - [anon_sym_9] = ACTIONS(564), - [anon_sym_absolutevalue] = ACTIONS(564), - [anon_sym_10] = ACTIONS(564), - [anon_sym_sqrt] = ACTIONS(564), - [anon_sym_11] = ACTIONS(564), - [anon_sym_sine] = ACTIONS(564), - [anon_sym_12] = ACTIONS(564), - [anon_sym_floor] = ACTIONS(564), - [anon_sym_13] = ACTIONS(564), - [anon_sym_ceiling] = ACTIONS(564), - [anon_sym_14] = ACTIONS(564), - [anon_sym_round] = ACTIONS(564), - [anon_sym_15] = ACTIONS(564), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_BANG_EQ] = ACTIONS(564), - [anon_sym_16] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(562), - [anon_sym_LT_EQ] = ACTIONS(564), - [anon_sym_17] = ACTIONS(564), - [anon_sym_GT] = ACTIONS(562), - [anon_sym_GT_EQ] = ACTIONS(564), - [anon_sym_18] = ACTIONS(564), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_19] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_20] = ACTIONS(564), - [anon_sym_modulus] = ACTIONS(564), - [anon_sym_21] = ACTIONS(564), - [anon_sym_power] = ACTIONS(564), - [anon_sym_22] = ACTIONS(564), - [anon_sym_logarithm] = ACTIONS(564), - [anon_sym_23] = ACTIONS(564), - [anon_sym_minimum] = ACTIONS(564), - [anon_sym_24] = ACTIONS(564), - [anon_sym_maximum] = ACTIONS(564), - [anon_sym_25] = ACTIONS(564), - [anon_sym_atangent] = ACTIONS(564), - [anon_sym_26] = ACTIONS(564), - [anon_sym_length] = ACTIONS(564), - [anon_sym_27] = ACTIONS(564), - [anon_sym_shape] = ACTIONS(564), - [anon_sym_28] = ACTIONS(564), - [anon_sym_range] = ACTIONS(564), - [anon_sym_29] = ACTIONS(564), - [anon_sym_first] = ACTIONS(564), - [anon_sym_30] = ACTIONS(564), - [anon_sym_reverse] = ACTIONS(564), - [anon_sym_31] = ACTIONS(564), - [anon_sym_deshape] = ACTIONS(564), - [anon_sym_32] = ACTIONS(564), - [anon_sym_bits] = ACTIONS(564), - [anon_sym_33] = ACTIONS(564), - [anon_sym_transpose] = ACTIONS(564), - [anon_sym_34] = ACTIONS(564), - [anon_sym_rise] = ACTIONS(564), - [anon_sym_35] = ACTIONS(564), - [anon_sym_fall] = ACTIONS(564), - [anon_sym_36] = ACTIONS(564), - [anon_sym_where] = ACTIONS(564), - [anon_sym_37] = ACTIONS(564), - [anon_sym_classify] = ACTIONS(564), - [anon_sym_38] = ACTIONS(564), - [anon_sym_deduplicate] = ACTIONS(564), - [anon_sym_39] = ACTIONS(564), - [anon_sym_box] = ACTIONS(564), - [anon_sym_40] = ACTIONS(564), - [anon_sym_unbox] = ACTIONS(564), - [anon_sym_41] = ACTIONS(564), - [anon_sym_match] = ACTIONS(564), - [anon_sym_42] = ACTIONS(564), - [anon_sym_couple] = ACTIONS(564), - [anon_sym_43] = ACTIONS(564), - [anon_sym_join] = ACTIONS(564), - [anon_sym_44] = ACTIONS(564), - [anon_sym_select] = ACTIONS(564), - [anon_sym_45] = ACTIONS(564), - [anon_sym_pick] = ACTIONS(564), - [anon_sym_46] = ACTIONS(564), - [anon_sym_reshape] = ACTIONS(564), - [anon_sym_47] = ACTIONS(564), - [anon_sym_take] = ACTIONS(564), - [anon_sym_48] = ACTIONS(564), - [anon_sym_drop] = ACTIONS(564), - [anon_sym_49] = ACTIONS(564), - [anon_sym_rotate] = ACTIONS(564), - [anon_sym_50] = ACTIONS(564), - [anon_sym_windows] = ACTIONS(564), - [anon_sym_51] = ACTIONS(564), - [anon_sym_keep] = ACTIONS(564), - [anon_sym_52] = ACTIONS(564), - [anon_sym_find] = ACTIONS(564), - [anon_sym_53] = ACTIONS(564), - [anon_sym_member] = ACTIONS(564), - [anon_sym_54] = ACTIONS(564), - [anon_sym_indexof] = ACTIONS(564), - [anon_sym_55] = ACTIONS(564), - [anon_sym_assert] = ACTIONS(564), - [anon_sym_56] = ACTIONS(564), - [anon_sym_wait] = ACTIONS(564), - [anon_sym_break] = ACTIONS(564), - [anon_sym_57] = ACTIONS(564), - [anon_sym_parse] = ACTIONS(564), - [anon_sym_random] = ACTIONS(564), - [anon_sym_58] = ACTIONS(564), - [anon_sym_gen] = ACTIONS(564), - [anon_sym_deal] = ACTIONS(564), - [anon_sym_tag] = ACTIONS(564), - [anon_sym_now] = ACTIONS(564), - [anon_sym_type] = ACTIONS(564), - [anon_sym_59] = ACTIONS(564), - [anon_sym_dump] = ACTIONS(564), - [anon_sym_regex] = ACTIONS(564), - [anon_sym_utf] = ACTIONS(564), - [anon_sym_rock] = ACTIONS(564), - [anon_sym_60] = ACTIONS(564), - [anon_sym_surface] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(564), - [anon_sym_deep] = ACTIONS(564), - [anon_sym_de] = ACTIONS(562), - [anon_sym_61] = ACTIONS(564), - [anon_sym_abyss] = ACTIONS(564), - [anon_sym_ab] = ACTIONS(562), - [anon_sym_62] = ACTIONS(564), - [anon_sym_seabed] = ACTIONS(564), - [anon_sym_se] = ACTIONS(562), - [anon_sym_63] = ACTIONS(564), - [anon_sym_send] = ACTIONS(564), - [anon_sym_recv] = ACTIONS(564), - [anon_sym_tryrecv] = ACTIONS(564), - [anon_sym_reduce] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_scan] = ACTIONS(564), - [anon_sym_BSLASH] = ACTIONS(564), - [anon_sym_each] = ACTIONS(564), - [anon_sym_64] = ACTIONS(564), - [anon_sym_rows] = ACTIONS(564), - [anon_sym_65] = ACTIONS(564), - [anon_sym_repeat] = ACTIONS(564), - [anon_sym_66] = ACTIONS(564), - [anon_sym_dip] = ACTIONS(564), - [anon_sym_di] = ACTIONS(562), - [anon_sym_67] = ACTIONS(564), - [anon_sym_gap] = ACTIONS(564), - [anon_sym_ga] = ACTIONS(562), - [anon_sym_68] = ACTIONS(564), - [anon_sym_oust] = ACTIONS(564), - [anon_sym_69] = ACTIONS(564), - [anon_sym_invert] = ACTIONS(564), - [anon_sym_70] = ACTIONS(564), - [anon_sym_spawn] = ACTIONS(564), - [anon_sym_pack] = ACTIONS(564), - [anon_sym_71] = ACTIONS(564), - [anon_sym_tribute] = ACTIONS(564), - [anon_sym_72] = ACTIONS(564), - [anon_sym_fold] = ACTIONS(564), - [anon_sym_73] = ACTIONS(564), - [anon_sym_distribute] = ACTIONS(564), - [anon_sym_74] = ACTIONS(564), - [anon_sym_table] = ACTIONS(564), - [anon_sym_75] = ACTIONS(564), - [anon_sym_cross] = ACTIONS(564), - [anon_sym_76] = ACTIONS(564), - [anon_sym_group] = ACTIONS(564), - [anon_sym_77] = ACTIONS(564), - [anon_sym_partition] = ACTIONS(564), - [anon_sym_78] = ACTIONS(564), - [anon_sym_both] = ACTIONS(564), - [anon_sym_79] = ACTIONS(564), - [anon_sym_bracket] = ACTIONS(564), - [anon_sym_80] = ACTIONS(564), - [anon_sym_fork] = ACTIONS(564), - [anon_sym_81] = ACTIONS(564), - [anon_sym_under] = ACTIONS(564), - [anon_sym_82] = ACTIONS(564), - [anon_sym_level] = ACTIONS(564), - [anon_sym_83] = ACTIONS(564), - [anon_sym_fill] = ACTIONS(564), - [anon_sym_84] = ACTIONS(564), - [anon_sym_bind] = ACTIONS(564), - [anon_sym_SQUOTE] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(564), - [anon_sym_try] = ACTIONS(562), - [anon_sym_85] = ACTIONS(564), - [anon_sym_combinate] = ACTIONS(564), - [anon_sym_86] = ACTIONS(564), - [anon_sym_87] = ACTIONS(564), - [anon_sym_88] = ACTIONS(564), - [anon_sym_89] = ACTIONS(564), - [anon_sym_90] = ACTIONS(564), - [anon_sym_91] = ACTIONS(564), - [anon_sym_92] = ACTIONS(564), - [anon_sym_93] = ACTIONS(564), + [sym_openParen] = ACTIONS(546), + [sym_openCurly] = ACTIONS(546), + [sym_openBracket] = ACTIONS(546), + [anon_sym_CARET] = ACTIONS(546), + [anon_sym_eta] = ACTIONS(546), + [anon_sym_] = ACTIONS(544), + [anon_sym_pi] = ACTIONS(544), + [anon_sym_2] = ACTIONS(544), + [anon_sym_tau] = ACTIONS(546), + [anon_sym_3] = ACTIONS(544), + [anon_sym_infinity] = ACTIONS(546), + [anon_sym_4] = ACTIONS(546), + [anon_sym_e] = ACTIONS(544), + [anon_sym_NaN] = ACTIONS(544), + [anon_sym_NumProcs] = ACTIONS(544), + [anon_sym_DOT] = ACTIONS(546), + [anon_sym_COMMA] = ACTIONS(546), + [anon_sym_5] = ACTIONS(546), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym_identity] = ACTIONS(546), + [anon_sym_id] = ACTIONS(544), + [anon_sym_6] = ACTIONS(546), + [anon_sym_not] = ACTIONS(546), + [anon_sym_7] = ACTIONS(546), + [anon_sym_sign] = ACTIONS(546), + [anon_sym_8] = ACTIONS(546), + [anon_sym_BQUOTE] = ACTIONS(546), + [anon_sym_9] = ACTIONS(546), + [anon_sym_absolutevalue] = ACTIONS(546), + [anon_sym_10] = ACTIONS(546), + [anon_sym_sqrt] = ACTIONS(546), + [anon_sym_11] = ACTIONS(546), + [anon_sym_sine] = ACTIONS(546), + [anon_sym_12] = ACTIONS(546), + [anon_sym_floor] = ACTIONS(546), + [anon_sym_13] = ACTIONS(546), + [anon_sym_ceiling] = ACTIONS(546), + [anon_sym_14] = ACTIONS(546), + [anon_sym_round] = ACTIONS(546), + [anon_sym_15] = ACTIONS(546), + [anon_sym_EQ] = ACTIONS(546), + [anon_sym_BANG_EQ] = ACTIONS(546), + [anon_sym_16] = ACTIONS(546), + [anon_sym_LT] = ACTIONS(544), + [anon_sym_LT_EQ] = ACTIONS(546), + [anon_sym_17] = ACTIONS(546), + [anon_sym_GT] = ACTIONS(544), + [anon_sym_GT_EQ] = ACTIONS(546), + [anon_sym_18] = ACTIONS(546), + [anon_sym_PLUS] = ACTIONS(546), + [anon_sym_DASH] = ACTIONS(546), + [anon_sym_STAR] = ACTIONS(546), + [anon_sym_19] = ACTIONS(546), + [anon_sym_PERCENT] = ACTIONS(546), + [anon_sym_20] = ACTIONS(546), + [anon_sym_modulus] = ACTIONS(546), + [anon_sym_21] = ACTIONS(546), + [anon_sym_power] = ACTIONS(546), + [anon_sym_22] = ACTIONS(546), + [anon_sym_logarithm] = ACTIONS(546), + [anon_sym_23] = ACTIONS(546), + [anon_sym_minimum] = ACTIONS(546), + [anon_sym_24] = ACTIONS(546), + [anon_sym_maximum] = ACTIONS(546), + [anon_sym_25] = ACTIONS(546), + [anon_sym_atangent] = ACTIONS(546), + [anon_sym_26] = ACTIONS(546), + [anon_sym_length] = ACTIONS(546), + [anon_sym_27] = ACTIONS(546), + [anon_sym_shape] = ACTIONS(546), + [anon_sym_28] = ACTIONS(546), + [anon_sym_range] = ACTIONS(546), + [anon_sym_29] = ACTIONS(546), + [anon_sym_first] = ACTIONS(546), + [anon_sym_30] = ACTIONS(546), + [anon_sym_reverse] = ACTIONS(546), + [anon_sym_31] = ACTIONS(546), + [anon_sym_deshape] = ACTIONS(546), + [anon_sym_32] = ACTIONS(546), + [anon_sym_bits] = ACTIONS(546), + [anon_sym_33] = ACTIONS(546), + [anon_sym_transpose] = ACTIONS(546), + [anon_sym_34] = ACTIONS(546), + [anon_sym_rise] = ACTIONS(546), + [anon_sym_35] = ACTIONS(546), + [anon_sym_fall] = ACTIONS(546), + [anon_sym_36] = ACTIONS(546), + [anon_sym_where] = ACTIONS(546), + [anon_sym_37] = ACTIONS(546), + [anon_sym_classify] = ACTIONS(546), + [anon_sym_38] = ACTIONS(546), + [anon_sym_deduplicate] = ACTIONS(546), + [anon_sym_39] = ACTIONS(546), + [anon_sym_box] = ACTIONS(546), + [anon_sym_40] = ACTIONS(546), + [anon_sym_unbox] = ACTIONS(546), + [anon_sym_41] = ACTIONS(546), + [anon_sym_match] = ACTIONS(546), + [anon_sym_42] = ACTIONS(546), + [anon_sym_couple] = ACTIONS(546), + [anon_sym_43] = ACTIONS(546), + [anon_sym_join] = ACTIONS(546), + [anon_sym_44] = ACTIONS(546), + [anon_sym_select] = ACTIONS(546), + [anon_sym_45] = ACTIONS(546), + [anon_sym_pick] = ACTIONS(546), + [anon_sym_46] = ACTIONS(546), + [anon_sym_reshape] = ACTIONS(546), + [anon_sym_47] = ACTIONS(546), + [anon_sym_take] = ACTIONS(546), + [anon_sym_48] = ACTIONS(546), + [anon_sym_drop] = ACTIONS(546), + [anon_sym_49] = ACTIONS(546), + [anon_sym_rotate] = ACTIONS(546), + [anon_sym_50] = ACTIONS(546), + [anon_sym_windows] = ACTIONS(546), + [anon_sym_51] = ACTIONS(546), + [anon_sym_keep] = ACTIONS(546), + [anon_sym_52] = ACTIONS(546), + [anon_sym_find] = ACTIONS(546), + [anon_sym_53] = ACTIONS(546), + [anon_sym_member] = ACTIONS(546), + [anon_sym_54] = ACTIONS(546), + [anon_sym_indexof] = ACTIONS(546), + [anon_sym_55] = ACTIONS(546), + [anon_sym_assert] = ACTIONS(546), + [anon_sym_56] = ACTIONS(546), + [anon_sym_wait] = ACTIONS(546), + [anon_sym_break] = ACTIONS(546), + [anon_sym_57] = ACTIONS(546), + [anon_sym_parse] = ACTIONS(546), + [anon_sym_random] = ACTIONS(546), + [anon_sym_58] = ACTIONS(546), + [anon_sym_gen] = ACTIONS(546), + [anon_sym_deal] = ACTIONS(546), + [anon_sym_tag] = ACTIONS(546), + [anon_sym_now] = ACTIONS(546), + [anon_sym_type] = ACTIONS(546), + [anon_sym_59] = ACTIONS(546), + [anon_sym_dump] = ACTIONS(546), + [anon_sym_regex] = ACTIONS(546), + [anon_sym_utf] = ACTIONS(546), + [anon_sym_rock] = ACTIONS(546), + [anon_sym_60] = ACTIONS(546), + [anon_sym_surface] = ACTIONS(546), + [anon_sym_TILDE] = ACTIONS(546), + [anon_sym_deep] = ACTIONS(546), + [anon_sym_de] = ACTIONS(544), + [anon_sym_61] = ACTIONS(546), + [anon_sym_abyss] = ACTIONS(546), + [anon_sym_ab] = ACTIONS(544), + [anon_sym_62] = ACTIONS(546), + [anon_sym_seabed] = ACTIONS(546), + [anon_sym_se] = ACTIONS(544), + [anon_sym_63] = ACTIONS(546), + [anon_sym_send] = ACTIONS(546), + [anon_sym_recv] = ACTIONS(546), + [anon_sym_tryrecv] = ACTIONS(546), + [anon_sym_reduce] = ACTIONS(546), + [anon_sym_SLASH] = ACTIONS(546), + [anon_sym_scan] = ACTIONS(546), + [anon_sym_BSLASH] = ACTIONS(546), + [anon_sym_each] = ACTIONS(546), + [anon_sym_64] = ACTIONS(546), + [anon_sym_rows] = ACTIONS(546), + [anon_sym_65] = ACTIONS(546), + [anon_sym_repeat] = ACTIONS(546), + [anon_sym_66] = ACTIONS(546), + [anon_sym_dip] = ACTIONS(546), + [anon_sym_67] = ACTIONS(546), + [anon_sym_gap] = ACTIONS(546), + [anon_sym_68] = ACTIONS(546), + [anon_sym_69] = ACTIONS(546), + [anon_sym_invert] = ACTIONS(546), + [anon_sym_70] = ACTIONS(546), + [anon_sym_spawn] = ACTIONS(546), + [anon_sym_pack] = ACTIONS(546), + [anon_sym_71] = ACTIONS(546), + [anon_sym_tribute] = ACTIONS(546), + [anon_sym_72] = ACTIONS(546), + [anon_sym_reach] = ACTIONS(546), + [anon_sym_fold] = ACTIONS(546), + [anon_sym_73] = ACTIONS(546), + [anon_sym_distribute] = ACTIONS(546), + [anon_sym_74] = ACTIONS(546), + [anon_sym_table] = ACTIONS(546), + [anon_sym_75] = ACTIONS(546), + [anon_sym_cross] = ACTIONS(546), + [anon_sym_76] = ACTIONS(546), + [anon_sym_group] = ACTIONS(546), + [anon_sym_77] = ACTIONS(546), + [anon_sym_partition] = ACTIONS(546), + [anon_sym_78] = ACTIONS(546), + [anon_sym_both] = ACTIONS(546), + [anon_sym_79] = ACTIONS(546), + [anon_sym_bracket] = ACTIONS(546), + [anon_sym_80] = ACTIONS(546), + [anon_sym_fork] = ACTIONS(546), + [anon_sym_81] = ACTIONS(546), + [anon_sym_under] = ACTIONS(546), + [anon_sym_82] = ACTIONS(546), + [anon_sym_level] = ACTIONS(546), + [anon_sym_83] = ACTIONS(546), + [anon_sym_fill] = ACTIONS(546), + [anon_sym_84] = ACTIONS(546), + [anon_sym_bind] = ACTIONS(546), + [anon_sym_SQUOTE] = ACTIONS(546), + [anon_sym_QMARK] = ACTIONS(546), + [anon_sym_try] = ACTIONS(544), + [anon_sym_85] = ACTIONS(546), + [anon_sym_combinate] = ACTIONS(546), + [anon_sym_86] = ACTIONS(546), + [anon_sym_87] = ACTIONS(546), + [anon_sym_88] = ACTIONS(546), + [anon_sym_89] = ACTIONS(546), + [anon_sym_90] = ACTIONS(546), + [anon_sym_91] = ACTIONS(546), + [anon_sym_92] = ACTIONS(546), + [anon_sym_93] = ACTIONS(546), [sym__whitespace] = ACTIONS(5), [sym__end_of_line] = ACTIONS(5), }, [121] = { - [aux_sym_number_token1] = ACTIONS(542), - [anon_sym_os] = ACTIONS(542), - [anon_sym_Family] = ACTIONS(542), - [anon_sym_Arch] = ACTIONS(542), - [anon_sym_ExeExt] = ACTIONS(542), - [anon_sym_PllExt] = ACTIONS(542), - [anon_sym_Sep] = ACTIONS(542), - [aux_sym_character_token1] = ACTIONS(544), - [sym_string] = ACTIONS(544), - [sym_multiLineString] = ACTIONS(544), - [anon_sym_PIPE] = ACTIONS(544), - [sym_identifier] = ACTIONS(542), - [sym_identifier_deprecated] = ACTIONS(542), - [sym_system] = ACTIONS(544), - [sym_comment] = ACTIONS(542), - [sym_openParen] = ACTIONS(544), - [sym_openCurly] = ACTIONS(544), - [sym_openBracket] = ACTIONS(544), - [sym_leftArrow] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(544), - [anon_sym_eta] = ACTIONS(544), - [anon_sym_] = ACTIONS(542), - [anon_sym_pi] = ACTIONS(542), - [anon_sym_2] = ACTIONS(542), - [anon_sym_tau] = ACTIONS(544), - [anon_sym_3] = ACTIONS(542), - [anon_sym_infinity] = ACTIONS(544), - [anon_sym_4] = ACTIONS(544), - [anon_sym_e] = ACTIONS(542), - [anon_sym_NaN] = ACTIONS(542), - [anon_sym_NumProcs] = ACTIONS(542), - [anon_sym_DOT] = ACTIONS(544), - [anon_sym_COMMA] = ACTIONS(544), - [anon_sym_5] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(544), - [anon_sym_identity] = ACTIONS(544), - [anon_sym_id] = ACTIONS(542), - [anon_sym_6] = ACTIONS(544), - [anon_sym_not] = ACTIONS(544), - [anon_sym_7] = ACTIONS(544), - [anon_sym_sign] = ACTIONS(544), - [anon_sym_8] = ACTIONS(544), - [anon_sym_BQUOTE] = ACTIONS(544), - [anon_sym_9] = ACTIONS(544), - [anon_sym_absolutevalue] = ACTIONS(544), - [anon_sym_10] = ACTIONS(544), - [anon_sym_sqrt] = ACTIONS(544), - [anon_sym_11] = ACTIONS(544), - [anon_sym_sine] = ACTIONS(544), - [anon_sym_12] = ACTIONS(544), - [anon_sym_floor] = ACTIONS(544), - [anon_sym_13] = ACTIONS(544), - [anon_sym_ceiling] = ACTIONS(544), - [anon_sym_14] = ACTIONS(544), - [anon_sym_round] = ACTIONS(544), - [anon_sym_15] = ACTIONS(544), - [anon_sym_EQ] = ACTIONS(544), - [anon_sym_BANG_EQ] = ACTIONS(544), - [anon_sym_16] = ACTIONS(544), - [anon_sym_LT] = ACTIONS(542), - [anon_sym_LT_EQ] = ACTIONS(544), - [anon_sym_17] = ACTIONS(544), - [anon_sym_GT] = ACTIONS(542), - [anon_sym_GT_EQ] = ACTIONS(544), - [anon_sym_18] = ACTIONS(544), - [anon_sym_PLUS] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(544), - [anon_sym_STAR] = ACTIONS(544), - [anon_sym_19] = ACTIONS(544), - [anon_sym_PERCENT] = ACTIONS(544), - [anon_sym_20] = ACTIONS(544), - [anon_sym_modulus] = ACTIONS(544), - [anon_sym_21] = ACTIONS(544), - [anon_sym_power] = ACTIONS(544), - [anon_sym_22] = ACTIONS(544), - [anon_sym_logarithm] = ACTIONS(544), - [anon_sym_23] = ACTIONS(544), - [anon_sym_minimum] = ACTIONS(544), - [anon_sym_24] = ACTIONS(544), - [anon_sym_maximum] = ACTIONS(544), - [anon_sym_25] = ACTIONS(544), - [anon_sym_atangent] = ACTIONS(544), - [anon_sym_26] = ACTIONS(544), - [anon_sym_length] = ACTIONS(544), - [anon_sym_27] = ACTIONS(544), - [anon_sym_shape] = ACTIONS(544), - [anon_sym_28] = ACTIONS(544), - [anon_sym_range] = ACTIONS(544), - [anon_sym_29] = ACTIONS(544), - [anon_sym_first] = ACTIONS(544), - [anon_sym_30] = ACTIONS(544), - [anon_sym_reverse] = ACTIONS(544), - [anon_sym_31] = ACTIONS(544), - [anon_sym_deshape] = ACTIONS(544), - [anon_sym_32] = ACTIONS(544), - [anon_sym_bits] = ACTIONS(544), - [anon_sym_33] = ACTIONS(544), - [anon_sym_transpose] = ACTIONS(544), - [anon_sym_34] = ACTIONS(544), - [anon_sym_rise] = ACTIONS(544), - [anon_sym_35] = ACTIONS(544), - [anon_sym_fall] = ACTIONS(544), - [anon_sym_36] = ACTIONS(544), - [anon_sym_where] = ACTIONS(544), - [anon_sym_37] = ACTIONS(544), - [anon_sym_classify] = ACTIONS(544), - [anon_sym_38] = ACTIONS(544), - [anon_sym_deduplicate] = ACTIONS(544), - [anon_sym_39] = ACTIONS(544), - [anon_sym_box] = ACTIONS(544), - [anon_sym_40] = ACTIONS(544), - [anon_sym_unbox] = ACTIONS(544), - [anon_sym_41] = ACTIONS(544), - [anon_sym_match] = ACTIONS(544), - [anon_sym_42] = ACTIONS(544), - [anon_sym_couple] = ACTIONS(544), - [anon_sym_43] = ACTIONS(544), - [anon_sym_join] = ACTIONS(544), - [anon_sym_44] = ACTIONS(544), - [anon_sym_select] = ACTIONS(544), - [anon_sym_45] = ACTIONS(544), - [anon_sym_pick] = ACTIONS(544), - [anon_sym_46] = ACTIONS(544), - [anon_sym_reshape] = ACTIONS(544), - [anon_sym_47] = ACTIONS(544), - [anon_sym_take] = ACTIONS(544), - [anon_sym_48] = ACTIONS(544), - [anon_sym_drop] = ACTIONS(544), - [anon_sym_49] = ACTIONS(544), - [anon_sym_rotate] = ACTIONS(544), - [anon_sym_50] = ACTIONS(544), - [anon_sym_windows] = ACTIONS(544), - [anon_sym_51] = ACTIONS(544), - [anon_sym_keep] = ACTIONS(544), - [anon_sym_52] = ACTIONS(544), - [anon_sym_find] = ACTIONS(544), - [anon_sym_53] = ACTIONS(544), - [anon_sym_member] = ACTIONS(544), - [anon_sym_54] = ACTIONS(544), - [anon_sym_indexof] = ACTIONS(544), - [anon_sym_55] = ACTIONS(544), - [anon_sym_assert] = ACTIONS(544), - [anon_sym_56] = ACTIONS(544), - [anon_sym_wait] = ACTIONS(544), - [anon_sym_break] = ACTIONS(544), - [anon_sym_57] = ACTIONS(544), - [anon_sym_parse] = ACTIONS(544), - [anon_sym_random] = ACTIONS(544), - [anon_sym_58] = ACTIONS(544), - [anon_sym_gen] = ACTIONS(544), - [anon_sym_deal] = ACTIONS(544), - [anon_sym_tag] = ACTIONS(544), - [anon_sym_now] = ACTIONS(544), - [anon_sym_type] = ACTIONS(544), - [anon_sym_59] = ACTIONS(544), - [anon_sym_dump] = ACTIONS(544), - [anon_sym_regex] = ACTIONS(544), - [anon_sym_utf] = ACTIONS(544), - [anon_sym_rock] = ACTIONS(544), - [anon_sym_60] = ACTIONS(544), - [anon_sym_surface] = ACTIONS(544), - [anon_sym_TILDE] = ACTIONS(544), - [anon_sym_deep] = ACTIONS(544), - [anon_sym_de] = ACTIONS(542), - [anon_sym_61] = ACTIONS(544), - [anon_sym_abyss] = ACTIONS(544), - [anon_sym_ab] = ACTIONS(542), - [anon_sym_62] = ACTIONS(544), - [anon_sym_seabed] = ACTIONS(544), - [anon_sym_se] = ACTIONS(542), - [anon_sym_63] = ACTIONS(544), - [anon_sym_send] = ACTIONS(544), - [anon_sym_recv] = ACTIONS(544), - [anon_sym_tryrecv] = ACTIONS(544), - [anon_sym_reduce] = ACTIONS(544), - [anon_sym_SLASH] = ACTIONS(544), - [anon_sym_scan] = ACTIONS(544), - [anon_sym_BSLASH] = ACTIONS(544), - [anon_sym_each] = ACTIONS(544), - [anon_sym_64] = ACTIONS(544), - [anon_sym_rows] = ACTIONS(544), - [anon_sym_65] = ACTIONS(544), - [anon_sym_repeat] = ACTIONS(544), - [anon_sym_66] = ACTIONS(544), - [anon_sym_dip] = ACTIONS(544), - [anon_sym_di] = ACTIONS(542), - [anon_sym_67] = ACTIONS(544), - [anon_sym_gap] = ACTIONS(544), - [anon_sym_ga] = ACTIONS(542), - [anon_sym_68] = ACTIONS(544), - [anon_sym_oust] = ACTIONS(544), - [anon_sym_69] = ACTIONS(544), - [anon_sym_invert] = ACTIONS(544), - [anon_sym_70] = ACTIONS(544), - [anon_sym_spawn] = ACTIONS(544), - [anon_sym_pack] = ACTIONS(544), - [anon_sym_71] = ACTIONS(544), - [anon_sym_tribute] = ACTIONS(544), - [anon_sym_72] = ACTIONS(544), - [anon_sym_fold] = ACTIONS(544), - [anon_sym_73] = ACTIONS(544), - [anon_sym_distribute] = ACTIONS(544), - [anon_sym_74] = ACTIONS(544), - [anon_sym_table] = ACTIONS(544), - [anon_sym_75] = ACTIONS(544), - [anon_sym_cross] = ACTIONS(544), - [anon_sym_76] = ACTIONS(544), - [anon_sym_group] = ACTIONS(544), - [anon_sym_77] = ACTIONS(544), - [anon_sym_partition] = ACTIONS(544), - [anon_sym_78] = ACTIONS(544), - [anon_sym_both] = ACTIONS(544), - [anon_sym_79] = ACTIONS(544), - [anon_sym_bracket] = ACTIONS(544), - [anon_sym_80] = ACTIONS(544), - [anon_sym_fork] = ACTIONS(544), - [anon_sym_81] = ACTIONS(544), - [anon_sym_under] = ACTIONS(544), - [anon_sym_82] = ACTIONS(544), - [anon_sym_level] = ACTIONS(544), - [anon_sym_83] = ACTIONS(544), - [anon_sym_fill] = ACTIONS(544), - [anon_sym_84] = ACTIONS(544), - [anon_sym_bind] = ACTIONS(544), - [anon_sym_SQUOTE] = ACTIONS(544), - [anon_sym_QMARK] = ACTIONS(544), - [anon_sym_try] = ACTIONS(542), - [anon_sym_85] = ACTIONS(544), - [anon_sym_combinate] = ACTIONS(544), - [anon_sym_86] = ACTIONS(544), - [anon_sym_87] = ACTIONS(544), - [anon_sym_88] = ACTIONS(544), - [anon_sym_89] = ACTIONS(544), - [anon_sym_90] = ACTIONS(544), - [anon_sym_91] = ACTIONS(544), - [anon_sym_92] = ACTIONS(544), - [anon_sym_93] = ACTIONS(544), + [aux_sym_number_token1] = ACTIONS(524), + [anon_sym_os] = ACTIONS(524), + [anon_sym_Family] = ACTIONS(524), + [anon_sym_Arch] = ACTIONS(524), + [anon_sym_ExeExt] = ACTIONS(524), + [anon_sym_PllExt] = ACTIONS(524), + [anon_sym_Sep] = ACTIONS(524), + [aux_sym_character_token1] = ACTIONS(526), + [sym_string] = ACTIONS(526), + [sym_multiLineString] = ACTIONS(526), + [anon_sym_PIPE] = ACTIONS(526), + [sym_identifier] = ACTIONS(524), + [sym_identifier_deprecated] = ACTIONS(524), + [sym_system] = ACTIONS(526), + [sym_comment] = ACTIONS(524), + [sym_openParen] = ACTIONS(526), + [sym_openCurly] = ACTIONS(526), + [sym_openBracket] = ACTIONS(526), + [sym_leftArrow] = ACTIONS(526), + [anon_sym_CARET] = ACTIONS(526), + [anon_sym_eta] = ACTIONS(526), + [anon_sym_] = ACTIONS(524), + [anon_sym_pi] = ACTIONS(524), + [anon_sym_2] = ACTIONS(524), + [anon_sym_tau] = ACTIONS(526), + [anon_sym_3] = ACTIONS(524), + [anon_sym_infinity] = ACTIONS(526), + [anon_sym_4] = ACTIONS(526), + [anon_sym_e] = ACTIONS(524), + [anon_sym_NaN] = ACTIONS(524), + [anon_sym_NumProcs] = ACTIONS(524), + [anon_sym_DOT] = ACTIONS(526), + [anon_sym_COMMA] = ACTIONS(526), + [anon_sym_5] = ACTIONS(526), + [anon_sym_SEMI] = ACTIONS(526), + [anon_sym_identity] = ACTIONS(526), + [anon_sym_id] = ACTIONS(524), + [anon_sym_6] = ACTIONS(526), + [anon_sym_not] = ACTIONS(526), + [anon_sym_7] = ACTIONS(526), + [anon_sym_sign] = ACTIONS(526), + [anon_sym_8] = ACTIONS(526), + [anon_sym_BQUOTE] = ACTIONS(526), + [anon_sym_9] = ACTIONS(526), + [anon_sym_absolutevalue] = ACTIONS(526), + [anon_sym_10] = ACTIONS(526), + [anon_sym_sqrt] = ACTIONS(526), + [anon_sym_11] = ACTIONS(526), + [anon_sym_sine] = ACTIONS(526), + [anon_sym_12] = ACTIONS(526), + [anon_sym_floor] = ACTIONS(526), + [anon_sym_13] = ACTIONS(526), + [anon_sym_ceiling] = ACTIONS(526), + [anon_sym_14] = ACTIONS(526), + [anon_sym_round] = ACTIONS(526), + [anon_sym_15] = ACTIONS(526), + [anon_sym_EQ] = ACTIONS(526), + [anon_sym_BANG_EQ] = ACTIONS(526), + [anon_sym_16] = ACTIONS(526), + [anon_sym_LT] = ACTIONS(524), + [anon_sym_LT_EQ] = ACTIONS(526), + [anon_sym_17] = ACTIONS(526), + [anon_sym_GT] = ACTIONS(524), + [anon_sym_GT_EQ] = ACTIONS(526), + [anon_sym_18] = ACTIONS(526), + [anon_sym_PLUS] = ACTIONS(526), + [anon_sym_DASH] = ACTIONS(526), + [anon_sym_STAR] = ACTIONS(526), + [anon_sym_19] = ACTIONS(526), + [anon_sym_PERCENT] = ACTIONS(526), + [anon_sym_20] = ACTIONS(526), + [anon_sym_modulus] = ACTIONS(526), + [anon_sym_21] = ACTIONS(526), + [anon_sym_power] = ACTIONS(526), + [anon_sym_22] = ACTIONS(526), + [anon_sym_logarithm] = ACTIONS(526), + [anon_sym_23] = ACTIONS(526), + [anon_sym_minimum] = ACTIONS(526), + [anon_sym_24] = ACTIONS(526), + [anon_sym_maximum] = ACTIONS(526), + [anon_sym_25] = ACTIONS(526), + [anon_sym_atangent] = ACTIONS(526), + [anon_sym_26] = ACTIONS(526), + [anon_sym_length] = ACTIONS(526), + [anon_sym_27] = ACTIONS(526), + [anon_sym_shape] = ACTIONS(526), + [anon_sym_28] = ACTIONS(526), + [anon_sym_range] = ACTIONS(526), + [anon_sym_29] = ACTIONS(526), + [anon_sym_first] = ACTIONS(526), + [anon_sym_30] = ACTIONS(526), + [anon_sym_reverse] = ACTIONS(526), + [anon_sym_31] = ACTIONS(526), + [anon_sym_deshape] = ACTIONS(526), + [anon_sym_32] = ACTIONS(526), + [anon_sym_bits] = ACTIONS(526), + [anon_sym_33] = ACTIONS(526), + [anon_sym_transpose] = ACTIONS(526), + [anon_sym_34] = ACTIONS(526), + [anon_sym_rise] = ACTIONS(526), + [anon_sym_35] = ACTIONS(526), + [anon_sym_fall] = ACTIONS(526), + [anon_sym_36] = ACTIONS(526), + [anon_sym_where] = ACTIONS(526), + [anon_sym_37] = ACTIONS(526), + [anon_sym_classify] = ACTIONS(526), + [anon_sym_38] = ACTIONS(526), + [anon_sym_deduplicate] = ACTIONS(526), + [anon_sym_39] = ACTIONS(526), + [anon_sym_box] = ACTIONS(526), + [anon_sym_40] = ACTIONS(526), + [anon_sym_unbox] = ACTIONS(526), + [anon_sym_41] = ACTIONS(526), + [anon_sym_match] = ACTIONS(526), + [anon_sym_42] = ACTIONS(526), + [anon_sym_couple] = ACTIONS(526), + [anon_sym_43] = ACTIONS(526), + [anon_sym_join] = ACTIONS(526), + [anon_sym_44] = ACTIONS(526), + [anon_sym_select] = ACTIONS(526), + [anon_sym_45] = ACTIONS(526), + [anon_sym_pick] = ACTIONS(526), + [anon_sym_46] = ACTIONS(526), + [anon_sym_reshape] = ACTIONS(526), + [anon_sym_47] = ACTIONS(526), + [anon_sym_take] = ACTIONS(526), + [anon_sym_48] = ACTIONS(526), + [anon_sym_drop] = ACTIONS(526), + [anon_sym_49] = ACTIONS(526), + [anon_sym_rotate] = ACTIONS(526), + [anon_sym_50] = ACTIONS(526), + [anon_sym_windows] = ACTIONS(526), + [anon_sym_51] = ACTIONS(526), + [anon_sym_keep] = ACTIONS(526), + [anon_sym_52] = ACTIONS(526), + [anon_sym_find] = ACTIONS(526), + [anon_sym_53] = ACTIONS(526), + [anon_sym_member] = ACTIONS(526), + [anon_sym_54] = ACTIONS(526), + [anon_sym_indexof] = ACTIONS(526), + [anon_sym_55] = ACTIONS(526), + [anon_sym_assert] = ACTIONS(526), + [anon_sym_56] = ACTIONS(526), + [anon_sym_wait] = ACTIONS(526), + [anon_sym_break] = ACTIONS(526), + [anon_sym_57] = ACTIONS(526), + [anon_sym_parse] = ACTIONS(526), + [anon_sym_random] = ACTIONS(526), + [anon_sym_58] = ACTIONS(526), + [anon_sym_gen] = ACTIONS(526), + [anon_sym_deal] = ACTIONS(526), + [anon_sym_tag] = ACTIONS(526), + [anon_sym_now] = ACTIONS(526), + [anon_sym_type] = ACTIONS(526), + [anon_sym_59] = ACTIONS(526), + [anon_sym_dump] = ACTIONS(526), + [anon_sym_regex] = ACTIONS(526), + [anon_sym_utf] = ACTIONS(526), + [anon_sym_rock] = ACTIONS(526), + [anon_sym_60] = ACTIONS(526), + [anon_sym_surface] = ACTIONS(526), + [anon_sym_TILDE] = ACTIONS(526), + [anon_sym_deep] = ACTIONS(526), + [anon_sym_de] = ACTIONS(524), + [anon_sym_61] = ACTIONS(526), + [anon_sym_abyss] = ACTIONS(526), + [anon_sym_ab] = ACTIONS(524), + [anon_sym_62] = ACTIONS(526), + [anon_sym_seabed] = ACTIONS(526), + [anon_sym_se] = ACTIONS(524), + [anon_sym_63] = ACTIONS(526), + [anon_sym_send] = ACTIONS(526), + [anon_sym_recv] = ACTIONS(526), + [anon_sym_tryrecv] = ACTIONS(526), + [anon_sym_reduce] = ACTIONS(526), + [anon_sym_SLASH] = ACTIONS(526), + [anon_sym_scan] = ACTIONS(526), + [anon_sym_BSLASH] = ACTIONS(526), + [anon_sym_each] = ACTIONS(526), + [anon_sym_64] = ACTIONS(526), + [anon_sym_rows] = ACTIONS(526), + [anon_sym_65] = ACTIONS(526), + [anon_sym_repeat] = ACTIONS(526), + [anon_sym_66] = ACTIONS(526), + [anon_sym_dip] = ACTIONS(526), + [anon_sym_67] = ACTIONS(526), + [anon_sym_gap] = ACTIONS(526), + [anon_sym_68] = ACTIONS(526), + [anon_sym_69] = ACTIONS(526), + [anon_sym_invert] = ACTIONS(526), + [anon_sym_70] = ACTIONS(526), + [anon_sym_spawn] = ACTIONS(526), + [anon_sym_pack] = ACTIONS(526), + [anon_sym_71] = ACTIONS(526), + [anon_sym_tribute] = ACTIONS(526), + [anon_sym_72] = ACTIONS(526), + [anon_sym_reach] = ACTIONS(526), + [anon_sym_fold] = ACTIONS(526), + [anon_sym_73] = ACTIONS(526), + [anon_sym_distribute] = ACTIONS(526), + [anon_sym_74] = ACTIONS(526), + [anon_sym_table] = ACTIONS(526), + [anon_sym_75] = ACTIONS(526), + [anon_sym_cross] = ACTIONS(526), + [anon_sym_76] = ACTIONS(526), + [anon_sym_group] = ACTIONS(526), + [anon_sym_77] = ACTIONS(526), + [anon_sym_partition] = ACTIONS(526), + [anon_sym_78] = ACTIONS(526), + [anon_sym_both] = ACTIONS(526), + [anon_sym_79] = ACTIONS(526), + [anon_sym_bracket] = ACTIONS(526), + [anon_sym_80] = ACTIONS(526), + [anon_sym_fork] = ACTIONS(526), + [anon_sym_81] = ACTIONS(526), + [anon_sym_under] = ACTIONS(526), + [anon_sym_82] = ACTIONS(526), + [anon_sym_level] = ACTIONS(526), + [anon_sym_83] = ACTIONS(526), + [anon_sym_fill] = ACTIONS(526), + [anon_sym_84] = ACTIONS(526), + [anon_sym_bind] = ACTIONS(526), + [anon_sym_SQUOTE] = ACTIONS(526), + [anon_sym_QMARK] = ACTIONS(526), + [anon_sym_try] = ACTIONS(524), + [anon_sym_85] = ACTIONS(526), + [anon_sym_combinate] = ACTIONS(526), + [anon_sym_86] = ACTIONS(526), + [anon_sym_87] = ACTIONS(526), + [anon_sym_88] = ACTIONS(526), + [anon_sym_89] = ACTIONS(526), + [anon_sym_90] = ACTIONS(526), + [anon_sym_91] = ACTIONS(526), + [anon_sym_92] = ACTIONS(526), + [anon_sym_93] = ACTIONS(526), [sym__whitespace] = ACTIONS(5), [sym__end_of_line] = ACTIONS(5), }, [122] = { - [aux_sym_number_token1] = ACTIONS(562), - [anon_sym_os] = ACTIONS(562), - [anon_sym_Family] = ACTIONS(562), - [anon_sym_Arch] = ACTIONS(562), - [anon_sym_ExeExt] = ACTIONS(562), - [anon_sym_PllExt] = ACTIONS(562), - [anon_sym_Sep] = ACTIONS(562), - [aux_sym_character_token1] = ACTIONS(564), - [sym_string] = ACTIONS(564), - [sym_multiLineString] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [sym_identifier] = ACTIONS(562), - [sym_identifier_deprecated] = ACTIONS(562), - [sym_system] = ACTIONS(564), + [aux_sym_number_token1] = ACTIONS(544), + [anon_sym_os] = ACTIONS(544), + [anon_sym_Family] = ACTIONS(544), + [anon_sym_Arch] = ACTIONS(544), + [anon_sym_ExeExt] = ACTIONS(544), + [anon_sym_PllExt] = ACTIONS(544), + [anon_sym_Sep] = ACTIONS(544), + [aux_sym_character_token1] = ACTIONS(546), + [sym_string] = ACTIONS(546), + [sym_multiLineString] = ACTIONS(546), + [anon_sym_PIPE] = ACTIONS(546), + [sym_identifier] = ACTIONS(544), + [sym_identifier_deprecated] = ACTIONS(544), + [sym_system] = ACTIONS(546), [sym_comment] = ACTIONS(3), - [sym_openParen] = ACTIONS(564), - [sym_openCurly] = ACTIONS(564), - [sym_openBracket] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_eta] = ACTIONS(564), - [anon_sym_] = ACTIONS(562), - [anon_sym_pi] = ACTIONS(562), - [anon_sym_2] = ACTIONS(562), - [anon_sym_tau] = ACTIONS(564), - [anon_sym_3] = ACTIONS(562), - [anon_sym_infinity] = ACTIONS(564), - [anon_sym_4] = ACTIONS(564), - [anon_sym_e] = ACTIONS(562), - [anon_sym_NaN] = ACTIONS(562), - [anon_sym_NumProcs] = ACTIONS(562), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_COMMA] = ACTIONS(564), - [anon_sym_5] = ACTIONS(564), - [anon_sym_SEMI] = ACTIONS(564), - [anon_sym_identity] = ACTIONS(564), - [anon_sym_id] = ACTIONS(562), - [anon_sym_6] = ACTIONS(564), - [anon_sym_not] = ACTIONS(564), - [anon_sym_7] = ACTIONS(564), - [anon_sym_sign] = ACTIONS(564), - [anon_sym_8] = ACTIONS(564), - [anon_sym_BQUOTE] = ACTIONS(564), - [anon_sym_9] = ACTIONS(564), - [anon_sym_absolutevalue] = ACTIONS(564), - [anon_sym_10] = ACTIONS(564), - [anon_sym_sqrt] = ACTIONS(564), - [anon_sym_11] = ACTIONS(564), - [anon_sym_sine] = ACTIONS(564), - [anon_sym_12] = ACTIONS(564), - [anon_sym_floor] = ACTIONS(564), - [anon_sym_13] = ACTIONS(564), - [anon_sym_ceiling] = ACTIONS(564), - [anon_sym_14] = ACTIONS(564), - [anon_sym_round] = ACTIONS(564), - [anon_sym_15] = ACTIONS(564), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_BANG_EQ] = ACTIONS(564), - [anon_sym_16] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(562), - [anon_sym_LT_EQ] = ACTIONS(564), - [anon_sym_17] = ACTIONS(564), - [anon_sym_GT] = ACTIONS(562), - [anon_sym_GT_EQ] = ACTIONS(564), - [anon_sym_18] = ACTIONS(564), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_19] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_20] = ACTIONS(564), - [anon_sym_modulus] = ACTIONS(564), - [anon_sym_21] = ACTIONS(564), - [anon_sym_power] = ACTIONS(564), - [anon_sym_22] = ACTIONS(564), - [anon_sym_logarithm] = ACTIONS(564), - [anon_sym_23] = ACTIONS(564), - [anon_sym_minimum] = ACTIONS(564), - [anon_sym_24] = ACTIONS(564), - [anon_sym_maximum] = ACTIONS(564), - [anon_sym_25] = ACTIONS(564), - [anon_sym_atangent] = ACTIONS(564), - [anon_sym_26] = ACTIONS(564), - [anon_sym_length] = ACTIONS(564), - [anon_sym_27] = ACTIONS(564), - [anon_sym_shape] = ACTIONS(564), - [anon_sym_28] = ACTIONS(564), - [anon_sym_range] = ACTIONS(564), - [anon_sym_29] = ACTIONS(564), - [anon_sym_first] = ACTIONS(564), - [anon_sym_30] = ACTIONS(564), - [anon_sym_reverse] = ACTIONS(564), - [anon_sym_31] = ACTIONS(564), - [anon_sym_deshape] = ACTIONS(564), - [anon_sym_32] = ACTIONS(564), - [anon_sym_bits] = ACTIONS(564), - [anon_sym_33] = ACTIONS(564), - [anon_sym_transpose] = ACTIONS(564), - [anon_sym_34] = ACTIONS(564), - [anon_sym_rise] = ACTIONS(564), - [anon_sym_35] = ACTIONS(564), - [anon_sym_fall] = ACTIONS(564), - [anon_sym_36] = ACTIONS(564), - [anon_sym_where] = ACTIONS(564), - [anon_sym_37] = ACTIONS(564), - [anon_sym_classify] = ACTIONS(564), - [anon_sym_38] = ACTIONS(564), - [anon_sym_deduplicate] = ACTIONS(564), - [anon_sym_39] = ACTIONS(564), - [anon_sym_box] = ACTIONS(564), - [anon_sym_40] = ACTIONS(564), - [anon_sym_unbox] = ACTIONS(564), - [anon_sym_41] = ACTIONS(564), - [anon_sym_match] = ACTIONS(564), - [anon_sym_42] = ACTIONS(564), - [anon_sym_couple] = ACTIONS(564), - [anon_sym_43] = ACTIONS(564), - [anon_sym_join] = ACTIONS(564), - [anon_sym_44] = ACTIONS(564), - [anon_sym_select] = ACTIONS(564), - [anon_sym_45] = ACTIONS(564), - [anon_sym_pick] = ACTIONS(564), - [anon_sym_46] = ACTIONS(564), - [anon_sym_reshape] = ACTIONS(564), - [anon_sym_47] = ACTIONS(564), - [anon_sym_take] = ACTIONS(564), - [anon_sym_48] = ACTIONS(564), - [anon_sym_drop] = ACTIONS(564), - [anon_sym_49] = ACTIONS(564), - [anon_sym_rotate] = ACTIONS(564), - [anon_sym_50] = ACTIONS(564), - [anon_sym_windows] = ACTIONS(564), - [anon_sym_51] = ACTIONS(564), - [anon_sym_keep] = ACTIONS(564), - [anon_sym_52] = ACTIONS(564), - [anon_sym_find] = ACTIONS(564), - [anon_sym_53] = ACTIONS(564), - [anon_sym_member] = ACTIONS(564), - [anon_sym_54] = ACTIONS(564), - [anon_sym_indexof] = ACTIONS(564), - [anon_sym_55] = ACTIONS(564), - [anon_sym_assert] = ACTIONS(564), - [anon_sym_56] = ACTIONS(564), - [anon_sym_wait] = ACTIONS(564), - [anon_sym_break] = ACTIONS(564), - [anon_sym_57] = ACTIONS(564), - [anon_sym_parse] = ACTIONS(564), - [anon_sym_random] = ACTIONS(564), - [anon_sym_58] = ACTIONS(564), - [anon_sym_gen] = ACTIONS(564), - [anon_sym_deal] = ACTIONS(564), - [anon_sym_tag] = ACTIONS(564), - [anon_sym_now] = ACTIONS(564), - [anon_sym_type] = ACTIONS(564), - [anon_sym_59] = ACTIONS(564), - [anon_sym_dump] = ACTIONS(564), - [anon_sym_regex] = ACTIONS(564), - [anon_sym_utf] = ACTIONS(564), - [anon_sym_rock] = ACTIONS(564), - [anon_sym_60] = ACTIONS(564), - [anon_sym_surface] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(564), - [anon_sym_deep] = ACTIONS(564), - [anon_sym_de] = ACTIONS(562), - [anon_sym_61] = ACTIONS(564), - [anon_sym_abyss] = ACTIONS(564), - [anon_sym_ab] = ACTIONS(562), - [anon_sym_62] = ACTIONS(564), - [anon_sym_seabed] = ACTIONS(564), - [anon_sym_se] = ACTIONS(562), - [anon_sym_63] = ACTIONS(564), - [anon_sym_send] = ACTIONS(564), - [anon_sym_recv] = ACTIONS(564), - [anon_sym_tryrecv] = ACTIONS(564), - [anon_sym_reduce] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_scan] = ACTIONS(564), - [anon_sym_BSLASH] = ACTIONS(564), - [anon_sym_each] = ACTIONS(564), - [anon_sym_64] = ACTIONS(564), - [anon_sym_rows] = ACTIONS(564), - [anon_sym_65] = ACTIONS(564), - [anon_sym_repeat] = ACTIONS(564), - [anon_sym_66] = ACTIONS(564), - [anon_sym_dip] = ACTIONS(564), - [anon_sym_di] = ACTIONS(562), - [anon_sym_67] = ACTIONS(564), - [anon_sym_gap] = ACTIONS(564), - [anon_sym_ga] = ACTIONS(562), - [anon_sym_68] = ACTIONS(564), - [anon_sym_oust] = ACTIONS(564), - [anon_sym_69] = ACTIONS(564), - [anon_sym_invert] = ACTIONS(564), - [anon_sym_70] = ACTIONS(564), - [anon_sym_spawn] = ACTIONS(564), - [anon_sym_pack] = ACTIONS(564), - [anon_sym_71] = ACTIONS(564), - [anon_sym_tribute] = ACTIONS(564), - [anon_sym_72] = ACTIONS(564), - [anon_sym_fold] = ACTIONS(564), - [anon_sym_73] = ACTIONS(564), - [anon_sym_distribute] = ACTIONS(564), - [anon_sym_74] = ACTIONS(564), - [anon_sym_table] = ACTIONS(564), - [anon_sym_75] = ACTIONS(564), - [anon_sym_cross] = ACTIONS(564), - [anon_sym_76] = ACTIONS(564), - [anon_sym_group] = ACTIONS(564), - [anon_sym_77] = ACTIONS(564), - [anon_sym_partition] = ACTIONS(564), - [anon_sym_78] = ACTIONS(564), - [anon_sym_both] = ACTIONS(564), - [anon_sym_79] = ACTIONS(564), - [anon_sym_bracket] = ACTIONS(564), - [anon_sym_80] = ACTIONS(564), - [anon_sym_fork] = ACTIONS(564), - [anon_sym_81] = ACTIONS(564), - [anon_sym_under] = ACTIONS(564), - [anon_sym_82] = ACTIONS(564), - [anon_sym_level] = ACTIONS(564), - [anon_sym_83] = ACTIONS(564), - [anon_sym_fill] = ACTIONS(564), - [anon_sym_84] = ACTIONS(564), - [anon_sym_bind] = ACTIONS(564), - [anon_sym_SQUOTE] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(564), - [anon_sym_try] = ACTIONS(562), - [anon_sym_85] = ACTIONS(564), - [anon_sym_combinate] = ACTIONS(564), - [anon_sym_86] = ACTIONS(564), - [anon_sym_87] = ACTIONS(564), - [anon_sym_88] = ACTIONS(564), - [anon_sym_89] = ACTIONS(564), - [anon_sym_90] = ACTIONS(564), - [anon_sym_91] = ACTIONS(564), - [anon_sym_92] = ACTIONS(564), - [anon_sym_93] = ACTIONS(564), + [sym_openParen] = ACTIONS(546), + [sym_openCurly] = ACTIONS(546), + [sym_openBracket] = ACTIONS(546), + [anon_sym_CARET] = ACTIONS(546), + [anon_sym_eta] = ACTIONS(546), + [anon_sym_] = ACTIONS(544), + [anon_sym_pi] = ACTIONS(544), + [anon_sym_2] = ACTIONS(544), + [anon_sym_tau] = ACTIONS(546), + [anon_sym_3] = ACTIONS(544), + [anon_sym_infinity] = ACTIONS(546), + [anon_sym_4] = ACTIONS(546), + [anon_sym_e] = ACTIONS(544), + [anon_sym_NaN] = ACTIONS(544), + [anon_sym_NumProcs] = ACTIONS(544), + [anon_sym_DOT] = ACTIONS(546), + [anon_sym_COMMA] = ACTIONS(546), + [anon_sym_5] = ACTIONS(546), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym_identity] = ACTIONS(546), + [anon_sym_id] = ACTIONS(544), + [anon_sym_6] = ACTIONS(546), + [anon_sym_not] = ACTIONS(546), + [anon_sym_7] = ACTIONS(546), + [anon_sym_sign] = ACTIONS(546), + [anon_sym_8] = ACTIONS(546), + [anon_sym_BQUOTE] = ACTIONS(546), + [anon_sym_9] = ACTIONS(546), + [anon_sym_absolutevalue] = ACTIONS(546), + [anon_sym_10] = ACTIONS(546), + [anon_sym_sqrt] = ACTIONS(546), + [anon_sym_11] = ACTIONS(546), + [anon_sym_sine] = ACTIONS(546), + [anon_sym_12] = ACTIONS(546), + [anon_sym_floor] = ACTIONS(546), + [anon_sym_13] = ACTIONS(546), + [anon_sym_ceiling] = ACTIONS(546), + [anon_sym_14] = ACTIONS(546), + [anon_sym_round] = ACTIONS(546), + [anon_sym_15] = ACTIONS(546), + [anon_sym_EQ] = ACTIONS(546), + [anon_sym_BANG_EQ] = ACTIONS(546), + [anon_sym_16] = ACTIONS(546), + [anon_sym_LT] = ACTIONS(544), + [anon_sym_LT_EQ] = ACTIONS(546), + [anon_sym_17] = ACTIONS(546), + [anon_sym_GT] = ACTIONS(544), + [anon_sym_GT_EQ] = ACTIONS(546), + [anon_sym_18] = ACTIONS(546), + [anon_sym_PLUS] = ACTIONS(546), + [anon_sym_DASH] = ACTIONS(546), + [anon_sym_STAR] = ACTIONS(546), + [anon_sym_19] = ACTIONS(546), + [anon_sym_PERCENT] = ACTIONS(546), + [anon_sym_20] = ACTIONS(546), + [anon_sym_modulus] = ACTIONS(546), + [anon_sym_21] = ACTIONS(546), + [anon_sym_power] = ACTIONS(546), + [anon_sym_22] = ACTIONS(546), + [anon_sym_logarithm] = ACTIONS(546), + [anon_sym_23] = ACTIONS(546), + [anon_sym_minimum] = ACTIONS(546), + [anon_sym_24] = ACTIONS(546), + [anon_sym_maximum] = ACTIONS(546), + [anon_sym_25] = ACTIONS(546), + [anon_sym_atangent] = ACTIONS(546), + [anon_sym_26] = ACTIONS(546), + [anon_sym_length] = ACTIONS(546), + [anon_sym_27] = ACTIONS(546), + [anon_sym_shape] = ACTIONS(546), + [anon_sym_28] = ACTIONS(546), + [anon_sym_range] = ACTIONS(546), + [anon_sym_29] = ACTIONS(546), + [anon_sym_first] = ACTIONS(546), + [anon_sym_30] = ACTIONS(546), + [anon_sym_reverse] = ACTIONS(546), + [anon_sym_31] = ACTIONS(546), + [anon_sym_deshape] = ACTIONS(546), + [anon_sym_32] = ACTIONS(546), + [anon_sym_bits] = ACTIONS(546), + [anon_sym_33] = ACTIONS(546), + [anon_sym_transpose] = ACTIONS(546), + [anon_sym_34] = ACTIONS(546), + [anon_sym_rise] = ACTIONS(546), + [anon_sym_35] = ACTIONS(546), + [anon_sym_fall] = ACTIONS(546), + [anon_sym_36] = ACTIONS(546), + [anon_sym_where] = ACTIONS(546), + [anon_sym_37] = ACTIONS(546), + [anon_sym_classify] = ACTIONS(546), + [anon_sym_38] = ACTIONS(546), + [anon_sym_deduplicate] = ACTIONS(546), + [anon_sym_39] = ACTIONS(546), + [anon_sym_box] = ACTIONS(546), + [anon_sym_40] = ACTIONS(546), + [anon_sym_unbox] = ACTIONS(546), + [anon_sym_41] = ACTIONS(546), + [anon_sym_match] = ACTIONS(546), + [anon_sym_42] = ACTIONS(546), + [anon_sym_couple] = ACTIONS(546), + [anon_sym_43] = ACTIONS(546), + [anon_sym_join] = ACTIONS(546), + [anon_sym_44] = ACTIONS(546), + [anon_sym_select] = ACTIONS(546), + [anon_sym_45] = ACTIONS(546), + [anon_sym_pick] = ACTIONS(546), + [anon_sym_46] = ACTIONS(546), + [anon_sym_reshape] = ACTIONS(546), + [anon_sym_47] = ACTIONS(546), + [anon_sym_take] = ACTIONS(546), + [anon_sym_48] = ACTIONS(546), + [anon_sym_drop] = ACTIONS(546), + [anon_sym_49] = ACTIONS(546), + [anon_sym_rotate] = ACTIONS(546), + [anon_sym_50] = ACTIONS(546), + [anon_sym_windows] = ACTIONS(546), + [anon_sym_51] = ACTIONS(546), + [anon_sym_keep] = ACTIONS(546), + [anon_sym_52] = ACTIONS(546), + [anon_sym_find] = ACTIONS(546), + [anon_sym_53] = ACTIONS(546), + [anon_sym_member] = ACTIONS(546), + [anon_sym_54] = ACTIONS(546), + [anon_sym_indexof] = ACTIONS(546), + [anon_sym_55] = ACTIONS(546), + [anon_sym_assert] = ACTIONS(546), + [anon_sym_56] = ACTIONS(546), + [anon_sym_wait] = ACTIONS(546), + [anon_sym_break] = ACTIONS(546), + [anon_sym_57] = ACTIONS(546), + [anon_sym_parse] = ACTIONS(546), + [anon_sym_random] = ACTIONS(546), + [anon_sym_58] = ACTIONS(546), + [anon_sym_gen] = ACTIONS(546), + [anon_sym_deal] = ACTIONS(546), + [anon_sym_tag] = ACTIONS(546), + [anon_sym_now] = ACTIONS(546), + [anon_sym_type] = ACTIONS(546), + [anon_sym_59] = ACTIONS(546), + [anon_sym_dump] = ACTIONS(546), + [anon_sym_regex] = ACTIONS(546), + [anon_sym_utf] = ACTIONS(546), + [anon_sym_rock] = ACTIONS(546), + [anon_sym_60] = ACTIONS(546), + [anon_sym_surface] = ACTIONS(546), + [anon_sym_TILDE] = ACTIONS(546), + [anon_sym_deep] = ACTIONS(546), + [anon_sym_de] = ACTIONS(544), + [anon_sym_61] = ACTIONS(546), + [anon_sym_abyss] = ACTIONS(546), + [anon_sym_ab] = ACTIONS(544), + [anon_sym_62] = ACTIONS(546), + [anon_sym_seabed] = ACTIONS(546), + [anon_sym_se] = ACTIONS(544), + [anon_sym_63] = ACTIONS(546), + [anon_sym_send] = ACTIONS(546), + [anon_sym_recv] = ACTIONS(546), + [anon_sym_tryrecv] = ACTIONS(546), + [anon_sym_reduce] = ACTIONS(546), + [anon_sym_SLASH] = ACTIONS(546), + [anon_sym_scan] = ACTIONS(546), + [anon_sym_BSLASH] = ACTIONS(546), + [anon_sym_each] = ACTIONS(546), + [anon_sym_64] = ACTIONS(546), + [anon_sym_rows] = ACTIONS(546), + [anon_sym_65] = ACTIONS(546), + [anon_sym_repeat] = ACTIONS(546), + [anon_sym_66] = ACTIONS(546), + [anon_sym_dip] = ACTIONS(546), + [anon_sym_67] = ACTIONS(546), + [anon_sym_gap] = ACTIONS(546), + [anon_sym_68] = ACTIONS(546), + [anon_sym_69] = ACTIONS(546), + [anon_sym_invert] = ACTIONS(546), + [anon_sym_70] = ACTIONS(546), + [anon_sym_spawn] = ACTIONS(546), + [anon_sym_pack] = ACTIONS(546), + [anon_sym_71] = ACTIONS(546), + [anon_sym_tribute] = ACTIONS(546), + [anon_sym_72] = ACTIONS(546), + [anon_sym_reach] = ACTIONS(546), + [anon_sym_fold] = ACTIONS(546), + [anon_sym_73] = ACTIONS(546), + [anon_sym_distribute] = ACTIONS(546), + [anon_sym_74] = ACTIONS(546), + [anon_sym_table] = ACTIONS(546), + [anon_sym_75] = ACTIONS(546), + [anon_sym_cross] = ACTIONS(546), + [anon_sym_76] = ACTIONS(546), + [anon_sym_group] = ACTIONS(546), + [anon_sym_77] = ACTIONS(546), + [anon_sym_partition] = ACTIONS(546), + [anon_sym_78] = ACTIONS(546), + [anon_sym_both] = ACTIONS(546), + [anon_sym_79] = ACTIONS(546), + [anon_sym_bracket] = ACTIONS(546), + [anon_sym_80] = ACTIONS(546), + [anon_sym_fork] = ACTIONS(546), + [anon_sym_81] = ACTIONS(546), + [anon_sym_under] = ACTIONS(546), + [anon_sym_82] = ACTIONS(546), + [anon_sym_level] = ACTIONS(546), + [anon_sym_83] = ACTIONS(546), + [anon_sym_fill] = ACTIONS(546), + [anon_sym_84] = ACTIONS(546), + [anon_sym_bind] = ACTIONS(546), + [anon_sym_SQUOTE] = ACTIONS(546), + [anon_sym_QMARK] = ACTIONS(546), + [anon_sym_try] = ACTIONS(544), + [anon_sym_85] = ACTIONS(546), + [anon_sym_combinate] = ACTIONS(546), + [anon_sym_86] = ACTIONS(546), + [anon_sym_87] = ACTIONS(546), + [anon_sym_88] = ACTIONS(546), + [anon_sym_89] = ACTIONS(546), + [anon_sym_90] = ACTIONS(546), + [anon_sym_91] = ACTIONS(546), + [anon_sym_92] = ACTIONS(546), + [anon_sym_93] = ACTIONS(546), [sym__whitespace] = ACTIONS(5), [sym__end_of_line] = ACTIONS(5), }, [123] = { - [aux_sym_number_token1] = ACTIONS(568), - [anon_sym_os] = ACTIONS(568), - [anon_sym_Family] = ACTIONS(568), - [anon_sym_Arch] = ACTIONS(568), - [anon_sym_ExeExt] = ACTIONS(568), - [anon_sym_PllExt] = ACTIONS(568), - [anon_sym_Sep] = ACTIONS(568), - [aux_sym_character_token1] = ACTIONS(570), - [sym_string] = ACTIONS(570), - [sym_multiLineString] = ACTIONS(570), - [anon_sym_PIPE] = ACTIONS(570), - [sym_identifier] = ACTIONS(568), - [sym_identifier_deprecated] = ACTIONS(568), - [sym_system] = ACTIONS(570), + [aux_sym_number_token1] = ACTIONS(550), + [anon_sym_os] = ACTIONS(550), + [anon_sym_Family] = ACTIONS(550), + [anon_sym_Arch] = ACTIONS(550), + [anon_sym_ExeExt] = ACTIONS(550), + [anon_sym_PllExt] = ACTIONS(550), + [anon_sym_Sep] = ACTIONS(550), + [aux_sym_character_token1] = ACTIONS(552), + [sym_string] = ACTIONS(552), + [sym_multiLineString] = ACTIONS(552), + [anon_sym_PIPE] = ACTIONS(552), + [sym_identifier] = ACTIONS(550), + [sym_identifier_deprecated] = ACTIONS(550), + [sym_system] = ACTIONS(552), [sym_comment] = ACTIONS(3), - [sym_openParen] = ACTIONS(570), - [sym_openCurly] = ACTIONS(570), - [sym_openBracket] = ACTIONS(570), - [anon_sym_CARET] = ACTIONS(570), - [anon_sym_eta] = ACTIONS(570), - [anon_sym_] = ACTIONS(568), - [anon_sym_pi] = ACTIONS(568), - [anon_sym_2] = ACTIONS(568), - [anon_sym_tau] = ACTIONS(570), - [anon_sym_3] = ACTIONS(568), - [anon_sym_infinity] = ACTIONS(570), - [anon_sym_4] = ACTIONS(570), - [anon_sym_e] = ACTIONS(568), - [anon_sym_NaN] = ACTIONS(568), - [anon_sym_NumProcs] = ACTIONS(568), - [anon_sym_DOT] = ACTIONS(570), - [anon_sym_COMMA] = ACTIONS(570), - [anon_sym_5] = ACTIONS(570), - [anon_sym_SEMI] = ACTIONS(570), - [anon_sym_identity] = ACTIONS(570), - [anon_sym_id] = ACTIONS(568), - [anon_sym_6] = ACTIONS(570), - [anon_sym_not] = ACTIONS(570), - [anon_sym_7] = ACTIONS(570), - [anon_sym_sign] = ACTIONS(570), - [anon_sym_8] = ACTIONS(570), - [anon_sym_BQUOTE] = ACTIONS(570), - [anon_sym_9] = ACTIONS(570), - [anon_sym_absolutevalue] = ACTIONS(570), - [anon_sym_10] = ACTIONS(570), - [anon_sym_sqrt] = ACTIONS(570), - [anon_sym_11] = ACTIONS(570), - [anon_sym_sine] = ACTIONS(570), - [anon_sym_12] = ACTIONS(570), - [anon_sym_floor] = ACTIONS(570), - [anon_sym_13] = ACTIONS(570), - [anon_sym_ceiling] = ACTIONS(570), - [anon_sym_14] = ACTIONS(570), - [anon_sym_round] = ACTIONS(570), - [anon_sym_15] = ACTIONS(570), - [anon_sym_EQ] = ACTIONS(570), - [anon_sym_BANG_EQ] = ACTIONS(570), - [anon_sym_16] = ACTIONS(570), - [anon_sym_LT] = ACTIONS(568), - [anon_sym_LT_EQ] = ACTIONS(570), - [anon_sym_17] = ACTIONS(570), - [anon_sym_GT] = ACTIONS(568), - [anon_sym_GT_EQ] = ACTIONS(570), - [anon_sym_18] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(570), - [anon_sym_DASH] = ACTIONS(570), - [anon_sym_STAR] = ACTIONS(570), - [anon_sym_19] = ACTIONS(570), - [anon_sym_PERCENT] = ACTIONS(570), - [anon_sym_20] = ACTIONS(570), - [anon_sym_modulus] = ACTIONS(570), - [anon_sym_21] = ACTIONS(570), - [anon_sym_power] = ACTIONS(570), - [anon_sym_22] = ACTIONS(570), - [anon_sym_logarithm] = ACTIONS(570), - [anon_sym_23] = ACTIONS(570), - [anon_sym_minimum] = ACTIONS(570), - [anon_sym_24] = ACTIONS(570), - [anon_sym_maximum] = ACTIONS(570), - [anon_sym_25] = ACTIONS(570), - [anon_sym_atangent] = ACTIONS(570), - [anon_sym_26] = ACTIONS(570), - [anon_sym_length] = ACTIONS(570), - [anon_sym_27] = ACTIONS(570), - [anon_sym_shape] = ACTIONS(570), - [anon_sym_28] = ACTIONS(570), - [anon_sym_range] = ACTIONS(570), - [anon_sym_29] = ACTIONS(570), - [anon_sym_first] = ACTIONS(570), - [anon_sym_30] = ACTIONS(570), - [anon_sym_reverse] = ACTIONS(570), - [anon_sym_31] = ACTIONS(570), - [anon_sym_deshape] = ACTIONS(570), - [anon_sym_32] = ACTIONS(570), - [anon_sym_bits] = ACTIONS(570), - [anon_sym_33] = ACTIONS(570), - [anon_sym_transpose] = ACTIONS(570), - [anon_sym_34] = ACTIONS(570), - [anon_sym_rise] = ACTIONS(570), - [anon_sym_35] = ACTIONS(570), - [anon_sym_fall] = ACTIONS(570), - [anon_sym_36] = ACTIONS(570), - [anon_sym_where] = ACTIONS(570), - [anon_sym_37] = ACTIONS(570), - [anon_sym_classify] = ACTIONS(570), - [anon_sym_38] = ACTIONS(570), - [anon_sym_deduplicate] = ACTIONS(570), - [anon_sym_39] = ACTIONS(570), - [anon_sym_box] = ACTIONS(570), - [anon_sym_40] = ACTIONS(570), - [anon_sym_unbox] = ACTIONS(570), - [anon_sym_41] = ACTIONS(570), - [anon_sym_match] = ACTIONS(570), - [anon_sym_42] = ACTIONS(570), - [anon_sym_couple] = ACTIONS(570), - [anon_sym_43] = ACTIONS(570), - [anon_sym_join] = ACTIONS(570), - [anon_sym_44] = ACTIONS(570), - [anon_sym_select] = ACTIONS(570), - [anon_sym_45] = ACTIONS(570), - [anon_sym_pick] = ACTIONS(570), - [anon_sym_46] = ACTIONS(570), - [anon_sym_reshape] = ACTIONS(570), - [anon_sym_47] = ACTIONS(570), - [anon_sym_take] = ACTIONS(570), - [anon_sym_48] = ACTIONS(570), - [anon_sym_drop] = ACTIONS(570), - [anon_sym_49] = ACTIONS(570), - [anon_sym_rotate] = ACTIONS(570), - [anon_sym_50] = ACTIONS(570), - [anon_sym_windows] = ACTIONS(570), - [anon_sym_51] = ACTIONS(570), - [anon_sym_keep] = ACTIONS(570), - [anon_sym_52] = ACTIONS(570), - [anon_sym_find] = ACTIONS(570), - [anon_sym_53] = ACTIONS(570), - [anon_sym_member] = ACTIONS(570), - [anon_sym_54] = ACTIONS(570), - [anon_sym_indexof] = ACTIONS(570), - [anon_sym_55] = ACTIONS(570), - [anon_sym_assert] = ACTIONS(570), - [anon_sym_56] = ACTIONS(570), - [anon_sym_wait] = ACTIONS(570), - [anon_sym_break] = ACTIONS(570), - [anon_sym_57] = ACTIONS(570), - [anon_sym_parse] = ACTIONS(570), - [anon_sym_random] = ACTIONS(570), - [anon_sym_58] = ACTIONS(570), - [anon_sym_gen] = ACTIONS(570), - [anon_sym_deal] = ACTIONS(570), - [anon_sym_tag] = ACTIONS(570), - [anon_sym_now] = ACTIONS(570), - [anon_sym_type] = ACTIONS(570), - [anon_sym_59] = ACTIONS(570), - [anon_sym_dump] = ACTIONS(570), - [anon_sym_regex] = ACTIONS(570), - [anon_sym_utf] = ACTIONS(570), - [anon_sym_rock] = ACTIONS(570), - [anon_sym_60] = ACTIONS(570), - [anon_sym_surface] = ACTIONS(570), - [anon_sym_TILDE] = ACTIONS(570), - [anon_sym_deep] = ACTIONS(570), - [anon_sym_de] = ACTIONS(568), - [anon_sym_61] = ACTIONS(570), - [anon_sym_abyss] = ACTIONS(570), - [anon_sym_ab] = ACTIONS(568), - [anon_sym_62] = ACTIONS(570), - [anon_sym_seabed] = ACTIONS(570), - [anon_sym_se] = ACTIONS(568), - [anon_sym_63] = ACTIONS(570), - [anon_sym_send] = ACTIONS(570), - [anon_sym_recv] = ACTIONS(570), - [anon_sym_tryrecv] = ACTIONS(570), - [anon_sym_reduce] = ACTIONS(570), - [anon_sym_SLASH] = ACTIONS(570), - [anon_sym_scan] = ACTIONS(570), - [anon_sym_BSLASH] = ACTIONS(570), - [anon_sym_each] = ACTIONS(570), - [anon_sym_64] = ACTIONS(570), - [anon_sym_rows] = ACTIONS(570), - [anon_sym_65] = ACTIONS(570), - [anon_sym_repeat] = ACTIONS(570), - [anon_sym_66] = ACTIONS(570), - [anon_sym_dip] = ACTIONS(570), - [anon_sym_di] = ACTIONS(568), - [anon_sym_67] = ACTIONS(570), - [anon_sym_gap] = ACTIONS(570), - [anon_sym_ga] = ACTIONS(568), - [anon_sym_68] = ACTIONS(570), - [anon_sym_oust] = ACTIONS(570), - [anon_sym_69] = ACTIONS(570), - [anon_sym_invert] = ACTIONS(570), - [anon_sym_70] = ACTIONS(570), - [anon_sym_spawn] = ACTIONS(570), - [anon_sym_pack] = ACTIONS(570), - [anon_sym_71] = ACTIONS(570), - [anon_sym_tribute] = ACTIONS(570), - [anon_sym_72] = ACTIONS(570), - [anon_sym_fold] = ACTIONS(570), - [anon_sym_73] = ACTIONS(570), - [anon_sym_distribute] = ACTIONS(570), - [anon_sym_74] = ACTIONS(570), - [anon_sym_table] = ACTIONS(570), - [anon_sym_75] = ACTIONS(570), - [anon_sym_cross] = ACTIONS(570), - [anon_sym_76] = ACTIONS(570), - [anon_sym_group] = ACTIONS(570), - [anon_sym_77] = ACTIONS(570), - [anon_sym_partition] = ACTIONS(570), - [anon_sym_78] = ACTIONS(570), - [anon_sym_both] = ACTIONS(570), - [anon_sym_79] = ACTIONS(570), - [anon_sym_bracket] = ACTIONS(570), - [anon_sym_80] = ACTIONS(570), - [anon_sym_fork] = ACTIONS(570), - [anon_sym_81] = ACTIONS(570), - [anon_sym_under] = ACTIONS(570), - [anon_sym_82] = ACTIONS(570), - [anon_sym_level] = ACTIONS(570), - [anon_sym_83] = ACTIONS(570), - [anon_sym_fill] = ACTIONS(570), - [anon_sym_84] = ACTIONS(570), - [anon_sym_bind] = ACTIONS(570), - [anon_sym_SQUOTE] = ACTIONS(570), - [anon_sym_QMARK] = ACTIONS(570), - [anon_sym_try] = ACTIONS(568), - [anon_sym_85] = ACTIONS(570), - [anon_sym_combinate] = ACTIONS(570), - [anon_sym_86] = ACTIONS(570), - [anon_sym_87] = ACTIONS(570), - [anon_sym_88] = ACTIONS(570), - [anon_sym_89] = ACTIONS(570), - [anon_sym_90] = ACTIONS(570), - [anon_sym_91] = ACTIONS(570), - [anon_sym_92] = ACTIONS(570), - [anon_sym_93] = ACTIONS(570), + [sym_openParen] = ACTIONS(552), + [sym_openCurly] = ACTIONS(552), + [sym_openBracket] = ACTIONS(552), + [anon_sym_CARET] = ACTIONS(552), + [anon_sym_eta] = ACTIONS(552), + [anon_sym_] = ACTIONS(550), + [anon_sym_pi] = ACTIONS(550), + [anon_sym_2] = ACTIONS(550), + [anon_sym_tau] = ACTIONS(552), + [anon_sym_3] = ACTIONS(550), + [anon_sym_infinity] = ACTIONS(552), + [anon_sym_4] = ACTIONS(552), + [anon_sym_e] = ACTIONS(550), + [anon_sym_NaN] = ACTIONS(550), + [anon_sym_NumProcs] = ACTIONS(550), + [anon_sym_DOT] = ACTIONS(552), + [anon_sym_COMMA] = ACTIONS(552), + [anon_sym_5] = ACTIONS(552), + [anon_sym_SEMI] = ACTIONS(552), + [anon_sym_identity] = ACTIONS(552), + [anon_sym_id] = ACTIONS(550), + [anon_sym_6] = ACTIONS(552), + [anon_sym_not] = ACTIONS(552), + [anon_sym_7] = ACTIONS(552), + [anon_sym_sign] = ACTIONS(552), + [anon_sym_8] = ACTIONS(552), + [anon_sym_BQUOTE] = ACTIONS(552), + [anon_sym_9] = ACTIONS(552), + [anon_sym_absolutevalue] = ACTIONS(552), + [anon_sym_10] = ACTIONS(552), + [anon_sym_sqrt] = ACTIONS(552), + [anon_sym_11] = ACTIONS(552), + [anon_sym_sine] = ACTIONS(552), + [anon_sym_12] = ACTIONS(552), + [anon_sym_floor] = ACTIONS(552), + [anon_sym_13] = ACTIONS(552), + [anon_sym_ceiling] = ACTIONS(552), + [anon_sym_14] = ACTIONS(552), + [anon_sym_round] = ACTIONS(552), + [anon_sym_15] = ACTIONS(552), + [anon_sym_EQ] = ACTIONS(552), + [anon_sym_BANG_EQ] = ACTIONS(552), + [anon_sym_16] = ACTIONS(552), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_LT_EQ] = ACTIONS(552), + [anon_sym_17] = ACTIONS(552), + [anon_sym_GT] = ACTIONS(550), + [anon_sym_GT_EQ] = ACTIONS(552), + [anon_sym_18] = ACTIONS(552), + [anon_sym_PLUS] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(552), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_19] = ACTIONS(552), + [anon_sym_PERCENT] = ACTIONS(552), + [anon_sym_20] = ACTIONS(552), + [anon_sym_modulus] = ACTIONS(552), + [anon_sym_21] = ACTIONS(552), + [anon_sym_power] = ACTIONS(552), + [anon_sym_22] = ACTIONS(552), + [anon_sym_logarithm] = ACTIONS(552), + [anon_sym_23] = ACTIONS(552), + [anon_sym_minimum] = ACTIONS(552), + [anon_sym_24] = ACTIONS(552), + [anon_sym_maximum] = ACTIONS(552), + [anon_sym_25] = ACTIONS(552), + [anon_sym_atangent] = ACTIONS(552), + [anon_sym_26] = ACTIONS(552), + [anon_sym_length] = ACTIONS(552), + [anon_sym_27] = ACTIONS(552), + [anon_sym_shape] = ACTIONS(552), + [anon_sym_28] = ACTIONS(552), + [anon_sym_range] = ACTIONS(552), + [anon_sym_29] = ACTIONS(552), + [anon_sym_first] = ACTIONS(552), + [anon_sym_30] = ACTIONS(552), + [anon_sym_reverse] = ACTIONS(552), + [anon_sym_31] = ACTIONS(552), + [anon_sym_deshape] = ACTIONS(552), + [anon_sym_32] = ACTIONS(552), + [anon_sym_bits] = ACTIONS(552), + [anon_sym_33] = ACTIONS(552), + [anon_sym_transpose] = ACTIONS(552), + [anon_sym_34] = ACTIONS(552), + [anon_sym_rise] = ACTIONS(552), + [anon_sym_35] = ACTIONS(552), + [anon_sym_fall] = ACTIONS(552), + [anon_sym_36] = ACTIONS(552), + [anon_sym_where] = ACTIONS(552), + [anon_sym_37] = ACTIONS(552), + [anon_sym_classify] = ACTIONS(552), + [anon_sym_38] = ACTIONS(552), + [anon_sym_deduplicate] = ACTIONS(552), + [anon_sym_39] = ACTIONS(552), + [anon_sym_box] = ACTIONS(552), + [anon_sym_40] = ACTIONS(552), + [anon_sym_unbox] = ACTIONS(552), + [anon_sym_41] = ACTIONS(552), + [anon_sym_match] = ACTIONS(552), + [anon_sym_42] = ACTIONS(552), + [anon_sym_couple] = ACTIONS(552), + [anon_sym_43] = ACTIONS(552), + [anon_sym_join] = ACTIONS(552), + [anon_sym_44] = ACTIONS(552), + [anon_sym_select] = ACTIONS(552), + [anon_sym_45] = ACTIONS(552), + [anon_sym_pick] = ACTIONS(552), + [anon_sym_46] = ACTIONS(552), + [anon_sym_reshape] = ACTIONS(552), + [anon_sym_47] = ACTIONS(552), + [anon_sym_take] = ACTIONS(552), + [anon_sym_48] = ACTIONS(552), + [anon_sym_drop] = ACTIONS(552), + [anon_sym_49] = ACTIONS(552), + [anon_sym_rotate] = ACTIONS(552), + [anon_sym_50] = ACTIONS(552), + [anon_sym_windows] = ACTIONS(552), + [anon_sym_51] = ACTIONS(552), + [anon_sym_keep] = ACTIONS(552), + [anon_sym_52] = ACTIONS(552), + [anon_sym_find] = ACTIONS(552), + [anon_sym_53] = ACTIONS(552), + [anon_sym_member] = ACTIONS(552), + [anon_sym_54] = ACTIONS(552), + [anon_sym_indexof] = ACTIONS(552), + [anon_sym_55] = ACTIONS(552), + [anon_sym_assert] = ACTIONS(552), + [anon_sym_56] = ACTIONS(552), + [anon_sym_wait] = ACTIONS(552), + [anon_sym_break] = ACTIONS(552), + [anon_sym_57] = ACTIONS(552), + [anon_sym_parse] = ACTIONS(552), + [anon_sym_random] = ACTIONS(552), + [anon_sym_58] = ACTIONS(552), + [anon_sym_gen] = ACTIONS(552), + [anon_sym_deal] = ACTIONS(552), + [anon_sym_tag] = ACTIONS(552), + [anon_sym_now] = ACTIONS(552), + [anon_sym_type] = ACTIONS(552), + [anon_sym_59] = ACTIONS(552), + [anon_sym_dump] = ACTIONS(552), + [anon_sym_regex] = ACTIONS(552), + [anon_sym_utf] = ACTIONS(552), + [anon_sym_rock] = ACTIONS(552), + [anon_sym_60] = ACTIONS(552), + [anon_sym_surface] = ACTIONS(552), + [anon_sym_TILDE] = ACTIONS(552), + [anon_sym_deep] = ACTIONS(552), + [anon_sym_de] = ACTIONS(550), + [anon_sym_61] = ACTIONS(552), + [anon_sym_abyss] = ACTIONS(552), + [anon_sym_ab] = ACTIONS(550), + [anon_sym_62] = ACTIONS(552), + [anon_sym_seabed] = ACTIONS(552), + [anon_sym_se] = ACTIONS(550), + [anon_sym_63] = ACTIONS(552), + [anon_sym_send] = ACTIONS(552), + [anon_sym_recv] = ACTIONS(552), + [anon_sym_tryrecv] = ACTIONS(552), + [anon_sym_reduce] = ACTIONS(552), + [anon_sym_SLASH] = ACTIONS(552), + [anon_sym_scan] = ACTIONS(552), + [anon_sym_BSLASH] = ACTIONS(552), + [anon_sym_each] = ACTIONS(552), + [anon_sym_64] = ACTIONS(552), + [anon_sym_rows] = ACTIONS(552), + [anon_sym_65] = ACTIONS(552), + [anon_sym_repeat] = ACTIONS(552), + [anon_sym_66] = ACTIONS(552), + [anon_sym_dip] = ACTIONS(552), + [anon_sym_67] = ACTIONS(552), + [anon_sym_gap] = ACTIONS(552), + [anon_sym_68] = ACTIONS(552), + [anon_sym_69] = ACTIONS(552), + [anon_sym_invert] = ACTIONS(552), + [anon_sym_70] = ACTIONS(552), + [anon_sym_spawn] = ACTIONS(552), + [anon_sym_pack] = ACTIONS(552), + [anon_sym_71] = ACTIONS(552), + [anon_sym_tribute] = ACTIONS(552), + [anon_sym_72] = ACTIONS(552), + [anon_sym_reach] = ACTIONS(552), + [anon_sym_fold] = ACTIONS(552), + [anon_sym_73] = ACTIONS(552), + [anon_sym_distribute] = ACTIONS(552), + [anon_sym_74] = ACTIONS(552), + [anon_sym_table] = ACTIONS(552), + [anon_sym_75] = ACTIONS(552), + [anon_sym_cross] = ACTIONS(552), + [anon_sym_76] = ACTIONS(552), + [anon_sym_group] = ACTIONS(552), + [anon_sym_77] = ACTIONS(552), + [anon_sym_partition] = ACTIONS(552), + [anon_sym_78] = ACTIONS(552), + [anon_sym_both] = ACTIONS(552), + [anon_sym_79] = ACTIONS(552), + [anon_sym_bracket] = ACTIONS(552), + [anon_sym_80] = ACTIONS(552), + [anon_sym_fork] = ACTIONS(552), + [anon_sym_81] = ACTIONS(552), + [anon_sym_under] = ACTIONS(552), + [anon_sym_82] = ACTIONS(552), + [anon_sym_level] = ACTIONS(552), + [anon_sym_83] = ACTIONS(552), + [anon_sym_fill] = ACTIONS(552), + [anon_sym_84] = ACTIONS(552), + [anon_sym_bind] = ACTIONS(552), + [anon_sym_SQUOTE] = ACTIONS(552), + [anon_sym_QMARK] = ACTIONS(552), + [anon_sym_try] = ACTIONS(550), + [anon_sym_85] = ACTIONS(552), + [anon_sym_combinate] = ACTIONS(552), + [anon_sym_86] = ACTIONS(552), + [anon_sym_87] = ACTIONS(552), + [anon_sym_88] = ACTIONS(552), + [anon_sym_89] = ACTIONS(552), + [anon_sym_90] = ACTIONS(552), + [anon_sym_91] = ACTIONS(552), + [anon_sym_92] = ACTIONS(552), + [anon_sym_93] = ACTIONS(552), [sym__whitespace] = ACTIONS(5), [sym__end_of_line] = ACTIONS(5), }, [124] = { - [aux_sym_number_token1] = ACTIONS(572), - [anon_sym_os] = ACTIONS(572), - [anon_sym_Family] = ACTIONS(572), - [anon_sym_Arch] = ACTIONS(572), - [anon_sym_ExeExt] = ACTIONS(572), - [anon_sym_PllExt] = ACTIONS(572), - [anon_sym_Sep] = ACTIONS(572), - [aux_sym_character_token1] = ACTIONS(574), - [sym_string] = ACTIONS(574), - [sym_multiLineString] = ACTIONS(574), - [anon_sym_PIPE] = ACTIONS(574), - [sym_identifier] = ACTIONS(572), - [sym_identifier_deprecated] = ACTIONS(572), - [sym_system] = ACTIONS(574), + [aux_sym_number_token1] = ACTIONS(554), + [anon_sym_os] = ACTIONS(554), + [anon_sym_Family] = ACTIONS(554), + [anon_sym_Arch] = ACTIONS(554), + [anon_sym_ExeExt] = ACTIONS(554), + [anon_sym_PllExt] = ACTIONS(554), + [anon_sym_Sep] = ACTIONS(554), + [aux_sym_character_token1] = ACTIONS(556), + [sym_string] = ACTIONS(556), + [sym_multiLineString] = ACTIONS(556), + [anon_sym_PIPE] = ACTIONS(556), + [sym_identifier] = ACTIONS(554), + [sym_identifier_deprecated] = ACTIONS(554), + [sym_system] = ACTIONS(556), + [sym_comment] = ACTIONS(3), + [sym_openParen] = ACTIONS(556), + [sym_openCurly] = ACTIONS(556), + [sym_openBracket] = ACTIONS(556), + [anon_sym_CARET] = ACTIONS(556), + [anon_sym_eta] = ACTIONS(556), + [anon_sym_] = ACTIONS(554), + [anon_sym_pi] = ACTIONS(554), + [anon_sym_2] = ACTIONS(554), + [anon_sym_tau] = ACTIONS(556), + [anon_sym_3] = ACTIONS(554), + [anon_sym_infinity] = ACTIONS(556), + [anon_sym_4] = ACTIONS(556), + [anon_sym_e] = ACTIONS(554), + [anon_sym_NaN] = ACTIONS(554), + [anon_sym_NumProcs] = ACTIONS(554), + [anon_sym_DOT] = ACTIONS(556), + [anon_sym_COMMA] = ACTIONS(556), + [anon_sym_5] = ACTIONS(556), + [anon_sym_SEMI] = ACTIONS(556), + [anon_sym_identity] = ACTIONS(556), + [anon_sym_id] = ACTIONS(554), + [anon_sym_6] = ACTIONS(556), + [anon_sym_not] = ACTIONS(556), + [anon_sym_7] = ACTIONS(556), + [anon_sym_sign] = ACTIONS(556), + [anon_sym_8] = ACTIONS(556), + [anon_sym_BQUOTE] = ACTIONS(556), + [anon_sym_9] = ACTIONS(556), + [anon_sym_absolutevalue] = ACTIONS(556), + [anon_sym_10] = ACTIONS(556), + [anon_sym_sqrt] = ACTIONS(556), + [anon_sym_11] = ACTIONS(556), + [anon_sym_sine] = ACTIONS(556), + [anon_sym_12] = ACTIONS(556), + [anon_sym_floor] = ACTIONS(556), + [anon_sym_13] = ACTIONS(556), + [anon_sym_ceiling] = ACTIONS(556), + [anon_sym_14] = ACTIONS(556), + [anon_sym_round] = ACTIONS(556), + [anon_sym_15] = ACTIONS(556), + [anon_sym_EQ] = ACTIONS(556), + [anon_sym_BANG_EQ] = ACTIONS(556), + [anon_sym_16] = ACTIONS(556), + [anon_sym_LT] = ACTIONS(554), + [anon_sym_LT_EQ] = ACTIONS(556), + [anon_sym_17] = ACTIONS(556), + [anon_sym_GT] = ACTIONS(554), + [anon_sym_GT_EQ] = ACTIONS(556), + [anon_sym_18] = ACTIONS(556), + [anon_sym_PLUS] = ACTIONS(556), + [anon_sym_DASH] = ACTIONS(556), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_19] = ACTIONS(556), + [anon_sym_PERCENT] = ACTIONS(556), + [anon_sym_20] = ACTIONS(556), + [anon_sym_modulus] = ACTIONS(556), + [anon_sym_21] = ACTIONS(556), + [anon_sym_power] = ACTIONS(556), + [anon_sym_22] = ACTIONS(556), + [anon_sym_logarithm] = ACTIONS(556), + [anon_sym_23] = ACTIONS(556), + [anon_sym_minimum] = ACTIONS(556), + [anon_sym_24] = ACTIONS(556), + [anon_sym_maximum] = ACTIONS(556), + [anon_sym_25] = ACTIONS(556), + [anon_sym_atangent] = ACTIONS(556), + [anon_sym_26] = ACTIONS(556), + [anon_sym_length] = ACTIONS(556), + [anon_sym_27] = ACTIONS(556), + [anon_sym_shape] = ACTIONS(556), + [anon_sym_28] = ACTIONS(556), + [anon_sym_range] = ACTIONS(556), + [anon_sym_29] = ACTIONS(556), + [anon_sym_first] = ACTIONS(556), + [anon_sym_30] = ACTIONS(556), + [anon_sym_reverse] = ACTIONS(556), + [anon_sym_31] = ACTIONS(556), + [anon_sym_deshape] = ACTIONS(556), + [anon_sym_32] = ACTIONS(556), + [anon_sym_bits] = ACTIONS(556), + [anon_sym_33] = ACTIONS(556), + [anon_sym_transpose] = ACTIONS(556), + [anon_sym_34] = ACTIONS(556), + [anon_sym_rise] = ACTIONS(556), + [anon_sym_35] = ACTIONS(556), + [anon_sym_fall] = ACTIONS(556), + [anon_sym_36] = ACTIONS(556), + [anon_sym_where] = ACTIONS(556), + [anon_sym_37] = ACTIONS(556), + [anon_sym_classify] = ACTIONS(556), + [anon_sym_38] = ACTIONS(556), + [anon_sym_deduplicate] = ACTIONS(556), + [anon_sym_39] = ACTIONS(556), + [anon_sym_box] = ACTIONS(556), + [anon_sym_40] = ACTIONS(556), + [anon_sym_unbox] = ACTIONS(556), + [anon_sym_41] = ACTIONS(556), + [anon_sym_match] = ACTIONS(556), + [anon_sym_42] = ACTIONS(556), + [anon_sym_couple] = ACTIONS(556), + [anon_sym_43] = ACTIONS(556), + [anon_sym_join] = ACTIONS(556), + [anon_sym_44] = ACTIONS(556), + [anon_sym_select] = ACTIONS(556), + [anon_sym_45] = ACTIONS(556), + [anon_sym_pick] = ACTIONS(556), + [anon_sym_46] = ACTIONS(556), + [anon_sym_reshape] = ACTIONS(556), + [anon_sym_47] = ACTIONS(556), + [anon_sym_take] = ACTIONS(556), + [anon_sym_48] = ACTIONS(556), + [anon_sym_drop] = ACTIONS(556), + [anon_sym_49] = ACTIONS(556), + [anon_sym_rotate] = ACTIONS(556), + [anon_sym_50] = ACTIONS(556), + [anon_sym_windows] = ACTIONS(556), + [anon_sym_51] = ACTIONS(556), + [anon_sym_keep] = ACTIONS(556), + [anon_sym_52] = ACTIONS(556), + [anon_sym_find] = ACTIONS(556), + [anon_sym_53] = ACTIONS(556), + [anon_sym_member] = ACTIONS(556), + [anon_sym_54] = ACTIONS(556), + [anon_sym_indexof] = ACTIONS(556), + [anon_sym_55] = ACTIONS(556), + [anon_sym_assert] = ACTIONS(556), + [anon_sym_56] = ACTIONS(556), + [anon_sym_wait] = ACTIONS(556), + [anon_sym_break] = ACTIONS(556), + [anon_sym_57] = ACTIONS(556), + [anon_sym_parse] = ACTIONS(556), + [anon_sym_random] = ACTIONS(556), + [anon_sym_58] = ACTIONS(556), + [anon_sym_gen] = ACTIONS(556), + [anon_sym_deal] = ACTIONS(556), + [anon_sym_tag] = ACTIONS(556), + [anon_sym_now] = ACTIONS(556), + [anon_sym_type] = ACTIONS(556), + [anon_sym_59] = ACTIONS(556), + [anon_sym_dump] = ACTIONS(556), + [anon_sym_regex] = ACTIONS(556), + [anon_sym_utf] = ACTIONS(556), + [anon_sym_rock] = ACTIONS(556), + [anon_sym_60] = ACTIONS(556), + [anon_sym_surface] = ACTIONS(556), + [anon_sym_TILDE] = ACTIONS(556), + [anon_sym_deep] = ACTIONS(556), + [anon_sym_de] = ACTIONS(554), + [anon_sym_61] = ACTIONS(556), + [anon_sym_abyss] = ACTIONS(556), + [anon_sym_ab] = ACTIONS(554), + [anon_sym_62] = ACTIONS(556), + [anon_sym_seabed] = ACTIONS(556), + [anon_sym_se] = ACTIONS(554), + [anon_sym_63] = ACTIONS(556), + [anon_sym_send] = ACTIONS(556), + [anon_sym_recv] = ACTIONS(556), + [anon_sym_tryrecv] = ACTIONS(556), + [anon_sym_reduce] = ACTIONS(556), + [anon_sym_SLASH] = ACTIONS(556), + [anon_sym_scan] = ACTIONS(556), + [anon_sym_BSLASH] = ACTIONS(556), + [anon_sym_each] = ACTIONS(556), + [anon_sym_64] = ACTIONS(556), + [anon_sym_rows] = ACTIONS(556), + [anon_sym_65] = ACTIONS(556), + [anon_sym_repeat] = ACTIONS(556), + [anon_sym_66] = ACTIONS(556), + [anon_sym_dip] = ACTIONS(556), + [anon_sym_67] = ACTIONS(556), + [anon_sym_gap] = ACTIONS(556), + [anon_sym_68] = ACTIONS(556), + [anon_sym_69] = ACTIONS(556), + [anon_sym_invert] = ACTIONS(556), + [anon_sym_70] = ACTIONS(556), + [anon_sym_spawn] = ACTIONS(556), + [anon_sym_pack] = ACTIONS(556), + [anon_sym_71] = ACTIONS(556), + [anon_sym_tribute] = ACTIONS(556), + [anon_sym_72] = ACTIONS(556), + [anon_sym_reach] = ACTIONS(556), + [anon_sym_fold] = ACTIONS(556), + [anon_sym_73] = ACTIONS(556), + [anon_sym_distribute] = ACTIONS(556), + [anon_sym_74] = ACTIONS(556), + [anon_sym_table] = ACTIONS(556), + [anon_sym_75] = ACTIONS(556), + [anon_sym_cross] = ACTIONS(556), + [anon_sym_76] = ACTIONS(556), + [anon_sym_group] = ACTIONS(556), + [anon_sym_77] = ACTIONS(556), + [anon_sym_partition] = ACTIONS(556), + [anon_sym_78] = ACTIONS(556), + [anon_sym_both] = ACTIONS(556), + [anon_sym_79] = ACTIONS(556), + [anon_sym_bracket] = ACTIONS(556), + [anon_sym_80] = ACTIONS(556), + [anon_sym_fork] = ACTIONS(556), + [anon_sym_81] = ACTIONS(556), + [anon_sym_under] = ACTIONS(556), + [anon_sym_82] = ACTIONS(556), + [anon_sym_level] = ACTIONS(556), + [anon_sym_83] = ACTIONS(556), + [anon_sym_fill] = ACTIONS(556), + [anon_sym_84] = ACTIONS(556), + [anon_sym_bind] = ACTIONS(556), + [anon_sym_SQUOTE] = ACTIONS(556), + [anon_sym_QMARK] = ACTIONS(556), + [anon_sym_try] = ACTIONS(554), + [anon_sym_85] = ACTIONS(556), + [anon_sym_combinate] = ACTIONS(556), + [anon_sym_86] = ACTIONS(556), + [anon_sym_87] = ACTIONS(556), + [anon_sym_88] = ACTIONS(556), + [anon_sym_89] = ACTIONS(556), + [anon_sym_90] = ACTIONS(556), + [anon_sym_91] = ACTIONS(556), + [anon_sym_92] = ACTIONS(556), + [anon_sym_93] = ACTIONS(556), + [sym__whitespace] = ACTIONS(5), + [sym__end_of_line] = ACTIONS(5), + }, + [125] = { + [aux_sym_number_token1] = ACTIONS(558), + [anon_sym_os] = ACTIONS(558), + [anon_sym_Family] = ACTIONS(558), + [anon_sym_Arch] = ACTIONS(558), + [anon_sym_ExeExt] = ACTIONS(558), + [anon_sym_PllExt] = ACTIONS(558), + [anon_sym_Sep] = ACTIONS(558), + [aux_sym_character_token1] = ACTIONS(560), + [sym_string] = ACTIONS(560), + [sym_multiLineString] = ACTIONS(560), + [anon_sym_PIPE] = ACTIONS(560), + [sym_identifier] = ACTIONS(558), + [sym_identifier_deprecated] = ACTIONS(558), + [sym_system] = ACTIONS(560), + [sym_comment] = ACTIONS(3), + [sym_openParen] = ACTIONS(560), + [sym_openCurly] = ACTIONS(560), + [sym_openBracket] = ACTIONS(560), + [anon_sym_CARET] = ACTIONS(560), + [anon_sym_eta] = ACTIONS(560), + [anon_sym_] = ACTIONS(558), + [anon_sym_pi] = ACTIONS(558), + [anon_sym_2] = ACTIONS(558), + [anon_sym_tau] = ACTIONS(560), + [anon_sym_3] = ACTIONS(558), + [anon_sym_infinity] = ACTIONS(560), + [anon_sym_4] = ACTIONS(560), + [anon_sym_e] = ACTIONS(558), + [anon_sym_NaN] = ACTIONS(558), + [anon_sym_NumProcs] = ACTIONS(558), + [anon_sym_DOT] = ACTIONS(560), + [anon_sym_COMMA] = ACTIONS(560), + [anon_sym_5] = ACTIONS(560), + [anon_sym_SEMI] = ACTIONS(560), + [anon_sym_identity] = ACTIONS(560), + [anon_sym_id] = ACTIONS(558), + [anon_sym_6] = ACTIONS(560), + [anon_sym_not] = ACTIONS(560), + [anon_sym_7] = ACTIONS(560), + [anon_sym_sign] = ACTIONS(560), + [anon_sym_8] = ACTIONS(560), + [anon_sym_BQUOTE] = ACTIONS(560), + [anon_sym_9] = ACTIONS(560), + [anon_sym_absolutevalue] = ACTIONS(560), + [anon_sym_10] = ACTIONS(560), + [anon_sym_sqrt] = ACTIONS(560), + [anon_sym_11] = ACTIONS(560), + [anon_sym_sine] = ACTIONS(560), + [anon_sym_12] = ACTIONS(560), + [anon_sym_floor] = ACTIONS(560), + [anon_sym_13] = ACTIONS(560), + [anon_sym_ceiling] = ACTIONS(560), + [anon_sym_14] = ACTIONS(560), + [anon_sym_round] = ACTIONS(560), + [anon_sym_15] = ACTIONS(560), + [anon_sym_EQ] = ACTIONS(560), + [anon_sym_BANG_EQ] = ACTIONS(560), + [anon_sym_16] = ACTIONS(560), + [anon_sym_LT] = ACTIONS(558), + [anon_sym_LT_EQ] = ACTIONS(560), + [anon_sym_17] = ACTIONS(560), + [anon_sym_GT] = ACTIONS(558), + [anon_sym_GT_EQ] = ACTIONS(560), + [anon_sym_18] = ACTIONS(560), + [anon_sym_PLUS] = ACTIONS(560), + [anon_sym_DASH] = ACTIONS(560), + [anon_sym_STAR] = ACTIONS(560), + [anon_sym_19] = ACTIONS(560), + [anon_sym_PERCENT] = ACTIONS(560), + [anon_sym_20] = ACTIONS(560), + [anon_sym_modulus] = ACTIONS(560), + [anon_sym_21] = ACTIONS(560), + [anon_sym_power] = ACTIONS(560), + [anon_sym_22] = ACTIONS(560), + [anon_sym_logarithm] = ACTIONS(560), + [anon_sym_23] = ACTIONS(560), + [anon_sym_minimum] = ACTIONS(560), + [anon_sym_24] = ACTIONS(560), + [anon_sym_maximum] = ACTIONS(560), + [anon_sym_25] = ACTIONS(560), + [anon_sym_atangent] = ACTIONS(560), + [anon_sym_26] = ACTIONS(560), + [anon_sym_length] = ACTIONS(560), + [anon_sym_27] = ACTIONS(560), + [anon_sym_shape] = ACTIONS(560), + [anon_sym_28] = ACTIONS(560), + [anon_sym_range] = ACTIONS(560), + [anon_sym_29] = ACTIONS(560), + [anon_sym_first] = ACTIONS(560), + [anon_sym_30] = ACTIONS(560), + [anon_sym_reverse] = ACTIONS(560), + [anon_sym_31] = ACTIONS(560), + [anon_sym_deshape] = ACTIONS(560), + [anon_sym_32] = ACTIONS(560), + [anon_sym_bits] = ACTIONS(560), + [anon_sym_33] = ACTIONS(560), + [anon_sym_transpose] = ACTIONS(560), + [anon_sym_34] = ACTIONS(560), + [anon_sym_rise] = ACTIONS(560), + [anon_sym_35] = ACTIONS(560), + [anon_sym_fall] = ACTIONS(560), + [anon_sym_36] = ACTIONS(560), + [anon_sym_where] = ACTIONS(560), + [anon_sym_37] = ACTIONS(560), + [anon_sym_classify] = ACTIONS(560), + [anon_sym_38] = ACTIONS(560), + [anon_sym_deduplicate] = ACTIONS(560), + [anon_sym_39] = ACTIONS(560), + [anon_sym_box] = ACTIONS(560), + [anon_sym_40] = ACTIONS(560), + [anon_sym_unbox] = ACTIONS(560), + [anon_sym_41] = ACTIONS(560), + [anon_sym_match] = ACTIONS(560), + [anon_sym_42] = ACTIONS(560), + [anon_sym_couple] = ACTIONS(560), + [anon_sym_43] = ACTIONS(560), + [anon_sym_join] = ACTIONS(560), + [anon_sym_44] = ACTIONS(560), + [anon_sym_select] = ACTIONS(560), + [anon_sym_45] = ACTIONS(560), + [anon_sym_pick] = ACTIONS(560), + [anon_sym_46] = ACTIONS(560), + [anon_sym_reshape] = ACTIONS(560), + [anon_sym_47] = ACTIONS(560), + [anon_sym_take] = ACTIONS(560), + [anon_sym_48] = ACTIONS(560), + [anon_sym_drop] = ACTIONS(560), + [anon_sym_49] = ACTIONS(560), + [anon_sym_rotate] = ACTIONS(560), + [anon_sym_50] = ACTIONS(560), + [anon_sym_windows] = ACTIONS(560), + [anon_sym_51] = ACTIONS(560), + [anon_sym_keep] = ACTIONS(560), + [anon_sym_52] = ACTIONS(560), + [anon_sym_find] = ACTIONS(560), + [anon_sym_53] = ACTIONS(560), + [anon_sym_member] = ACTIONS(560), + [anon_sym_54] = ACTIONS(560), + [anon_sym_indexof] = ACTIONS(560), + [anon_sym_55] = ACTIONS(560), + [anon_sym_assert] = ACTIONS(560), + [anon_sym_56] = ACTIONS(560), + [anon_sym_wait] = ACTIONS(560), + [anon_sym_break] = ACTIONS(560), + [anon_sym_57] = ACTIONS(560), + [anon_sym_parse] = ACTIONS(560), + [anon_sym_random] = ACTIONS(560), + [anon_sym_58] = ACTIONS(560), + [anon_sym_gen] = ACTIONS(560), + [anon_sym_deal] = ACTIONS(560), + [anon_sym_tag] = ACTIONS(560), + [anon_sym_now] = ACTIONS(560), + [anon_sym_type] = ACTIONS(560), + [anon_sym_59] = ACTIONS(560), + [anon_sym_dump] = ACTIONS(560), + [anon_sym_regex] = ACTIONS(560), + [anon_sym_utf] = ACTIONS(560), + [anon_sym_rock] = ACTIONS(560), + [anon_sym_60] = ACTIONS(560), + [anon_sym_surface] = ACTIONS(560), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_deep] = ACTIONS(560), + [anon_sym_de] = ACTIONS(558), + [anon_sym_61] = ACTIONS(560), + [anon_sym_abyss] = ACTIONS(560), + [anon_sym_ab] = ACTIONS(558), + [anon_sym_62] = ACTIONS(560), + [anon_sym_seabed] = ACTIONS(560), + [anon_sym_se] = ACTIONS(558), + [anon_sym_63] = ACTIONS(560), + [anon_sym_send] = ACTIONS(560), + [anon_sym_recv] = ACTIONS(560), + [anon_sym_tryrecv] = ACTIONS(560), + [anon_sym_reduce] = ACTIONS(560), + [anon_sym_SLASH] = ACTIONS(560), + [anon_sym_scan] = ACTIONS(560), + [anon_sym_BSLASH] = ACTIONS(560), + [anon_sym_each] = ACTIONS(560), + [anon_sym_64] = ACTIONS(560), + [anon_sym_rows] = ACTIONS(560), + [anon_sym_65] = ACTIONS(560), + [anon_sym_repeat] = ACTIONS(560), + [anon_sym_66] = ACTIONS(560), + [anon_sym_dip] = ACTIONS(560), + [anon_sym_67] = ACTIONS(560), + [anon_sym_gap] = ACTIONS(560), + [anon_sym_68] = ACTIONS(560), + [anon_sym_69] = ACTIONS(560), + [anon_sym_invert] = ACTIONS(560), + [anon_sym_70] = ACTIONS(560), + [anon_sym_spawn] = ACTIONS(560), + [anon_sym_pack] = ACTIONS(560), + [anon_sym_71] = ACTIONS(560), + [anon_sym_tribute] = ACTIONS(560), + [anon_sym_72] = ACTIONS(560), + [anon_sym_reach] = ACTIONS(560), + [anon_sym_fold] = ACTIONS(560), + [anon_sym_73] = ACTIONS(560), + [anon_sym_distribute] = ACTIONS(560), + [anon_sym_74] = ACTIONS(560), + [anon_sym_table] = ACTIONS(560), + [anon_sym_75] = ACTIONS(560), + [anon_sym_cross] = ACTIONS(560), + [anon_sym_76] = ACTIONS(560), + [anon_sym_group] = ACTIONS(560), + [anon_sym_77] = ACTIONS(560), + [anon_sym_partition] = ACTIONS(560), + [anon_sym_78] = ACTIONS(560), + [anon_sym_both] = ACTIONS(560), + [anon_sym_79] = ACTIONS(560), + [anon_sym_bracket] = ACTIONS(560), + [anon_sym_80] = ACTIONS(560), + [anon_sym_fork] = ACTIONS(560), + [anon_sym_81] = ACTIONS(560), + [anon_sym_under] = ACTIONS(560), + [anon_sym_82] = ACTIONS(560), + [anon_sym_level] = ACTIONS(560), + [anon_sym_83] = ACTIONS(560), + [anon_sym_fill] = ACTIONS(560), + [anon_sym_84] = ACTIONS(560), + [anon_sym_bind] = ACTIONS(560), + [anon_sym_SQUOTE] = ACTIONS(560), + [anon_sym_QMARK] = ACTIONS(560), + [anon_sym_try] = ACTIONS(558), + [anon_sym_85] = ACTIONS(560), + [anon_sym_combinate] = ACTIONS(560), + [anon_sym_86] = ACTIONS(560), + [anon_sym_87] = ACTIONS(560), + [anon_sym_88] = ACTIONS(560), + [anon_sym_89] = ACTIONS(560), + [anon_sym_90] = ACTIONS(560), + [anon_sym_91] = ACTIONS(560), + [anon_sym_92] = ACTIONS(560), + [anon_sym_93] = ACTIONS(560), + [sym__whitespace] = ACTIONS(5), + [sym__end_of_line] = ACTIONS(5), + }, + [126] = { + [sym_function] = STATE(152), + [anon_sym_PIPE] = ACTIONS(402), + [sym_identifier] = ACTIONS(562), + [sym_system] = ACTIONS(564), + [sym_comment] = ACTIONS(3), + [sym_closeParen] = ACTIONS(402), + [sym_underscore] = ACTIONS(402), + [anon_sym_DOT] = ACTIONS(334), + [anon_sym_COMMA] = ACTIONS(334), + [anon_sym_5] = ACTIONS(334), + [anon_sym_SEMI] = ACTIONS(334), + [anon_sym_identity] = ACTIONS(334), + [anon_sym_id] = ACTIONS(336), + [anon_sym_6] = ACTIONS(334), + [anon_sym_not] = ACTIONS(334), + [anon_sym_7] = ACTIONS(334), + [anon_sym_sign] = ACTIONS(334), + [anon_sym_8] = ACTIONS(334), + [anon_sym_BQUOTE] = ACTIONS(334), + [anon_sym_9] = ACTIONS(334), + [anon_sym_absolutevalue] = ACTIONS(334), + [anon_sym_10] = ACTIONS(334), + [anon_sym_sqrt] = ACTIONS(334), + [anon_sym_11] = ACTIONS(334), + [anon_sym_sine] = ACTIONS(334), + [anon_sym_12] = ACTIONS(334), + [anon_sym_floor] = ACTIONS(334), + [anon_sym_13] = ACTIONS(334), + [anon_sym_ceiling] = ACTIONS(334), + [anon_sym_14] = ACTIONS(334), + [anon_sym_round] = ACTIONS(334), + [anon_sym_15] = ACTIONS(334), + [anon_sym_EQ] = ACTIONS(334), + [anon_sym_BANG_EQ] = ACTIONS(334), + [anon_sym_16] = ACTIONS(334), + [anon_sym_LT] = ACTIONS(336), + [anon_sym_LT_EQ] = ACTIONS(334), + [anon_sym_17] = ACTIONS(334), + [anon_sym_GT] = ACTIONS(336), + [anon_sym_GT_EQ] = ACTIONS(334), + [anon_sym_18] = ACTIONS(334), + [anon_sym_PLUS] = ACTIONS(334), + [anon_sym_DASH] = ACTIONS(334), + [anon_sym_STAR] = ACTIONS(334), + [anon_sym_19] = ACTIONS(334), + [anon_sym_PERCENT] = ACTIONS(334), + [anon_sym_20] = ACTIONS(334), + [anon_sym_modulus] = ACTIONS(334), + [anon_sym_21] = ACTIONS(334), + [anon_sym_power] = ACTIONS(334), + [anon_sym_22] = ACTIONS(334), + [anon_sym_logarithm] = ACTIONS(334), + [anon_sym_23] = ACTIONS(334), + [anon_sym_minimum] = ACTIONS(334), + [anon_sym_24] = ACTIONS(334), + [anon_sym_maximum] = ACTIONS(334), + [anon_sym_25] = ACTIONS(334), + [anon_sym_atangent] = ACTIONS(334), + [anon_sym_26] = ACTIONS(334), + [anon_sym_length] = ACTIONS(334), + [anon_sym_27] = ACTIONS(334), + [anon_sym_shape] = ACTIONS(334), + [anon_sym_28] = ACTIONS(334), + [anon_sym_range] = ACTIONS(334), + [anon_sym_29] = ACTIONS(334), + [anon_sym_first] = ACTIONS(334), + [anon_sym_30] = ACTIONS(334), + [anon_sym_reverse] = ACTIONS(334), + [anon_sym_31] = ACTIONS(334), + [anon_sym_deshape] = ACTIONS(334), + [anon_sym_32] = ACTIONS(334), + [anon_sym_bits] = ACTIONS(334), + [anon_sym_33] = ACTIONS(334), + [anon_sym_transpose] = ACTIONS(334), + [anon_sym_34] = ACTIONS(334), + [anon_sym_rise] = ACTIONS(334), + [anon_sym_35] = ACTIONS(334), + [anon_sym_fall] = ACTIONS(334), + [anon_sym_36] = ACTIONS(334), + [anon_sym_where] = ACTIONS(334), + [anon_sym_37] = ACTIONS(334), + [anon_sym_classify] = ACTIONS(334), + [anon_sym_38] = ACTIONS(334), + [anon_sym_deduplicate] = ACTIONS(334), + [anon_sym_39] = ACTIONS(334), + [anon_sym_box] = ACTIONS(334), + [anon_sym_40] = ACTIONS(334), + [anon_sym_unbox] = ACTIONS(334), + [anon_sym_41] = ACTIONS(334), + [anon_sym_match] = ACTIONS(334), + [anon_sym_42] = ACTIONS(334), + [anon_sym_couple] = ACTIONS(334), + [anon_sym_43] = ACTIONS(334), + [anon_sym_join] = ACTIONS(334), + [anon_sym_44] = ACTIONS(334), + [anon_sym_select] = ACTIONS(334), + [anon_sym_45] = ACTIONS(334), + [anon_sym_pick] = ACTIONS(334), + [anon_sym_46] = ACTIONS(334), + [anon_sym_reshape] = ACTIONS(334), + [anon_sym_47] = ACTIONS(334), + [anon_sym_take] = ACTIONS(334), + [anon_sym_48] = ACTIONS(334), + [anon_sym_drop] = ACTIONS(334), + [anon_sym_49] = ACTIONS(334), + [anon_sym_rotate] = ACTIONS(334), + [anon_sym_50] = ACTIONS(334), + [anon_sym_windows] = ACTIONS(334), + [anon_sym_51] = ACTIONS(334), + [anon_sym_keep] = ACTIONS(334), + [anon_sym_52] = ACTIONS(334), + [anon_sym_find] = ACTIONS(334), + [anon_sym_53] = ACTIONS(334), + [anon_sym_member] = ACTIONS(334), + [anon_sym_54] = ACTIONS(334), + [anon_sym_indexof] = ACTIONS(334), + [anon_sym_55] = ACTIONS(334), + [anon_sym_assert] = ACTIONS(334), + [anon_sym_56] = ACTIONS(334), + [anon_sym_wait] = ACTIONS(334), + [anon_sym_break] = ACTIONS(334), + [anon_sym_57] = ACTIONS(334), + [anon_sym_parse] = ACTIONS(334), + [anon_sym_random] = ACTIONS(334), + [anon_sym_58] = ACTIONS(334), + [anon_sym_gen] = ACTIONS(334), + [anon_sym_deal] = ACTIONS(334), + [anon_sym_tag] = ACTIONS(334), + [anon_sym_now] = ACTIONS(334), + [anon_sym_type] = ACTIONS(334), + [anon_sym_59] = ACTIONS(334), + [anon_sym_dump] = ACTIONS(334), + [anon_sym_regex] = ACTIONS(334), + [anon_sym_utf] = ACTIONS(334), + [anon_sym_rock] = ACTIONS(334), + [anon_sym_60] = ACTIONS(334), + [anon_sym_surface] = ACTIONS(334), + [anon_sym_TILDE] = ACTIONS(334), + [anon_sym_deep] = ACTIONS(334), + [anon_sym_de] = ACTIONS(336), + [anon_sym_61] = ACTIONS(334), + [anon_sym_abyss] = ACTIONS(334), + [anon_sym_ab] = ACTIONS(336), + [anon_sym_62] = ACTIONS(334), + [anon_sym_seabed] = ACTIONS(334), + [anon_sym_se] = ACTIONS(336), + [anon_sym_63] = ACTIONS(334), + [anon_sym_send] = ACTIONS(334), + [anon_sym_recv] = ACTIONS(334), + [anon_sym_tryrecv] = ACTIONS(334), + [sym__whitespace] = ACTIONS(5), + [sym__end_of_line] = ACTIONS(5), + }, + [127] = { + [sym_function] = STATE(145), + [anon_sym_PIPE] = ACTIONS(414), + [sym_identifier] = ACTIONS(566), + [sym_system] = ACTIONS(568), [sym_comment] = ACTIONS(3), - [sym_openParen] = ACTIONS(574), - [sym_openCurly] = ACTIONS(574), - [sym_openBracket] = ACTIONS(574), - [anon_sym_CARET] = ACTIONS(574), - [anon_sym_eta] = ACTIONS(574), - [anon_sym_] = ACTIONS(572), - [anon_sym_pi] = ACTIONS(572), - [anon_sym_2] = ACTIONS(572), - [anon_sym_tau] = ACTIONS(574), - [anon_sym_3] = ACTIONS(572), - [anon_sym_infinity] = ACTIONS(574), - [anon_sym_4] = ACTIONS(574), - [anon_sym_e] = ACTIONS(572), - [anon_sym_NaN] = ACTIONS(572), - [anon_sym_NumProcs] = ACTIONS(572), + [sym_closeParen] = ACTIONS(414), + [sym_underscore] = ACTIONS(414), + [anon_sym_DOT] = ACTIONS(334), + [anon_sym_COMMA] = ACTIONS(334), + [anon_sym_5] = ACTIONS(334), + [anon_sym_SEMI] = ACTIONS(334), + [anon_sym_identity] = ACTIONS(334), + [anon_sym_id] = ACTIONS(336), + [anon_sym_6] = ACTIONS(334), + [anon_sym_not] = ACTIONS(334), + [anon_sym_7] = ACTIONS(334), + [anon_sym_sign] = ACTIONS(334), + [anon_sym_8] = ACTIONS(334), + [anon_sym_BQUOTE] = ACTIONS(334), + [anon_sym_9] = ACTIONS(334), + [anon_sym_absolutevalue] = ACTIONS(334), + [anon_sym_10] = ACTIONS(334), + [anon_sym_sqrt] = ACTIONS(334), + [anon_sym_11] = ACTIONS(334), + [anon_sym_sine] = ACTIONS(334), + [anon_sym_12] = ACTIONS(334), + [anon_sym_floor] = ACTIONS(334), + [anon_sym_13] = ACTIONS(334), + [anon_sym_ceiling] = ACTIONS(334), + [anon_sym_14] = ACTIONS(334), + [anon_sym_round] = ACTIONS(334), + [anon_sym_15] = ACTIONS(334), + [anon_sym_EQ] = ACTIONS(334), + [anon_sym_BANG_EQ] = ACTIONS(334), + [anon_sym_16] = ACTIONS(334), + [anon_sym_LT] = ACTIONS(336), + [anon_sym_LT_EQ] = ACTIONS(334), + [anon_sym_17] = ACTIONS(334), + [anon_sym_GT] = ACTIONS(336), + [anon_sym_GT_EQ] = ACTIONS(334), + [anon_sym_18] = ACTIONS(334), + [anon_sym_PLUS] = ACTIONS(334), + [anon_sym_DASH] = ACTIONS(334), + [anon_sym_STAR] = ACTIONS(334), + [anon_sym_19] = ACTIONS(334), + [anon_sym_PERCENT] = ACTIONS(334), + [anon_sym_20] = ACTIONS(334), + [anon_sym_modulus] = ACTIONS(334), + [anon_sym_21] = ACTIONS(334), + [anon_sym_power] = ACTIONS(334), + [anon_sym_22] = ACTIONS(334), + [anon_sym_logarithm] = ACTIONS(334), + [anon_sym_23] = ACTIONS(334), + [anon_sym_minimum] = ACTIONS(334), + [anon_sym_24] = ACTIONS(334), + [anon_sym_maximum] = ACTIONS(334), + [anon_sym_25] = ACTIONS(334), + [anon_sym_atangent] = ACTIONS(334), + [anon_sym_26] = ACTIONS(334), + [anon_sym_length] = ACTIONS(334), + [anon_sym_27] = ACTIONS(334), + [anon_sym_shape] = ACTIONS(334), + [anon_sym_28] = ACTIONS(334), + [anon_sym_range] = ACTIONS(334), + [anon_sym_29] = ACTIONS(334), + [anon_sym_first] = ACTIONS(334), + [anon_sym_30] = ACTIONS(334), + [anon_sym_reverse] = ACTIONS(334), + [anon_sym_31] = ACTIONS(334), + [anon_sym_deshape] = ACTIONS(334), + [anon_sym_32] = ACTIONS(334), + [anon_sym_bits] = ACTIONS(334), + [anon_sym_33] = ACTIONS(334), + [anon_sym_transpose] = ACTIONS(334), + [anon_sym_34] = ACTIONS(334), + [anon_sym_rise] = ACTIONS(334), + [anon_sym_35] = ACTIONS(334), + [anon_sym_fall] = ACTIONS(334), + [anon_sym_36] = ACTIONS(334), + [anon_sym_where] = ACTIONS(334), + [anon_sym_37] = ACTIONS(334), + [anon_sym_classify] = ACTIONS(334), + [anon_sym_38] = ACTIONS(334), + [anon_sym_deduplicate] = ACTIONS(334), + [anon_sym_39] = ACTIONS(334), + [anon_sym_box] = ACTIONS(334), + [anon_sym_40] = ACTIONS(334), + [anon_sym_unbox] = ACTIONS(334), + [anon_sym_41] = ACTIONS(334), + [anon_sym_match] = ACTIONS(334), + [anon_sym_42] = ACTIONS(334), + [anon_sym_couple] = ACTIONS(334), + [anon_sym_43] = ACTIONS(334), + [anon_sym_join] = ACTIONS(334), + [anon_sym_44] = ACTIONS(334), + [anon_sym_select] = ACTIONS(334), + [anon_sym_45] = ACTIONS(334), + [anon_sym_pick] = ACTIONS(334), + [anon_sym_46] = ACTIONS(334), + [anon_sym_reshape] = ACTIONS(334), + [anon_sym_47] = ACTIONS(334), + [anon_sym_take] = ACTIONS(334), + [anon_sym_48] = ACTIONS(334), + [anon_sym_drop] = ACTIONS(334), + [anon_sym_49] = ACTIONS(334), + [anon_sym_rotate] = ACTIONS(334), + [anon_sym_50] = ACTIONS(334), + [anon_sym_windows] = ACTIONS(334), + [anon_sym_51] = ACTIONS(334), + [anon_sym_keep] = ACTIONS(334), + [anon_sym_52] = ACTIONS(334), + [anon_sym_find] = ACTIONS(334), + [anon_sym_53] = ACTIONS(334), + [anon_sym_member] = ACTIONS(334), + [anon_sym_54] = ACTIONS(334), + [anon_sym_indexof] = ACTIONS(334), + [anon_sym_55] = ACTIONS(334), + [anon_sym_assert] = ACTIONS(334), + [anon_sym_56] = ACTIONS(334), + [anon_sym_wait] = ACTIONS(334), + [anon_sym_break] = ACTIONS(334), + [anon_sym_57] = ACTIONS(334), + [anon_sym_parse] = ACTIONS(334), + [anon_sym_random] = ACTIONS(334), + [anon_sym_58] = ACTIONS(334), + [anon_sym_gen] = ACTIONS(334), + [anon_sym_deal] = ACTIONS(334), + [anon_sym_tag] = ACTIONS(334), + [anon_sym_now] = ACTIONS(334), + [anon_sym_type] = ACTIONS(334), + [anon_sym_59] = ACTIONS(334), + [anon_sym_dump] = ACTIONS(334), + [anon_sym_regex] = ACTIONS(334), + [anon_sym_utf] = ACTIONS(334), + [anon_sym_rock] = ACTIONS(334), + [anon_sym_60] = ACTIONS(334), + [anon_sym_surface] = ACTIONS(334), + [anon_sym_TILDE] = ACTIONS(334), + [anon_sym_deep] = ACTIONS(334), + [anon_sym_de] = ACTIONS(336), + [anon_sym_61] = ACTIONS(334), + [anon_sym_abyss] = ACTIONS(334), + [anon_sym_ab] = ACTIONS(336), + [anon_sym_62] = ACTIONS(334), + [anon_sym_seabed] = ACTIONS(334), + [anon_sym_se] = ACTIONS(336), + [anon_sym_63] = ACTIONS(334), + [anon_sym_send] = ACTIONS(334), + [anon_sym_recv] = ACTIONS(334), + [anon_sym_tryrecv] = ACTIONS(334), + [sym__whitespace] = ACTIONS(5), + [sym__end_of_line] = ACTIONS(5), + }, + [128] = { + [sym_function] = STATE(127), + [anon_sym_PIPE] = ACTIONS(402), + [sym_identifier] = ACTIONS(570), + [sym_system] = ACTIONS(572), + [sym_comment] = ACTIONS(3), + [sym_closeParen] = ACTIONS(402), + [sym_underscore] = ACTIONS(402), [anon_sym_DOT] = ACTIONS(574), [anon_sym_COMMA] = ACTIONS(574), [anon_sym_5] = ACTIONS(574), [anon_sym_SEMI] = ACTIONS(574), [anon_sym_identity] = ACTIONS(574), - [anon_sym_id] = ACTIONS(572), + [anon_sym_id] = ACTIONS(576), [anon_sym_6] = ACTIONS(574), [anon_sym_not] = ACTIONS(574), [anon_sym_7] = ACTIONS(574), @@ -37663,10 +38158,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(574), [anon_sym_BANG_EQ] = ACTIONS(574), [anon_sym_16] = ACTIONS(574), - [anon_sym_LT] = ACTIONS(572), + [anon_sym_LT] = ACTIONS(576), [anon_sym_LT_EQ] = ACTIONS(574), [anon_sym_17] = ACTIONS(574), - [anon_sym_GT] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(576), [anon_sym_GT_EQ] = ACTIONS(574), [anon_sym_18] = ACTIONS(574), [anon_sym_PLUS] = ACTIONS(574), @@ -37767,1241 +38262,476 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_surface] = ACTIONS(574), [anon_sym_TILDE] = ACTIONS(574), [anon_sym_deep] = ACTIONS(574), - [anon_sym_de] = ACTIONS(572), + [anon_sym_de] = ACTIONS(576), [anon_sym_61] = ACTIONS(574), [anon_sym_abyss] = ACTIONS(574), - [anon_sym_ab] = ACTIONS(572), + [anon_sym_ab] = ACTIONS(576), [anon_sym_62] = ACTIONS(574), [anon_sym_seabed] = ACTIONS(574), - [anon_sym_se] = ACTIONS(572), + [anon_sym_se] = ACTIONS(576), [anon_sym_63] = ACTIONS(574), [anon_sym_send] = ACTIONS(574), [anon_sym_recv] = ACTIONS(574), [anon_sym_tryrecv] = ACTIONS(574), - [anon_sym_reduce] = ACTIONS(574), - [anon_sym_SLASH] = ACTIONS(574), - [anon_sym_scan] = ACTIONS(574), - [anon_sym_BSLASH] = ACTIONS(574), - [anon_sym_each] = ACTIONS(574), - [anon_sym_64] = ACTIONS(574), - [anon_sym_rows] = ACTIONS(574), - [anon_sym_65] = ACTIONS(574), - [anon_sym_repeat] = ACTIONS(574), - [anon_sym_66] = ACTIONS(574), - [anon_sym_dip] = ACTIONS(574), - [anon_sym_di] = ACTIONS(572), - [anon_sym_67] = ACTIONS(574), - [anon_sym_gap] = ACTIONS(574), - [anon_sym_ga] = ACTIONS(572), - [anon_sym_68] = ACTIONS(574), - [anon_sym_oust] = ACTIONS(574), - [anon_sym_69] = ACTIONS(574), - [anon_sym_invert] = ACTIONS(574), - [anon_sym_70] = ACTIONS(574), - [anon_sym_spawn] = ACTIONS(574), - [anon_sym_pack] = ACTIONS(574), - [anon_sym_71] = ACTIONS(574), - [anon_sym_tribute] = ACTIONS(574), - [anon_sym_72] = ACTIONS(574), - [anon_sym_fold] = ACTIONS(574), - [anon_sym_73] = ACTIONS(574), - [anon_sym_distribute] = ACTIONS(574), - [anon_sym_74] = ACTIONS(574), - [anon_sym_table] = ACTIONS(574), - [anon_sym_75] = ACTIONS(574), - [anon_sym_cross] = ACTIONS(574), - [anon_sym_76] = ACTIONS(574), - [anon_sym_group] = ACTIONS(574), - [anon_sym_77] = ACTIONS(574), - [anon_sym_partition] = ACTIONS(574), - [anon_sym_78] = ACTIONS(574), - [anon_sym_both] = ACTIONS(574), - [anon_sym_79] = ACTIONS(574), - [anon_sym_bracket] = ACTIONS(574), - [anon_sym_80] = ACTIONS(574), - [anon_sym_fork] = ACTIONS(574), - [anon_sym_81] = ACTIONS(574), - [anon_sym_under] = ACTIONS(574), - [anon_sym_82] = ACTIONS(574), - [anon_sym_level] = ACTIONS(574), - [anon_sym_83] = ACTIONS(574), - [anon_sym_fill] = ACTIONS(574), - [anon_sym_84] = ACTIONS(574), - [anon_sym_bind] = ACTIONS(574), - [anon_sym_SQUOTE] = ACTIONS(574), - [anon_sym_QMARK] = ACTIONS(574), - [anon_sym_try] = ACTIONS(572), - [anon_sym_85] = ACTIONS(574), - [anon_sym_combinate] = ACTIONS(574), - [anon_sym_86] = ACTIONS(574), - [anon_sym_87] = ACTIONS(574), - [anon_sym_88] = ACTIONS(574), - [anon_sym_89] = ACTIONS(574), - [anon_sym_90] = ACTIONS(574), - [anon_sym_91] = ACTIONS(574), - [anon_sym_92] = ACTIONS(574), - [anon_sym_93] = ACTIONS(574), - [sym__whitespace] = ACTIONS(5), - [sym__end_of_line] = ACTIONS(5), - }, - [125] = { - [aux_sym_number_token1] = ACTIONS(576), - [anon_sym_os] = ACTIONS(576), - [anon_sym_Family] = ACTIONS(576), - [anon_sym_Arch] = ACTIONS(576), - [anon_sym_ExeExt] = ACTIONS(576), - [anon_sym_PllExt] = ACTIONS(576), - [anon_sym_Sep] = ACTIONS(576), - [aux_sym_character_token1] = ACTIONS(578), - [sym_string] = ACTIONS(578), - [sym_multiLineString] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(578), - [sym_identifier] = ACTIONS(576), - [sym_identifier_deprecated] = ACTIONS(576), - [sym_system] = ACTIONS(578), - [sym_comment] = ACTIONS(3), - [sym_openParen] = ACTIONS(578), - [sym_openCurly] = ACTIONS(578), - [sym_openBracket] = ACTIONS(578), - [anon_sym_CARET] = ACTIONS(578), - [anon_sym_eta] = ACTIONS(578), - [anon_sym_] = ACTIONS(576), - [anon_sym_pi] = ACTIONS(576), - [anon_sym_2] = ACTIONS(576), - [anon_sym_tau] = ACTIONS(578), - [anon_sym_3] = ACTIONS(576), - [anon_sym_infinity] = ACTIONS(578), - [anon_sym_4] = ACTIONS(578), - [anon_sym_e] = ACTIONS(576), - [anon_sym_NaN] = ACTIONS(576), - [anon_sym_NumProcs] = ACTIONS(576), - [anon_sym_DOT] = ACTIONS(578), - [anon_sym_COMMA] = ACTIONS(578), - [anon_sym_5] = ACTIONS(578), - [anon_sym_SEMI] = ACTIONS(578), - [anon_sym_identity] = ACTIONS(578), - [anon_sym_id] = ACTIONS(576), - [anon_sym_6] = ACTIONS(578), - [anon_sym_not] = ACTIONS(578), - [anon_sym_7] = ACTIONS(578), - [anon_sym_sign] = ACTIONS(578), - [anon_sym_8] = ACTIONS(578), - [anon_sym_BQUOTE] = ACTIONS(578), - [anon_sym_9] = ACTIONS(578), - [anon_sym_absolutevalue] = ACTIONS(578), - [anon_sym_10] = ACTIONS(578), - [anon_sym_sqrt] = ACTIONS(578), - [anon_sym_11] = ACTIONS(578), - [anon_sym_sine] = ACTIONS(578), - [anon_sym_12] = ACTIONS(578), - [anon_sym_floor] = ACTIONS(578), - [anon_sym_13] = ACTIONS(578), - [anon_sym_ceiling] = ACTIONS(578), - [anon_sym_14] = ACTIONS(578), - [anon_sym_round] = ACTIONS(578), - [anon_sym_15] = ACTIONS(578), - [anon_sym_EQ] = ACTIONS(578), - [anon_sym_BANG_EQ] = ACTIONS(578), - [anon_sym_16] = ACTIONS(578), - [anon_sym_LT] = ACTIONS(576), - [anon_sym_LT_EQ] = ACTIONS(578), - [anon_sym_17] = ACTIONS(578), - [anon_sym_GT] = ACTIONS(576), - [anon_sym_GT_EQ] = ACTIONS(578), - [anon_sym_18] = ACTIONS(578), - [anon_sym_PLUS] = ACTIONS(578), - [anon_sym_DASH] = ACTIONS(578), - [anon_sym_STAR] = ACTIONS(578), - [anon_sym_19] = ACTIONS(578), - [anon_sym_PERCENT] = ACTIONS(578), - [anon_sym_20] = ACTIONS(578), - [anon_sym_modulus] = ACTIONS(578), - [anon_sym_21] = ACTIONS(578), - [anon_sym_power] = ACTIONS(578), - [anon_sym_22] = ACTIONS(578), - [anon_sym_logarithm] = ACTIONS(578), - [anon_sym_23] = ACTIONS(578), - [anon_sym_minimum] = ACTIONS(578), - [anon_sym_24] = ACTIONS(578), - [anon_sym_maximum] = ACTIONS(578), - [anon_sym_25] = ACTIONS(578), - [anon_sym_atangent] = ACTIONS(578), - [anon_sym_26] = ACTIONS(578), - [anon_sym_length] = ACTIONS(578), - [anon_sym_27] = ACTIONS(578), - [anon_sym_shape] = ACTIONS(578), - [anon_sym_28] = ACTIONS(578), - [anon_sym_range] = ACTIONS(578), - [anon_sym_29] = ACTIONS(578), - [anon_sym_first] = ACTIONS(578), - [anon_sym_30] = ACTIONS(578), - [anon_sym_reverse] = ACTIONS(578), - [anon_sym_31] = ACTIONS(578), - [anon_sym_deshape] = ACTIONS(578), - [anon_sym_32] = ACTIONS(578), - [anon_sym_bits] = ACTIONS(578), - [anon_sym_33] = ACTIONS(578), - [anon_sym_transpose] = ACTIONS(578), - [anon_sym_34] = ACTIONS(578), - [anon_sym_rise] = ACTIONS(578), - [anon_sym_35] = ACTIONS(578), - [anon_sym_fall] = ACTIONS(578), - [anon_sym_36] = ACTIONS(578), - [anon_sym_where] = ACTIONS(578), - [anon_sym_37] = ACTIONS(578), - [anon_sym_classify] = ACTIONS(578), - [anon_sym_38] = ACTIONS(578), - [anon_sym_deduplicate] = ACTIONS(578), - [anon_sym_39] = ACTIONS(578), - [anon_sym_box] = ACTIONS(578), - [anon_sym_40] = ACTIONS(578), - [anon_sym_unbox] = ACTIONS(578), - [anon_sym_41] = ACTIONS(578), - [anon_sym_match] = ACTIONS(578), - [anon_sym_42] = ACTIONS(578), - [anon_sym_couple] = ACTIONS(578), - [anon_sym_43] = ACTIONS(578), - [anon_sym_join] = ACTIONS(578), - [anon_sym_44] = ACTIONS(578), - [anon_sym_select] = ACTIONS(578), - [anon_sym_45] = ACTIONS(578), - [anon_sym_pick] = ACTIONS(578), - [anon_sym_46] = ACTIONS(578), - [anon_sym_reshape] = ACTIONS(578), - [anon_sym_47] = ACTIONS(578), - [anon_sym_take] = ACTIONS(578), - [anon_sym_48] = ACTIONS(578), - [anon_sym_drop] = ACTIONS(578), - [anon_sym_49] = ACTIONS(578), - [anon_sym_rotate] = ACTIONS(578), - [anon_sym_50] = ACTIONS(578), - [anon_sym_windows] = ACTIONS(578), - [anon_sym_51] = ACTIONS(578), - [anon_sym_keep] = ACTIONS(578), - [anon_sym_52] = ACTIONS(578), - [anon_sym_find] = ACTIONS(578), - [anon_sym_53] = ACTIONS(578), - [anon_sym_member] = ACTIONS(578), - [anon_sym_54] = ACTIONS(578), - [anon_sym_indexof] = ACTIONS(578), - [anon_sym_55] = ACTIONS(578), - [anon_sym_assert] = ACTIONS(578), - [anon_sym_56] = ACTIONS(578), - [anon_sym_wait] = ACTIONS(578), - [anon_sym_break] = ACTIONS(578), - [anon_sym_57] = ACTIONS(578), - [anon_sym_parse] = ACTIONS(578), - [anon_sym_random] = ACTIONS(578), - [anon_sym_58] = ACTIONS(578), - [anon_sym_gen] = ACTIONS(578), - [anon_sym_deal] = ACTIONS(578), - [anon_sym_tag] = ACTIONS(578), - [anon_sym_now] = ACTIONS(578), - [anon_sym_type] = ACTIONS(578), - [anon_sym_59] = ACTIONS(578), - [anon_sym_dump] = ACTIONS(578), - [anon_sym_regex] = ACTIONS(578), - [anon_sym_utf] = ACTIONS(578), - [anon_sym_rock] = ACTIONS(578), - [anon_sym_60] = ACTIONS(578), - [anon_sym_surface] = ACTIONS(578), - [anon_sym_TILDE] = ACTIONS(578), - [anon_sym_deep] = ACTIONS(578), - [anon_sym_de] = ACTIONS(576), - [anon_sym_61] = ACTIONS(578), - [anon_sym_abyss] = ACTIONS(578), - [anon_sym_ab] = ACTIONS(576), - [anon_sym_62] = ACTIONS(578), - [anon_sym_seabed] = ACTIONS(578), - [anon_sym_se] = ACTIONS(576), - [anon_sym_63] = ACTIONS(578), - [anon_sym_send] = ACTIONS(578), - [anon_sym_recv] = ACTIONS(578), - [anon_sym_tryrecv] = ACTIONS(578), - [anon_sym_reduce] = ACTIONS(578), - [anon_sym_SLASH] = ACTIONS(578), - [anon_sym_scan] = ACTIONS(578), - [anon_sym_BSLASH] = ACTIONS(578), - [anon_sym_each] = ACTIONS(578), - [anon_sym_64] = ACTIONS(578), - [anon_sym_rows] = ACTIONS(578), - [anon_sym_65] = ACTIONS(578), - [anon_sym_repeat] = ACTIONS(578), - [anon_sym_66] = ACTIONS(578), - [anon_sym_dip] = ACTIONS(578), - [anon_sym_di] = ACTIONS(576), - [anon_sym_67] = ACTIONS(578), - [anon_sym_gap] = ACTIONS(578), - [anon_sym_ga] = ACTIONS(576), - [anon_sym_68] = ACTIONS(578), - [anon_sym_oust] = ACTIONS(578), - [anon_sym_69] = ACTIONS(578), - [anon_sym_invert] = ACTIONS(578), - [anon_sym_70] = ACTIONS(578), - [anon_sym_spawn] = ACTIONS(578), - [anon_sym_pack] = ACTIONS(578), - [anon_sym_71] = ACTIONS(578), - [anon_sym_tribute] = ACTIONS(578), - [anon_sym_72] = ACTIONS(578), - [anon_sym_fold] = ACTIONS(578), - [anon_sym_73] = ACTIONS(578), - [anon_sym_distribute] = ACTIONS(578), - [anon_sym_74] = ACTIONS(578), - [anon_sym_table] = ACTIONS(578), - [anon_sym_75] = ACTIONS(578), - [anon_sym_cross] = ACTIONS(578), - [anon_sym_76] = ACTIONS(578), - [anon_sym_group] = ACTIONS(578), - [anon_sym_77] = ACTIONS(578), - [anon_sym_partition] = ACTIONS(578), - [anon_sym_78] = ACTIONS(578), - [anon_sym_both] = ACTIONS(578), - [anon_sym_79] = ACTIONS(578), - [anon_sym_bracket] = ACTIONS(578), - [anon_sym_80] = ACTIONS(578), - [anon_sym_fork] = ACTIONS(578), - [anon_sym_81] = ACTIONS(578), - [anon_sym_under] = ACTIONS(578), - [anon_sym_82] = ACTIONS(578), - [anon_sym_level] = ACTIONS(578), - [anon_sym_83] = ACTIONS(578), - [anon_sym_fill] = ACTIONS(578), - [anon_sym_84] = ACTIONS(578), - [anon_sym_bind] = ACTIONS(578), - [anon_sym_SQUOTE] = ACTIONS(578), - [anon_sym_QMARK] = ACTIONS(578), - [anon_sym_try] = ACTIONS(576), - [anon_sym_85] = ACTIONS(578), - [anon_sym_combinate] = ACTIONS(578), - [anon_sym_86] = ACTIONS(578), - [anon_sym_87] = ACTIONS(578), - [anon_sym_88] = ACTIONS(578), - [anon_sym_89] = ACTIONS(578), - [anon_sym_90] = ACTIONS(578), - [anon_sym_91] = ACTIONS(578), - [anon_sym_92] = ACTIONS(578), - [anon_sym_93] = ACTIONS(578), - [sym__whitespace] = ACTIONS(5), - [sym__end_of_line] = ACTIONS(5), - }, - [126] = { - [sym_function] = STATE(152), - [anon_sym_PIPE] = ACTIONS(420), - [sym_identifier] = ACTIONS(580), - [sym_system] = ACTIONS(582), - [sym_comment] = ACTIONS(3), - [sym_closeParen] = ACTIONS(420), - [sym_underscore] = ACTIONS(420), - [anon_sym_DOT] = ACTIONS(347), - [anon_sym_COMMA] = ACTIONS(347), - [anon_sym_5] = ACTIONS(347), - [anon_sym_SEMI] = ACTIONS(347), - [anon_sym_identity] = ACTIONS(347), - [anon_sym_id] = ACTIONS(349), - [anon_sym_6] = ACTIONS(347), - [anon_sym_not] = ACTIONS(347), - [anon_sym_7] = ACTIONS(347), - [anon_sym_sign] = ACTIONS(347), - [anon_sym_8] = ACTIONS(347), - [anon_sym_BQUOTE] = ACTIONS(347), - [anon_sym_9] = ACTIONS(347), - [anon_sym_absolutevalue] = ACTIONS(347), - [anon_sym_10] = ACTIONS(347), - [anon_sym_sqrt] = ACTIONS(347), - [anon_sym_11] = ACTIONS(347), - [anon_sym_sine] = ACTIONS(347), - [anon_sym_12] = ACTIONS(347), - [anon_sym_floor] = ACTIONS(347), - [anon_sym_13] = ACTIONS(347), - [anon_sym_ceiling] = ACTIONS(347), - [anon_sym_14] = ACTIONS(347), - [anon_sym_round] = ACTIONS(347), - [anon_sym_15] = ACTIONS(347), - [anon_sym_EQ] = ACTIONS(347), - [anon_sym_BANG_EQ] = ACTIONS(347), - [anon_sym_16] = ACTIONS(347), - [anon_sym_LT] = ACTIONS(349), - [anon_sym_LT_EQ] = ACTIONS(347), - [anon_sym_17] = ACTIONS(347), - [anon_sym_GT] = ACTIONS(349), - [anon_sym_GT_EQ] = ACTIONS(347), - [anon_sym_18] = ACTIONS(347), - [anon_sym_PLUS] = ACTIONS(347), - [anon_sym_DASH] = ACTIONS(347), - [anon_sym_STAR] = ACTIONS(347), - [anon_sym_19] = ACTIONS(347), - [anon_sym_PERCENT] = ACTIONS(347), - [anon_sym_20] = ACTIONS(347), - [anon_sym_modulus] = ACTIONS(347), - [anon_sym_21] = ACTIONS(347), - [anon_sym_power] = ACTIONS(347), - [anon_sym_22] = ACTIONS(347), - [anon_sym_logarithm] = ACTIONS(347), - [anon_sym_23] = ACTIONS(347), - [anon_sym_minimum] = ACTIONS(347), - [anon_sym_24] = ACTIONS(347), - [anon_sym_maximum] = ACTIONS(347), - [anon_sym_25] = ACTIONS(347), - [anon_sym_atangent] = ACTIONS(347), - [anon_sym_26] = ACTIONS(347), - [anon_sym_length] = ACTIONS(347), - [anon_sym_27] = ACTIONS(347), - [anon_sym_shape] = ACTIONS(347), - [anon_sym_28] = ACTIONS(347), - [anon_sym_range] = ACTIONS(347), - [anon_sym_29] = ACTIONS(347), - [anon_sym_first] = ACTIONS(347), - [anon_sym_30] = ACTIONS(347), - [anon_sym_reverse] = ACTIONS(347), - [anon_sym_31] = ACTIONS(347), - [anon_sym_deshape] = ACTIONS(347), - [anon_sym_32] = ACTIONS(347), - [anon_sym_bits] = ACTIONS(347), - [anon_sym_33] = ACTIONS(347), - [anon_sym_transpose] = ACTIONS(347), - [anon_sym_34] = ACTIONS(347), - [anon_sym_rise] = ACTIONS(347), - [anon_sym_35] = ACTIONS(347), - [anon_sym_fall] = ACTIONS(347), - [anon_sym_36] = ACTIONS(347), - [anon_sym_where] = ACTIONS(347), - [anon_sym_37] = ACTIONS(347), - [anon_sym_classify] = ACTIONS(347), - [anon_sym_38] = ACTIONS(347), - [anon_sym_deduplicate] = ACTIONS(347), - [anon_sym_39] = ACTIONS(347), - [anon_sym_box] = ACTIONS(347), - [anon_sym_40] = ACTIONS(347), - [anon_sym_unbox] = ACTIONS(347), - [anon_sym_41] = ACTIONS(347), - [anon_sym_match] = ACTIONS(347), - [anon_sym_42] = ACTIONS(347), - [anon_sym_couple] = ACTIONS(347), - [anon_sym_43] = ACTIONS(347), - [anon_sym_join] = ACTIONS(347), - [anon_sym_44] = ACTIONS(347), - [anon_sym_select] = ACTIONS(347), - [anon_sym_45] = ACTIONS(347), - [anon_sym_pick] = ACTIONS(347), - [anon_sym_46] = ACTIONS(347), - [anon_sym_reshape] = ACTIONS(347), - [anon_sym_47] = ACTIONS(347), - [anon_sym_take] = ACTIONS(347), - [anon_sym_48] = ACTIONS(347), - [anon_sym_drop] = ACTIONS(347), - [anon_sym_49] = ACTIONS(347), - [anon_sym_rotate] = ACTIONS(347), - [anon_sym_50] = ACTIONS(347), - [anon_sym_windows] = ACTIONS(347), - [anon_sym_51] = ACTIONS(347), - [anon_sym_keep] = ACTIONS(347), - [anon_sym_52] = ACTIONS(347), - [anon_sym_find] = ACTIONS(347), - [anon_sym_53] = ACTIONS(347), - [anon_sym_member] = ACTIONS(347), - [anon_sym_54] = ACTIONS(347), - [anon_sym_indexof] = ACTIONS(347), - [anon_sym_55] = ACTIONS(347), - [anon_sym_assert] = ACTIONS(347), - [anon_sym_56] = ACTIONS(347), - [anon_sym_wait] = ACTIONS(347), - [anon_sym_break] = ACTIONS(347), - [anon_sym_57] = ACTIONS(347), - [anon_sym_parse] = ACTIONS(347), - [anon_sym_random] = ACTIONS(347), - [anon_sym_58] = ACTIONS(347), - [anon_sym_gen] = ACTIONS(347), - [anon_sym_deal] = ACTIONS(347), - [anon_sym_tag] = ACTIONS(347), - [anon_sym_now] = ACTIONS(347), - [anon_sym_type] = ACTIONS(347), - [anon_sym_59] = ACTIONS(347), - [anon_sym_dump] = ACTIONS(347), - [anon_sym_regex] = ACTIONS(347), - [anon_sym_utf] = ACTIONS(347), - [anon_sym_rock] = ACTIONS(347), - [anon_sym_60] = ACTIONS(347), - [anon_sym_surface] = ACTIONS(347), - [anon_sym_TILDE] = ACTIONS(347), - [anon_sym_deep] = ACTIONS(347), - [anon_sym_de] = ACTIONS(349), - [anon_sym_61] = ACTIONS(347), - [anon_sym_abyss] = ACTIONS(347), - [anon_sym_ab] = ACTIONS(349), - [anon_sym_62] = ACTIONS(347), - [anon_sym_seabed] = ACTIONS(347), - [anon_sym_se] = ACTIONS(349), - [anon_sym_63] = ACTIONS(347), - [anon_sym_send] = ACTIONS(347), - [anon_sym_recv] = ACTIONS(347), - [anon_sym_tryrecv] = ACTIONS(347), - [sym__whitespace] = ACTIONS(5), - [sym__end_of_line] = ACTIONS(5), - }, - [127] = { - [sym_function] = STATE(145), - [anon_sym_PIPE] = ACTIONS(432), - [sym_identifier] = ACTIONS(584), - [sym_system] = ACTIONS(586), - [sym_comment] = ACTIONS(3), - [sym_closeParen] = ACTIONS(432), - [sym_underscore] = ACTIONS(432), - [anon_sym_DOT] = ACTIONS(347), - [anon_sym_COMMA] = ACTIONS(347), - [anon_sym_5] = ACTIONS(347), - [anon_sym_SEMI] = ACTIONS(347), - [anon_sym_identity] = ACTIONS(347), - [anon_sym_id] = ACTIONS(349), - [anon_sym_6] = ACTIONS(347), - [anon_sym_not] = ACTIONS(347), - [anon_sym_7] = ACTIONS(347), - [anon_sym_sign] = ACTIONS(347), - [anon_sym_8] = ACTIONS(347), - [anon_sym_BQUOTE] = ACTIONS(347), - [anon_sym_9] = ACTIONS(347), - [anon_sym_absolutevalue] = ACTIONS(347), - [anon_sym_10] = ACTIONS(347), - [anon_sym_sqrt] = ACTIONS(347), - [anon_sym_11] = ACTIONS(347), - [anon_sym_sine] = ACTIONS(347), - [anon_sym_12] = ACTIONS(347), - [anon_sym_floor] = ACTIONS(347), - [anon_sym_13] = ACTIONS(347), - [anon_sym_ceiling] = ACTIONS(347), - [anon_sym_14] = ACTIONS(347), - [anon_sym_round] = ACTIONS(347), - [anon_sym_15] = ACTIONS(347), - [anon_sym_EQ] = ACTIONS(347), - [anon_sym_BANG_EQ] = ACTIONS(347), - [anon_sym_16] = ACTIONS(347), - [anon_sym_LT] = ACTIONS(349), - [anon_sym_LT_EQ] = ACTIONS(347), - [anon_sym_17] = ACTIONS(347), - [anon_sym_GT] = ACTIONS(349), - [anon_sym_GT_EQ] = ACTIONS(347), - [anon_sym_18] = ACTIONS(347), - [anon_sym_PLUS] = ACTIONS(347), - [anon_sym_DASH] = ACTIONS(347), - [anon_sym_STAR] = ACTIONS(347), - [anon_sym_19] = ACTIONS(347), - [anon_sym_PERCENT] = ACTIONS(347), - [anon_sym_20] = ACTIONS(347), - [anon_sym_modulus] = ACTIONS(347), - [anon_sym_21] = ACTIONS(347), - [anon_sym_power] = ACTIONS(347), - [anon_sym_22] = ACTIONS(347), - [anon_sym_logarithm] = ACTIONS(347), - [anon_sym_23] = ACTIONS(347), - [anon_sym_minimum] = ACTIONS(347), - [anon_sym_24] = ACTIONS(347), - [anon_sym_maximum] = ACTIONS(347), - [anon_sym_25] = ACTIONS(347), - [anon_sym_atangent] = ACTIONS(347), - [anon_sym_26] = ACTIONS(347), - [anon_sym_length] = ACTIONS(347), - [anon_sym_27] = ACTIONS(347), - [anon_sym_shape] = ACTIONS(347), - [anon_sym_28] = ACTIONS(347), - [anon_sym_range] = ACTIONS(347), - [anon_sym_29] = ACTIONS(347), - [anon_sym_first] = ACTIONS(347), - [anon_sym_30] = ACTIONS(347), - [anon_sym_reverse] = ACTIONS(347), - [anon_sym_31] = ACTIONS(347), - [anon_sym_deshape] = ACTIONS(347), - [anon_sym_32] = ACTIONS(347), - [anon_sym_bits] = ACTIONS(347), - [anon_sym_33] = ACTIONS(347), - [anon_sym_transpose] = ACTIONS(347), - [anon_sym_34] = ACTIONS(347), - [anon_sym_rise] = ACTIONS(347), - [anon_sym_35] = ACTIONS(347), - [anon_sym_fall] = ACTIONS(347), - [anon_sym_36] = ACTIONS(347), - [anon_sym_where] = ACTIONS(347), - [anon_sym_37] = ACTIONS(347), - [anon_sym_classify] = ACTIONS(347), - [anon_sym_38] = ACTIONS(347), - [anon_sym_deduplicate] = ACTIONS(347), - [anon_sym_39] = ACTIONS(347), - [anon_sym_box] = ACTIONS(347), - [anon_sym_40] = ACTIONS(347), - [anon_sym_unbox] = ACTIONS(347), - [anon_sym_41] = ACTIONS(347), - [anon_sym_match] = ACTIONS(347), - [anon_sym_42] = ACTIONS(347), - [anon_sym_couple] = ACTIONS(347), - [anon_sym_43] = ACTIONS(347), - [anon_sym_join] = ACTIONS(347), - [anon_sym_44] = ACTIONS(347), - [anon_sym_select] = ACTIONS(347), - [anon_sym_45] = ACTIONS(347), - [anon_sym_pick] = ACTIONS(347), - [anon_sym_46] = ACTIONS(347), - [anon_sym_reshape] = ACTIONS(347), - [anon_sym_47] = ACTIONS(347), - [anon_sym_take] = ACTIONS(347), - [anon_sym_48] = ACTIONS(347), - [anon_sym_drop] = ACTIONS(347), - [anon_sym_49] = ACTIONS(347), - [anon_sym_rotate] = ACTIONS(347), - [anon_sym_50] = ACTIONS(347), - [anon_sym_windows] = ACTIONS(347), - [anon_sym_51] = ACTIONS(347), - [anon_sym_keep] = ACTIONS(347), - [anon_sym_52] = ACTIONS(347), - [anon_sym_find] = ACTIONS(347), - [anon_sym_53] = ACTIONS(347), - [anon_sym_member] = ACTIONS(347), - [anon_sym_54] = ACTIONS(347), - [anon_sym_indexof] = ACTIONS(347), - [anon_sym_55] = ACTIONS(347), - [anon_sym_assert] = ACTIONS(347), - [anon_sym_56] = ACTIONS(347), - [anon_sym_wait] = ACTIONS(347), - [anon_sym_break] = ACTIONS(347), - [anon_sym_57] = ACTIONS(347), - [anon_sym_parse] = ACTIONS(347), - [anon_sym_random] = ACTIONS(347), - [anon_sym_58] = ACTIONS(347), - [anon_sym_gen] = ACTIONS(347), - [anon_sym_deal] = ACTIONS(347), - [anon_sym_tag] = ACTIONS(347), - [anon_sym_now] = ACTIONS(347), - [anon_sym_type] = ACTIONS(347), - [anon_sym_59] = ACTIONS(347), - [anon_sym_dump] = ACTIONS(347), - [anon_sym_regex] = ACTIONS(347), - [anon_sym_utf] = ACTIONS(347), - [anon_sym_rock] = ACTIONS(347), - [anon_sym_60] = ACTIONS(347), - [anon_sym_surface] = ACTIONS(347), - [anon_sym_TILDE] = ACTIONS(347), - [anon_sym_deep] = ACTIONS(347), - [anon_sym_de] = ACTIONS(349), - [anon_sym_61] = ACTIONS(347), - [anon_sym_abyss] = ACTIONS(347), - [anon_sym_ab] = ACTIONS(349), - [anon_sym_62] = ACTIONS(347), - [anon_sym_seabed] = ACTIONS(347), - [anon_sym_se] = ACTIONS(349), - [anon_sym_63] = ACTIONS(347), - [anon_sym_send] = ACTIONS(347), - [anon_sym_recv] = ACTIONS(347), - [anon_sym_tryrecv] = ACTIONS(347), - [sym__whitespace] = ACTIONS(5), - [sym__end_of_line] = ACTIONS(5), - }, - [128] = { - [sym_function] = STATE(127), - [anon_sym_PIPE] = ACTIONS(420), - [sym_identifier] = ACTIONS(588), - [sym_system] = ACTIONS(590), - [sym_comment] = ACTIONS(3), - [sym_closeParen] = ACTIONS(420), - [sym_underscore] = ACTIONS(420), - [anon_sym_DOT] = ACTIONS(592), - [anon_sym_COMMA] = ACTIONS(592), - [anon_sym_5] = ACTIONS(592), - [anon_sym_SEMI] = ACTIONS(592), - [anon_sym_identity] = ACTIONS(592), - [anon_sym_id] = ACTIONS(594), - [anon_sym_6] = ACTIONS(592), - [anon_sym_not] = ACTIONS(592), - [anon_sym_7] = ACTIONS(592), - [anon_sym_sign] = ACTIONS(592), - [anon_sym_8] = ACTIONS(592), - [anon_sym_BQUOTE] = ACTIONS(592), - [anon_sym_9] = ACTIONS(592), - [anon_sym_absolutevalue] = ACTIONS(592), - [anon_sym_10] = ACTIONS(592), - [anon_sym_sqrt] = ACTIONS(592), - [anon_sym_11] = ACTIONS(592), - [anon_sym_sine] = ACTIONS(592), - [anon_sym_12] = ACTIONS(592), - [anon_sym_floor] = ACTIONS(592), - [anon_sym_13] = ACTIONS(592), - [anon_sym_ceiling] = ACTIONS(592), - [anon_sym_14] = ACTIONS(592), - [anon_sym_round] = ACTIONS(592), - [anon_sym_15] = ACTIONS(592), - [anon_sym_EQ] = ACTIONS(592), - [anon_sym_BANG_EQ] = ACTIONS(592), - [anon_sym_16] = ACTIONS(592), - [anon_sym_LT] = ACTIONS(594), - [anon_sym_LT_EQ] = ACTIONS(592), - [anon_sym_17] = ACTIONS(592), - [anon_sym_GT] = ACTIONS(594), - [anon_sym_GT_EQ] = ACTIONS(592), - [anon_sym_18] = ACTIONS(592), - [anon_sym_PLUS] = ACTIONS(592), - [anon_sym_DASH] = ACTIONS(592), - [anon_sym_STAR] = ACTIONS(592), - [anon_sym_19] = ACTIONS(592), - [anon_sym_PERCENT] = ACTIONS(592), - [anon_sym_20] = ACTIONS(592), - [anon_sym_modulus] = ACTIONS(592), - [anon_sym_21] = ACTIONS(592), - [anon_sym_power] = ACTIONS(592), - [anon_sym_22] = ACTIONS(592), - [anon_sym_logarithm] = ACTIONS(592), - [anon_sym_23] = ACTIONS(592), - [anon_sym_minimum] = ACTIONS(592), - [anon_sym_24] = ACTIONS(592), - [anon_sym_maximum] = ACTIONS(592), - [anon_sym_25] = ACTIONS(592), - [anon_sym_atangent] = ACTIONS(592), - [anon_sym_26] = ACTIONS(592), - [anon_sym_length] = ACTIONS(592), - [anon_sym_27] = ACTIONS(592), - [anon_sym_shape] = ACTIONS(592), - [anon_sym_28] = ACTIONS(592), - [anon_sym_range] = ACTIONS(592), - [anon_sym_29] = ACTIONS(592), - [anon_sym_first] = ACTIONS(592), - [anon_sym_30] = ACTIONS(592), - [anon_sym_reverse] = ACTIONS(592), - [anon_sym_31] = ACTIONS(592), - [anon_sym_deshape] = ACTIONS(592), - [anon_sym_32] = ACTIONS(592), - [anon_sym_bits] = ACTIONS(592), - [anon_sym_33] = ACTIONS(592), - [anon_sym_transpose] = ACTIONS(592), - [anon_sym_34] = ACTIONS(592), - [anon_sym_rise] = ACTIONS(592), - [anon_sym_35] = ACTIONS(592), - [anon_sym_fall] = ACTIONS(592), - [anon_sym_36] = ACTIONS(592), - [anon_sym_where] = ACTIONS(592), - [anon_sym_37] = ACTIONS(592), - [anon_sym_classify] = ACTIONS(592), - [anon_sym_38] = ACTIONS(592), - [anon_sym_deduplicate] = ACTIONS(592), - [anon_sym_39] = ACTIONS(592), - [anon_sym_box] = ACTIONS(592), - [anon_sym_40] = ACTIONS(592), - [anon_sym_unbox] = ACTIONS(592), - [anon_sym_41] = ACTIONS(592), - [anon_sym_match] = ACTIONS(592), - [anon_sym_42] = ACTIONS(592), - [anon_sym_couple] = ACTIONS(592), - [anon_sym_43] = ACTIONS(592), - [anon_sym_join] = ACTIONS(592), - [anon_sym_44] = ACTIONS(592), - [anon_sym_select] = ACTIONS(592), - [anon_sym_45] = ACTIONS(592), - [anon_sym_pick] = ACTIONS(592), - [anon_sym_46] = ACTIONS(592), - [anon_sym_reshape] = ACTIONS(592), - [anon_sym_47] = ACTIONS(592), - [anon_sym_take] = ACTIONS(592), - [anon_sym_48] = ACTIONS(592), - [anon_sym_drop] = ACTIONS(592), - [anon_sym_49] = ACTIONS(592), - [anon_sym_rotate] = ACTIONS(592), - [anon_sym_50] = ACTIONS(592), - [anon_sym_windows] = ACTIONS(592), - [anon_sym_51] = ACTIONS(592), - [anon_sym_keep] = ACTIONS(592), - [anon_sym_52] = ACTIONS(592), - [anon_sym_find] = ACTIONS(592), - [anon_sym_53] = ACTIONS(592), - [anon_sym_member] = ACTIONS(592), - [anon_sym_54] = ACTIONS(592), - [anon_sym_indexof] = ACTIONS(592), - [anon_sym_55] = ACTIONS(592), - [anon_sym_assert] = ACTIONS(592), - [anon_sym_56] = ACTIONS(592), - [anon_sym_wait] = ACTIONS(592), - [anon_sym_break] = ACTIONS(592), - [anon_sym_57] = ACTIONS(592), - [anon_sym_parse] = ACTIONS(592), - [anon_sym_random] = ACTIONS(592), - [anon_sym_58] = ACTIONS(592), - [anon_sym_gen] = ACTIONS(592), - [anon_sym_deal] = ACTIONS(592), - [anon_sym_tag] = ACTIONS(592), - [anon_sym_now] = ACTIONS(592), - [anon_sym_type] = ACTIONS(592), - [anon_sym_59] = ACTIONS(592), - [anon_sym_dump] = ACTIONS(592), - [anon_sym_regex] = ACTIONS(592), - [anon_sym_utf] = ACTIONS(592), - [anon_sym_rock] = ACTIONS(592), - [anon_sym_60] = ACTIONS(592), - [anon_sym_surface] = ACTIONS(592), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_deep] = ACTIONS(592), - [anon_sym_de] = ACTIONS(594), - [anon_sym_61] = ACTIONS(592), - [anon_sym_abyss] = ACTIONS(592), - [anon_sym_ab] = ACTIONS(594), - [anon_sym_62] = ACTIONS(592), - [anon_sym_seabed] = ACTIONS(592), - [anon_sym_se] = ACTIONS(594), - [anon_sym_63] = ACTIONS(592), - [anon_sym_send] = ACTIONS(592), - [anon_sym_recv] = ACTIONS(592), - [anon_sym_tryrecv] = ACTIONS(592), [sym__whitespace] = ACTIONS(5), [sym__end_of_line] = ACTIONS(5), }, [129] = { - [anon_sym_PIPE] = ACTIONS(492), - [sym_identifier] = ACTIONS(490), - [sym_system] = ACTIONS(492), + [anon_sym_PIPE] = ACTIONS(474), + [sym_identifier] = ACTIONS(472), + [sym_system] = ACTIONS(474), [sym_comment] = ACTIONS(3), - [sym_closeParen] = ACTIONS(492), - [sym_underscore] = ACTIONS(492), - [anon_sym_DOT] = ACTIONS(492), - [anon_sym_COMMA] = ACTIONS(492), - [anon_sym_5] = ACTIONS(492), - [anon_sym_SEMI] = ACTIONS(492), - [anon_sym_identity] = ACTIONS(492), - [anon_sym_id] = ACTIONS(490), - [anon_sym_6] = ACTIONS(492), - [anon_sym_not] = ACTIONS(492), - [anon_sym_7] = ACTIONS(492), - [anon_sym_sign] = ACTIONS(492), - [anon_sym_8] = ACTIONS(492), - [anon_sym_BQUOTE] = ACTIONS(492), - [anon_sym_9] = ACTIONS(492), - [anon_sym_absolutevalue] = ACTIONS(492), - [anon_sym_10] = ACTIONS(492), - [anon_sym_sqrt] = ACTIONS(492), - [anon_sym_11] = ACTIONS(492), - [anon_sym_sine] = ACTIONS(492), - [anon_sym_12] = ACTIONS(492), - [anon_sym_floor] = ACTIONS(492), - [anon_sym_13] = ACTIONS(492), - [anon_sym_ceiling] = ACTIONS(492), - [anon_sym_14] = ACTIONS(492), - [anon_sym_round] = ACTIONS(492), - [anon_sym_15] = ACTIONS(492), - [anon_sym_EQ] = ACTIONS(492), - [anon_sym_BANG_EQ] = ACTIONS(492), - [anon_sym_16] = ACTIONS(492), - [anon_sym_LT] = ACTIONS(490), - [anon_sym_LT_EQ] = ACTIONS(492), - [anon_sym_17] = ACTIONS(492), - [anon_sym_GT] = ACTIONS(490), - [anon_sym_GT_EQ] = ACTIONS(492), - [anon_sym_18] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(492), - [anon_sym_DASH] = ACTIONS(492), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_19] = ACTIONS(492), - [anon_sym_PERCENT] = ACTIONS(492), - [anon_sym_20] = ACTIONS(492), - [anon_sym_modulus] = ACTIONS(492), - [anon_sym_21] = ACTIONS(492), - [anon_sym_power] = ACTIONS(492), - [anon_sym_22] = ACTIONS(492), - [anon_sym_logarithm] = ACTIONS(492), - [anon_sym_23] = ACTIONS(492), - [anon_sym_minimum] = ACTIONS(492), - [anon_sym_24] = ACTIONS(492), - [anon_sym_maximum] = ACTIONS(492), - [anon_sym_25] = ACTIONS(492), - [anon_sym_atangent] = ACTIONS(492), - [anon_sym_26] = ACTIONS(492), - [anon_sym_length] = ACTIONS(492), - [anon_sym_27] = ACTIONS(492), - [anon_sym_shape] = ACTIONS(492), - [anon_sym_28] = ACTIONS(492), - [anon_sym_range] = ACTIONS(492), - [anon_sym_29] = ACTIONS(492), - [anon_sym_first] = ACTIONS(492), - [anon_sym_30] = ACTIONS(492), - [anon_sym_reverse] = ACTIONS(492), - [anon_sym_31] = ACTIONS(492), - [anon_sym_deshape] = ACTIONS(492), - [anon_sym_32] = ACTIONS(492), - [anon_sym_bits] = ACTIONS(492), - [anon_sym_33] = ACTIONS(492), - [anon_sym_transpose] = ACTIONS(492), - [anon_sym_34] = ACTIONS(492), - [anon_sym_rise] = ACTIONS(492), - [anon_sym_35] = ACTIONS(492), - [anon_sym_fall] = ACTIONS(492), - [anon_sym_36] = ACTIONS(492), - [anon_sym_where] = ACTIONS(492), - [anon_sym_37] = ACTIONS(492), - [anon_sym_classify] = ACTIONS(492), - [anon_sym_38] = ACTIONS(492), - [anon_sym_deduplicate] = ACTIONS(492), - [anon_sym_39] = ACTIONS(492), - [anon_sym_box] = ACTIONS(492), - [anon_sym_40] = ACTIONS(492), - [anon_sym_unbox] = ACTIONS(492), - [anon_sym_41] = ACTIONS(492), - [anon_sym_match] = ACTIONS(492), - [anon_sym_42] = ACTIONS(492), - [anon_sym_couple] = ACTIONS(492), - [anon_sym_43] = ACTIONS(492), - [anon_sym_join] = ACTIONS(492), - [anon_sym_44] = ACTIONS(492), - [anon_sym_select] = ACTIONS(492), - [anon_sym_45] = ACTIONS(492), - [anon_sym_pick] = ACTIONS(492), - [anon_sym_46] = ACTIONS(492), - [anon_sym_reshape] = ACTIONS(492), - [anon_sym_47] = ACTIONS(492), - [anon_sym_take] = ACTIONS(492), - [anon_sym_48] = ACTIONS(492), - [anon_sym_drop] = ACTIONS(492), - [anon_sym_49] = ACTIONS(492), - [anon_sym_rotate] = ACTIONS(492), - [anon_sym_50] = ACTIONS(492), - [anon_sym_windows] = ACTIONS(492), - [anon_sym_51] = ACTIONS(492), - [anon_sym_keep] = ACTIONS(492), - [anon_sym_52] = ACTIONS(492), - [anon_sym_find] = ACTIONS(492), - [anon_sym_53] = ACTIONS(492), - [anon_sym_member] = ACTIONS(492), - [anon_sym_54] = ACTIONS(492), - [anon_sym_indexof] = ACTIONS(492), - [anon_sym_55] = ACTIONS(492), - [anon_sym_assert] = ACTIONS(492), - [anon_sym_56] = ACTIONS(492), - [anon_sym_wait] = ACTIONS(492), - [anon_sym_break] = ACTIONS(492), - [anon_sym_57] = ACTIONS(492), - [anon_sym_parse] = ACTIONS(492), - [anon_sym_random] = ACTIONS(492), - [anon_sym_58] = ACTIONS(492), - [anon_sym_gen] = ACTIONS(492), - [anon_sym_deal] = ACTIONS(492), - [anon_sym_tag] = ACTIONS(492), - [anon_sym_now] = ACTIONS(492), - [anon_sym_type] = ACTIONS(492), - [anon_sym_59] = ACTIONS(492), - [anon_sym_dump] = ACTIONS(492), - [anon_sym_regex] = ACTIONS(492), - [anon_sym_utf] = ACTIONS(492), - [anon_sym_rock] = ACTIONS(492), - [anon_sym_60] = ACTIONS(492), - [anon_sym_surface] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(492), - [anon_sym_deep] = ACTIONS(492), - [anon_sym_de] = ACTIONS(490), - [anon_sym_61] = ACTIONS(492), - [anon_sym_abyss] = ACTIONS(492), - [anon_sym_ab] = ACTIONS(490), - [anon_sym_62] = ACTIONS(492), - [anon_sym_seabed] = ACTIONS(492), - [anon_sym_se] = ACTIONS(490), - [anon_sym_63] = ACTIONS(492), - [anon_sym_send] = ACTIONS(492), - [anon_sym_recv] = ACTIONS(492), - [anon_sym_tryrecv] = ACTIONS(492), + [sym_closeParen] = ACTIONS(474), + [sym_underscore] = ACTIONS(474), + [anon_sym_DOT] = ACTIONS(474), + [anon_sym_COMMA] = ACTIONS(474), + [anon_sym_5] = ACTIONS(474), + [anon_sym_SEMI] = ACTIONS(474), + [anon_sym_identity] = ACTIONS(474), + [anon_sym_id] = ACTIONS(472), + [anon_sym_6] = ACTIONS(474), + [anon_sym_not] = ACTIONS(474), + [anon_sym_7] = ACTIONS(474), + [anon_sym_sign] = ACTIONS(474), + [anon_sym_8] = ACTIONS(474), + [anon_sym_BQUOTE] = ACTIONS(474), + [anon_sym_9] = ACTIONS(474), + [anon_sym_absolutevalue] = ACTIONS(474), + [anon_sym_10] = ACTIONS(474), + [anon_sym_sqrt] = ACTIONS(474), + [anon_sym_11] = ACTIONS(474), + [anon_sym_sine] = ACTIONS(474), + [anon_sym_12] = ACTIONS(474), + [anon_sym_floor] = ACTIONS(474), + [anon_sym_13] = ACTIONS(474), + [anon_sym_ceiling] = ACTIONS(474), + [anon_sym_14] = ACTIONS(474), + [anon_sym_round] = ACTIONS(474), + [anon_sym_15] = ACTIONS(474), + [anon_sym_EQ] = ACTIONS(474), + [anon_sym_BANG_EQ] = ACTIONS(474), + [anon_sym_16] = ACTIONS(474), + [anon_sym_LT] = ACTIONS(472), + [anon_sym_LT_EQ] = ACTIONS(474), + [anon_sym_17] = ACTIONS(474), + [anon_sym_GT] = ACTIONS(472), + [anon_sym_GT_EQ] = ACTIONS(474), + [anon_sym_18] = ACTIONS(474), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_STAR] = ACTIONS(474), + [anon_sym_19] = ACTIONS(474), + [anon_sym_PERCENT] = ACTIONS(474), + [anon_sym_20] = ACTIONS(474), + [anon_sym_modulus] = ACTIONS(474), + [anon_sym_21] = ACTIONS(474), + [anon_sym_power] = ACTIONS(474), + [anon_sym_22] = ACTIONS(474), + [anon_sym_logarithm] = ACTIONS(474), + [anon_sym_23] = ACTIONS(474), + [anon_sym_minimum] = ACTIONS(474), + [anon_sym_24] = ACTIONS(474), + [anon_sym_maximum] = ACTIONS(474), + [anon_sym_25] = ACTIONS(474), + [anon_sym_atangent] = ACTIONS(474), + [anon_sym_26] = ACTIONS(474), + [anon_sym_length] = ACTIONS(474), + [anon_sym_27] = ACTIONS(474), + [anon_sym_shape] = ACTIONS(474), + [anon_sym_28] = ACTIONS(474), + [anon_sym_range] = ACTIONS(474), + [anon_sym_29] = ACTIONS(474), + [anon_sym_first] = ACTIONS(474), + [anon_sym_30] = ACTIONS(474), + [anon_sym_reverse] = ACTIONS(474), + [anon_sym_31] = ACTIONS(474), + [anon_sym_deshape] = ACTIONS(474), + [anon_sym_32] = ACTIONS(474), + [anon_sym_bits] = ACTIONS(474), + [anon_sym_33] = ACTIONS(474), + [anon_sym_transpose] = ACTIONS(474), + [anon_sym_34] = ACTIONS(474), + [anon_sym_rise] = ACTIONS(474), + [anon_sym_35] = ACTIONS(474), + [anon_sym_fall] = ACTIONS(474), + [anon_sym_36] = ACTIONS(474), + [anon_sym_where] = ACTIONS(474), + [anon_sym_37] = ACTIONS(474), + [anon_sym_classify] = ACTIONS(474), + [anon_sym_38] = ACTIONS(474), + [anon_sym_deduplicate] = ACTIONS(474), + [anon_sym_39] = ACTIONS(474), + [anon_sym_box] = ACTIONS(474), + [anon_sym_40] = ACTIONS(474), + [anon_sym_unbox] = ACTIONS(474), + [anon_sym_41] = ACTIONS(474), + [anon_sym_match] = ACTIONS(474), + [anon_sym_42] = ACTIONS(474), + [anon_sym_couple] = ACTIONS(474), + [anon_sym_43] = ACTIONS(474), + [anon_sym_join] = ACTIONS(474), + [anon_sym_44] = ACTIONS(474), + [anon_sym_select] = ACTIONS(474), + [anon_sym_45] = ACTIONS(474), + [anon_sym_pick] = ACTIONS(474), + [anon_sym_46] = ACTIONS(474), + [anon_sym_reshape] = ACTIONS(474), + [anon_sym_47] = ACTIONS(474), + [anon_sym_take] = ACTIONS(474), + [anon_sym_48] = ACTIONS(474), + [anon_sym_drop] = ACTIONS(474), + [anon_sym_49] = ACTIONS(474), + [anon_sym_rotate] = ACTIONS(474), + [anon_sym_50] = ACTIONS(474), + [anon_sym_windows] = ACTIONS(474), + [anon_sym_51] = ACTIONS(474), + [anon_sym_keep] = ACTIONS(474), + [anon_sym_52] = ACTIONS(474), + [anon_sym_find] = ACTIONS(474), + [anon_sym_53] = ACTIONS(474), + [anon_sym_member] = ACTIONS(474), + [anon_sym_54] = ACTIONS(474), + [anon_sym_indexof] = ACTIONS(474), + [anon_sym_55] = ACTIONS(474), + [anon_sym_assert] = ACTIONS(474), + [anon_sym_56] = ACTIONS(474), + [anon_sym_wait] = ACTIONS(474), + [anon_sym_break] = ACTIONS(474), + [anon_sym_57] = ACTIONS(474), + [anon_sym_parse] = ACTIONS(474), + [anon_sym_random] = ACTIONS(474), + [anon_sym_58] = ACTIONS(474), + [anon_sym_gen] = ACTIONS(474), + [anon_sym_deal] = ACTIONS(474), + [anon_sym_tag] = ACTIONS(474), + [anon_sym_now] = ACTIONS(474), + [anon_sym_type] = ACTIONS(474), + [anon_sym_59] = ACTIONS(474), + [anon_sym_dump] = ACTIONS(474), + [anon_sym_regex] = ACTIONS(474), + [anon_sym_utf] = ACTIONS(474), + [anon_sym_rock] = ACTIONS(474), + [anon_sym_60] = ACTIONS(474), + [anon_sym_surface] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_deep] = ACTIONS(474), + [anon_sym_de] = ACTIONS(472), + [anon_sym_61] = ACTIONS(474), + [anon_sym_abyss] = ACTIONS(474), + [anon_sym_ab] = ACTIONS(472), + [anon_sym_62] = ACTIONS(474), + [anon_sym_seabed] = ACTIONS(474), + [anon_sym_se] = ACTIONS(472), + [anon_sym_63] = ACTIONS(474), + [anon_sym_send] = ACTIONS(474), + [anon_sym_recv] = ACTIONS(474), + [anon_sym_tryrecv] = ACTIONS(474), [sym__whitespace] = ACTIONS(5), [sym__end_of_line] = ACTIONS(5), }, [130] = { - [anon_sym_PIPE] = ACTIONS(488), - [sym_identifier] = ACTIONS(486), - [sym_system] = ACTIONS(488), + [anon_sym_PIPE] = ACTIONS(470), + [sym_identifier] = ACTIONS(468), + [sym_system] = ACTIONS(470), [sym_comment] = ACTIONS(3), - [sym_closeParen] = ACTIONS(488), - [sym_underscore] = ACTIONS(488), - [anon_sym_DOT] = ACTIONS(488), - [anon_sym_COMMA] = ACTIONS(488), - [anon_sym_5] = ACTIONS(488), - [anon_sym_SEMI] = ACTIONS(488), - [anon_sym_identity] = ACTIONS(488), - [anon_sym_id] = ACTIONS(486), - [anon_sym_6] = ACTIONS(488), - [anon_sym_not] = ACTIONS(488), - [anon_sym_7] = ACTIONS(488), - [anon_sym_sign] = ACTIONS(488), - [anon_sym_8] = ACTIONS(488), - [anon_sym_BQUOTE] = ACTIONS(488), - [anon_sym_9] = ACTIONS(488), - [anon_sym_absolutevalue] = ACTIONS(488), - [anon_sym_10] = ACTIONS(488), - [anon_sym_sqrt] = ACTIONS(488), - [anon_sym_11] = ACTIONS(488), - [anon_sym_sine] = ACTIONS(488), - [anon_sym_12] = ACTIONS(488), - [anon_sym_floor] = ACTIONS(488), - [anon_sym_13] = ACTIONS(488), - [anon_sym_ceiling] = ACTIONS(488), - [anon_sym_14] = ACTIONS(488), - [anon_sym_round] = ACTIONS(488), - [anon_sym_15] = ACTIONS(488), - [anon_sym_EQ] = ACTIONS(488), - [anon_sym_BANG_EQ] = ACTIONS(488), - [anon_sym_16] = ACTIONS(488), - [anon_sym_LT] = ACTIONS(486), - [anon_sym_LT_EQ] = ACTIONS(488), - [anon_sym_17] = ACTIONS(488), - [anon_sym_GT] = ACTIONS(486), - [anon_sym_GT_EQ] = ACTIONS(488), - [anon_sym_18] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(488), - [anon_sym_DASH] = ACTIONS(488), - [anon_sym_STAR] = ACTIONS(488), - [anon_sym_19] = ACTIONS(488), - [anon_sym_PERCENT] = ACTIONS(488), - [anon_sym_20] = ACTIONS(488), - [anon_sym_modulus] = ACTIONS(488), - [anon_sym_21] = ACTIONS(488), - [anon_sym_power] = ACTIONS(488), - [anon_sym_22] = ACTIONS(488), - [anon_sym_logarithm] = ACTIONS(488), - [anon_sym_23] = ACTIONS(488), - [anon_sym_minimum] = ACTIONS(488), - [anon_sym_24] = ACTIONS(488), - [anon_sym_maximum] = ACTIONS(488), - [anon_sym_25] = ACTIONS(488), - [anon_sym_atangent] = ACTIONS(488), - [anon_sym_26] = ACTIONS(488), - [anon_sym_length] = ACTIONS(488), - [anon_sym_27] = ACTIONS(488), - [anon_sym_shape] = ACTIONS(488), - [anon_sym_28] = ACTIONS(488), - [anon_sym_range] = ACTIONS(488), - [anon_sym_29] = ACTIONS(488), - [anon_sym_first] = ACTIONS(488), - [anon_sym_30] = ACTIONS(488), - [anon_sym_reverse] = ACTIONS(488), - [anon_sym_31] = ACTIONS(488), - [anon_sym_deshape] = ACTIONS(488), - [anon_sym_32] = ACTIONS(488), - [anon_sym_bits] = ACTIONS(488), - [anon_sym_33] = ACTIONS(488), - [anon_sym_transpose] = ACTIONS(488), - [anon_sym_34] = ACTIONS(488), - [anon_sym_rise] = ACTIONS(488), - [anon_sym_35] = ACTIONS(488), - [anon_sym_fall] = ACTIONS(488), - [anon_sym_36] = ACTIONS(488), - [anon_sym_where] = ACTIONS(488), - [anon_sym_37] = ACTIONS(488), - [anon_sym_classify] = ACTIONS(488), - [anon_sym_38] = ACTIONS(488), - [anon_sym_deduplicate] = ACTIONS(488), - [anon_sym_39] = ACTIONS(488), - [anon_sym_box] = ACTIONS(488), - [anon_sym_40] = ACTIONS(488), - [anon_sym_unbox] = ACTIONS(488), - [anon_sym_41] = ACTIONS(488), - [anon_sym_match] = ACTIONS(488), - [anon_sym_42] = ACTIONS(488), - [anon_sym_couple] = ACTIONS(488), - [anon_sym_43] = ACTIONS(488), - [anon_sym_join] = ACTIONS(488), - [anon_sym_44] = ACTIONS(488), - [anon_sym_select] = ACTIONS(488), - [anon_sym_45] = ACTIONS(488), - [anon_sym_pick] = ACTIONS(488), - [anon_sym_46] = ACTIONS(488), - [anon_sym_reshape] = ACTIONS(488), - [anon_sym_47] = ACTIONS(488), - [anon_sym_take] = ACTIONS(488), - [anon_sym_48] = ACTIONS(488), - [anon_sym_drop] = ACTIONS(488), - [anon_sym_49] = ACTIONS(488), - [anon_sym_rotate] = ACTIONS(488), - [anon_sym_50] = ACTIONS(488), - [anon_sym_windows] = ACTIONS(488), - [anon_sym_51] = ACTIONS(488), - [anon_sym_keep] = ACTIONS(488), - [anon_sym_52] = ACTIONS(488), - [anon_sym_find] = ACTIONS(488), - [anon_sym_53] = ACTIONS(488), - [anon_sym_member] = ACTIONS(488), - [anon_sym_54] = ACTIONS(488), - [anon_sym_indexof] = ACTIONS(488), - [anon_sym_55] = ACTIONS(488), - [anon_sym_assert] = ACTIONS(488), - [anon_sym_56] = ACTIONS(488), - [anon_sym_wait] = ACTIONS(488), - [anon_sym_break] = ACTIONS(488), - [anon_sym_57] = ACTIONS(488), - [anon_sym_parse] = ACTIONS(488), - [anon_sym_random] = ACTIONS(488), - [anon_sym_58] = ACTIONS(488), - [anon_sym_gen] = ACTIONS(488), - [anon_sym_deal] = ACTIONS(488), - [anon_sym_tag] = ACTIONS(488), - [anon_sym_now] = ACTIONS(488), - [anon_sym_type] = ACTIONS(488), - [anon_sym_59] = ACTIONS(488), - [anon_sym_dump] = ACTIONS(488), - [anon_sym_regex] = ACTIONS(488), - [anon_sym_utf] = ACTIONS(488), - [anon_sym_rock] = ACTIONS(488), - [anon_sym_60] = ACTIONS(488), - [anon_sym_surface] = ACTIONS(488), - [anon_sym_TILDE] = ACTIONS(488), - [anon_sym_deep] = ACTIONS(488), - [anon_sym_de] = ACTIONS(486), - [anon_sym_61] = ACTIONS(488), - [anon_sym_abyss] = ACTIONS(488), - [anon_sym_ab] = ACTIONS(486), - [anon_sym_62] = ACTIONS(488), - [anon_sym_seabed] = ACTIONS(488), - [anon_sym_se] = ACTIONS(486), - [anon_sym_63] = ACTIONS(488), - [anon_sym_send] = ACTIONS(488), - [anon_sym_recv] = ACTIONS(488), - [anon_sym_tryrecv] = ACTIONS(488), + [sym_closeParen] = ACTIONS(470), + [sym_underscore] = ACTIONS(470), + [anon_sym_DOT] = ACTIONS(470), + [anon_sym_COMMA] = ACTIONS(470), + [anon_sym_5] = ACTIONS(470), + [anon_sym_SEMI] = ACTIONS(470), + [anon_sym_identity] = ACTIONS(470), + [anon_sym_id] = ACTIONS(468), + [anon_sym_6] = ACTIONS(470), + [anon_sym_not] = ACTIONS(470), + [anon_sym_7] = ACTIONS(470), + [anon_sym_sign] = ACTIONS(470), + [anon_sym_8] = ACTIONS(470), + [anon_sym_BQUOTE] = ACTIONS(470), + [anon_sym_9] = ACTIONS(470), + [anon_sym_absolutevalue] = ACTIONS(470), + [anon_sym_10] = ACTIONS(470), + [anon_sym_sqrt] = ACTIONS(470), + [anon_sym_11] = ACTIONS(470), + [anon_sym_sine] = ACTIONS(470), + [anon_sym_12] = ACTIONS(470), + [anon_sym_floor] = ACTIONS(470), + [anon_sym_13] = ACTIONS(470), + [anon_sym_ceiling] = ACTIONS(470), + [anon_sym_14] = ACTIONS(470), + [anon_sym_round] = ACTIONS(470), + [anon_sym_15] = ACTIONS(470), + [anon_sym_EQ] = ACTIONS(470), + [anon_sym_BANG_EQ] = ACTIONS(470), + [anon_sym_16] = ACTIONS(470), + [anon_sym_LT] = ACTIONS(468), + [anon_sym_LT_EQ] = ACTIONS(470), + [anon_sym_17] = ACTIONS(470), + [anon_sym_GT] = ACTIONS(468), + [anon_sym_GT_EQ] = ACTIONS(470), + [anon_sym_18] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(470), + [anon_sym_DASH] = ACTIONS(470), + [anon_sym_STAR] = ACTIONS(470), + [anon_sym_19] = ACTIONS(470), + [anon_sym_PERCENT] = ACTIONS(470), + [anon_sym_20] = ACTIONS(470), + [anon_sym_modulus] = ACTIONS(470), + [anon_sym_21] = ACTIONS(470), + [anon_sym_power] = ACTIONS(470), + [anon_sym_22] = ACTIONS(470), + [anon_sym_logarithm] = ACTIONS(470), + [anon_sym_23] = ACTIONS(470), + [anon_sym_minimum] = ACTIONS(470), + [anon_sym_24] = ACTIONS(470), + [anon_sym_maximum] = ACTIONS(470), + [anon_sym_25] = ACTIONS(470), + [anon_sym_atangent] = ACTIONS(470), + [anon_sym_26] = ACTIONS(470), + [anon_sym_length] = ACTIONS(470), + [anon_sym_27] = ACTIONS(470), + [anon_sym_shape] = ACTIONS(470), + [anon_sym_28] = ACTIONS(470), + [anon_sym_range] = ACTIONS(470), + [anon_sym_29] = ACTIONS(470), + [anon_sym_first] = ACTIONS(470), + [anon_sym_30] = ACTIONS(470), + [anon_sym_reverse] = ACTIONS(470), + [anon_sym_31] = ACTIONS(470), + [anon_sym_deshape] = ACTIONS(470), + [anon_sym_32] = ACTIONS(470), + [anon_sym_bits] = ACTIONS(470), + [anon_sym_33] = ACTIONS(470), + [anon_sym_transpose] = ACTIONS(470), + [anon_sym_34] = ACTIONS(470), + [anon_sym_rise] = ACTIONS(470), + [anon_sym_35] = ACTIONS(470), + [anon_sym_fall] = ACTIONS(470), + [anon_sym_36] = ACTIONS(470), + [anon_sym_where] = ACTIONS(470), + [anon_sym_37] = ACTIONS(470), + [anon_sym_classify] = ACTIONS(470), + [anon_sym_38] = ACTIONS(470), + [anon_sym_deduplicate] = ACTIONS(470), + [anon_sym_39] = ACTIONS(470), + [anon_sym_box] = ACTIONS(470), + [anon_sym_40] = ACTIONS(470), + [anon_sym_unbox] = ACTIONS(470), + [anon_sym_41] = ACTIONS(470), + [anon_sym_match] = ACTIONS(470), + [anon_sym_42] = ACTIONS(470), + [anon_sym_couple] = ACTIONS(470), + [anon_sym_43] = ACTIONS(470), + [anon_sym_join] = ACTIONS(470), + [anon_sym_44] = ACTIONS(470), + [anon_sym_select] = ACTIONS(470), + [anon_sym_45] = ACTIONS(470), + [anon_sym_pick] = ACTIONS(470), + [anon_sym_46] = ACTIONS(470), + [anon_sym_reshape] = ACTIONS(470), + [anon_sym_47] = ACTIONS(470), + [anon_sym_take] = ACTIONS(470), + [anon_sym_48] = ACTIONS(470), + [anon_sym_drop] = ACTIONS(470), + [anon_sym_49] = ACTIONS(470), + [anon_sym_rotate] = ACTIONS(470), + [anon_sym_50] = ACTIONS(470), + [anon_sym_windows] = ACTIONS(470), + [anon_sym_51] = ACTIONS(470), + [anon_sym_keep] = ACTIONS(470), + [anon_sym_52] = ACTIONS(470), + [anon_sym_find] = ACTIONS(470), + [anon_sym_53] = ACTIONS(470), + [anon_sym_member] = ACTIONS(470), + [anon_sym_54] = ACTIONS(470), + [anon_sym_indexof] = ACTIONS(470), + [anon_sym_55] = ACTIONS(470), + [anon_sym_assert] = ACTIONS(470), + [anon_sym_56] = ACTIONS(470), + [anon_sym_wait] = ACTIONS(470), + [anon_sym_break] = ACTIONS(470), + [anon_sym_57] = ACTIONS(470), + [anon_sym_parse] = ACTIONS(470), + [anon_sym_random] = ACTIONS(470), + [anon_sym_58] = ACTIONS(470), + [anon_sym_gen] = ACTIONS(470), + [anon_sym_deal] = ACTIONS(470), + [anon_sym_tag] = ACTIONS(470), + [anon_sym_now] = ACTIONS(470), + [anon_sym_type] = ACTIONS(470), + [anon_sym_59] = ACTIONS(470), + [anon_sym_dump] = ACTIONS(470), + [anon_sym_regex] = ACTIONS(470), + [anon_sym_utf] = ACTIONS(470), + [anon_sym_rock] = ACTIONS(470), + [anon_sym_60] = ACTIONS(470), + [anon_sym_surface] = ACTIONS(470), + [anon_sym_TILDE] = ACTIONS(470), + [anon_sym_deep] = ACTIONS(470), + [anon_sym_de] = ACTIONS(468), + [anon_sym_61] = ACTIONS(470), + [anon_sym_abyss] = ACTIONS(470), + [anon_sym_ab] = ACTIONS(468), + [anon_sym_62] = ACTIONS(470), + [anon_sym_seabed] = ACTIONS(470), + [anon_sym_se] = ACTIONS(468), + [anon_sym_63] = ACTIONS(470), + [anon_sym_send] = ACTIONS(470), + [anon_sym_recv] = ACTIONS(470), + [anon_sym_tryrecv] = ACTIONS(470), [sym__whitespace] = ACTIONS(5), [sym__end_of_line] = ACTIONS(5), }, [131] = { - [anon_sym_PIPE] = ACTIONS(484), - [sym_identifier] = ACTIONS(482), - [sym_system] = ACTIONS(484), + [anon_sym_PIPE] = ACTIONS(466), + [sym_identifier] = ACTIONS(464), + [sym_system] = ACTIONS(466), [sym_comment] = ACTIONS(3), - [sym_closeParen] = ACTIONS(484), - [sym_underscore] = ACTIONS(484), - [anon_sym_DOT] = ACTIONS(484), - [anon_sym_COMMA] = ACTIONS(484), - [anon_sym_5] = ACTIONS(484), - [anon_sym_SEMI] = ACTIONS(484), - [anon_sym_identity] = ACTIONS(484), - [anon_sym_id] = ACTIONS(482), - [anon_sym_6] = ACTIONS(484), - [anon_sym_not] = ACTIONS(484), - [anon_sym_7] = ACTIONS(484), - [anon_sym_sign] = ACTIONS(484), - [anon_sym_8] = ACTIONS(484), - [anon_sym_BQUOTE] = ACTIONS(484), - [anon_sym_9] = ACTIONS(484), - [anon_sym_absolutevalue] = ACTIONS(484), - [anon_sym_10] = ACTIONS(484), - [anon_sym_sqrt] = ACTIONS(484), - [anon_sym_11] = ACTIONS(484), - [anon_sym_sine] = ACTIONS(484), - [anon_sym_12] = ACTIONS(484), - [anon_sym_floor] = ACTIONS(484), - [anon_sym_13] = ACTIONS(484), - [anon_sym_ceiling] = ACTIONS(484), - [anon_sym_14] = ACTIONS(484), - [anon_sym_round] = ACTIONS(484), - [anon_sym_15] = ACTIONS(484), - [anon_sym_EQ] = ACTIONS(484), - [anon_sym_BANG_EQ] = ACTIONS(484), - [anon_sym_16] = ACTIONS(484), - [anon_sym_LT] = ACTIONS(482), - [anon_sym_LT_EQ] = ACTIONS(484), - [anon_sym_17] = ACTIONS(484), - [anon_sym_GT] = ACTIONS(482), - [anon_sym_GT_EQ] = ACTIONS(484), - [anon_sym_18] = ACTIONS(484), - [anon_sym_PLUS] = ACTIONS(484), - [anon_sym_DASH] = ACTIONS(484), - [anon_sym_STAR] = ACTIONS(484), - [anon_sym_19] = ACTIONS(484), - [anon_sym_PERCENT] = ACTIONS(484), - [anon_sym_20] = ACTIONS(484), - [anon_sym_modulus] = ACTIONS(484), - [anon_sym_21] = ACTIONS(484), - [anon_sym_power] = ACTIONS(484), - [anon_sym_22] = ACTIONS(484), - [anon_sym_logarithm] = ACTIONS(484), - [anon_sym_23] = ACTIONS(484), - [anon_sym_minimum] = ACTIONS(484), - [anon_sym_24] = ACTIONS(484), - [anon_sym_maximum] = ACTIONS(484), - [anon_sym_25] = ACTIONS(484), - [anon_sym_atangent] = ACTIONS(484), - [anon_sym_26] = ACTIONS(484), - [anon_sym_length] = ACTIONS(484), - [anon_sym_27] = ACTIONS(484), - [anon_sym_shape] = ACTIONS(484), - [anon_sym_28] = ACTIONS(484), - [anon_sym_range] = ACTIONS(484), - [anon_sym_29] = ACTIONS(484), - [anon_sym_first] = ACTIONS(484), - [anon_sym_30] = ACTIONS(484), - [anon_sym_reverse] = ACTIONS(484), - [anon_sym_31] = ACTIONS(484), - [anon_sym_deshape] = ACTIONS(484), - [anon_sym_32] = ACTIONS(484), - [anon_sym_bits] = ACTIONS(484), - [anon_sym_33] = ACTIONS(484), - [anon_sym_transpose] = ACTIONS(484), - [anon_sym_34] = ACTIONS(484), - [anon_sym_rise] = ACTIONS(484), - [anon_sym_35] = ACTIONS(484), - [anon_sym_fall] = ACTIONS(484), - [anon_sym_36] = ACTIONS(484), - [anon_sym_where] = ACTIONS(484), - [anon_sym_37] = ACTIONS(484), - [anon_sym_classify] = ACTIONS(484), - [anon_sym_38] = ACTIONS(484), - [anon_sym_deduplicate] = ACTIONS(484), - [anon_sym_39] = ACTIONS(484), - [anon_sym_box] = ACTIONS(484), - [anon_sym_40] = ACTIONS(484), - [anon_sym_unbox] = ACTIONS(484), - [anon_sym_41] = ACTIONS(484), - [anon_sym_match] = ACTIONS(484), - [anon_sym_42] = ACTIONS(484), - [anon_sym_couple] = ACTIONS(484), - [anon_sym_43] = ACTIONS(484), - [anon_sym_join] = ACTIONS(484), - [anon_sym_44] = ACTIONS(484), - [anon_sym_select] = ACTIONS(484), - [anon_sym_45] = ACTIONS(484), - [anon_sym_pick] = ACTIONS(484), - [anon_sym_46] = ACTIONS(484), - [anon_sym_reshape] = ACTIONS(484), - [anon_sym_47] = ACTIONS(484), - [anon_sym_take] = ACTIONS(484), - [anon_sym_48] = ACTIONS(484), - [anon_sym_drop] = ACTIONS(484), - [anon_sym_49] = ACTIONS(484), - [anon_sym_rotate] = ACTIONS(484), - [anon_sym_50] = ACTIONS(484), - [anon_sym_windows] = ACTIONS(484), - [anon_sym_51] = ACTIONS(484), - [anon_sym_keep] = ACTIONS(484), - [anon_sym_52] = ACTIONS(484), - [anon_sym_find] = ACTIONS(484), - [anon_sym_53] = ACTIONS(484), - [anon_sym_member] = ACTIONS(484), - [anon_sym_54] = ACTIONS(484), - [anon_sym_indexof] = ACTIONS(484), - [anon_sym_55] = ACTIONS(484), - [anon_sym_assert] = ACTIONS(484), - [anon_sym_56] = ACTIONS(484), - [anon_sym_wait] = ACTIONS(484), - [anon_sym_break] = ACTIONS(484), - [anon_sym_57] = ACTIONS(484), - [anon_sym_parse] = ACTIONS(484), - [anon_sym_random] = ACTIONS(484), - [anon_sym_58] = ACTIONS(484), - [anon_sym_gen] = ACTIONS(484), - [anon_sym_deal] = ACTIONS(484), - [anon_sym_tag] = ACTIONS(484), - [anon_sym_now] = ACTIONS(484), - [anon_sym_type] = ACTIONS(484), - [anon_sym_59] = ACTIONS(484), - [anon_sym_dump] = ACTIONS(484), - [anon_sym_regex] = ACTIONS(484), - [anon_sym_utf] = ACTIONS(484), - [anon_sym_rock] = ACTIONS(484), - [anon_sym_60] = ACTIONS(484), - [anon_sym_surface] = ACTIONS(484), - [anon_sym_TILDE] = ACTIONS(484), - [anon_sym_deep] = ACTIONS(484), - [anon_sym_de] = ACTIONS(482), - [anon_sym_61] = ACTIONS(484), - [anon_sym_abyss] = ACTIONS(484), - [anon_sym_ab] = ACTIONS(482), - [anon_sym_62] = ACTIONS(484), - [anon_sym_seabed] = ACTIONS(484), - [anon_sym_se] = ACTIONS(482), - [anon_sym_63] = ACTIONS(484), - [anon_sym_send] = ACTIONS(484), - [anon_sym_recv] = ACTIONS(484), - [anon_sym_tryrecv] = ACTIONS(484), + [sym_closeParen] = ACTIONS(466), + [sym_underscore] = ACTIONS(466), + [anon_sym_DOT] = ACTIONS(466), + [anon_sym_COMMA] = ACTIONS(466), + [anon_sym_5] = ACTIONS(466), + [anon_sym_SEMI] = ACTIONS(466), + [anon_sym_identity] = ACTIONS(466), + [anon_sym_id] = ACTIONS(464), + [anon_sym_6] = ACTIONS(466), + [anon_sym_not] = ACTIONS(466), + [anon_sym_7] = ACTIONS(466), + [anon_sym_sign] = ACTIONS(466), + [anon_sym_8] = ACTIONS(466), + [anon_sym_BQUOTE] = ACTIONS(466), + [anon_sym_9] = ACTIONS(466), + [anon_sym_absolutevalue] = ACTIONS(466), + [anon_sym_10] = ACTIONS(466), + [anon_sym_sqrt] = ACTIONS(466), + [anon_sym_11] = ACTIONS(466), + [anon_sym_sine] = ACTIONS(466), + [anon_sym_12] = ACTIONS(466), + [anon_sym_floor] = ACTIONS(466), + [anon_sym_13] = ACTIONS(466), + [anon_sym_ceiling] = ACTIONS(466), + [anon_sym_14] = ACTIONS(466), + [anon_sym_round] = ACTIONS(466), + [anon_sym_15] = ACTIONS(466), + [anon_sym_EQ] = ACTIONS(466), + [anon_sym_BANG_EQ] = ACTIONS(466), + [anon_sym_16] = ACTIONS(466), + [anon_sym_LT] = ACTIONS(464), + [anon_sym_LT_EQ] = ACTIONS(466), + [anon_sym_17] = ACTIONS(466), + [anon_sym_GT] = ACTIONS(464), + [anon_sym_GT_EQ] = ACTIONS(466), + [anon_sym_18] = ACTIONS(466), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(466), + [anon_sym_STAR] = ACTIONS(466), + [anon_sym_19] = ACTIONS(466), + [anon_sym_PERCENT] = ACTIONS(466), + [anon_sym_20] = ACTIONS(466), + [anon_sym_modulus] = ACTIONS(466), + [anon_sym_21] = ACTIONS(466), + [anon_sym_power] = ACTIONS(466), + [anon_sym_22] = ACTIONS(466), + [anon_sym_logarithm] = ACTIONS(466), + [anon_sym_23] = ACTIONS(466), + [anon_sym_minimum] = ACTIONS(466), + [anon_sym_24] = ACTIONS(466), + [anon_sym_maximum] = ACTIONS(466), + [anon_sym_25] = ACTIONS(466), + [anon_sym_atangent] = ACTIONS(466), + [anon_sym_26] = ACTIONS(466), + [anon_sym_length] = ACTIONS(466), + [anon_sym_27] = ACTIONS(466), + [anon_sym_shape] = ACTIONS(466), + [anon_sym_28] = ACTIONS(466), + [anon_sym_range] = ACTIONS(466), + [anon_sym_29] = ACTIONS(466), + [anon_sym_first] = ACTIONS(466), + [anon_sym_30] = ACTIONS(466), + [anon_sym_reverse] = ACTIONS(466), + [anon_sym_31] = ACTIONS(466), + [anon_sym_deshape] = ACTIONS(466), + [anon_sym_32] = ACTIONS(466), + [anon_sym_bits] = ACTIONS(466), + [anon_sym_33] = ACTIONS(466), + [anon_sym_transpose] = ACTIONS(466), + [anon_sym_34] = ACTIONS(466), + [anon_sym_rise] = ACTIONS(466), + [anon_sym_35] = ACTIONS(466), + [anon_sym_fall] = ACTIONS(466), + [anon_sym_36] = ACTIONS(466), + [anon_sym_where] = ACTIONS(466), + [anon_sym_37] = ACTIONS(466), + [anon_sym_classify] = ACTIONS(466), + [anon_sym_38] = ACTIONS(466), + [anon_sym_deduplicate] = ACTIONS(466), + [anon_sym_39] = ACTIONS(466), + [anon_sym_box] = ACTIONS(466), + [anon_sym_40] = ACTIONS(466), + [anon_sym_unbox] = ACTIONS(466), + [anon_sym_41] = ACTIONS(466), + [anon_sym_match] = ACTIONS(466), + [anon_sym_42] = ACTIONS(466), + [anon_sym_couple] = ACTIONS(466), + [anon_sym_43] = ACTIONS(466), + [anon_sym_join] = ACTIONS(466), + [anon_sym_44] = ACTIONS(466), + [anon_sym_select] = ACTIONS(466), + [anon_sym_45] = ACTIONS(466), + [anon_sym_pick] = ACTIONS(466), + [anon_sym_46] = ACTIONS(466), + [anon_sym_reshape] = ACTIONS(466), + [anon_sym_47] = ACTIONS(466), + [anon_sym_take] = ACTIONS(466), + [anon_sym_48] = ACTIONS(466), + [anon_sym_drop] = ACTIONS(466), + [anon_sym_49] = ACTIONS(466), + [anon_sym_rotate] = ACTIONS(466), + [anon_sym_50] = ACTIONS(466), + [anon_sym_windows] = ACTIONS(466), + [anon_sym_51] = ACTIONS(466), + [anon_sym_keep] = ACTIONS(466), + [anon_sym_52] = ACTIONS(466), + [anon_sym_find] = ACTIONS(466), + [anon_sym_53] = ACTIONS(466), + [anon_sym_member] = ACTIONS(466), + [anon_sym_54] = ACTIONS(466), + [anon_sym_indexof] = ACTIONS(466), + [anon_sym_55] = ACTIONS(466), + [anon_sym_assert] = ACTIONS(466), + [anon_sym_56] = ACTIONS(466), + [anon_sym_wait] = ACTIONS(466), + [anon_sym_break] = ACTIONS(466), + [anon_sym_57] = ACTIONS(466), + [anon_sym_parse] = ACTIONS(466), + [anon_sym_random] = ACTIONS(466), + [anon_sym_58] = ACTIONS(466), + [anon_sym_gen] = ACTIONS(466), + [anon_sym_deal] = ACTIONS(466), + [anon_sym_tag] = ACTIONS(466), + [anon_sym_now] = ACTIONS(466), + [anon_sym_type] = ACTIONS(466), + [anon_sym_59] = ACTIONS(466), + [anon_sym_dump] = ACTIONS(466), + [anon_sym_regex] = ACTIONS(466), + [anon_sym_utf] = ACTIONS(466), + [anon_sym_rock] = ACTIONS(466), + [anon_sym_60] = ACTIONS(466), + [anon_sym_surface] = ACTIONS(466), + [anon_sym_TILDE] = ACTIONS(466), + [anon_sym_deep] = ACTIONS(466), + [anon_sym_de] = ACTIONS(464), + [anon_sym_61] = ACTIONS(466), + [anon_sym_abyss] = ACTIONS(466), + [anon_sym_ab] = ACTIONS(464), + [anon_sym_62] = ACTIONS(466), + [anon_sym_seabed] = ACTIONS(466), + [anon_sym_se] = ACTIONS(464), + [anon_sym_63] = ACTIONS(466), + [anon_sym_send] = ACTIONS(466), + [anon_sym_recv] = ACTIONS(466), + [anon_sym_tryrecv] = ACTIONS(466), [sym__whitespace] = ACTIONS(5), [sym__end_of_line] = ACTIONS(5), }, @@ -39009,11 +38739,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { static const uint16_t ts_small_parse_table[] = { [0] = 5, - ACTIONS(138), 1, + ACTIONS(133), 1, sym_underscore, - ACTIONS(596), 1, + ACTIONS(578), 1, anon_sym_PIPE, - ACTIONS(598), 1, + ACTIONS(580), 1, sym_closeParen, STATE(124), 1, sym_branchSeparator, @@ -39022,11 +38752,11 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym__end_of_line, [18] = 5, - ACTIONS(138), 1, + ACTIONS(133), 1, sym_underscore, - ACTIONS(596), 1, + ACTIONS(578), 1, anon_sym_PIPE, - ACTIONS(600), 1, + ACTIONS(582), 1, sym_closeParen, STATE(124), 1, sym_branchSeparator, @@ -39035,11 +38765,11 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym__end_of_line, [36] = 5, - ACTIONS(138), 1, + ACTIONS(133), 1, sym_underscore, - ACTIONS(596), 1, + ACTIONS(578), 1, anon_sym_PIPE, - ACTIONS(602), 1, + ACTIONS(584), 1, sym_closeParen, STATE(124), 1, sym_branchSeparator, @@ -39048,9 +38778,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym__end_of_line, [54] = 4, - ACTIONS(138), 1, + ACTIONS(133), 1, sym_underscore, - ACTIONS(596), 1, + ACTIONS(578), 1, anon_sym_PIPE, STATE(124), 1, sym_branchSeparator, @@ -39063,7 +38793,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, sym__whitespace, sym__end_of_line, - ACTIONS(460), 3, + ACTIONS(442), 3, anon_sym_PIPE, sym_closeParen, sym_underscore, @@ -39072,7 +38802,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, sym__whitespace, sym__end_of_line, - ACTIONS(448), 3, + ACTIONS(430), 3, anon_sym_PIPE, sym_closeParen, sym_underscore, @@ -39081,7 +38811,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, sym__whitespace, sym__end_of_line, - ACTIONS(444), 3, + ACTIONS(426), 3, anon_sym_PIPE, sym_closeParen, sym_underscore, @@ -39090,14 +38820,14 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, sym__whitespace, sym__end_of_line, - ACTIONS(476), 3, + ACTIONS(458), 3, anon_sym_PIPE, sym_closeParen, sym_underscore, [113] = 3, - ACTIONS(138), 1, + ACTIONS(133), 1, sym_underscore, - ACTIONS(468), 2, + ACTIONS(450), 2, anon_sym_PIPE, sym_closeParen, ACTIONS(5), 3, @@ -39109,7 +38839,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, sym__whitespace, sym__end_of_line, - ACTIONS(472), 3, + ACTIONS(454), 3, anon_sym_PIPE, sym_closeParen, sym_underscore, @@ -39118,7 +38848,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, sym__whitespace, sym__end_of_line, - ACTIONS(512), 3, + ACTIONS(494), 3, anon_sym_PIPE, sym_closeParen, sym_underscore, @@ -39127,7 +38857,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, sym__whitespace, sym__end_of_line, - ACTIONS(508), 3, + ACTIONS(490), 3, anon_sym_PIPE, sym_closeParen, sym_underscore, @@ -39136,7 +38866,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, sym__whitespace, sym__end_of_line, - ACTIONS(440), 3, + ACTIONS(422), 3, anon_sym_PIPE, sym_closeParen, sym_underscore, @@ -39145,7 +38875,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, sym__whitespace, sym__end_of_line, - ACTIONS(456), 3, + ACTIONS(438), 3, anon_sym_PIPE, sym_closeParen, sym_underscore, @@ -39154,7 +38884,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, sym__whitespace, sym__end_of_line, - ACTIONS(452), 3, + ACTIONS(434), 3, anon_sym_PIPE, sym_closeParen, sym_underscore, @@ -39163,7 +38893,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, sym__whitespace, sym__end_of_line, - ACTIONS(420), 3, + ACTIONS(402), 3, anon_sym_PIPE, sym_closeParen, sym_underscore, @@ -39172,7 +38902,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, sym__whitespace, sym__end_of_line, - ACTIONS(480), 3, + ACTIONS(462), 3, anon_sym_PIPE, sym_closeParen, sym_underscore, @@ -39181,7 +38911,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, sym__whitespace, sym__end_of_line, - ACTIONS(464), 3, + ACTIONS(446), 3, anon_sym_PIPE, sym_closeParen, sym_underscore, @@ -39190,7 +38920,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, sym__whitespace, sym__end_of_line, - ACTIONS(504), 3, + ACTIONS(486), 3, anon_sym_PIPE, sym_closeParen, sym_underscore, @@ -39199,7 +38929,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, sym__whitespace, sym__end_of_line, - ACTIONS(440), 3, + ACTIONS(422), 3, anon_sym_PIPE, sym_closeParen, sym_underscore, @@ -39208,7 +38938,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, sym__whitespace, sym__end_of_line, - ACTIONS(432), 3, + ACTIONS(414), 3, anon_sym_PIPE, sym_closeParen, sym_underscore, @@ -39217,7 +38947,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, sym__whitespace, sym__end_of_line, - ACTIONS(492), 3, + ACTIONS(474), 3, anon_sym_PIPE, sym_closeParen, sym_underscore, @@ -39226,7 +38956,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, sym__whitespace, sym__end_of_line, - ACTIONS(496), 3, + ACTIONS(478), 3, anon_sym_PIPE, sym_closeParen, sym_underscore, @@ -39235,7 +38965,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, sym__whitespace, sym__end_of_line, - ACTIONS(500), 3, + ACTIONS(482), 3, anon_sym_PIPE, sym_closeParen, sym_underscore, @@ -39243,12 +38973,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_comment, sym__whitespace, - ACTIONS(528), 3, + ACTIONS(510), 3, ts_builtin_sym_end, sym_closeParen, sym__end_of_line, [301] = 2, - ACTIONS(604), 1, + ACTIONS(586), 1, aux_sym_signature_token1, ACTIONS(5), 3, sym_comment, @@ -39258,75 +38988,75 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_comment, sym__whitespace, - ACTIONS(606), 2, + ACTIONS(588), 2, ts_builtin_sym_end, sym__end_of_line, [319] = 2, - ACTIONS(608), 1, + ACTIONS(590), 1, aux_sym_signature_token1, ACTIONS(5), 3, sym_comment, sym__whitespace, sym__end_of_line, [328] = 3, - ACTIONS(610), 1, + ACTIONS(592), 1, sym_closeParen, - ACTIONS(612), 1, + ACTIONS(594), 1, sym__end_of_line, ACTIONS(5), 2, sym_comment, sym__whitespace, [339] = 3, - ACTIONS(548), 1, + ACTIONS(530), 1, sym_closeParen, - ACTIONS(614), 1, + ACTIONS(596), 1, sym__end_of_line, ACTIONS(5), 2, sym_comment, sym__whitespace, [350] = 3, - ACTIONS(616), 1, + ACTIONS(598), 1, ts_builtin_sym_end, - ACTIONS(618), 1, + ACTIONS(600), 1, sym__end_of_line, ACTIONS(5), 2, sym_comment, sym__whitespace, [361] = 3, - ACTIONS(552), 1, + ACTIONS(534), 1, sym_closeParen, - ACTIONS(620), 1, + ACTIONS(602), 1, sym__end_of_line, ACTIONS(5), 2, sym_comment, sym__whitespace, [372] = 3, - ACTIONS(558), 1, + ACTIONS(540), 1, sym_closeParen, - ACTIONS(622), 1, + ACTIONS(604), 1, sym__end_of_line, ACTIONS(5), 2, sym_comment, sym__whitespace, [383] = 2, - ACTIONS(624), 1, + ACTIONS(606), 1, aux_sym_signature_token1, ACTIONS(5), 3, sym_comment, sym__whitespace, sym__end_of_line, [392] = 3, - ACTIONS(626), 1, + ACTIONS(608), 1, sym_closeParen, - ACTIONS(628), 1, + ACTIONS(610), 1, sym__end_of_line, ACTIONS(5), 2, sym_comment, sym__whitespace, [403] = 3, - ACTIONS(630), 1, + ACTIONS(612), 1, sym_closeParen, - ACTIONS(632), 1, + ACTIONS(614), 1, sym__end_of_line, ACTIONS(5), 2, sym_comment, @@ -39335,58 +39065,58 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_comment, sym__whitespace, - ACTIONS(634), 2, + ACTIONS(616), 2, ts_builtin_sym_end, sym__end_of_line, [423] = 3, - ACTIONS(618), 1, + ACTIONS(600), 1, sym__end_of_line, - ACTIONS(636), 1, + ACTIONS(618), 1, ts_builtin_sym_end, ACTIONS(5), 2, sym_comment, sym__whitespace, [434] = 2, - ACTIONS(638), 1, + ACTIONS(620), 1, ts_builtin_sym_end, ACTIONS(5), 3, sym_comment, sym__whitespace, sym__end_of_line, [443] = 2, - ACTIONS(640), 1, + ACTIONS(622), 1, ts_builtin_sym_end, ACTIONS(5), 3, sym_comment, sym__whitespace, sym__end_of_line, [452] = 2, - ACTIONS(642), 1, + ACTIONS(624), 1, aux_sym_signature_token1, ACTIONS(5), 3, sym_comment, sym__whitespace, sym__end_of_line, [461] = 2, - ACTIONS(644), 1, + ACTIONS(626), 1, sym__end_of_line, ACTIONS(5), 2, sym_comment, sym__whitespace, [469] = 2, - ACTIONS(618), 1, + ACTIONS(600), 1, sym__end_of_line, ACTIONS(5), 2, sym_comment, sym__whitespace, [477] = 2, - ACTIONS(646), 1, + ACTIONS(628), 1, sym__end_of_line, ACTIONS(5), 2, sym_comment, sym__whitespace, [485] = 2, - ACTIONS(648), 1, + ACTIONS(630), 1, sym__end_of_line, ACTIONS(5), 2, sym_comment, @@ -39464,268 +39194,261 @@ static const TSParseActionEntry ts_parse_actions[] = { [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [51] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(81), - [54] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(82), - [57] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(80), - [60] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(79), - [63] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(165), - [66] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(79), - [69] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(17), - [72] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(28), - [75] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(33), - [78] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat2, 2), - [80] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(27), - [83] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(17), - [86] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(157), - [89] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(78), - [92] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(78), - [95] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(77), - [98] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(77), - [101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(76), - [104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(76), - [107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(75), - [110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(75), - [113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(74), - [116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), - [130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_segment, 1), - [134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), - [148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), - [152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), - [156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), - [160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(81), - [165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(82), - [168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(80), - [171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(79), - [174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(165), - [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(79), - [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(38), - [183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(41), - [186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(28), - [189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(33), - [192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(27), - [195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(38), - [198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(157), - [201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(78), - [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(78), - [207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(77), - [210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(77), - [213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(76), - [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(76), - [219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(75), - [222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(75), - [225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(74), - [228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), - [230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(81), - [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(82), - [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(80), - [271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(79), - [274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(165), - [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(79), - [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(38), - [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(28), - [286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(33), - [289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(27), - [292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(38), - [295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(157), - [298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(78), - [301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(78), - [304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(77), - [307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(77), - [310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(76), - [313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(76), - [316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(75), - [319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(75), - [322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(74), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(143), - [364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(142), - [367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(150), - [370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(155), - [373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(165), - [376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(155), - [379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(18), - [382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(20), - [385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(8), - [388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(159), - [391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(154), - [394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(154), - [397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(153), - [400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(153), - [403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(130), - [406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(130), - [409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(131), - [412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(131), - [415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(148), - [418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primitive, 1), - [420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive, 1), - [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), - [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound, 2), - [432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound, 2), - [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2), - [440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2), - [442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4), - [444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4), - [446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switchFunctions, 4), - [448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switchFunctions, 4), - [450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiLineFunction, 4), - [452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiLineFunction, 4), - [454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound, 3), - [456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound, 3), - [458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3), - [460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3), - [462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiLineFunction, 3), - [464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiLineFunction, 3), - [466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_term, 2), - [468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_term, 2), - [470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_placeHolder, 2), - [472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_placeHolder, 2), - [474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiLineFunction, 5), - [476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiLineFunction, 5), - [478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_deprecated, 1), - [480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_deprecated, 1), - [482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_modifier2, 1), - [484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modifier2, 1), - [486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_modifier1, 1), - [488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modifier1, 1), - [490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 1), - [492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 1), - [494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 1), - [496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 1), - [498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_term, 1), - [500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_term, 1), - [502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_character, 1), - [504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_character, 1), - [506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number, 1), - [508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number, 1), - [510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_other_constant, 1), - [512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_other_constant, 1), - [514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_segment, 2), - [528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_segment, 2), - [530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_repeat2, 1), - [532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat2, 1), - [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_repeat2, 2), - [538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), - [540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), - [542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), - [544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), - [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_branchSeparator, 1), - [564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_branchSeparator, 1), - [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 2), - [570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), - [572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), - [574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), - [576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_signature, 2), - [578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signature, 2), - [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 4), - [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_PROGRAM, 2), - [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 5), - [636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_PROGRAM, 1), - [638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), - [640] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [49] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(81), + [52] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(82), + [55] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(80), + [58] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(79), + [61] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(165), + [64] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(79), + [67] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(17), + [70] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(28), + [73] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(33), + [76] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat2, 2), + [78] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(27), + [81] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(17), + [84] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(157), + [87] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(78), + [90] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(78), + [93] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(77), + [96] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(77), + [99] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(76), + [102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(75), + [105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(75), + [108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(74), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_segment, 1), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(81), + [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(82), + [161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(80), + [164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(79), + [167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(165), + [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(79), + [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(38), + [176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(41), + [179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(28), + [182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(33), + [185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(27), + [188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(38), + [191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(157), + [194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(78), + [197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(78), + [200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(77), + [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(77), + [206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(76), + [209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(75), + [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(75), + [215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(74), + [218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), + [220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(81), + [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(82), + [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(80), + [261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(79), + [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(165), + [267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(79), + [270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(38), + [273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(28), + [276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(33), + [279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(27), + [282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(38), + [285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(157), + [288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(78), + [291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(78), + [294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(77), + [297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(77), + [300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(76), + [303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(75), + [306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(75), + [309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(74), + [312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(143), + [349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(142), + [352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(150), + [355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(155), + [358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(165), + [361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(155), + [364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(18), + [367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(20), + [370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(8), + [373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(159), + [376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(154), + [379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(154), + [382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(153), + [385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(153), + [388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(130), + [391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(131), + [394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(131), + [397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(148), + [400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primitive, 1), + [402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive, 1), + [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), + [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound, 2), + [414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound, 2), + [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2), + [422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2), + [424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4), + [426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4), + [428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switchFunctions, 4), + [430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switchFunctions, 4), + [432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiLineFunction, 4), + [434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiLineFunction, 4), + [436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound, 3), + [438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound, 3), + [440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3), + [442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3), + [444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiLineFunction, 3), + [446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiLineFunction, 3), + [448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_term, 2), + [450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_term, 2), + [452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_placeHolder, 2), + [454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_placeHolder, 2), + [456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiLineFunction, 5), + [458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiLineFunction, 5), + [460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_deprecated, 1), + [462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_deprecated, 1), + [464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_modifier2, 1), + [466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modifier2, 1), + [468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_modifier1, 1), + [470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modifier1, 1), + [472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 1), + [474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 1), + [476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 1), + [478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 1), + [480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_term, 1), + [482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_term, 1), + [484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_character, 1), + [486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_character, 1), + [488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number, 1), + [490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number, 1), + [492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_other_constant, 1), + [494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_other_constant, 1), + [496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_segment, 2), + [510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_segment, 2), + [512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_repeat2, 1), + [514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat2, 1), + [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_repeat2, 2), + [520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), + [522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), + [524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), + [526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), + [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_branchSeparator, 1), + [546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_branchSeparator, 1), + [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 2), + [552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), + [554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), + [556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), + [558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_signature, 2), + [560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signature, 2), + [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 4), + [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_PROGRAM, 2), + [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 5), + [618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_PROGRAM, 1), + [620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), + [622] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), }; #ifdef __cplusplus