diff --git a/grammar.js b/grammar.js index 0725052fe..593bf0523 100644 --- a/grammar.js +++ b/grammar.js @@ -119,7 +119,7 @@ module.exports = grammar(clojure, { name: 'commonlisp', extras: ($, original) => [...original, $.block_comment], - conflicts: ($, original) => [...original, [$.for_clause], [$.accumulation_clause],], + conflicts: ($, original) => [...original, [$.for_clause], [$.accumulation_clause], [$.loop_macro, $.defun_keyword, $.package_lit]], rules: { block_comment: _ => token(seq('#|', repeat(choice(/[^|]/, /\|[^#]/)), '|#')), @@ -257,7 +257,7 @@ module.exports = grammar(clojure, { repeat(choice($.loop_clause, $._gap)), field('close', ")"))), - defun_keyword: _ => clSymbol(choice('defun', 'defmacro', 'defgeneric', 'defmethod')), + defun_keyword: _ => prec(10, clSymbol(choice('defun', 'defmacro', 'defgeneric', 'defmethod'))), defun_header: $ => choice( @@ -294,11 +294,11 @@ module.exports = grammar(clojure, { repeat(choice(field('value', $._form), $._gap)), field('close', ")"))), - package_lit: $ => prec(PREC.PACKAGE_LIT, seq( + package_lit: $ => prec(PREC.PACKAGE_LIT, choice(seq( field('package', choice($.sym_lit, 'cl')), // Make optional, instead of keywords? choice(':', '::'), field('symbol', $.sym_lit) - )), + ), prec(1, 'cl'))), _package_lit_without_slash: $ => seq( field('package', choice($._sym_lit_without_slash, 'cl')), // Make optional, instead of keywords? diff --git a/src/grammar.json b/src/grammar.json index 45a6495d6..a0405dc1c 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -1645,8 +1645,39 @@ ] }, "derefing_lit": { - "type": "SYMBOL", - "name": "complex_num_lit" + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_metadata_lit" + } + }, + { + "type": "FIELD", + "name": "marker", + "content": { + "type": "STRING", + "value": "@" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_gap" + } + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "_form" + } + } + ] }, "quoting_lit": { "type": "SEQ", @@ -3737,51 +3768,55 @@ } }, "defun_keyword": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "cl" - }, - { - "type": "STRING", - "value": ":" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "defun" - }, - { - "type": "STRING", - "value": "defmacro" - }, - { - "type": "STRING", - "value": "defgeneric" - }, - { - "type": "STRING", - "value": "defmethod" - } - ] - } - ] + "type": "PREC", + "value": 10, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "cl" + }, + { + "type": "STRING", + "value": ":" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "defun" + }, + { + "type": "STRING", + "value": "defmacro" + }, + { + "type": "STRING", + "value": "defgeneric" + }, + { + "type": "STRING", + "value": "defmethod" + } + ] + } + ] + } }, "defun_header": { "type": "CHOICE", @@ -4008,44 +4043,57 @@ "type": "PREC", "value": 2, "content": { - "type": "SEQ", + "type": "CHOICE", "members": [ { - "type": "FIELD", - "name": "package", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "sym_lit" - }, - { - "type": "STRING", - "value": "cl" - } - ] - } - }, - { - "type": "CHOICE", + "type": "SEQ", "members": [ { - "type": "STRING", - "value": ":" + "type": "FIELD", + "name": "package", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "sym_lit" + }, + { + "type": "STRING", + "value": "cl" + } + ] + } }, { - "type": "STRING", - "value": "::" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "STRING", + "value": "::" + } + ] + }, + { + "type": "FIELD", + "name": "symbol", + "content": { + "type": "SYMBOL", + "name": "sym_lit" + } } ] }, { - "type": "FIELD", - "name": "symbol", + "type": "PREC", + "value": 1, "content": { - "type": "SYMBOL", - "name": "sym_lit" + "type": "STRING", + "value": "cl" } } ] @@ -4296,6 +4344,11 @@ ], [ "accumulation_clause" + ], + [ + "loop_macro", + "defun_keyword", + "package_lit" ] ], "precedences": [], diff --git a/src/node-types.json b/src/node-types.json index 4149e623a..e556dae5b 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -2218,7 +2218,7 @@ "fields": { "package": { "multiple": false, - "required": true, + "required": false, "types": [ { "type": "cl", @@ -2232,7 +2232,7 @@ }, "symbol": { "multiple": false, - "required": true, + "required": false, "types": [ { "type": "sym_lit", diff --git a/src/parser.c b/src/parser.c index 19dc9ed9d..2583cc9db 100644 --- a/src/parser.c +++ b/src/parser.c @@ -61,16 +61,16 @@ enum { anon_sym_POUND_QMARK = 34, anon_sym_POUND_QMARK_AT = 35, anon_sym_POUND_SQUOTE = 36, - anon_sym_SQUOTE = 37, - anon_sym_BQUOTE = 38, - anon_sym_COMMA_AT = 39, - anon_sym_COMMA = 40, - sym_block_comment = 41, - sym_fancy_literal = 42, - aux_sym__format_token_token1 = 43, - anon_sym_v = 44, - anon_sym_V = 45, - anon_sym_AT = 46, + anon_sym_AT = 37, + anon_sym_SQUOTE = 38, + anon_sym_BQUOTE = 39, + anon_sym_COMMA_AT = 40, + anon_sym_COMMA = 41, + sym_block_comment = 42, + sym_fancy_literal = 43, + aux_sym__format_token_token1 = 44, + anon_sym_v = 45, + anon_sym_V = 46, anon_sym_AT_COLON = 47, anon_sym_COLON_AT = 48, anon_sym_PERCENT = 49, @@ -252,6 +252,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_POUND_QMARK] = "#\?", [anon_sym_POUND_QMARK_AT] = "#\?@", [anon_sym_POUND_SQUOTE] = "#'", + [anon_sym_AT] = "@", [anon_sym_SQUOTE] = "'", [anon_sym_BQUOTE] = "`", [anon_sym_COMMA_AT] = ",@", @@ -261,7 +262,6 @@ static const char * const ts_symbol_names[] = { [aux_sym__format_token_token1] = "char_lit", [anon_sym_v] = "v", [anon_sym_V] = "V", - [anon_sym_AT] = "@", [anon_sym_AT_COLON] = "@:", [anon_sym_COLON_AT] = ":@", [anon_sym_PERCENT] = "%", @@ -443,6 +443,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_POUND_QMARK] = anon_sym_POUND_QMARK, [anon_sym_POUND_QMARK_AT] = anon_sym_POUND_QMARK_AT, [anon_sym_POUND_SQUOTE] = anon_sym_POUND_SQUOTE, + [anon_sym_AT] = anon_sym_AT, [anon_sym_SQUOTE] = anon_sym_SQUOTE, [anon_sym_BQUOTE] = anon_sym_BQUOTE, [anon_sym_COMMA_AT] = anon_sym_COMMA_AT, @@ -452,7 +453,6 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym__format_token_token1] = sym_char_lit, [anon_sym_v] = anon_sym_v, [anon_sym_V] = anon_sym_V, - [anon_sym_AT] = anon_sym_AT, [anon_sym_AT_COLON] = anon_sym_AT_COLON, [anon_sym_COLON_AT] = anon_sym_COLON_AT, [anon_sym_PERCENT] = anon_sym_PERCENT, @@ -745,6 +745,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_AT] = { + .visible = true, + .named = false, + }, [anon_sym_SQUOTE] = { .visible = true, .named = false, @@ -781,10 +785,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_AT] = { - .visible = true, - .named = false, - }, [anon_sym_AT_COLON] = { .visible = true, .named = false, @@ -2863,57 +2863,57 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(291); - if (lookahead == '\n') ADVANCE(346); - if (lookahead == '\r') ADVANCE(346); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '#') ADVANCE(342); - if (lookahead == '%') ADVANCE(346); - if (lookahead == '&') ADVANCE(346); - if (lookahead == '\'') ADVANCE(346); - if (lookahead == '(') ADVANCE(346); - if (lookahead == ')') ADVANCE(346); - if (lookahead == '*') ADVANCE(346); - if (lookahead == ',') ADVANCE(346); - if (lookahead == '.') ADVANCE(346); - if (lookahead == '/') ADVANCE(346); - if (lookahead == ':') ADVANCE(346); - if (lookahead == ';') ADVANCE(346); - if (lookahead == '=') ADVANCE(346); - if (lookahead == '?') ADVANCE(346); - if (lookahead == '@') ADVANCE(346); - if (lookahead == 'V') ADVANCE(346); - if (lookahead == '[') ADVANCE(346); + if (eof) ADVANCE(290); + if (lookahead == '\n') ADVANCE(345); + if (lookahead == '\r') ADVANCE(345); + if (lookahead == '"') ADVANCE(339); + if (lookahead == '#') ADVANCE(341); + if (lookahead == '%') ADVANCE(345); + if (lookahead == '&') ADVANCE(345); + if (lookahead == '\'') ADVANCE(345); + if (lookahead == '(') ADVANCE(345); + if (lookahead == ')') ADVANCE(345); + if (lookahead == '*') ADVANCE(345); + if (lookahead == ',') ADVANCE(345); + if (lookahead == '.') ADVANCE(345); + if (lookahead == '/') ADVANCE(345); + if (lookahead == ':') ADVANCE(345); + if (lookahead == ';') ADVANCE(345); + if (lookahead == '=') ADVANCE(345); + if (lookahead == '?') ADVANCE(345); + if (lookahead == '@') ADVANCE(345); + if (lookahead == 'V') ADVANCE(345); + if (lookahead == '[') ADVANCE(345); if (lookahead == '\\') ADVANCE(555); - if (lookahead == ']') ADVANCE(346); - if (lookahead == '^') ADVANCE(346); - if (lookahead == '_') ADVANCE(346); - if (lookahead == '`') ADVANCE(346); - if (lookahead == 'v') ADVANCE(346); - if (lookahead == '{') ADVANCE(346); - if (lookahead == '|') ADVANCE(346); - if (lookahead == '}') ADVANCE(346); - if (lookahead == '~') ADVANCE(348); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(346); + if (lookahead == ']') ADVANCE(345); + if (lookahead == '^') ADVANCE(345); + if (lookahead == '_') ADVANCE(345); + if (lookahead == '`') ADVANCE(345); + if (lookahead == 'v') ADVANCE(345); + if (lookahead == '{') ADVANCE(345); + if (lookahead == '|') ADVANCE(345); + if (lookahead == '}') ADVANCE(345); + if (lookahead == '~') ADVANCE(347); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(345); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(346); + lookahead == 'a') ADVANCE(345); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(346); + lookahead == 'c') ADVANCE(345); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(346); + lookahead == 'i') ADVANCE(345); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(346); + lookahead == 'l') ADVANCE(345); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(346); + lookahead == 'p') ADVANCE(345); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(346); + lookahead == 'w') ADVANCE(345); if (lookahead == 'D' || lookahead == 'F' || lookahead == 'S' || lookahead == 'd' || lookahead == 'f' || - lookahead == 's') ADVANCE(346); - if (aux_sym_str_lit_token1_character_set_1(lookahead)) ADVANCE(346); + lookahead == 's') ADVANCE(345); + if (aux_sym_str_lit_token1_character_set_1(lookahead)) ADVANCE(345); if (('\t' <= lookahead && lookahead <= '\f') || (28 <= lookahead && lookahead <= ' ') || lookahead == 5760 || @@ -2922,131 +2922,125 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8232 || lookahead == 8233 || lookahead == 8287 || - lookahead == 12288) ADVANCE(346); - if (lookahead != 0) ADVANCE(346); + lookahead == 12288) ADVANCE(345); + if (lookahead != 0) ADVANCE(345); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(567); - if (lookahead == '\r') ADVANCE(568); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '#') ADVANCE(300); - if (lookahead == '%') ADVANCE(562); - if (lookahead == '&') ADVANCE(563); + if (lookahead == '\n') ADVANCE(566); + if (lookahead == '\r') ADVANCE(567); + if (lookahead == '"') ADVANCE(339); + if (lookahead == '#') ADVANCE(299); + if (lookahead == '%') ADVANCE(561); + if (lookahead == '&') ADVANCE(562); if (lookahead == '\'') ADVANCE(547); - if (lookahead == '*') ADVANCE(579); + if (lookahead == '*') ADVANCE(578); if (lookahead == ',') ADVANCE(550); - if (lookahead == '/') ADVANCE(580); - if (lookahead == ':') ADVANCE(338); - if (lookahead == ';') ADVANCE(578); - if (lookahead == '?') ADVANCE(581); - if (lookahead == '@') ADVANCE(559); - if (lookahead == 'N') ADVANCE(106); + if (lookahead == '/') ADVANCE(579); + if (lookahead == ':') ADVANCE(337); + if (lookahead == ';') ADVANCE(577); + if (lookahead == '?') ADVANCE(580); + if (lookahead == '@') ADVANCE(546); + if (lookahead == 'N') ADVANCE(105); if (lookahead == 'V') ADVANCE(558); - if (lookahead == '^') ADVANCE(566); - if (lookahead == '_') ADVANCE(573); + if (lookahead == '^') ADVANCE(565); + if (lookahead == '_') ADVANCE(572); if (lookahead == 'v') ADVANCE(557); - if (lookahead == '|') ADVANCE(564); - if (lookahead == '~') ADVANCE(348); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(27); + if (lookahead == '|') ADVANCE(563); + if (lookahead == '~') ADVANCE(347); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(28); if (lookahead == '<' || - lookahead == '>') ADVANCE(577); + lookahead == '>') ADVANCE(576); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(572); + lookahead == 'a') ADVANCE(571); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(565); + lookahead == 'c') ADVANCE(564); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(570); + lookahead == 'i') ADVANCE(569); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(569); + lookahead == 'p') ADVANCE(568); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(571); + lookahead == 'w') ADVANCE(570); if (lookahead == '[' || - lookahead == ']') ADVANCE(576); - if (('{' <= lookahead && lookahead <= '}')) ADVANCE(575); + lookahead == ']') ADVANCE(575); + if (('{' <= lookahead && lookahead <= '}')) ADVANCE(574); if (lookahead == '(' || - lookahead == ')') ADVANCE(574); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(307); - if (aux_sym_str_lit_token1_character_set_1(lookahead)) ADVANCE(583); + lookahead == ')') ADVANCE(573); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(306); + if (aux_sym_str_lit_token1_character_set_1(lookahead)) ADVANCE(582); END_STATE(); case 2: - if (lookahead == ' ') ADVANCE(122); + if (lookahead == ' ') ADVANCE(121); END_STATE(); case 3: - if (lookahead == ' ') ADVANCE(130); + if (lookahead == ' ') ADVANCE(129); END_STATE(); case 4: - if (lookahead == ' ') ADVANCE(130); + if (lookahead == ' ') ADVANCE(129); if (lookahead == 's') ADVANCE(3); END_STATE(); case 5: - if (lookahead == '!') ADVANCE(294); - if (lookahead == '?') ADVANCE(543); - if (lookahead == '^') ADVANCE(535); - if (lookahead == '_') ADVANCE(295); - if (lookahead == '|') ADVANCE(269); + if (lookahead == '!') ADVANCE(293); + if (lookahead == '?') ADVANCE(542); + if (lookahead == '^') ADVANCE(534); + if (lookahead == '_') ADVANCE(294); + if (lookahead == '|') ADVANCE(268); END_STATE(); case 6: - if (lookahead == '!') ADVANCE(294); - if (lookahead == '^') ADVANCE(535); - if (lookahead == '_') ADVANCE(295); - if (lookahead == '|') ADVANCE(269); - END_STATE(); - case 7: - if (lookahead == '!') ADVANCE(294); + if (lookahead == '!') ADVANCE(293); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(272); - if (lookahead == 'C') ADVANCE(677); + lookahead == 'b') ADVANCE(271); + if (lookahead == 'C') ADVANCE(676); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(273); + lookahead == 'o') ADVANCE(272); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(274); - if (lookahead == '^') ADVANCE(535); - if (lookahead == '_') ADVANCE(295); - if (lookahead == 'c') ADVANCE(678); - if (lookahead == '|') ADVANCE(269); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(278); + lookahead == 'x') ADVANCE(273); + if (lookahead == '^') ADVANCE(534); + if (lookahead == '_') ADVANCE(294); + if (lookahead == 'c') ADVANCE(677); + if (lookahead == '|') ADVANCE(268); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(277); END_STATE(); - case 8: - if (lookahead == '!') ADVANCE(294); + case 7: + if (lookahead == '!') ADVANCE(293); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(272); + lookahead == 'b') ADVANCE(271); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(273); + lookahead == 'o') ADVANCE(272); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(274); - if (lookahead == '^') ADVANCE(535); - if (lookahead == '_') ADVANCE(295); - if (lookahead == '|') ADVANCE(269); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(278); + lookahead == 'x') ADVANCE(273); + if (lookahead == '^') ADVANCE(534); + if (lookahead == '_') ADVANCE(294); + if (lookahead == '|') ADVANCE(268); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(277); END_STATE(); - case 9: - if (lookahead == '"') ADVANCE(340); - if (lookahead == '#') ADVANCE(296); + case 8: + if (lookahead == '"') ADVANCE(339); + if (lookahead == '#') ADVANCE(295); if (lookahead == '\'') ADVANCE(547); - if (lookahead == '(') ADVANCE(536); - if (lookahead == ')') ADVANCE(537); + if (lookahead == '(') ADVANCE(535); + if (lookahead == ')') ADVANCE(536); if (lookahead == ',') ADVANCE(551); - if (lookahead == '.') ADVANCE(303); - if (lookahead == ':') ADVANCE(337); - if (lookahead == ';') ADVANCE(294); - if (lookahead == '^') ADVANCE(534); + if (lookahead == '.') ADVANCE(302); + if (lookahead == ':') ADVANCE(336); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '^') ADVANCE(533); if (lookahead == '`') ADVANCE(548); - if (lookahead == 'a') ADVANCE(435); - if (lookahead == 'c') ADVANCE(432); - if (lookahead == 'd') ADVANCE(469); - if (lookahead == 'e') ADVANCE(436); - if (lookahead == 'f') ADVANCE(422); - if (lookahead == 'i') ADVANCE(408); - if (lookahead == 'm') ADVANCE(371); - if (lookahead == 'n') ADVANCE(382); - if (lookahead == 'r') ADVANCE(390); - if (lookahead == 's') ADVANCE(509); - if (lookahead == 't') ADVANCE(417); - if (lookahead == 'u') ADVANCE(452); - if (lookahead == 'w') ADVANCE(415); - if (lookahead == '|') ADVANCE(521); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(370); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(306); + if (lookahead == 'a') ADVANCE(434); + if (lookahead == 'c') ADVANCE(431); + if (lookahead == 'd') ADVANCE(468); + if (lookahead == 'e') ADVANCE(435); + if (lookahead == 'f') ADVANCE(421); + if (lookahead == 'i') ADVANCE(407); + if (lookahead == 'm') ADVANCE(370); + if (lookahead == 'n') ADVANCE(381); + if (lookahead == 'r') ADVANCE(389); + if (lookahead == 's') ADVANCE(508); + if (lookahead == 't') ADVANCE(416); + if (lookahead == 'u') ADVANCE(451); + if (lookahead == 'w') ADVANCE(414); + if (lookahead == '|') ADVANCE(520); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(369); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(305); if (('\t' <= lookahead && lookahead <= '\r') || (28 <= lookahead && lookahead <= ' ') || lookahead == 5760 || @@ -3055,44 +3049,44 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8232 || lookahead == 8233 || lookahead == 8287 || - lookahead == 12288) ADVANCE(292); + lookahead == 12288) ADVANCE(291); if (lookahead != 0 && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(533); + (lookahead < '{' || '}' < lookahead)) ADVANCE(532); END_STATE(); - case 10: - if (lookahead == '"') ADVANCE(340); - if (lookahead == '#') ADVANCE(296); + case 9: + if (lookahead == '"') ADVANCE(339); + if (lookahead == '#') ADVANCE(295); if (lookahead == '\'') ADVANCE(547); - if (lookahead == '(') ADVANCE(536); - if (lookahead == ')') ADVANCE(537); + if (lookahead == '(') ADVANCE(535); + if (lookahead == ')') ADVANCE(536); if (lookahead == ',') ADVANCE(551); - if (lookahead == '.') ADVANCE(303); - if (lookahead == ':') ADVANCE(337); - if (lookahead == ';') ADVANCE(294); - if (lookahead == '^') ADVANCE(534); + if (lookahead == '.') ADVANCE(302); + if (lookahead == ':') ADVANCE(336); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '^') ADVANCE(533); if (lookahead == '`') ADVANCE(548); - if (lookahead == 'a') ADVANCE(435); - if (lookahead == 'c') ADVANCE(432); - if (lookahead == 'd') ADVANCE(327); - if (lookahead == 'e') ADVANCE(436); - if (lookahead == 'f') ADVANCE(324); - if (lookahead == 'i') ADVANCE(408); - if (lookahead == 'm') ADVANCE(371); - if (lookahead == 'n') ADVANCE(382); - if (lookahead == 'r') ADVANCE(390); - if (lookahead == 's') ADVANCE(334); - if (lookahead == 't') ADVANCE(417); - if (lookahead == 'u') ADVANCE(452); - if (lookahead == 'w') ADVANCE(415); - if (lookahead == '|') ADVANCE(521); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(370); + if (lookahead == 'a') ADVANCE(434); + if (lookahead == 'c') ADVANCE(431); + if (lookahead == 'd') ADVANCE(326); + if (lookahead == 'e') ADVANCE(435); + if (lookahead == 'f') ADVANCE(323); + if (lookahead == 'i') ADVANCE(407); + if (lookahead == 'm') ADVANCE(370); + if (lookahead == 'n') ADVANCE(381); + if (lookahead == 'r') ADVANCE(389); + if (lookahead == 's') ADVANCE(333); + if (lookahead == 't') ADVANCE(416); + if (lookahead == 'u') ADVANCE(451); + if (lookahead == 'w') ADVANCE(414); + if (lookahead == '|') ADVANCE(520); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(369); if (lookahead == 'D' || lookahead == 'F' || lookahead == 'L' || lookahead == 'S' || - lookahead == 'l') ADVANCE(336); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(306); + lookahead == 'l') ADVANCE(335); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(305); if (('\t' <= lookahead && lookahead <= '\r') || (28 <= lookahead && lookahead <= ' ') || lookahead == 5760 || @@ -3101,36 +3095,36 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8232 || lookahead == 8233 || lookahead == 8287 || - lookahead == 12288) ADVANCE(292); + lookahead == 12288) ADVANCE(291); if (lookahead != 0 && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(533); + (lookahead < '{' || '}' < lookahead)) ADVANCE(532); END_STATE(); - case 11: - if (lookahead == '"') ADVANCE(340); - if (lookahead == '#') ADVANCE(296); + case 10: + if (lookahead == '"') ADVANCE(339); + if (lookahead == '#') ADVANCE(295); if (lookahead == '\'') ADVANCE(547); - if (lookahead == '(') ADVANCE(536); - if (lookahead == ')') ADVANCE(537); + if (lookahead == '(') ADVANCE(535); + if (lookahead == ')') ADVANCE(536); if (lookahead == ',') ADVANCE(551); - if (lookahead == '.') ADVANCE(303); - if (lookahead == ':') ADVANCE(337); - if (lookahead == ';') ADVANCE(294); - if (lookahead == '^') ADVANCE(534); + if (lookahead == '.') ADVANCE(302); + if (lookahead == ':') ADVANCE(336); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '^') ADVANCE(533); if (lookahead == '`') ADVANCE(548); - if (lookahead == 'c') ADVANCE(433); - if (lookahead == 'd') ADVANCE(323); - if (lookahead == 'l') ADVANCE(322); - if (lookahead == 'n') ADVANCE(421); - if (lookahead == '|') ADVANCE(521); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(370); + if (lookahead == 'c') ADVANCE(432); + if (lookahead == 'd') ADVANCE(322); + if (lookahead == 'l') ADVANCE(321); + if (lookahead == 'n') ADVANCE(420); + if (lookahead == '|') ADVANCE(520); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(369); if (lookahead == 'D' || lookahead == 'F' || lookahead == 'L' || lookahead == 'S' || lookahead == 'f' || - lookahead == 's') ADVANCE(336); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(306); + lookahead == 's') ADVANCE(335); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(305); if (('\t' <= lookahead && lookahead <= '\r') || (28 <= lookahead && lookahead <= ' ') || lookahead == 5760 || @@ -3139,30 +3133,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8232 || lookahead == 8233 || lookahead == 8287 || - lookahead == 12288) ADVANCE(292); + lookahead == 12288) ADVANCE(291); if (lookahead != 0 && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(533); + (lookahead < '{' || '}' < lookahead)) ADVANCE(532); END_STATE(); - case 12: - if (lookahead == '"') ADVANCE(340); - if (lookahead == '#') ADVANCE(296); + case 11: + if (lookahead == '"') ADVANCE(339); + if (lookahead == '#') ADVANCE(295); if (lookahead == '\'') ADVANCE(547); - if (lookahead == '(') ADVANCE(536); - if (lookahead == ')') ADVANCE(537); + if (lookahead == '(') ADVANCE(535); + if (lookahead == ')') ADVANCE(536); if (lookahead == ',') ADVANCE(551); - if (lookahead == '.') ADVANCE(303); - if (lookahead == ':') ADVANCE(337); - if (lookahead == ';') ADVANCE(294); - if (lookahead == '^') ADVANCE(534); + if (lookahead == '.') ADVANCE(302); + if (lookahead == ':') ADVANCE(336); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '^') ADVANCE(533); if (lookahead == '`') ADVANCE(548); - if (lookahead == 'c') ADVANCE(433); - if (lookahead == 'd') ADVANCE(395); - if (lookahead == 'l') ADVANCE(377); - if (lookahead == 'n') ADVANCE(421); - if (lookahead == '|') ADVANCE(521); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(370); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(306); + if (lookahead == 'c') ADVANCE(432); + if (lookahead == 'd') ADVANCE(394); + if (lookahead == 'l') ADVANCE(376); + if (lookahead == 'n') ADVANCE(420); + if (lookahead == '|') ADVANCE(520); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(369); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(305); if (('\t' <= lookahead && lookahead <= '\r') || (28 <= lookahead && lookahead <= ' ') || lookahead == 5760 || @@ -3171,42 +3165,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8232 || lookahead == 8233 || lookahead == 8287 || - lookahead == 12288) ADVANCE(292); + lookahead == 12288) ADVANCE(291); if (lookahead != 0 && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(533); + (lookahead < '{' || '}' < lookahead)) ADVANCE(532); END_STATE(); - case 13: - if (lookahead == '"') ADVANCE(340); - if (lookahead == '#') ADVANCE(296); + case 12: + if (lookahead == '"') ADVANCE(339); + if (lookahead == '#') ADVANCE(295); if (lookahead == '\'') ADVANCE(547); - if (lookahead == '(') ADVANCE(536); + if (lookahead == '(') ADVANCE(535); if (lookahead == ',') ADVANCE(551); - if (lookahead == '.') ADVANCE(303); - if (lookahead == ':') ADVANCE(337); - if (lookahead == ';') ADVANCE(294); - if (lookahead == '=') ADVANCE(617); - if (lookahead == '^') ADVANCE(534); + if (lookahead == '.') ADVANCE(302); + if (lookahead == ':') ADVANCE(336); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '=') ADVANCE(616); + if (lookahead == '^') ADVANCE(533); if (lookahead == '`') ADVANCE(548); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'b') ADVANCE(393); - if (lookahead == 'c') ADVANCE(433); - if (lookahead == 'd') ADVANCE(330); - if (lookahead == 'f') ADVANCE(333); - if (lookahead == 'i') ADVANCE(457); - if (lookahead == 'n') ADVANCE(421); - if (lookahead == 'o') ADVANCE(458); - if (lookahead == 't') ADVANCE(419); - if (lookahead == 'u') ADVANCE(485); - if (lookahead == '|') ADVANCE(521); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(370); + if (lookahead == 'a') ADVANCE(379); + if (lookahead == 'b') ADVANCE(392); + if (lookahead == 'c') ADVANCE(432); + if (lookahead == 'd') ADVANCE(329); + if (lookahead == 'f') ADVANCE(332); + if (lookahead == 'i') ADVANCE(456); + if (lookahead == 'n') ADVANCE(420); + if (lookahead == 'o') ADVANCE(457); + if (lookahead == 't') ADVANCE(418); + if (lookahead == 'u') ADVANCE(484); + if (lookahead == '|') ADVANCE(520); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(369); if (lookahead == 'D' || lookahead == 'F' || lookahead == 'L' || lookahead == 'S' || lookahead == 'l' || - lookahead == 's') ADVANCE(336); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(306); + lookahead == 's') ADVANCE(335); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(305); if (('\t' <= lookahead && lookahead <= '\r') || (28 <= lookahead && lookahead <= ' ') || lookahead == 5760 || @@ -3215,37 +3209,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8232 || lookahead == 8233 || lookahead == 8287 || - lookahead == 12288) ADVANCE(292); + lookahead == 12288) ADVANCE(291); if (lookahead != 0 && lookahead != ')' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(533); + (lookahead < '{' || '}' < lookahead)) ADVANCE(532); END_STATE(); - case 14: - if (lookahead == '"') ADVANCE(340); - if (lookahead == '#') ADVANCE(296); + case 13: + if (lookahead == '"') ADVANCE(339); + if (lookahead == '#') ADVANCE(295); if (lookahead == '\'') ADVANCE(547); - if (lookahead == '(') ADVANCE(536); + if (lookahead == '(') ADVANCE(535); if (lookahead == ',') ADVANCE(551); - if (lookahead == '.') ADVANCE(303); - if (lookahead == ':') ADVANCE(337); - if (lookahead == ';') ADVANCE(294); - if (lookahead == '=') ADVANCE(617); - if (lookahead == '^') ADVANCE(534); + if (lookahead == '.') ADVANCE(302); + if (lookahead == ':') ADVANCE(336); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '=') ADVANCE(616); + if (lookahead == '^') ADVANCE(533); if (lookahead == '`') ADVANCE(548); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'b') ADVANCE(393); - if (lookahead == 'c') ADVANCE(433); - if (lookahead == 'd') ADVANCE(473); - if (lookahead == 'f') ADVANCE(489); - if (lookahead == 'i') ADVANCE(457); - if (lookahead == 'n') ADVANCE(421); - if (lookahead == 'o') ADVANCE(458); - if (lookahead == 't') ADVANCE(419); - if (lookahead == 'u') ADVANCE(485); - if (lookahead == '|') ADVANCE(521); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(370); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(306); + if (lookahead == 'a') ADVANCE(379); + if (lookahead == 'b') ADVANCE(392); + if (lookahead == 'c') ADVANCE(432); + if (lookahead == 'd') ADVANCE(472); + if (lookahead == 'f') ADVANCE(488); + if (lookahead == 'i') ADVANCE(456); + if (lookahead == 'n') ADVANCE(420); + if (lookahead == 'o') ADVANCE(457); + if (lookahead == 't') ADVANCE(418); + if (lookahead == 'u') ADVANCE(484); + if (lookahead == '|') ADVANCE(520); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(369); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(305); if (('\t' <= lookahead && lookahead <= '\r') || (28 <= lookahead && lookahead <= ' ') || lookahead == 5760 || @@ -3254,28 +3248,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8232 || lookahead == 8233 || lookahead == 8287 || - lookahead == 12288) ADVANCE(292); + lookahead == 12288) ADVANCE(291); if (lookahead != 0 && lookahead != ')' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(533); + (lookahead < '{' || '}' < lookahead)) ADVANCE(532); END_STATE(); - case 15: - if (lookahead == '"') ADVANCE(340); - if (lookahead == '#') ADVANCE(296); + case 14: + if (lookahead == '"') ADVANCE(339); + if (lookahead == '#') ADVANCE(295); if (lookahead == '\'') ADVANCE(547); - if (lookahead == '(') ADVANCE(536); + if (lookahead == '(') ADVANCE(535); if (lookahead == ',') ADVANCE(551); - if (lookahead == '.') ADVANCE(303); - if (lookahead == ':') ADVANCE(337); - if (lookahead == ';') ADVANCE(294); - if (lookahead == '=') ADVANCE(617); - if (lookahead == '^') ADVANCE(534); + if (lookahead == '.') ADVANCE(302); + if (lookahead == ':') ADVANCE(336); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '=') ADVANCE(616); + if (lookahead == '^') ADVANCE(533); if (lookahead == '`') ADVANCE(548); - if (lookahead == 'c') ADVANCE(433); - if (lookahead == 'n') ADVANCE(421); - if (lookahead == '|') ADVANCE(521); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(370); + if (lookahead == 'c') ADVANCE(432); + if (lookahead == 'n') ADVANCE(420); + if (lookahead == '|') ADVANCE(520); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(369); if (lookahead == 'D' || lookahead == 'F' || lookahead == 'L' || @@ -3283,8 +3277,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 'd' || lookahead == 'f' || lookahead == 'l' || - lookahead == 's') ADVANCE(336); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(306); + lookahead == 's') ADVANCE(335); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(305); if (('\t' <= lookahead && lookahead <= '\r') || (28 <= lookahead && lookahead <= ' ') || lookahead == 5760 || @@ -3293,29 +3287,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8232 || lookahead == 8233 || lookahead == 8287 || - lookahead == 12288) ADVANCE(292); + lookahead == 12288) ADVANCE(291); if (lookahead != 0 && lookahead != ')' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(533); + (lookahead < '{' || '}' < lookahead)) ADVANCE(532); END_STATE(); - case 16: - if (lookahead == '"') ADVANCE(340); - if (lookahead == '#') ADVANCE(296); + case 15: + if (lookahead == '"') ADVANCE(339); + if (lookahead == '#') ADVANCE(295); if (lookahead == '\'') ADVANCE(547); - if (lookahead == '(') ADVANCE(536); + if (lookahead == '(') ADVANCE(535); if (lookahead == ',') ADVANCE(551); - if (lookahead == '.') ADVANCE(303); - if (lookahead == ':') ADVANCE(337); - if (lookahead == ';') ADVANCE(294); - if (lookahead == '=') ADVANCE(617); - if (lookahead == '^') ADVANCE(534); + if (lookahead == '.') ADVANCE(302); + if (lookahead == ':') ADVANCE(336); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '=') ADVANCE(616); + if (lookahead == '^') ADVANCE(533); if (lookahead == '`') ADVANCE(548); - if (lookahead == 'c') ADVANCE(433); - if (lookahead == 'n') ADVANCE(421); - if (lookahead == '|') ADVANCE(521); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(370); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(306); + if (lookahead == 'c') ADVANCE(432); + if (lookahead == 'n') ADVANCE(420); + if (lookahead == '|') ADVANCE(520); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(369); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(305); if (('\t' <= lookahead && lookahead <= '\r') || (28 <= lookahead && lookahead <= ' ') || lookahead == 5760 || @@ -3324,41 +3318,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8232 || lookahead == 8233 || lookahead == 8287 || - lookahead == 12288) ADVANCE(292); + lookahead == 12288) ADVANCE(291); if (lookahead != 0 && lookahead != ')' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(533); + (lookahead < '{' || '}' < lookahead)) ADVANCE(532); END_STATE(); - case 17: - if (lookahead == '"') ADVANCE(340); - if (lookahead == '#') ADVANCE(298); + case 16: + if (lookahead == '"') ADVANCE(339); + if (lookahead == '#') ADVANCE(297); if (lookahead == '\'') ADVANCE(547); - if (lookahead == '(') ADVANCE(536); + if (lookahead == '(') ADVANCE(535); if (lookahead == ',') ADVANCE(551); - if (lookahead == '.') ADVANCE(303); - if (lookahead == ':') ADVANCE(337); - if (lookahead == '\\') ADVANCE(287); - if (lookahead == '^') ADVANCE(534); + if (lookahead == '.') ADVANCE(302); + if (lookahead == ':') ADVANCE(336); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == '^') ADVANCE(533); if (lookahead == '`') ADVANCE(548); - if (lookahead == 'c') ADVANCE(433); - if (lookahead == 'n') ADVANCE(421); - if (lookahead == '{') ADVANCE(538); - if (lookahead == '|') ADVANCE(521); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(370); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(305); - if (!aux_sym_sym_lit_token1_character_set_1(lookahead)) ADVANCE(533); + if (lookahead == 'c') ADVANCE(432); + if (lookahead == 'n') ADVANCE(420); + if (lookahead == '{') ADVANCE(537); + if (lookahead == '|') ADVANCE(520); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(369); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(304); + if (!aux_sym_sym_lit_token1_character_set_1(lookahead)) ADVANCE(532); END_STATE(); - case 18: - if (lookahead == '"') ADVANCE(340); - if (lookahead == '#') ADVANCE(297); + case 17: + if (lookahead == '"') ADVANCE(339); + if (lookahead == '#') ADVANCE(296); if (lookahead == '\'') ADVANCE(547); - if (lookahead == '(') ADVANCE(536); - if (lookahead == ',') ADVANCE(40); - if (lookahead == ':') ADVANCE(337); - if (lookahead == ';') ADVANCE(294); - if (lookahead == '^') ADVANCE(534); - if (lookahead == '{') ADVANCE(538); + if (lookahead == '(') ADVANCE(535); + if (lookahead == ',') ADVANCE(39); + if (lookahead == ':') ADVANCE(336); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '^') ADVANCE(533); + if (lookahead == '{') ADVANCE(537); if (('\t' <= lookahead && lookahead <= '\r') || (28 <= lookahead && lookahead <= ' ') || lookahead == 5760 || @@ -3367,22 +3361,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8232 || lookahead == 8233 || lookahead == 8287 || - lookahead == 12288) ADVANCE(292); + lookahead == 12288) ADVANCE(291); if (lookahead != 0 && lookahead != ')' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - lookahead != '}') ADVANCE(533); + lookahead != '}') ADVANCE(532); END_STATE(); - case 19: - if (lookahead == '"') ADVANCE(340); + case 18: + if (lookahead == '"') ADVANCE(339); if (lookahead == '#') ADVANCE(5); - if (lookahead == '(') ADVANCE(536); + if (lookahead == '(') ADVANCE(535); if (lookahead == ',') ADVANCE(550); - if (lookahead == ':') ADVANCE(337); - if (lookahead == ';') ADVANCE(294); - if (lookahead == '^') ADVANCE(534); - if (lookahead == '{') ADVANCE(538); + if (lookahead == ':') ADVANCE(336); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '^') ADVANCE(533); + if (lookahead == '{') ADVANCE(537); if (lookahead == 'D' || lookahead == 'F' || lookahead == 'L' || @@ -3390,7 +3384,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 'd' || lookahead == 'f' || lookahead == 'l' || - lookahead == 's') ADVANCE(336); + lookahead == 's') ADVANCE(335); if (('\t' <= lookahead && lookahead <= '\r') || (28 <= lookahead && lookahead <= ' ') || lookahead == 5760 || @@ -3399,22 +3393,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8232 || lookahead == 8233 || lookahead == 8287 || - lookahead == 12288) ADVANCE(292); + lookahead == 12288) ADVANCE(291); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - lookahead != '}') ADVANCE(533); + lookahead != '}') ADVANCE(532); END_STATE(); - case 20: - if (lookahead == '"') ADVANCE(340); + case 19: + if (lookahead == '"') ADVANCE(339); if (lookahead == '#') ADVANCE(5); - if (lookahead == '(') ADVANCE(536); + if (lookahead == '(') ADVANCE(535); if (lookahead == ',') ADVANCE(550); - if (lookahead == ':') ADVANCE(337); - if (lookahead == ';') ADVANCE(294); - if (lookahead == '^') ADVANCE(534); - if (lookahead == '{') ADVANCE(538); + if (lookahead == ':') ADVANCE(336); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '^') ADVANCE(533); + if (lookahead == '{') ADVANCE(537); if (('\t' <= lookahead && lookahead <= '\r') || (28 <= lookahead && lookahead <= ' ') || lookahead == 5760 || @@ -3423,57 +3417,58 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8232 || lookahead == 8233 || lookahead == 8287 || - lookahead == 12288) ADVANCE(292); + lookahead == 12288) ADVANCE(291); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - lookahead != '}') ADVANCE(533); + lookahead != '}') ADVANCE(532); + END_STATE(); + case 20: + if (lookahead == '"') ADVANCE(339); + if (lookahead == '#') ADVANCE(343); + if (lookahead == '\\') ADVANCE(21); + if (lookahead == '~') ADVANCE(347); + if (lookahead != 0) ADVANCE(345); END_STATE(); case 21: - if (lookahead == '"') ADVANCE(340); - if (lookahead == '#') ADVANCE(344); - if (lookahead == '\\') ADVANCE(22); - if (lookahead == '~') ADVANCE(348); - if (lookahead != 0) ADVANCE(346); + if (lookahead == '"') ADVANCE(346); END_STATE(); case 22: - if (lookahead == '"') ADVANCE(347); - END_STATE(); - case 23: - if (lookahead == '"') ADVANCE(24); - if (lookahead == '#') ADVANCE(6); - if (lookahead == '(') ADVANCE(536); - if (lookahead == ')') ADVANCE(537); - if (lookahead == ',') ADVANCE(550); - if (lookahead == '/') ADVANCE(580); - if (lookahead == ':') ADVANCE(337); - if (lookahead == ';') ADVANCE(294); - if (lookahead == '=') ADVANCE(616); - if (lookahead == '\\') ADVANCE(287); - if (lookahead == '^') ADVANCE(534); - if (lookahead == 'a') ADVANCE(56); - if (lookahead == 'b') ADVANCE(81); - if (lookahead == 'c') ADVANCE(150); - if (lookahead == 'd') ADVANCE(328); - if (lookahead == 'e') ADVANCE(163); - if (lookahead == 'f') ADVANCE(326); - if (lookahead == 'i') ADVANCE(108); - if (lookahead == 'm') ADVANCE(44); - if (lookahead == 'n') ADVANCE(61); - if (lookahead == 'o') ADVANCE(177); - if (lookahead == 'r') ADVANCE(82); - if (lookahead == 's') ADVANCE(335); - if (lookahead == 't') ADVANCE(125); - if (lookahead == 'u') ADVANCE(179); - if (lookahead == 'w') ADVANCE(120); - if (lookahead == '{') ADVANCE(538); + if (lookahead == '"') ADVANCE(23); + if (lookahead == '#') ADVANCE(296); + if (lookahead == '\'') ADVANCE(547); + if (lookahead == '(') ADVANCE(535); + if (lookahead == ')') ADVANCE(536); + if (lookahead == ',') ADVANCE(39); + if (lookahead == '/') ADVANCE(579); + if (lookahead == ':') ADVANCE(336); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '=') ADVANCE(615); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == '^') ADVANCE(533); + if (lookahead == 'a') ADVANCE(55); + if (lookahead == 'b') ADVANCE(80); + if (lookahead == 'c') ADVANCE(149); + if (lookahead == 'd') ADVANCE(327); + if (lookahead == 'e') ADVANCE(162); + if (lookahead == 'f') ADVANCE(325); + if (lookahead == 'i') ADVANCE(107); + if (lookahead == 'm') ADVANCE(43); + if (lookahead == 'n') ADVANCE(60); + if (lookahead == 'o') ADVANCE(176); + if (lookahead == 'r') ADVANCE(81); + if (lookahead == 's') ADVANCE(334); + if (lookahead == 't') ADVANCE(124); + if (lookahead == 'u') ADVANCE(178); + if (lookahead == 'w') ADVANCE(119); + if (lookahead == '{') ADVANCE(537); if (lookahead == 'D' || lookahead == 'F' || lookahead == 'L' || lookahead == 'S' || - lookahead == 'l') ADVANCE(321); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(276); + lookahead == 'l') ADVANCE(320); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(275); if (('\t' <= lookahead && lookahead <= '\r') || (28 <= lookahead && lookahead <= ' ') || lookahead == 5760 || @@ -3482,46 +3477,34 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8232 || lookahead == 8233 || lookahead == 8287 || - lookahead == 12288) ADVANCE(292); + lookahead == 12288) ADVANCE(291); END_STATE(); - case 24: - if (lookahead == '"') ADVANCE(542); - if (lookahead == '\\') ADVANCE(288); - if (lookahead != 0) ADVANCE(24); + case 23: + if (lookahead == '"') ADVANCE(541); + if (lookahead == '\\') ADVANCE(287); + if (lookahead != 0) ADVANCE(23); END_STATE(); - case 25: + case 24: if (lookahead == '#') ADVANCE(552); - if (lookahead != 0) ADVANCE(269); + if (lookahead != 0) ADVANCE(268); END_STATE(); - case 26: - if (lookahead == '#') ADVANCE(7); - if (lookahead == '(') ADVANCE(536); - if (lookahead == ')') ADVANCE(537); - if (lookahead == ',') ADVANCE(550); - if (lookahead == ':') ADVANCE(337); - if (lookahead == ';') ADVANCE(294); - if (lookahead == '=') ADVANCE(616); - if (lookahead == '^') ADVANCE(534); - if (lookahead == 'a') ADVANCE(152); - if (lookahead == 'c') ADVANCE(150); - if (lookahead == 'd') ADVANCE(329); - if (lookahead == 'e') ADVANCE(163); - if (lookahead == 'f') ADVANCE(325); - if (lookahead == 'i') ADVANCE(109); - if (lookahead == 'm') ADVANCE(44); - if (lookahead == 'n') ADVANCE(61); - if (lookahead == 'r') ADVANCE(82); - if (lookahead == 's') ADVANCE(335); - if (lookahead == 't') ADVANCE(126); - if (lookahead == 'u') ADVANCE(178); - if (lookahead == 'w') ADVANCE(120); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(27); + case 25: + if (lookahead == '#') ADVANCE(296); + if (lookahead == '\'') ADVANCE(547); + if (lookahead == '(') ADVANCE(535); + if (lookahead == ')') ADVANCE(536); + if (lookahead == ',') ADVANCE(39); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '^') ADVANCE(533); + if (lookahead == '{') ADVANCE(537); if (lookahead == 'D' || lookahead == 'F' || lookahead == 'L' || lookahead == 'S' || - lookahead == 'l') ADVANCE(321); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(307); + lookahead == 'd' || + lookahead == 'f' || + lookahead == 'l' || + lookahead == 's') ADVANCE(320); if (('\t' <= lookahead && lookahead <= '\r') || (28 <= lookahead && lookahead <= ' ') || lookahead == 5760 || @@ -3530,29 +3513,32 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8232 || lookahead == 8233 || lookahead == 8287 || - lookahead == 12288) ADVANCE(292); + lookahead == 12288) ADVANCE(291); END_STATE(); - case 27: - if (lookahead == '#') ADVANCE(277); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(307); - END_STATE(); - case 28: - if (lookahead == '#') ADVANCE(297); + case 26: + if (lookahead == '#') ADVANCE(296); if (lookahead == '\'') ADVANCE(547); - if (lookahead == '(') ADVANCE(536); - if (lookahead == ')') ADVANCE(537); - if (lookahead == ',') ADVANCE(40); - if (lookahead == ';') ADVANCE(294); - if (lookahead == '^') ADVANCE(534); - if (lookahead == '{') ADVANCE(538); + if (lookahead == '(') ADVANCE(535); + if (lookahead == ',') ADVANCE(39); + if (lookahead == ':') ADVANCE(336); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '=') ADVANCE(615); + if (lookahead == '^') ADVANCE(533); + if (lookahead == 'a') ADVANCE(54); + if (lookahead == 'b') ADVANCE(80); + if (lookahead == 'c') ADVANCE(148); + if (lookahead == 'd') ADVANCE(330); + if (lookahead == 'f') ADVANCE(331); + if (lookahead == 'i') ADVANCE(185); + if (lookahead == 'o') ADVANCE(176); + if (lookahead == 't') ADVANCE(126); + if (lookahead == 'u') ADVANCE(214); if (lookahead == 'D' || lookahead == 'F' || lookahead == 'L' || lookahead == 'S' || - lookahead == 'd' || - lookahead == 'f' || lookahead == 'l' || - lookahead == 's') ADVANCE(321); + lookahead == 's') ADVANCE(320); if (('\t' <= lookahead && lookahead <= '\r') || (28 <= lookahead && lookahead <= ' ') || lookahead == 5760 || @@ -3561,33 +3547,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8232 || lookahead == 8233 || lookahead == 8287 || - lookahead == 12288) ADVANCE(292); + lookahead == 12288) ADVANCE(291); END_STATE(); - case 29: - if (lookahead == '#') ADVANCE(297); - if (lookahead == '\'') ADVANCE(547); - if (lookahead == '(') ADVANCE(536); - if (lookahead == ',') ADVANCE(40); - if (lookahead == ':') ADVANCE(337); - if (lookahead == ';') ADVANCE(294); - if (lookahead == '=') ADVANCE(616); - if (lookahead == '^') ADVANCE(534); - if (lookahead == 'a') ADVANCE(55); - if (lookahead == 'b') ADVANCE(81); + case 27: + if (lookahead == '#') ADVANCE(6); + if (lookahead == '(') ADVANCE(535); + if (lookahead == ')') ADVANCE(536); + if (lookahead == ',') ADVANCE(550); + if (lookahead == ':') ADVANCE(336); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '=') ADVANCE(615); + if (lookahead == '^') ADVANCE(533); + if (lookahead == 'a') ADVANCE(151); if (lookahead == 'c') ADVANCE(149); - if (lookahead == 'd') ADVANCE(331); - if (lookahead == 'f') ADVANCE(332); - if (lookahead == 'i') ADVANCE(186); - if (lookahead == 'o') ADVANCE(177); - if (lookahead == 't') ADVANCE(127); - if (lookahead == 'u') ADVANCE(215); - if (lookahead == '{') ADVANCE(538); + if (lookahead == 'd') ADVANCE(328); + if (lookahead == 'e') ADVANCE(162); + if (lookahead == 'f') ADVANCE(324); + if (lookahead == 'i') ADVANCE(108); + if (lookahead == 'm') ADVANCE(43); + if (lookahead == 'n') ADVANCE(60); + if (lookahead == 'r') ADVANCE(81); + if (lookahead == 's') ADVANCE(334); + if (lookahead == 't') ADVANCE(125); + if (lookahead == 'u') ADVANCE(177); + if (lookahead == 'w') ADVANCE(119); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(28); if (lookahead == 'D' || lookahead == 'F' || lookahead == 'L' || lookahead == 'S' || - lookahead == 'l' || - lookahead == 's') ADVANCE(321); + lookahead == 'l') ADVANCE(320); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(306); if (('\t' <= lookahead && lookahead <= '\r') || (28 <= lookahead && lookahead <= ' ') || lookahead == 5760 || @@ -3596,36 +3586,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8232 || lookahead == 8233 || lookahead == 8287 || - lookahead == 12288) ADVANCE(292); + lookahead == 12288) ADVANCE(291); END_STATE(); - case 30: - if (lookahead == '#') ADVANCE(299); + case 28: + if (lookahead == '#') ADVANCE(276); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(306); + END_STATE(); + case 29: + if (lookahead == '#') ADVANCE(298); if (lookahead == '\'') ADVANCE(547); - if (lookahead == '(') ADVANCE(536); - if (lookahead == ',') ADVANCE(40); - if (lookahead == '=') ADVANCE(617); - if (lookahead == '^') ADVANCE(534); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'b') ADVANCE(393); - if (lookahead == 'd') ADVANCE(473); - if (lookahead == 'f') ADVANCE(489); - if (lookahead == 'i') ADVANCE(457); - if (lookahead == 'o') ADVANCE(458); - if (lookahead == 't') ADVANCE(419); - if (lookahead == 'u') ADVANCE(485); - if (lookahead == '{') ADVANCE(538); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(533); + if (lookahead == '(') ADVANCE(535); + if (lookahead == ',') ADVANCE(39); + if (lookahead == '=') ADVANCE(616); + if (lookahead == '^') ADVANCE(533); + if (lookahead == 'a') ADVANCE(379); + if (lookahead == 'b') ADVANCE(392); + if (lookahead == 'd') ADVANCE(472); + if (lookahead == 'f') ADVANCE(488); + if (lookahead == 'i') ADVANCE(456); + if (lookahead == 'o') ADVANCE(457); + if (lookahead == 't') ADVANCE(418); + if (lookahead == 'u') ADVANCE(484); + if (lookahead == '{') ADVANCE(537); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(532); END_STATE(); - case 31: - if (lookahead == '#') ADVANCE(8); - if (lookahead == '(') ADVANCE(536); + case 30: + if (lookahead == '#') ADVANCE(7); + if (lookahead == '(') ADVANCE(535); if (lookahead == ',') ADVANCE(550); - if (lookahead == ';') ADVANCE(294); - if (lookahead == '=') ADVANCE(616); - if (lookahead == '^') ADVANCE(534); - if (lookahead == 'c') ADVANCE(149); - if (lookahead == 'i') ADVANCE(199); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(27); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '=') ADVANCE(615); + if (lookahead == '^') ADVANCE(533); + if (lookahead == 'c') ADVANCE(148); + if (lookahead == 'i') ADVANCE(198); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(28); if (lookahead == 'D' || lookahead == 'F' || lookahead == 'L' || @@ -3633,8 +3627,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 'd' || lookahead == 'f' || lookahead == 'l' || - lookahead == 's') ADVANCE(321); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(307); + lookahead == 's') ADVANCE(320); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(306); if (('\t' <= lookahead && lookahead <= '\r') || (28 <= lookahead && lookahead <= ' ') || lookahead == 5760 || @@ -3643,367 +3637,370 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8232 || lookahead == 8233 || lookahead == 8287 || - lookahead == 12288) ADVANCE(292); + lookahead == 12288) ADVANCE(291); + END_STATE(); + case 31: + if (lookahead == '#') ADVANCE(267); + if (lookahead == '/') ADVANCE(579); + if (lookahead == ':') ADVANCE(336); + if (!aux_sym__sym_lit_without_slash_token1_character_set_1(lookahead)) ADVANCE(671); END_STATE(); case 32: - if (lookahead == '#') ADVANCE(268); - if (lookahead == '/') ADVANCE(580); - if (lookahead == ':') ADVANCE(337); - if (!aux_sym__sym_lit_without_slash_token1_character_set_1(lookahead)) ADVANCE(672); + if (lookahead == '#') ADVANCE(267); + if (lookahead == '=') ADVANCE(616); + if (!aux_sym_sym_lit_token1_character_set_3(lookahead)) ADVANCE(532); END_STATE(); case 33: - if (lookahead == '#') ADVANCE(268); - if (lookahead == '=') ADVANCE(617); - if (!aux_sym_sym_lit_token1_character_set_3(lookahead)) ADVANCE(533); + if (lookahead == '#') ADVANCE(267); + if (lookahead == 'c') ADVANCE(672); + if (!aux_sym__sym_lit_without_slash_token1_character_set_2(lookahead)) ADVANCE(671); END_STATE(); case 34: - if (lookahead == '#') ADVANCE(268); - if (lookahead == 'c') ADVANCE(673); - if (!aux_sym__sym_lit_without_slash_token1_character_set_2(lookahead)) ADVANCE(672); + if (lookahead == '#') ADVANCE(267); + if (lookahead == 'd') ADVANCE(394); + if (lookahead == 'l') ADVANCE(479); + if (!aux_sym_sym_lit_token1_character_set_3(lookahead)) ADVANCE(532); END_STATE(); case 35: - if (lookahead == '#') ADVANCE(268); - if (lookahead == 'd') ADVANCE(395); - if (lookahead == 'l') ADVANCE(480); - if (!aux_sym_sym_lit_token1_character_set_3(lookahead)) ADVANCE(533); + if (lookahead == '#') ADVANCE(267); + if (lookahead == 'd') ADVANCE(92); + if (lookahead == 'l') ADVANCE(211); END_STATE(); case 36: - if (lookahead == '#') ADVANCE(268); - if (lookahead == 'd') ADVANCE(93); - if (lookahead == 'l') ADVANCE(212); - END_STATE(); - case 37: if (lookahead == '#') ADVANCE(556); if (lookahead != 0 && lookahead != '\n') ADVANCE(554); END_STATE(); + case 37: + if (lookahead == '-') ADVANCE(143); + END_STATE(); case 38: - if (lookahead == '-') ADVANCE(144); + if (lookahead == '-') ADVANCE(234); END_STATE(); case 39: - if (lookahead == '-') ADVANCE(235); - END_STATE(); - case 40: if (lookahead == '@') ADVANCE(549); END_STATE(); - case 41: - if (lookahead == 'A') ADVANCE(540); - if (lookahead == 'a') ADVANCE(541); + case 40: + if (lookahead == 'A') ADVANCE(539); + if (lookahead == 'a') ADVANCE(540); if (lookahead == '#' || - lookahead == '=') ADVANCE(674); + lookahead == '=') ADVANCE(673); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(286); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(271); + lookahead == 'r') ADVANCE(285); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(270); + END_STATE(); + case 41: + if (lookahead == 'a') ADVANCE(59); END_STATE(); case 42: - if (lookahead == 'a') ADVANCE(60); + if (lookahead == 'a') ADVANCE(235); END_STATE(); case 43: - if (lookahead == 'a') ADVANCE(236); + if (lookahead == 'a') ADVANCE(260); + if (lookahead == 'i') ADVANCE(187); END_STATE(); case 44: - if (lookahead == 'a') ADVANCE(261); - if (lookahead == 'i') ADVANCE(188); + if (lookahead == 'a') ADVANCE(62); END_STATE(); case 45: - if (lookahead == 'a') ADVANCE(63); + if (lookahead == 'a') ADVANCE(265); END_STATE(); case 46: - if (lookahead == 'a') ADVANCE(266); + if (lookahead == 'a') ADVANCE(146); END_STATE(); case 47: - if (lookahead == 'a') ADVANCE(147); + if (lookahead == 'a') ADVANCE(64); + if (lookahead == 'e') ADVANCE(246); END_STATE(); case 48: - if (lookahead == 'a') ADVANCE(65); - if (lookahead == 'e') ADVANCE(247); + if (lookahead == 'a') ADVANCE(241); END_STATE(); case 49: - if (lookahead == 'a') ADVANCE(242); + if (lookahead == 'a') ADVANCE(63); END_STATE(); case 50: - if (lookahead == 'a') ADVANCE(64); + if (lookahead == 'a') ADVANCE(157); END_STATE(); case 51: if (lookahead == 'a') ADVANCE(158); END_STATE(); case 52: - if (lookahead == 'a') ADVANCE(159); + if (lookahead == 'b') ADVANCE(206); END_STATE(); case 53: - if (lookahead == 'b') ADVANCE(207); + if (lookahead == 'b') ADVANCE(348); END_STATE(); case 54: - if (lookahead == 'b') ADVANCE(349); + if (lookahead == 'b') ADVANCE(212); + if (lookahead == 'c') ADVANCE(222); END_STATE(); case 55: - if (lookahead == 'b') ADVANCE(213); - if (lookahead == 'c') ADVANCE(223); + if (lookahead == 'b') ADVANCE(212); + if (lookahead == 'c') ADVANCE(222); + if (lookahead == 'l') ADVANCE(256); + if (lookahead == 'n') ADVANCE(67); + if (lookahead == 'p') ADVANCE(215); + if (lookahead == 's') ADVANCE(624); END_STATE(); case 56: - if (lookahead == 'b') ADVANCE(213); - if (lookahead == 'c') ADVANCE(223); - if (lookahead == 'l') ADVANCE(257); - if (lookahead == 'n') ADVANCE(68); - if (lookahead == 'p') ADVANCE(216); - if (lookahead == 's') ADVANCE(625); + if (lookahead == 'c') ADVANCE(142); END_STATE(); case 57: - if (lookahead == 'c') ADVANCE(143); + if (lookahead == 'c') ADVANCE(618); END_STATE(); case 58: - if (lookahead == 'c') ADVANCE(619); + if (lookahead == 'c') ADVANCE(664); END_STATE(); case 59: - if (lookahead == 'c') ADVANCE(665); + if (lookahead == 'c') ADVANCE(117); END_STATE(); case 60: - if (lookahead == 'c') ADVANCE(118); + if (lookahead == 'c') ADVANCE(210); + if (lookahead == 'e') ADVANCE(252); END_STATE(); case 61: - if (lookahead == 'c') ADVANCE(211); - if (lookahead == 'e') ADVANCE(253); + if (lookahead == 'c') ADVANCE(240); END_STATE(); case 62: - if (lookahead == 'c') ADVANCE(241); + if (lookahead == 'c') ADVANCE(79); END_STATE(); case 63: - if (lookahead == 'c') ADVANCE(80); + if (lookahead == 'c') ADVANCE(78); END_STATE(); case 64: - if (lookahead == 'c') ADVANCE(79); + if (lookahead == 'c') ADVANCE(225); END_STATE(); case 65: - if (lookahead == 'c') ADVANCE(226); + if (lookahead == 'd') ADVANCE(364); END_STATE(); case 66: - if (lookahead == 'd') ADVANCE(365); + if (lookahead == 'd') ADVANCE(348); END_STATE(); case 67: - if (lookahead == 'd') ADVANCE(349); + if (lookahead == 'd') ADVANCE(622); END_STATE(); case 68: - if (lookahead == 'd') ADVANCE(623); + if (lookahead == 'd') ADVANCE(618); END_STATE(); case 69: - if (lookahead == 'd') ADVANCE(619); + if (lookahead == 'd') ADVANCE(666); END_STATE(); case 70: - if (lookahead == 'd') ADVANCE(667); + if (lookahead == 'e') ADVANCE(255); + if (lookahead == 'u') ADVANCE(152); END_STATE(); case 71: - if (lookahead == 'e') ADVANCE(256); - if (lookahead == 'u') ADVANCE(153); + if (lookahead == 'e') ADVANCE(110); END_STATE(); case 72: - if (lookahead == 'e') ADVANCE(111); + if (lookahead == 'e') ADVANCE(65); END_STATE(); case 73: - if (lookahead == 'e') ADVANCE(66); + if (lookahead == 'e') ADVANCE(363); END_STATE(); case 74: - if (lookahead == 'e') ADVANCE(364); + if (lookahead == 'e') ADVANCE(41); + if (lookahead == 't') ADVANCE(122); END_STATE(); case 75: - if (lookahead == 'e') ADVANCE(42); - if (lookahead == 't') ADVANCE(123); + if (lookahead == 'e') ADVANCE(2); END_STATE(); case 76: - if (lookahead == 'e') ADVANCE(2); + if (lookahead == 'e') ADVANCE(261); END_STATE(); case 77: - if (lookahead == 'e') ADVANCE(262); + if (lookahead == 'e') ADVANCE(4); END_STATE(); case 78: - if (lookahead == 'e') ADVANCE(4); + if (lookahead == 'e') ADVANCE(348); END_STATE(); case 79: - if (lookahead == 'e') ADVANCE(349); + if (lookahead == 'e') ADVANCE(365); END_STATE(); case 80: - if (lookahead == 'e') ADVANCE(366); + if (lookahead == 'e') ADVANCE(133); + if (lookahead == 'y') ADVANCE(611); END_STATE(); case 81: - if (lookahead == 'e') ADVANCE(134); - if (lookahead == 'y') ADVANCE(612); + if (lookahead == 'e') ADVANCE(216); END_STATE(); case 82: - if (lookahead == 'e') ADVANCE(217); + if (lookahead == 'e') ADVANCE(182); END_STATE(); case 83: - if (lookahead == 'e') ADVANCE(183); + if (lookahead == 'e') ADVANCE(649); END_STATE(); case 84: - if (lookahead == 'e') ADVANCE(650); + if (lookahead == 'e') ADVANCE(597); END_STATE(); case 85: - if (lookahead == 'e') ADVANCE(598); + if (lookahead == 'e') ADVANCE(618); END_STATE(); case 86: - if (lookahead == 'e') ADVANCE(619); + if (lookahead == 'e') ADVANCE(631); END_STATE(); case 87: - if (lookahead == 'e') ADVANCE(632); + if (lookahead == 'e') ADVANCE(581); END_STATE(); case 88: - if (lookahead == 'e') ADVANCE(582); + if (lookahead == 'e') ADVANCE(173); END_STATE(); case 89: - if (lookahead == 'e') ADVANCE(174); + if (lookahead == 'e') ADVANCE(66); END_STATE(); case 90: - if (lookahead == 'e') ADVANCE(67); + if (lookahead == 'e') ADVANCE(237); END_STATE(); case 91: - if (lookahead == 'e') ADVANCE(238); + if (lookahead == 'e') ADVANCE(72); END_STATE(); case 92: - if (lookahead == 'e') ADVANCE(73); + if (lookahead == 'e') ADVANCE(109); END_STATE(); case 93: - if (lookahead == 'e') ADVANCE(110); + if (lookahead == 'e') ADVANCE(61); END_STATE(); case 94: - if (lookahead == 'e') ADVANCE(62); + if (lookahead == 'e') ADVANCE(135); END_STATE(); case 95: - if (lookahead == 'e') ADVANCE(136); + if (lookahead == 'e') ADVANCE(48); END_STATE(); case 96: - if (lookahead == 'e') ADVANCE(49); + if (lookahead == 'e') ADVANCE(219); END_STATE(); case 97: - if (lookahead == 'e') ADVANCE(220); + if (lookahead == 'e') ADVANCE(224); END_STATE(); case 98: - if (lookahead == 'e') ADVANCE(225); + if (lookahead == 'e') ADVANCE(89); END_STATE(); case 99: - if (lookahead == 'e') ADVANCE(90); + if (lookahead == 'e') ADVANCE(183); + if (lookahead == 'i') ADVANCE(161); END_STATE(); case 100: - if (lookahead == 'e') ADVANCE(184); - if (lookahead == 'i') ADVANCE(162); + if (lookahead == 'e') ADVANCE(191); END_STATE(); case 101: - if (lookahead == 'e') ADVANCE(192); + if (lookahead == 'e') ADVANCE(181); END_STATE(); case 102: - if (lookahead == 'e') ADVANCE(182); + if (lookahead == 'e') ADVANCE(227); END_STATE(); case 103: - if (lookahead == 'e') ADVANCE(228); + if (lookahead == 'e') ADVANCE(238); END_STATE(); case 104: - if (lookahead == 'e') ADVANCE(239); + if (lookahead == 'e') ADVANCE(197); END_STATE(); case 105: - if (lookahead == 'e') ADVANCE(198); + if (lookahead == 'e') ADVANCE(259); END_STATE(); case 106: - if (lookahead == 'e') ADVANCE(260); + if (lookahead == 'f') ADVANCE(594); END_STATE(); case 107: - if (lookahead == 'f') ADVANCE(595); + if (lookahead == 'f') ADVANCE(639); + if (lookahead == 'n') ADVANCE(586); END_STATE(); case 108: - if (lookahead == 'f') ADVANCE(640); - if (lookahead == 'n') ADVANCE(587); + if (lookahead == 'f') ADVANCE(639); + if (lookahead == 'n') ADVANCE(130); END_STATE(); case 109: - if (lookahead == 'f') ADVANCE(640); - if (lookahead == 'n') ADVANCE(131); + if (lookahead == 'f') ADVANCE(116); END_STATE(); case 110: - if (lookahead == 'f') ADVANCE(117); + if (lookahead == 'f') ADVANCE(91); END_STATE(); case 111: - if (lookahead == 'f') ADVANCE(92); + if (lookahead == 'f') ADVANCE(228); + if (lookahead == 't') ADVANCE(200); END_STATE(); case 112: - if (lookahead == 'f') ADVANCE(229); - if (lookahead == 't') ADVANCE(201); + if (lookahead == 'f') ADVANCE(98); END_STATE(); case 113: - if (lookahead == 'f') ADVANCE(99); + if (lookahead == 'g') ADVANCE(590); END_STATE(); case 114: - if (lookahead == 'g') ADVANCE(591); + if (lookahead == 'g') ADVANCE(592); END_STATE(); case 115: - if (lookahead == 'g') ADVANCE(593); + if (lookahead == 'g') ADVANCE(617); END_STATE(); case 116: - if (lookahead == 'g') ADVANCE(618); + if (lookahead == 'g') ADVANCE(104); + if (lookahead == 'm') ADVANCE(47); + if (lookahead == 'u') ADVANCE(186); END_STATE(); case 117: - if (lookahead == 'g') ADVANCE(105); - if (lookahead == 'm') ADVANCE(48); - if (lookahead == 'u') ADVANCE(187); + if (lookahead == 'h') ADVANCE(2); END_STATE(); case 118: - if (lookahead == 'h') ADVANCE(2); + if (lookahead == 'h') ADVANCE(37); END_STATE(); case 119: - if (lookahead == 'h') ADVANCE(38); + if (lookahead == 'h') ADVANCE(99); + if (lookahead == 'i') ADVANCE(245); END_STATE(); case 120: - if (lookahead == 'h') ADVANCE(100); - if (lookahead == 'i') ADVANCE(246); + if (lookahead == 'h') ADVANCE(626); END_STATE(); case 121: - if (lookahead == 'h') ADVANCE(627); + if (lookahead == 'h') ADVANCE(42); + if (lookahead == 'p') ADVANCE(223); END_STATE(); case 122: - if (lookahead == 'h') ADVANCE(43); - if (lookahead == 'p') ADVANCE(224); + if (lookahead == 'h') ADVANCE(75); END_STATE(); case 123: - if (lookahead == 'h') ADVANCE(76); + if (lookahead == 'h') ADVANCE(207); END_STATE(); case 124: - if (lookahead == 'h') ADVANCE(208); + if (lookahead == 'h') ADVANCE(82); + if (lookahead == 'o') ADVANCE(601); END_STATE(); case 125: - if (lookahead == 'h') ADVANCE(83); - if (lookahead == 'o') ADVANCE(602); + if (lookahead == 'h') ADVANCE(102); END_STATE(); case 126: - if (lookahead == 'h') ADVANCE(103); + if (lookahead == 'h') ADVANCE(101); + if (lookahead == 'o') ADVANCE(601); END_STATE(); case 127: - if (lookahead == 'h') ADVANCE(102); - if (lookahead == 'o') ADVANCE(602); + if (lookahead == 'i') ADVANCE(172); END_STATE(); case 128: - if (lookahead == 'i') ADVANCE(173); + if (lookahead == 'i') ADVANCE(266); END_STATE(); case 129: - if (lookahead == 'i') ADVANCE(267); + if (lookahead == 'i') ADVANCE(174); + if (lookahead == 'o') ADVANCE(106); END_STATE(); case 130: - if (lookahead == 'i') ADVANCE(175); - if (lookahead == 'o') ADVANCE(107); + if (lookahead == 'i') ADVANCE(244); + if (lookahead == 't') ADVANCE(201); END_STATE(); case 131: - if (lookahead == 'i') ADVANCE(245); - if (lookahead == 't') ADVANCE(202); + if (lookahead == 'i') ADVANCE(170); END_STATE(); case 132: - if (lookahead == 'i') ADVANCE(171); + if (lookahead == 'i') ADVANCE(58); END_STATE(); case 133: - if (lookahead == 'i') ADVANCE(59); + if (lookahead == 'i') ADVANCE(179); + if (lookahead == 'l') ADVANCE(203); END_STATE(); case 134: - if (lookahead == 'i') ADVANCE(180); - if (lookahead == 'l') ADVANCE(204); + if (lookahead == 'i') ADVANCE(150); END_STATE(); case 135: - if (lookahead == 'i') ADVANCE(151); + if (lookahead == 'i') ADVANCE(233); END_STATE(); case 136: - if (lookahead == 'i') ADVANCE(234); + if (lookahead == 'i') ADVANCE(188); END_STATE(); case 137: if (lookahead == 'i') ADVANCE(189); @@ -4012,86 +4009,86 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'i') ADVANCE(190); END_STATE(); case 139: - if (lookahead == 'i') ADVANCE(191); + if (lookahead == 'i') ADVANCE(195); END_STATE(); case 140: if (lookahead == 'i') ADVANCE(196); END_STATE(); case 141: - if (lookahead == 'i') ADVANCE(197); + if (lookahead == 'i') ADVANCE(51); END_STATE(); case 142: - if (lookahead == 'i') ADVANCE(52); + if (lookahead == 'k') ADVANCE(229); END_STATE(); case 143: - if (lookahead == 'k') ADVANCE(230); + if (lookahead == 'k') ADVANCE(76); + if (lookahead == 'v') ADVANCE(46); END_STATE(); case 144: - if (lookahead == 'k') ADVANCE(77); - if (lookahead == 'v') ADVANCE(47); + if (lookahead == 'l') ADVANCE(366); END_STATE(); case 145: - if (lookahead == 'l') ADVANCE(367); + if (lookahead == 'l') ADVANCE(4); END_STATE(); case 146: - if (lookahead == 'l') ADVANCE(4); + if (lookahead == 'l') ADVANCE(250); END_STATE(); case 147: - if (lookahead == 'l') ADVANCE(251); + if (lookahead == 'l') ADVANCE(367); END_STATE(); case 148: - if (lookahead == 'l') ADVANCE(368); + if (lookahead == 'l') ADVANCE(583); END_STATE(); case 149: - if (lookahead == 'l') ADVANCE(584); + if (lookahead == 'l') ADVANCE(583); + if (lookahead == 'o') ADVANCE(156); END_STATE(); case 150: - if (lookahead == 'l') ADVANCE(584); - if (lookahead == 'o') ADVANCE(157); + if (lookahead == 'l') ADVANCE(633); END_STATE(); case 151: - if (lookahead == 'l') ADVANCE(634); + if (lookahead == 'l') ADVANCE(256); + if (lookahead == 'n') ADVANCE(67); + if (lookahead == 'p') ADVANCE(215); + if (lookahead == 's') ADVANCE(624); END_STATE(); case 152: - if (lookahead == 'l') ADVANCE(257); - if (lookahead == 'n') ADVANCE(68); - if (lookahead == 'p') ADVANCE(216); - if (lookahead == 's') ADVANCE(625); + if (lookahead == 'l') ADVANCE(144); END_STATE(); case 153: - if (lookahead == 'l') ADVANCE(145); + if (lookahead == 'l') ADVANCE(263); END_STATE(); case 154: if (lookahead == 'l') ADVANCE(264); END_STATE(); case 155: - if (lookahead == 'l') ADVANCE(265); + if (lookahead == 'l') ADVANCE(147); END_STATE(); case 156: - if (lookahead == 'l') ADVANCE(148); + if (lookahead == 'l') ADVANCE(160); + if (lookahead == 'u') ADVANCE(194); END_STATE(); case 157: - if (lookahead == 'l') ADVANCE(161); - if (lookahead == 'u') ADVANCE(195); + if (lookahead == 'l') ADVANCE(153); END_STATE(); case 158: if (lookahead == 'l') ADVANCE(154); END_STATE(); case 159: - if (lookahead == 'l') ADVANCE(155); + if (lookahead == 'l') ADVANCE(103); + if (lookahead == 't') ADVANCE(134); END_STATE(); case 160: - if (lookahead == 'l') ADVANCE(104); - if (lookahead == 't') ADVANCE(135); + if (lookahead == 'l') ADVANCE(93); END_STATE(); case 161: - if (lookahead == 'l') ADVANCE(94); + if (lookahead == 'l') ADVANCE(86); END_STATE(); case 162: - if (lookahead == 'l') ADVANCE(87); + if (lookahead == 'l') ADVANCE(239); END_STATE(); case 163: - if (lookahead == 'l') ADVANCE(240); + if (lookahead == 'l') ADVANCE(138); END_STATE(); case 164: if (lookahead == 'l') ADVANCE(139); @@ -4100,395 +4097,397 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'l') ADVANCE(140); END_STATE(); case 166: - if (lookahead == 'l') ADVANCE(141); + if (lookahead == 'm') ADVANCE(52); END_STATE(); case 167: - if (lookahead == 'm') ADVANCE(53); + if (lookahead == 'm') ADVANCE(619); END_STATE(); case 168: - if (lookahead == 'm') ADVANCE(620); + if (lookahead == 'm') ADVANCE(599); END_STATE(); case 169: - if (lookahead == 'm') ADVANCE(600); + if (lookahead == 'm') ADVANCE(607); END_STATE(); case 170: - if (lookahead == 'm') ADVANCE(608); + if (lookahead == 'm') ADVANCE(128); END_STATE(); case 171: - if (lookahead == 'm') ADVANCE(129); + if (lookahead == 'm') ADVANCE(112); END_STATE(); case 172: - if (lookahead == 'm') ADVANCE(113); + if (lookahead == 'n') ADVANCE(71); END_STATE(); case 173: - if (lookahead == 'n') ADVANCE(72); + if (lookahead == 'n') ADVANCE(242); END_STATE(); case 174: - if (lookahead == 'n') ADVANCE(243); + if (lookahead == 'n') ADVANCE(594); END_STATE(); case 175: - if (lookahead == 'n') ADVANCE(595); + if (lookahead == 'n') ADVANCE(348); END_STATE(); case 176: - if (lookahead == 'n') ADVANCE(349); + if (lookahead == 'n') ADVANCE(609); END_STATE(); case 177: - if (lookahead == 'n') ADVANCE(610); + if (lookahead == 'n') ADVANCE(159); END_STATE(); case 178: - if (lookahead == 'n') ADVANCE(160); + if (lookahead == 'n') ADVANCE(159); + if (lookahead == 'p') ADVANCE(247); + if (lookahead == 's') ADVANCE(136); END_STATE(); case 179: - if (lookahead == 'n') ADVANCE(160); - if (lookahead == 'p') ADVANCE(248); - if (lookahead == 's') ADVANCE(137); + if (lookahead == 'n') ADVANCE(113); END_STATE(); case 180: - if (lookahead == 'n') ADVANCE(114); + if (lookahead == 'n') ADVANCE(111); END_STATE(); case 181: - if (lookahead == 'n') ADVANCE(112); + if (lookahead == 'n') ADVANCE(613); END_STATE(); case 182: - if (lookahead == 'n') ADVANCE(614); + if (lookahead == 'n') ADVANCE(613); + if (lookahead == 'r') ADVANCE(94); END_STATE(); case 183: - if (lookahead == 'n') ADVANCE(614); - if (lookahead == 'r') ADVANCE(95); + if (lookahead == 'n') ADVANCE(637); END_STATE(); case 184: - if (lookahead == 'n') ADVANCE(638); + if (lookahead == 'n') ADVANCE(654); END_STATE(); case 185: - if (lookahead == 'n') ADVANCE(655); + if (lookahead == 'n') ADVANCE(585); END_STATE(); case 186: - if (lookahead == 'n') ADVANCE(586); + if (lookahead == 'n') ADVANCE(660); END_STATE(); case 187: - if (lookahead == 'n') ADVANCE(661); + if (lookahead == 'n') ADVANCE(131); END_STATE(); case 188: - if (lookahead == 'n') ADVANCE(132); + if (lookahead == 'n') ADVANCE(114); END_STATE(); case 189: if (lookahead == 'n') ADVANCE(115); END_STATE(); case 190: - if (lookahead == 'n') ADVANCE(116); + if (lookahead == 'n') ADVANCE(73); END_STATE(); case 191: - if (lookahead == 'n') ADVANCE(74); + if (lookahead == 'n') ADVANCE(68); END_STATE(); case 192: - if (lookahead == 'n') ADVANCE(69); + if (lookahead == 'n') ADVANCE(57); END_STATE(); case 193: - if (lookahead == 'n') ADVANCE(58); + if (lookahead == 'n') ADVANCE(50); END_STATE(); case 194: - if (lookahead == 'n') ADVANCE(51); + if (lookahead == 'n') ADVANCE(240); END_STATE(); case 195: - if (lookahead == 'n') ADVANCE(241); + if (lookahead == 'n') ADVANCE(78); END_STATE(); case 196: - if (lookahead == 'n') ADVANCE(79); + if (lookahead == 'n') ADVANCE(87); END_STATE(); case 197: - if (lookahead == 'n') ADVANCE(88); + if (lookahead == 'n') ADVANCE(97); END_STATE(); case 198: - if (lookahead == 'n') ADVANCE(98); + if (lookahead == 'n') ADVANCE(248); END_STATE(); case 199: - if (lookahead == 'n') ADVANCE(249); + if (lookahead == 'o') ADVANCE(603); END_STATE(); case 200: - if (lookahead == 'o') ADVANCE(604); + if (lookahead == 'o') ADVANCE(605); END_STATE(); case 201: - if (lookahead == 'o') ADVANCE(606); + if (lookahead == 'o') ADVANCE(651); END_STATE(); case 202: - if (lookahead == 'o') ADVANCE(652); + if (lookahead == 'o') ADVANCE(662); END_STATE(); case 203: - if (lookahead == 'o') ADVANCE(663); + if (lookahead == 'o') ADVANCE(254); END_STATE(); case 204: - if (lookahead == 'o') ADVANCE(255); + if (lookahead == 'o') ADVANCE(213); END_STATE(); case 205: - if (lookahead == 'o') ADVANCE(214); + if (lookahead == 'o') ADVANCE(168); END_STATE(); case 206: - if (lookahead == 'o') ADVANCE(169); + if (lookahead == 'o') ADVANCE(145); END_STATE(); case 207: - if (lookahead == 'o') ADVANCE(146); + if (lookahead == 'o') ADVANCE(69); END_STATE(); case 208: - if (lookahead == 'o') ADVANCE(70); + if (lookahead == 'o') ADVANCE(236); END_STATE(); case 209: - if (lookahead == 'o') ADVANCE(237); + if (lookahead == 'o') ADVANCE(169); END_STATE(); case 210: - if (lookahead == 'o') ADVANCE(170); + if (lookahead == 'o') ADVANCE(192); END_STATE(); case 211: - if (lookahead == 'o') ADVANCE(193); + if (lookahead == 'o') ADVANCE(204); END_STATE(); case 212: - if (lookahead == 'o') ADVANCE(205); + if (lookahead == 'o') ADVANCE(253); END_STATE(); case 213: - if (lookahead == 'o') ADVANCE(254); + if (lookahead == 'p') ADVANCE(658); END_STATE(); case 214: - if (lookahead == 'p') ADVANCE(659); + if (lookahead == 'p') ADVANCE(247); + if (lookahead == 's') ADVANCE(136); END_STATE(); case 215: - if (lookahead == 'p') ADVANCE(248); - if (lookahead == 's') ADVANCE(137); + if (lookahead == 'p') ADVANCE(100); END_STATE(); case 216: - if (lookahead == 'p') ADVANCE(101); + if (lookahead == 'p') ADVANCE(95); + if (lookahead == 't') ADVANCE(251); END_STATE(); case 217: - if (lookahead == 'p') ADVANCE(96); - if (lookahead == 't') ADVANCE(252); + if (lookahead == 'p') ADVANCE(49); END_STATE(); case 218: - if (lookahead == 'p') ADVANCE(50); + if (lookahead == 'r') ADVANCE(620); END_STATE(); case 219: - if (lookahead == 'r') ADVANCE(621); + if (lookahead == 'r') ADVANCE(647); END_STATE(); case 220: - if (lookahead == 'r') ADVANCE(648); + if (lookahead == 'r') ADVANCE(171); END_STATE(); case 221: - if (lookahead == 'r') ADVANCE(172); + if (lookahead == 'r') ADVANCE(175); END_STATE(); case 222: - if (lookahead == 'r') ADVANCE(176); + if (lookahead == 'r') ADVANCE(208); END_STATE(); case 223: - if (lookahead == 'r') ADVANCE(209); + if (lookahead == 'r') ADVANCE(90); END_STATE(); case 224: - if (lookahead == 'r') ADVANCE(91); + if (lookahead == 'r') ADVANCE(132); END_STATE(); case 225: - if (lookahead == 'r') ADVANCE(133); + if (lookahead == 'r') ADVANCE(202); END_STATE(); case 226: - if (lookahead == 'r') ADVANCE(203); + if (lookahead == 'r') ADVANCE(184); END_STATE(); case 227: - if (lookahead == 'r') ADVANCE(185); + if (lookahead == 'r') ADVANCE(94); END_STATE(); case 228: - if (lookahead == 'r') ADVANCE(95); + if (lookahead == 'r') ADVANCE(209); END_STATE(); case 229: - if (lookahead == 'r') ADVANCE(210); + if (lookahead == 's') ADVANCE(217); END_STATE(); case 230: - if (lookahead == 's') ADVANCE(218); + if (lookahead == 's') ADVANCE(588); END_STATE(); case 231: - if (lookahead == 's') ADVANCE(589); + if (lookahead == 's') ADVANCE(643); END_STATE(); case 232: - if (lookahead == 's') ADVANCE(644); + if (lookahead == 's') ADVANCE(641); END_STATE(); case 233: - if (lookahead == 's') ADVANCE(642); + if (lookahead == 's') ADVANCE(645); END_STATE(); case 234: - if (lookahead == 's') ADVANCE(646); + if (lookahead == 's') ADVANCE(262); END_STATE(); case 235: - if (lookahead == 's') ADVANCE(263); + if (lookahead == 's') ADVANCE(118); END_STATE(); case 236: - if (lookahead == 's') ADVANCE(119); + if (lookahead == 's') ADVANCE(230); END_STATE(); case 237: - if (lookahead == 's') ADVANCE(231); + if (lookahead == 's') ADVANCE(88); END_STATE(); case 238: - if (lookahead == 's') ADVANCE(89); + if (lookahead == 's') ADVANCE(232); END_STATE(); case 239: - if (lookahead == 's') ADVANCE(233); + if (lookahead == 's') ADVANCE(83); END_STATE(); case 240: - if (lookahead == 's') ADVANCE(84); + if (lookahead == 't') ADVANCE(618); END_STATE(); case 241: - if (lookahead == 't') ADVANCE(619); + if (lookahead == 't') ADVANCE(635); END_STATE(); case 242: - if (lookahead == 't') ADVANCE(636); + if (lookahead == 't') ADVANCE(38); END_STATE(); case 243: - if (lookahead == 't') ADVANCE(39); + if (lookahead == 't') ADVANCE(249); END_STATE(); case 244: - if (lookahead == 't') ADVANCE(250); + if (lookahead == 't') ADVANCE(141); END_STATE(); case 245: - if (lookahead == 't') ADVANCE(142); + if (lookahead == 't') ADVANCE(120); END_STATE(); case 246: - if (lookahead == 't') ADVANCE(121); + if (lookahead == 't') ADVANCE(123); END_STATE(); case 247: - if (lookahead == 't') ADVANCE(124); + if (lookahead == 't') ADVANCE(199); END_STATE(); case 248: - if (lookahead == 't') ADVANCE(200); + if (lookahead == 't') ADVANCE(201); END_STATE(); case 249: - if (lookahead == 't') ADVANCE(202); + if (lookahead == 'u') ADVANCE(221); END_STATE(); case 250: - if (lookahead == 'u') ADVANCE(222); + if (lookahead == 'u') ADVANCE(77); END_STATE(); case 251: - if (lookahead == 'u') ADVANCE(78); + if (lookahead == 'u') ADVANCE(226); END_STATE(); case 252: - if (lookahead == 'u') ADVANCE(227); + if (lookahead == 'v') ADVANCE(96); END_STATE(); case 253: - if (lookahead == 'v') ADVANCE(97); + if (lookahead == 'v') ADVANCE(84); END_STATE(); case 254: - if (lookahead == 'v') ADVANCE(85); + if (lookahead == 'w') ADVANCE(595); END_STATE(); case 255: - if (lookahead == 'w') ADVANCE(596); + if (lookahead == 'w') ADVANCE(163); END_STATE(); case 256: - if (lookahead == 'w') ADVANCE(164); + if (lookahead == 'w') ADVANCE(45); END_STATE(); case 257: - if (lookahead == 'w') ADVANCE(46); + if (lookahead == 'w') ADVANCE(180); END_STATE(); case 258: - if (lookahead == 'w') ADVANCE(181); + if (lookahead == 'w') ADVANCE(164); END_STATE(); case 259: if (lookahead == 'w') ADVANCE(165); END_STATE(); case 260: - if (lookahead == 'w') ADVANCE(166); + if (lookahead == 'x') ADVANCE(131); END_STATE(); case 261: - if (lookahead == 'x') ADVANCE(132); + if (lookahead == 'y') ADVANCE(4); END_STATE(); case 262: - if (lookahead == 'y') ADVANCE(4); + if (lookahead == 'y') ADVANCE(166); END_STATE(); case 263: - if (lookahead == 'y') ADVANCE(167); + if (lookahead == 'y') ADVANCE(652); END_STATE(); case 264: - if (lookahead == 'y') ADVANCE(653); + if (lookahead == 'y') ADVANCE(656); END_STATE(); case 265: - if (lookahead == 'y') ADVANCE(657); + if (lookahead == 'y') ADVANCE(231); END_STATE(); case 266: - if (lookahead == 'y') ADVANCE(232); + if (lookahead == 'z') ADVANCE(85); END_STATE(); case 267: - if (lookahead == 'z') ADVANCE(86); + if (lookahead == '|') ADVANCE(268); END_STATE(); case 268: - if (lookahead == '|') ADVANCE(269); + if (lookahead == '|') ADVANCE(24); + if (lookahead != 0) ADVANCE(268); END_STATE(); case 269: - if (lookahead == '|') ADVANCE(25); + if (lookahead == '|') ADVANCE(553); if (lookahead != 0) ADVANCE(269); END_STATE(); case 270: - if (lookahead == '|') ADVANCE(553); - if (lookahead != 0) ADVANCE(270); - END_STATE(); - case 271: if (lookahead == '#' || - lookahead == '=') ADVANCE(674); + lookahead == '=') ADVANCE(673); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(286); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(271); + lookahead == 'r') ADVANCE(285); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(270); END_STATE(); - case 272: + case 271: if (lookahead == '+' || - lookahead == '-') ADVANCE(279); + lookahead == '-') ADVANCE(278); if (lookahead == '0' || - lookahead == '1') ADVANCE(308); + lookahead == '1') ADVANCE(307); END_STATE(); - case 273: + case 272: if (lookahead == '+' || - lookahead == '-') ADVANCE(280); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(309); + lookahead == '-') ADVANCE(279); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(308); END_STATE(); - case 274: + case 273: if (lookahead == '+' || - lookahead == '-') ADVANCE(282); + lookahead == '-') ADVANCE(281); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(312); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(311); END_STATE(); - case 275: + case 274: if (lookahead == '+' || - lookahead == '-') ADVANCE(281); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(311); + lookahead == '-') ADVANCE(280); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(310); END_STATE(); - case 276: + case 275: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(301); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(276); + lookahead == 'a') ADVANCE(300); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(275); END_STATE(); - case 277: + case 276: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(272); + lookahead == 'b') ADVANCE(271); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(273); + lookahead == 'o') ADVANCE(272); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(274); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(278); + lookahead == 'x') ADVANCE(273); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(277); END_STATE(); - case 278: + case 277: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(286); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(278); + lookahead == 'r') ADVANCE(285); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(277); END_STATE(); - case 279: + case 278: if (lookahead == '0' || - lookahead == '1') ADVANCE(308); + lookahead == '1') ADVANCE(307); + END_STATE(); + case 279: + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(308); END_STATE(); case 280: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(309); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(310); END_STATE(); case 281: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(311); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(311); END_STATE(); case 282: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(312); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(348); END_STATE(); case 283: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(349); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(282); END_STATE(); case 284: if (('0' <= lookahead && lookahead <= '9') || @@ -4496,55 +4495,50 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'f')) ADVANCE(283); END_STATE(); case 285: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(284); - END_STATE(); - case 286: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(313); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(312); END_STATE(); - case 287: - if (!aux_sym_char_lit_token1_character_set_1(lookahead)) ADVANCE(349); - if (lookahead == 'N') ADVANCE(352); - if (lookahead == 'R') ADVANCE(359); - if (lookahead == 'S') ADVANCE(357); - if (lookahead == 'b') ADVANCE(350); - if (lookahead == 'f') ADVANCE(356); - if (lookahead == 'n') ADVANCE(354); - if (lookahead == 'o') ADVANCE(362); - if (lookahead == 'r') ADVANCE(353); - if (lookahead == 's') ADVANCE(358); - if (lookahead == 't') ADVANCE(351); - if (lookahead == 'u') ADVANCE(363); + case 286: + if (!aux_sym_char_lit_token1_character_set_1(lookahead)) ADVANCE(348); + if (lookahead == 'N') ADVANCE(351); + if (lookahead == 'R') ADVANCE(358); + if (lookahead == 'S') ADVANCE(356); + if (lookahead == 'b') ADVANCE(349); + if (lookahead == 'f') ADVANCE(355); + if (lookahead == 'n') ADVANCE(353); + if (lookahead == 'o') ADVANCE(361); + if (lookahead == 'r') ADVANCE(352); + if (lookahead == 's') ADVANCE(357); + if (lookahead == 't') ADVANCE(350); + if (lookahead == 'u') ADVANCE(362); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(355); + lookahead == 'l') ADVANCE(354); END_STATE(); - case 288: + case 287: if (lookahead != 0 && - lookahead != '\n') ADVANCE(24); + lookahead != '\n') ADVANCE(23); END_STATE(); - case 289: - if (eof) ADVANCE(291); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '#') ADVANCE(296); + case 288: + if (eof) ADVANCE(290); + if (lookahead == '"') ADVANCE(339); + if (lookahead == '#') ADVANCE(295); if (lookahead == '\'') ADVANCE(547); - if (lookahead == '(') ADVANCE(536); - if (lookahead == ')') ADVANCE(537); + if (lookahead == '(') ADVANCE(535); + if (lookahead == ')') ADVANCE(536); if (lookahead == ',') ADVANCE(551); - if (lookahead == '.') ADVANCE(303); - if (lookahead == ':') ADVANCE(337); - if (lookahead == ';') ADVANCE(294); - if (lookahead == '^') ADVANCE(534); + if (lookahead == '.') ADVANCE(302); + if (lookahead == ':') ADVANCE(336); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '^') ADVANCE(533); if (lookahead == '`') ADVANCE(548); - if (lookahead == 'c') ADVANCE(433); - if (lookahead == 'n') ADVANCE(421); - if (lookahead == '{') ADVANCE(538); - if (lookahead == '|') ADVANCE(521); - if (lookahead == '}') ADVANCE(539); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(370); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(306); + if (lookahead == 'c') ADVANCE(432); + if (lookahead == 'n') ADVANCE(420); + if (lookahead == '{') ADVANCE(537); + if (lookahead == '|') ADVANCE(520); + if (lookahead == '}') ADVANCE(538); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(369); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(305); if (('\t' <= lookahead && lookahead <= '\r') || (28 <= lookahead && lookahead <= ' ') || lookahead == 5760 || @@ -4553,28 +4547,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8232 || lookahead == 8233 || lookahead == 8287 || - lookahead == 12288) ADVANCE(292); + lookahead == 12288) ADVANCE(291); if (lookahead != 0 && - (lookahead < '[' || ']' < lookahead)) ADVANCE(533); + (lookahead < '[' || ']' < lookahead)) ADVANCE(532); END_STATE(); - case 290: - if (eof) ADVANCE(291); - if (lookahead == '"') ADVANCE(340); - if (lookahead == '#') ADVANCE(296); + case 289: + if (eof) ADVANCE(290); + if (lookahead == '"') ADVANCE(339); + if (lookahead == '#') ADVANCE(295); if (lookahead == '\'') ADVANCE(547); - if (lookahead == '(') ADVANCE(536); - if (lookahead == ')') ADVANCE(537); + if (lookahead == '(') ADVANCE(535); + if (lookahead == ')') ADVANCE(536); if (lookahead == ',') ADVANCE(551); - if (lookahead == '.') ADVANCE(303); - if (lookahead == ':') ADVANCE(337); - if (lookahead == ';') ADVANCE(294); - if (lookahead == '^') ADVANCE(534); + if (lookahead == '.') ADVANCE(302); + if (lookahead == ':') ADVANCE(336); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '^') ADVANCE(533); if (lookahead == '`') ADVANCE(548); - if (lookahead == 'c') ADVANCE(433); - if (lookahead == 'n') ADVANCE(421); - if (lookahead == '|') ADVANCE(521); - if (lookahead == '}') ADVANCE(539); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(370); + if (lookahead == 'c') ADVANCE(432); + if (lookahead == 'n') ADVANCE(420); + if (lookahead == '|') ADVANCE(520); + if (lookahead == '}') ADVANCE(538); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(369); if (lookahead == 'D' || lookahead == 'F' || lookahead == 'L' || @@ -4582,8 +4576,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 'd' || lookahead == 'f' || lookahead == 'l' || - lookahead == 's') ADVANCE(336); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(306); + lookahead == 's') ADVANCE(335); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(305); if (('\t' <= lookahead && lookahead <= '\r') || (28 <= lookahead && lookahead <= ' ') || lookahead == 5760 || @@ -4592,15 +4586,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8232 || lookahead == 8233 || lookahead == 8287 || - lookahead == 12288) ADVANCE(292); + lookahead == 12288) ADVANCE(291); if (lookahead != 0 && (lookahead < '[' || ']' < lookahead) && - lookahead != '{') ADVANCE(533); + lookahead != '{') ADVANCE(532); END_STATE(); - case 291: + case 290: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 292: + case 291: ACCEPT_TOKEN(sym__ws); if (('\t' <= lookahead && lookahead <= '\r') || (28 <= lookahead && lookahead <= ' ') || @@ -4610,330 +4604,345 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8232 || lookahead == 8233 || lookahead == 8287 || - lookahead == 12288) ADVANCE(292); + lookahead == 12288) ADVANCE(291); END_STATE(); - case 293: + case 292: ACCEPT_TOKEN(sym_comment); END_STATE(); - case 294: + case 293: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\n') ADVANCE(293); - if (lookahead != 0) ADVANCE(294); + if (lookahead == '\n') ADVANCE(292); + if (lookahead != 0) ADVANCE(293); END_STATE(); - case 295: + case 294: ACCEPT_TOKEN(anon_sym_POUND_); END_STATE(); - case 296: + case 295: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '!') ADVANCE(294); - if (lookahead == '\'') ADVANCE(546); - if (lookahead == '+') ADVANCE(675); - if (lookahead == '-') ADVANCE(676); - if (lookahead == '0') ADVANCE(41); - if (lookahead == '?') ADVANCE(544); + if (lookahead == '!') ADVANCE(293); + if (lookahead == '\'') ADVANCE(545); + if (lookahead == '+') ADVANCE(674); + if (lookahead == '-') ADVANCE(675); + if (lookahead == '0') ADVANCE(40); + if (lookahead == '?') ADVANCE(543); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(272); - if (lookahead == 'C') ADVANCE(677); + lookahead == 'b') ADVANCE(271); + if (lookahead == 'C') ADVANCE(676); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(273); - if (lookahead == 'P') ADVANCE(670); + lookahead == 'o') ADVANCE(272); + if (lookahead == 'P') ADVANCE(669); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(274); - if (lookahead == '^') ADVANCE(535); - if (lookahead == '_') ADVANCE(295); - if (lookahead == 'c') ADVANCE(678); - if (lookahead == 'p') ADVANCE(671); - if (lookahead == '|') ADVANCE(269); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(271); + lookahead == 'x') ADVANCE(273); + if (lookahead == '^') ADVANCE(534); + if (lookahead == '_') ADVANCE(294); + if (lookahead == 'c') ADVANCE(677); + if (lookahead == 'p') ADVANCE(670); + if (lookahead == '|') ADVANCE(268); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(270); END_STATE(); - case 297: + case 296: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '!') ADVANCE(294); - if (lookahead == '\'') ADVANCE(546); - if (lookahead == '+') ADVANCE(675); - if (lookahead == '-') ADVANCE(676); - if (lookahead == '?') ADVANCE(544); - if (lookahead == 'C') ADVANCE(677); - if (lookahead == '^') ADVANCE(535); - if (lookahead == '_') ADVANCE(295); - if (lookahead == 'c') ADVANCE(678); - if (lookahead == '|') ADVANCE(269); + if (lookahead == '!') ADVANCE(293); + if (lookahead == '\'') ADVANCE(545); + if (lookahead == '+') ADVANCE(674); + if (lookahead == '-') ADVANCE(675); + if (lookahead == '?') ADVANCE(543); + if (lookahead == 'C') ADVANCE(676); + if (lookahead == '^') ADVANCE(534); + if (lookahead == '_') ADVANCE(294); + if (lookahead == 'c') ADVANCE(677); + if (lookahead == '|') ADVANCE(268); END_STATE(); - case 298: + case 297: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '\'') ADVANCE(546); - if (lookahead == '+') ADVANCE(675); - if (lookahead == '-') ADVANCE(676); - if (lookahead == '0') ADVANCE(41); - if (lookahead == '?') ADVANCE(544); + if (lookahead == '\'') ADVANCE(545); + if (lookahead == '+') ADVANCE(674); + if (lookahead == '-') ADVANCE(675); + if (lookahead == '0') ADVANCE(40); + if (lookahead == '?') ADVANCE(543); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(272); - if (lookahead == 'C') ADVANCE(677); + lookahead == 'b') ADVANCE(271); + if (lookahead == 'C') ADVANCE(676); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(273); - if (lookahead == 'P') ADVANCE(670); + lookahead == 'o') ADVANCE(272); + if (lookahead == 'P') ADVANCE(669); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(274); - if (lookahead == '^') ADVANCE(535); - if (lookahead == 'c') ADVANCE(678); - if (lookahead == 'p') ADVANCE(671); - if (lookahead == '|') ADVANCE(269); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(271); + lookahead == 'x') ADVANCE(273); + if (lookahead == '^') ADVANCE(534); + if (lookahead == 'c') ADVANCE(677); + if (lookahead == 'p') ADVANCE(670); + if (lookahead == '|') ADVANCE(268); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(270); END_STATE(); - case 299: + case 298: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '\'') ADVANCE(546); - if (lookahead == '+') ADVANCE(675); - if (lookahead == '-') ADVANCE(676); - if (lookahead == '?') ADVANCE(544); - if (lookahead == 'C') ADVANCE(677); - if (lookahead == '^') ADVANCE(535); - if (lookahead == 'c') ADVANCE(678); - if (lookahead == '|') ADVANCE(269); + if (lookahead == '\'') ADVANCE(545); + if (lookahead == '+') ADVANCE(674); + if (lookahead == '-') ADVANCE(675); + if (lookahead == '?') ADVANCE(543); + if (lookahead == 'C') ADVANCE(676); + if (lookahead == '^') ADVANCE(534); + if (lookahead == 'c') ADVANCE(677); + if (lookahead == '|') ADVANCE(268); END_STATE(); - case 300: + case 299: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(272); + lookahead == 'b') ADVANCE(271); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(273); + lookahead == 'o') ADVANCE(272); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(274); - if (lookahead == '|') ADVANCE(269); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(278); + lookahead == 'x') ADVANCE(273); + if (lookahead == '|') ADVANCE(268); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(277); END_STATE(); - case 301: + case 300: ACCEPT_TOKEN(aux_sym__form_token1); END_STATE(); - case 302: + case 301: ACCEPT_TOKEN(aux_sym__form_token1); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); - case 303: + case 302: ACCEPT_TOKEN(anon_sym_DOT); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); - case 304: + case 303: ACCEPT_TOKEN(aux_sym_num_lit_token1); END_STATE(); - case 305: + case 304: ACCEPT_TOKEN(aux_sym_num_lit_token1); - if (lookahead == '.') ADVANCE(316); - if (lookahead == '/') ADVANCE(529); - if (!aux_sym_sym_lit_token1_character_set_5(lookahead)) ADVANCE(533); + if (lookahead == '.') ADVANCE(315); + if (lookahead == '/') ADVANCE(528); + if (!aux_sym_sym_lit_token1_character_set_5(lookahead)) ADVANCE(532); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(302); + lookahead == 'a') ADVANCE(301); if (lookahead == 'M' || - lookahead == 'N') ADVANCE(320); + lookahead == 'N') ADVANCE(319); if (('D' <= lookahead && lookahead <= 'F') || lookahead == 'L' || lookahead == 'S' || ('d' <= lookahead && lookahead <= 'f') || lookahead == 'l' || - lookahead == 's') ADVANCE(526); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(305); + lookahead == 's') ADVANCE(525); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(304); END_STATE(); - case 306: + case 305: ACCEPT_TOKEN(aux_sym_num_lit_token1); - if (lookahead == '.') ADVANCE(316); - if (lookahead == '/') ADVANCE(529); - if (!aux_sym_sym_lit_token1_character_set_6(lookahead)) ADVANCE(533); + if (lookahead == '.') ADVANCE(315); + if (lookahead == '/') ADVANCE(528); + if (!aux_sym_sym_lit_token1_character_set_6(lookahead)) ADVANCE(532); if (lookahead == 'M' || - lookahead == 'N') ADVANCE(320); + lookahead == 'N') ADVANCE(319); if (('D' <= lookahead && lookahead <= 'F') || lookahead == 'L' || lookahead == 'S' || ('d' <= lookahead && lookahead <= 'f') || lookahead == 'l' || - lookahead == 's') ADVANCE(526); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(306); + lookahead == 's') ADVANCE(525); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(305); END_STATE(); - case 307: + case 306: ACCEPT_TOKEN(aux_sym_num_lit_token1); - if (lookahead == '.') ADVANCE(310); - if (lookahead == '/') ADVANCE(281); + if (lookahead == '.') ADVANCE(309); + if (lookahead == '/') ADVANCE(280); if (lookahead == 'M' || - lookahead == 'N') ADVANCE(304); + lookahead == 'N') ADVANCE(303); if (('D' <= lookahead && lookahead <= 'F') || lookahead == 'L' || lookahead == 'S' || ('d' <= lookahead && lookahead <= 'f') || lookahead == 'l' || - lookahead == 's') ADVANCE(275); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(307); + lookahead == 's') ADVANCE(274); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(306); END_STATE(); - case 308: + case 307: ACCEPT_TOKEN(aux_sym_num_lit_token1); if (lookahead == '0' || - lookahead == '1') ADVANCE(308); + lookahead == '1') ADVANCE(307); END_STATE(); - case 309: + case 308: ACCEPT_TOKEN(aux_sym_num_lit_token1); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(309); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(308); END_STATE(); - case 310: + case 309: ACCEPT_TOKEN(aux_sym_num_lit_token1); if (('D' <= lookahead && lookahead <= 'F') || lookahead == 'L' || lookahead == 'S' || ('d' <= lookahead && lookahead <= 'f') || lookahead == 'l' || - lookahead == 's') ADVANCE(275); + lookahead == 's') ADVANCE(274); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(309); + END_STATE(); + case 310: + ACCEPT_TOKEN(aux_sym_num_lit_token1); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(310); END_STATE(); case 311: ACCEPT_TOKEN(aux_sym_num_lit_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(311); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(311); END_STATE(); case 312: ACCEPT_TOKEN(aux_sym_num_lit_token1); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(312); + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(312); END_STATE(); case 313: ACCEPT_TOKEN(aux_sym_num_lit_token1); + if (!aux_sym_sym_lit_token1_character_set_7(lookahead)) ADVANCE(532); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(313); END_STATE(); case 314: ACCEPT_TOKEN(aux_sym_num_lit_token1); - if (!aux_sym_sym_lit_token1_character_set_7(lookahead)) ADVANCE(533); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(314); - END_STATE(); - case 315: - ACCEPT_TOKEN(aux_sym_num_lit_token1); - if (!aux_sym_sym_lit_token1_character_set_8(lookahead)) ADVANCE(533); + if (!aux_sym_sym_lit_token1_character_set_8(lookahead)) ADVANCE(532); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(315); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(314); END_STATE(); - case 316: + case 315: ACCEPT_TOKEN(aux_sym_num_lit_token1); - if (!aux_sym_sym_lit_token1_character_set_9(lookahead)) ADVANCE(533); + if (!aux_sym_sym_lit_token1_character_set_9(lookahead)) ADVANCE(532); if (('D' <= lookahead && lookahead <= 'F') || lookahead == 'L' || lookahead == 'S' || ('d' <= lookahead && lookahead <= 'f') || lookahead == 'l' || - lookahead == 's') ADVANCE(526); + lookahead == 's') ADVANCE(525); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(315); + END_STATE(); + case 316: + ACCEPT_TOKEN(aux_sym_num_lit_token1); + if (!aux_sym_sym_lit_token1_character_set_10(lookahead)) ADVANCE(532); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(316); END_STATE(); case 317: ACCEPT_TOKEN(aux_sym_num_lit_token1); - if (!aux_sym_sym_lit_token1_character_set_10(lookahead)) ADVANCE(533); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(317); + if (!aux_sym_sym_lit_token1_character_set_11(lookahead)) ADVANCE(532); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(317); END_STATE(); case 318: ACCEPT_TOKEN(aux_sym_num_lit_token1); - if (!aux_sym_sym_lit_token1_character_set_11(lookahead)) ADVANCE(533); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(318); + if (!aux_sym_sym_lit_token1_character_set_12(lookahead)) ADVANCE(532); + if (lookahead == '0' || + lookahead == '1') ADVANCE(318); END_STATE(); case 319: ACCEPT_TOKEN(aux_sym_num_lit_token1); - if (!aux_sym_sym_lit_token1_character_set_12(lookahead)) ADVANCE(533); - if (lookahead == '0' || - lookahead == '1') ADVANCE(319); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 320: - ACCEPT_TOKEN(aux_sym_num_lit_token1); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + ACCEPT_TOKEN(aux_sym_num_lit_token2); END_STATE(); case 321: ACCEPT_TOKEN(aux_sym_num_lit_token2); + if (lookahead == 'a') ADVANCE(447); + if (lookahead == 'o') ADVANCE(473); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 322: ACCEPT_TOKEN(aux_sym_num_lit_token2); - if (lookahead == 'a') ADVANCE(448); - if (lookahead == 'o') ADVANCE(474); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'e') ADVANCE(408); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 323: ACCEPT_TOKEN(aux_sym_num_lit_token2); - if (lookahead == 'e') ADVANCE(409); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'i') ADVANCE(462); + if (lookahead == 'o') ADVANCE(486); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 324: ACCEPT_TOKEN(aux_sym_num_lit_token2); - if (lookahead == 'i') ADVANCE(463); - if (lookahead == 'o') ADVANCE(487); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'i') ADVANCE(193); + if (lookahead == 'o') ADVANCE(218); END_STATE(); case 325: ACCEPT_TOKEN(aux_sym_num_lit_token2); - if (lookahead == 'i') ADVANCE(194); - if (lookahead == 'o') ADVANCE(219); + if (lookahead == 'i') ADVANCE(193); + if (lookahead == 'o') ADVANCE(218); + if (lookahead == 'r') ADVANCE(205); END_STATE(); case 326: ACCEPT_TOKEN(aux_sym_num_lit_token2); - if (lookahead == 'i') ADVANCE(194); - if (lookahead == 'o') ADVANCE(219); - if (lookahead == 'r') ADVANCE(206); + if (lookahead == 'o') ADVANCE(630); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 327: ACCEPT_TOKEN(aux_sym_num_lit_token2); - if (lookahead == 'o') ADVANCE(631); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'o') ADVANCE(629); END_STATE(); case 328: ACCEPT_TOKEN(aux_sym_num_lit_token2); - if (lookahead == 'o') ADVANCE(630); + if (lookahead == 'o') ADVANCE(628); END_STATE(); case 329: ACCEPT_TOKEN(aux_sym_num_lit_token2); - if (lookahead == 'o') ADVANCE(629); + if (lookahead == 'o') ADVANCE(514); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 330: ACCEPT_TOKEN(aux_sym_num_lit_token2); - if (lookahead == 'o') ADVANCE(515); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'o') ADVANCE(257); END_STATE(); case 331: ACCEPT_TOKEN(aux_sym_num_lit_token2); - if (lookahead == 'o') ADVANCE(258); + if (lookahead == 'r') ADVANCE(205); END_STATE(); case 332: ACCEPT_TOKEN(aux_sym_num_lit_token2); - if (lookahead == 'r') ADVANCE(206); + if (lookahead == 'r') ADVANCE(475); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 333: ACCEPT_TOKEN(aux_sym_num_lit_token2); - if (lookahead == 'r') ADVANCE(476); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'u') ADVANCE(448); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 334: ACCEPT_TOKEN(aux_sym_num_lit_token2); - if (lookahead == 'u') ADVANCE(449); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'u') ADVANCE(167); END_STATE(); case 335: ACCEPT_TOKEN(aux_sym_num_lit_token2); - if (lookahead == 'u') ADVANCE(168); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 336: - ACCEPT_TOKEN(aux_sym_num_lit_token2); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == ':') ADVANCE(338); END_STATE(); case 337: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(339); + if (lookahead == '@') ADVANCE(560); END_STATE(); case 338: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '@') ADVANCE(561); + ACCEPT_TOKEN(anon_sym_COLON_COLON); END_STATE(); case 339: - ACCEPT_TOKEN(anon_sym_COLON_COLON); + ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); case 340: - ACCEPT_TOKEN(anon_sym_DQUOTE); + ACCEPT_TOKEN(aux_sym_str_lit_token1); + if (lookahead == '#') ADVANCE(345); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\\' && + lookahead != '~') ADVANCE(344); END_STATE(); case 341: ACCEPT_TOKEN(aux_sym_str_lit_token1); - if (lookahead == '#') ADVANCE(346); + if (lookahead == '?') ADVANCE(342); + if (lookahead == 'C') ADVANCE(345); + if (lookahead == 'P') ADVANCE(345); + if (lookahead == '^') ADVANCE(345); + if (lookahead == '_') ADVANCE(345); + if (lookahead == 'c') ADVANCE(345); + if (lookahead == 'p') ADVANCE(345); + if (lookahead == '|') ADVANCE(344); if (lookahead != 0 && lookahead != '"' && lookahead != '\\' && @@ -4941,1047 +4950,1036 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 342: ACCEPT_TOKEN(aux_sym_str_lit_token1); - if (lookahead == '?') ADVANCE(343); - if (lookahead == 'C') ADVANCE(346); - if (lookahead == 'P') ADVANCE(346); - if (lookahead == '^') ADVANCE(346); - if (lookahead == '_') ADVANCE(346); - if (lookahead == 'c') ADVANCE(346); - if (lookahead == 'p') ADVANCE(346); - if (lookahead == '|') ADVANCE(345); + if (lookahead == '@') ADVANCE(345); if (lookahead != 0 && lookahead != '"' && lookahead != '\\' && - lookahead != '~') ADVANCE(346); + lookahead != '~') ADVANCE(345); END_STATE(); case 343: ACCEPT_TOKEN(aux_sym_str_lit_token1); - if (lookahead == '@') ADVANCE(346); + if (lookahead == '|') ADVANCE(344); if (lookahead != 0 && lookahead != '"' && lookahead != '\\' && - lookahead != '~') ADVANCE(346); + lookahead != '~') ADVANCE(345); END_STATE(); case 344: ACCEPT_TOKEN(aux_sym_str_lit_token1); - if (lookahead == '|') ADVANCE(345); + if (lookahead == '|') ADVANCE(340); if (lookahead != 0 && lookahead != '"' && lookahead != '\\' && - lookahead != '~') ADVANCE(346); + lookahead != '~') ADVANCE(344); END_STATE(); case 345: ACCEPT_TOKEN(aux_sym_str_lit_token1); - if (lookahead == '|') ADVANCE(341); if (lookahead != 0 && lookahead != '"' && lookahead != '\\' && lookahead != '~') ADVANCE(345); END_STATE(); case 346: - ACCEPT_TOKEN(aux_sym_str_lit_token1); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\' && - lookahead != '~') ADVANCE(346); + ACCEPT_TOKEN(aux_sym_str_lit_token2); END_STATE(); case 347: - ACCEPT_TOKEN(aux_sym_str_lit_token2); + ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); case 348: - ACCEPT_TOKEN(anon_sym_TILDE); + ACCEPT_TOKEN(aux_sym_char_lit_token1); END_STATE(); case 349: ACCEPT_TOKEN(aux_sym_char_lit_token1); + if (lookahead == 'a') ADVANCE(56); END_STATE(); case 350: ACCEPT_TOKEN(aux_sym_char_lit_token1); - if (lookahead == 'a') ADVANCE(57); + if (lookahead == 'a') ADVANCE(53); END_STATE(); case 351: ACCEPT_TOKEN(aux_sym_char_lit_token1); - if (lookahead == 'a') ADVANCE(54); + if (lookahead == 'e') ADVANCE(255); + if (lookahead == 'u') ADVANCE(152); END_STATE(); case 352: ACCEPT_TOKEN(aux_sym_char_lit_token1); - if (lookahead == 'e') ADVANCE(256); - if (lookahead == 'u') ADVANCE(153); + if (lookahead == 'e') ADVANCE(243); + if (lookahead == 'u') ADVANCE(155); END_STATE(); case 353: ACCEPT_TOKEN(aux_sym_char_lit_token1); - if (lookahead == 'e') ADVANCE(244); - if (lookahead == 'u') ADVANCE(156); + if (lookahead == 'e') ADVANCE(258); + if (lookahead == 'u') ADVANCE(152); END_STATE(); case 354: ACCEPT_TOKEN(aux_sym_char_lit_token1); - if (lookahead == 'e') ADVANCE(259); - if (lookahead == 'u') ADVANCE(153); + if (lookahead == 'i') ADVANCE(172); END_STATE(); case 355: ACCEPT_TOKEN(aux_sym_char_lit_token1); - if (lookahead == 'i') ADVANCE(173); + if (lookahead == 'o') ADVANCE(220); END_STATE(); case 356: ACCEPT_TOKEN(aux_sym_char_lit_token1); - if (lookahead == 'o') ADVANCE(221); + if (lookahead == 'p') ADVANCE(44); END_STATE(); case 357: ACCEPT_TOKEN(aux_sym_char_lit_token1); - if (lookahead == 'p') ADVANCE(45); + if (lookahead == 'p') ADVANCE(49); END_STATE(); case 358: ACCEPT_TOKEN(aux_sym_char_lit_token1); - if (lookahead == 'p') ADVANCE(50); + if (lookahead == 'u') ADVANCE(155); END_STATE(); case 359: ACCEPT_TOKEN(aux_sym_char_lit_token1); - if (lookahead == 'u') ADVANCE(156); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(348); END_STATE(); case 360: ACCEPT_TOKEN(aux_sym_char_lit_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(349); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(359); END_STATE(); case 361: ACCEPT_TOKEN(aux_sym_char_lit_token1); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(360); END_STATE(); case 362: - ACCEPT_TOKEN(aux_sym_char_lit_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(361); - END_STATE(); - case 363: ACCEPT_TOKEN(aux_sym_char_lit_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(285); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(284); END_STATE(); - case 364: + case 363: ACCEPT_TOKEN(aux_sym_char_lit_token2); END_STATE(); - case 365: + case 364: ACCEPT_TOKEN(aux_sym_char_lit_token3); END_STATE(); - case 366: + case 365: ACCEPT_TOKEN(aux_sym_char_lit_token4); END_STATE(); - case 367: + case 366: ACCEPT_TOKEN(aux_sym_char_lit_token5); END_STATE(); - case 368: + case 367: ACCEPT_TOKEN(aux_sym_char_lit_token6); END_STATE(); - case 369: + case 368: ACCEPT_TOKEN(sym_nil_lit); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + END_STATE(); + case 369: + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (lookahead == '#') ADVANCE(521); + if (!aux_sym_sym_lit_token1_character_set_10(lookahead)) ADVANCE(532); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(305); END_STATE(); case 370: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == '#') ADVANCE(522); - if (!aux_sym_sym_lit_token1_character_set_10(lookahead)) ADVANCE(533); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(306); + if (lookahead == 'a') ADVANCE(515); + if (lookahead == 'i') ADVANCE(464); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 371: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'a') ADVANCE(516); - if (lookahead == 'i') ADVANCE(465); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'a') ADVANCE(518); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 372: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'a') ADVANCE(519); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'a') ADVANCE(668); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 373: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'a') ADVANCE(669); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'a') ADVANCE(502); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 374: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'a') ADVANCE(503); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'a') ADVANCE(384); + if (lookahead == 'e') ADVANCE(504); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 375: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'a') ADVANCE(385); - if (lookahead == 'e') ADVANCE(505); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'a') ADVANCE(441); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 376: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'a') ADVANCE(442); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'a') ADVANCE(447); + if (lookahead == 'o') ADVANCE(473); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 377: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'a') ADVANCE(448); - if (lookahead == 'o') ADVANCE(474); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'a') ADVANCE(443); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 378: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'a') ADVANCE(444); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'b') ADVANCE(387); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 379: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'b') ADVANCE(388); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'b') ADVANCE(480); + if (lookahead == 'c') ADVANCE(489); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 380: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'b') ADVANCE(481); - if (lookahead == 'c') ADVANCE(490); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'c') ADVANCE(665); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 381: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'c') ADVANCE(666); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'c') ADVANCE(478); + if (lookahead == 'e') ADVANCE(511); + if (lookahead == 'i') ADVANCE(433); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 382: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'c') ADVANCE(479); - if (lookahead == 'e') ADVANCE(512); - if (lookahead == 'i') ADVANCE(434); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'c') ADVANCE(426); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 383: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'c') ADVANCE(427); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'c') ADVANCE(506); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 384: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'c') ADVANCE(507); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'c') ADVANCE(494); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 385: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'c') ADVANCE(495); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'd') ADVANCE(623); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 386: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'd') ADVANCE(624); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'd') ADVANCE(667); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 387: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'd') ADVANCE(668); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'd') ADVANCE(372); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 388: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'd') ADVANCE(373); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'd') ADVANCE(426); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 389: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'd') ADVANCE(427); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'e') ADVANCE(485); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 390: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(486); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'e') ADVANCE(650); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 391: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(651); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'e') ADVANCE(632); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 392: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(633); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'e') ADVANCE(427); + if (lookahead == 'y') ADVANCE(612); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 393: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(428); - if (lookahead == 'y') ADVANCE(613); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'e') ADVANCE(598); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 394: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(599); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'e') ADVANCE(408); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 395: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(409); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'e') ADVANCE(500); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 396: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(501); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'e') ADVANCE(491); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 397: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(492); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'e') ADVANCE(383); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 398: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(384); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'e') ADVANCE(487); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 399: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(488); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'e') ADVANCE(373); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 400: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(374); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'e') ADVANCE(426); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 401: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(427); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'e') ADVANCE(453); + if (lookahead == 'i') ADVANCE(444); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 402: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(454); - if (lookahead == 'i') ADVANCE(445); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'e') ADVANCE(424); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 403: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(425); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'e') ADVANCE(461); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 404: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(462); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'e') ADVANCE(490); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 405: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(491); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'e') ADVANCE(459); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 406: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(460); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'e') ADVANCE(467); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 407: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(468); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'f') ADVANCE(640); + if (lookahead == 'n') ADVANCE(422); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 408: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'f') ADVANCE(641); - if (lookahead == 'n') ADVANCE(423); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'f') ADVANCE(413); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 409: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'f') ADVANCE(414); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'f') ADVANCE(493); + if (lookahead == 't') ADVANCE(470); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 410: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'f') ADVANCE(494); - if (lookahead == 't') ADVANCE(471); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'g') ADVANCE(532); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 411: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'g') ADVANCE(533); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'g') ADVANCE(591); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 412: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'g') ADVANCE(592); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'g') ADVANCE(593); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 413: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'g') ADVANCE(594); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'g') ADVANCE(406); + if (lookahead == 'm') ADVANCE(374); + if (lookahead == 'u') ADVANCE(460); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 414: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'g') ADVANCE(407); - if (lookahead == 'm') ADVANCE(375); - if (lookahead == 'u') ADVANCE(461); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'h') ADVANCE(401); + if (lookahead == 'i') ADVANCE(503); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 415: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'h') ADVANCE(402); - if (lookahead == 'i') ADVANCE(504); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'h') ADVANCE(627); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 416: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'h') ADVANCE(628); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'h') ADVANCE(396); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 417: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'h') ADVANCE(397); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'h') ADVANCE(476); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 418: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'h') ADVANCE(477); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'h') ADVANCE(405); + if (lookahead == 'o') ADVANCE(602); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 419: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'h') ADVANCE(406); - if (lookahead == 'o') ADVANCE(603); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'i') ADVANCE(519); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 420: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'i') ADVANCE(520); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'i') ADVANCE(433); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 421: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'i') ADVANCE(434); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'i') ADVANCE(462); + if (lookahead == 'o') ADVANCE(486); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 422: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'i') ADVANCE(463); - if (lookahead == 'o') ADVANCE(487); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'i') ADVANCE(505); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 423: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'i') ADVANCE(506); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'i') ADVANCE(380); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 424: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'i') ADVANCE(381); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'i') ADVANCE(497); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 425: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'i') ADVANCE(498); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'i') ADVANCE(436); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 426: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'i') ADVANCE(437); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'i') ADVANCE(455); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 427: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'i') ADVANCE(456); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'i') ADVANCE(463); + if (lookahead == 'l') ADVANCE(474); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 428: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'i') ADVANCE(464); - if (lookahead == 'l') ADVANCE(475); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'i') ADVANCE(465); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 429: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'i') ADVANCE(466); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'i') ADVANCE(450); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 430: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'i') ADVANCE(451); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'i') ADVANCE(377); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 431: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'i') ADVANCE(378); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'l') ADVANCE(584); + if (lookahead == 'o') ADVANCE(439); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 432: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'l') ADVANCE(585); - if (lookahead == 'o') ADVANCE(440); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'l') ADVANCE(584); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 433: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'l') ADVANCE(585); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'l') ADVANCE(368); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 434: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'l') ADVANCE(369); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'l') ADVANCE(512); + if (lookahead == 'n') ADVANCE(385); + if (lookahead == 'p') ADVANCE(483); + if (lookahead == 's') ADVANCE(625); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 435: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'l') ADVANCE(513); - if (lookahead == 'n') ADVANCE(386); - if (lookahead == 'p') ADVANCE(484); - if (lookahead == 's') ADVANCE(626); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'l') ADVANCE(499); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 436: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'l') ADVANCE(500); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'l') ADVANCE(634); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 437: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'l') ADVANCE(635); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'l') ADVANCE(516); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 438: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'l') ADVANCE(517); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 439: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'l') ADVANCE(518); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'l') ADVANCE(442); + if (lookahead == 'u') ADVANCE(466); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 440: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'l') ADVANCE(443); - if (lookahead == 'u') ADVANCE(467); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'l') ADVANCE(395); + if (lookahead == 't') ADVANCE(425); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 441: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'l') ADVANCE(396); - if (lookahead == 't') ADVANCE(426); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'l') ADVANCE(437); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 442: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'l') ADVANCE(438); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'l') ADVANCE(397); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 443: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'l') ADVANCE(398); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'l') ADVANCE(438); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 444: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'l') ADVANCE(439); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'l') ADVANCE(391); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 445: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'l') ADVANCE(392); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'm') ADVANCE(600); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 446: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'm') ADVANCE(601); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'm') ADVANCE(608); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 447: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'm') ADVANCE(609); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'm') ADVANCE(378); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 448: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'm') ADVANCE(379); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'm') ADVANCE(449); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 449: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'm') ADVANCE(450); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'm') ADVANCE(426); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 450: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'm') ADVANCE(427); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'm') ADVANCE(419); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 451: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'm') ADVANCE(420); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'n') ADVANCE(440); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 452: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'n') ADVANCE(441); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'n') ADVANCE(382); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 453: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'n') ADVANCE(383); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'n') ADVANCE(638); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 454: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'n') ADVANCE(639); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'n') ADVANCE(655); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 455: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'n') ADVANCE(656); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'n') ADVANCE(410); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 456: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'n') ADVANCE(411); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'n') ADVANCE(587); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 457: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'n') ADVANCE(588); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'n') ADVANCE(610); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 458: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'n') ADVANCE(611); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'n') ADVANCE(409); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 459: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'n') ADVANCE(410); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'n') ADVANCE(614); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 460: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'n') ADVANCE(615); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'n') ADVANCE(661); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 461: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'n') ADVANCE(662); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'n') ADVANCE(388); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 462: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'n') ADVANCE(389); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'n') ADVANCE(375); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 463: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'n') ADVANCE(376); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'n') ADVANCE(411); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 464: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'n') ADVANCE(412); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'n') ADVANCE(429); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 465: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'n') ADVANCE(430); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'n') ADVANCE(412); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 466: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'n') ADVANCE(413); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'n') ADVANCE(506); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 467: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'n') ADVANCE(507); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'n') ADVANCE(404); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 468: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'n') ADVANCE(405); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'o') ADVANCE(630); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 469: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'o') ADVANCE(631); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'o') ADVANCE(604); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 470: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'o') ADVANCE(605); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'o') ADVANCE(606); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 471: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'o') ADVANCE(607); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'o') ADVANCE(663); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 472: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'o') ADVANCE(664); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'o') ADVANCE(514); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 473: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'o') ADVANCE(515); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'o') ADVANCE(482); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 474: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'o') ADVANCE(483); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'o') ADVANCE(513); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 475: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'o') ADVANCE(514); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'o') ADVANCE(445); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 476: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'o') ADVANCE(446); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'o') ADVANCE(386); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 477: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'o') ADVANCE(387); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'o') ADVANCE(446); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 478: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'o') ADVANCE(447); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'o') ADVANCE(452); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 479: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'o') ADVANCE(453); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'o') ADVANCE(473); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 480: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'o') ADVANCE(474); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'o') ADVANCE(510); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 481: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'o') ADVANCE(511); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'o') ADVANCE(501); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 482: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'o') ADVANCE(502); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'p') ADVANCE(659); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 483: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'p') ADVANCE(660); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'p') ADVANCE(403); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 484: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'p') ADVANCE(404); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'p') ADVANCE(507); + if (lookahead == 's') ADVANCE(428); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 485: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'p') ADVANCE(508); - if (lookahead == 's') ADVANCE(429); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'p') ADVANCE(399); + if (lookahead == 't') ADVANCE(509); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 486: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'p') ADVANCE(400); - if (lookahead == 't') ADVANCE(510); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'r') ADVANCE(621); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 487: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'r') ADVANCE(622); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'r') ADVANCE(648); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 488: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'r') ADVANCE(649); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'r') ADVANCE(475); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 489: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'r') ADVANCE(476); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'r') ADVANCE(481); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 490: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'r') ADVANCE(482); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'r') ADVANCE(423); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 491: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'r') ADVANCE(424); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'r') ADVANCE(402); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 492: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'r') ADVANCE(403); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'r') ADVANCE(454); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 493: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'r') ADVANCE(455); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'r') ADVANCE(477); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 494: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'r') ADVANCE(478); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'r') ADVANCE(471); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 495: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'r') ADVANCE(472); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 's') ADVANCE(644); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 496: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 's') ADVANCE(645); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 's') ADVANCE(642); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 497: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 's') ADVANCE(643); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 's') ADVANCE(646); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 498: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 's') ADVANCE(647); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 's') ADVANCE(589); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 499: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 's') ADVANCE(590); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 's') ADVANCE(390); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 500: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 's') ADVANCE(391); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 's') ADVANCE(496); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 501: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 's') ADVANCE(497); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 's') ADVANCE(498); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 502: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 's') ADVANCE(499); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 't') ADVANCE(636); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 503: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 't') ADVANCE(637); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 't') ADVANCE(415); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 504: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 't') ADVANCE(416); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 't') ADVANCE(417); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 505: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 't') ADVANCE(418); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 't') ADVANCE(430); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 506: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 't') ADVANCE(431); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 't') ADVANCE(426); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 507: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 't') ADVANCE(427); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 't') ADVANCE(469); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 508: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 't') ADVANCE(470); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'u') ADVANCE(448); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 509: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'u') ADVANCE(449); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'u') ADVANCE(492); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 510: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'u') ADVANCE(493); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'v') ADVANCE(393); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 511: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'v') ADVANCE(394); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'v') ADVANCE(398); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 512: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'v') ADVANCE(399); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'w') ADVANCE(371); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 513: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'w') ADVANCE(372); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'w') ADVANCE(596); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 514: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'w') ADVANCE(597); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'w') ADVANCE(458); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 515: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'w') ADVANCE(459); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'x') ADVANCE(429); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 516: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'x') ADVANCE(430); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'y') ADVANCE(653); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 517: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'y') ADVANCE(654); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'y') ADVANCE(657); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 518: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'y') ADVANCE(658); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'y') ADVANCE(495); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 519: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'y') ADVANCE(496); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == 'z') ADVANCE(400); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 520: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'z') ADVANCE(401); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + if (lookahead == '|') ADVANCE(532); + if (!aux_sym_sym_lit_token1_character_set_13(lookahead)) ADVANCE(520); + if (sym_fancy_literal_character_set_1(lookahead)) ADVANCE(269); END_STATE(); case 521: - ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == '|') ADVANCE(533); - if (!aux_sym_sym_lit_token1_character_set_13(lookahead)) ADVANCE(521); - if (sym_fancy_literal_character_set_1(lookahead)) ADVANCE(270); - END_STATE(); - case 522: ACCEPT_TOKEN(aux_sym_sym_lit_token1); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(531); + lookahead == 'b') ADVANCE(530); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(528); + lookahead == 'o') ADVANCE(527); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(524); - if (!aux_sym_sym_lit_token1_character_set_10(lookahead)) ADVANCE(533); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(527); + lookahead == 'x') ADVANCE(523); + if (!aux_sym_sym_lit_token1_character_set_10(lookahead)) ADVANCE(532); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(526); END_STATE(); - case 523: + case 522: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (!aux_sym_sym_lit_token1_character_set_7(lookahead)) ADVANCE(533); + if (!aux_sym_sym_lit_token1_character_set_7(lookahead)) ADVANCE(532); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(314); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(313); END_STATE(); - case 524: + case 523: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (!aux_sym_sym_lit_token1_character_set_14(lookahead)) ADVANCE(533); + if (!aux_sym_sym_lit_token1_character_set_14(lookahead)) ADVANCE(532); if (lookahead == '+' || - lookahead == '-') ADVANCE(525); + lookahead == '-') ADVANCE(524); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(315); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(314); END_STATE(); - case 525: + case 524: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (!aux_sym_sym_lit_token1_character_set_8(lookahead)) ADVANCE(533); + if (!aux_sym_sym_lit_token1_character_set_8(lookahead)) ADVANCE(532); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(315); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(314); END_STATE(); - case 526: + case 525: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (!aux_sym_sym_lit_token1_character_set_15(lookahead)) ADVANCE(533); + if (!aux_sym_sym_lit_token1_character_set_15(lookahead)) ADVANCE(532); if (lookahead == '+' || - lookahead == '-') ADVANCE(529); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(317); + lookahead == '-') ADVANCE(528); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(316); END_STATE(); - case 527: + case 526: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (!aux_sym_sym_lit_token1_character_set_16(lookahead)) ADVANCE(533); + if (!aux_sym_sym_lit_token1_character_set_16(lookahead)) ADVANCE(532); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(523); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(527); + lookahead == 'r') ADVANCE(522); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(526); END_STATE(); - case 528: + case 527: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (!aux_sym_sym_lit_token1_character_set_17(lookahead)) ADVANCE(533); + if (!aux_sym_sym_lit_token1_character_set_17(lookahead)) ADVANCE(532); if (lookahead == '+' || - lookahead == '-') ADVANCE(530); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(318); + lookahead == '-') ADVANCE(529); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(317); + END_STATE(); + case 528: + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (!aux_sym_sym_lit_token1_character_set_10(lookahead)) ADVANCE(532); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(316); END_STATE(); case 529: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (!aux_sym_sym_lit_token1_character_set_10(lookahead)) ADVANCE(533); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(317); + if (!aux_sym_sym_lit_token1_character_set_11(lookahead)) ADVANCE(532); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(317); END_STATE(); case 530: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (!aux_sym_sym_lit_token1_character_set_11(lookahead)) ADVANCE(533); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(318); + if (!aux_sym_sym_lit_token1_character_set_18(lookahead)) ADVANCE(532); + if (lookahead == '+' || + lookahead == '-') ADVANCE(531); + if (lookahead == '0' || + lookahead == '1') ADVANCE(318); END_STATE(); case 531: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (!aux_sym_sym_lit_token1_character_set_18(lookahead)) ADVANCE(533); - if (lookahead == '+' || - lookahead == '-') ADVANCE(532); + if (!aux_sym_sym_lit_token1_character_set_12(lookahead)) ADVANCE(532); if (lookahead == '0' || - lookahead == '1') ADVANCE(319); + lookahead == '1') ADVANCE(318); END_STATE(); case 532: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (!aux_sym_sym_lit_token1_character_set_12(lookahead)) ADVANCE(533); - if (lookahead == '0' || - lookahead == '1') ADVANCE(319); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 533: - ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); case 534: - ACCEPT_TOKEN(anon_sym_CARET); + ACCEPT_TOKEN(anon_sym_POUND_CARET); END_STATE(); case 535: - ACCEPT_TOKEN(anon_sym_POUND_CARET); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 536: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 537: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 538: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 539: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_POUND0A); END_STATE(); case 540: - ACCEPT_TOKEN(anon_sym_POUND0A); + ACCEPT_TOKEN(anon_sym_POUND0a); END_STATE(); case 541: - ACCEPT_TOKEN(anon_sym_POUND0a); + ACCEPT_TOKEN(aux_sym_regex_lit_token1); END_STATE(); case 542: - ACCEPT_TOKEN(aux_sym_regex_lit_token1); + ACCEPT_TOKEN(anon_sym_POUND_QMARK); END_STATE(); case 543: ACCEPT_TOKEN(anon_sym_POUND_QMARK); + if (lookahead == '@') ADVANCE(544); END_STATE(); case 544: - ACCEPT_TOKEN(anon_sym_POUND_QMARK); - if (lookahead == '@') ADVANCE(545); + ACCEPT_TOKEN(anon_sym_POUND_QMARK_AT); END_STATE(); case 545: - ACCEPT_TOKEN(anon_sym_POUND_QMARK_AT); + ACCEPT_TOKEN(anon_sym_POUND_SQUOTE); END_STATE(); case 546: - ACCEPT_TOKEN(anon_sym_POUND_SQUOTE); + ACCEPT_TOKEN(anon_sym_AT); + if (lookahead == ':') ADVANCE(559); END_STATE(); case 547: ACCEPT_TOKEN(anon_sym_SQUOTE); @@ -6010,15 +6008,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 555: ACCEPT_TOKEN(aux_sym__format_token_token1); - if (lookahead == '"') ADVANCE(347); + if (lookahead == '"') ADVANCE(346); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(128); + lookahead == 'l') ADVANCE(127); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(71); + lookahead == 'n') ADVANCE(70); END_STATE(); case 556: ACCEPT_TOKEN(aux_sym__format_token_token1); - if (lookahead == '|') ADVANCE(269); + if (lookahead == '|') ADVANCE(268); END_STATE(); case 557: ACCEPT_TOKEN(anon_sym_v); @@ -6027,411 +6025,407 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_V); END_STATE(); case 559: - ACCEPT_TOKEN(anon_sym_AT); - if (lookahead == ':') ADVANCE(560); + ACCEPT_TOKEN(anon_sym_AT_COLON); END_STATE(); case 560: - ACCEPT_TOKEN(anon_sym_AT_COLON); + ACCEPT_TOKEN(anon_sym_COLON_AT); END_STATE(); case 561: - ACCEPT_TOKEN(anon_sym_COLON_AT); + ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); case 562: - ACCEPT_TOKEN(anon_sym_PERCENT); + ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); case 563: - ACCEPT_TOKEN(anon_sym_AMP); + ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); case 564: - ACCEPT_TOKEN(anon_sym_PIPE); + ACCEPT_TOKEN(aux_sym_format_directive_type_token1); END_STATE(); case 565: - ACCEPT_TOKEN(aux_sym_format_directive_type_token1); + ACCEPT_TOKEN(aux_sym_format_directive_type_token2); END_STATE(); case 566: - ACCEPT_TOKEN(aux_sym_format_directive_type_token2); + ACCEPT_TOKEN(anon_sym_LF); END_STATE(); case 567: - ACCEPT_TOKEN(anon_sym_LF); + ACCEPT_TOKEN(anon_sym_CR); END_STATE(); case 568: - ACCEPT_TOKEN(anon_sym_CR); + ACCEPT_TOKEN(aux_sym_format_directive_type_token3); END_STATE(); case 569: - ACCEPT_TOKEN(aux_sym_format_directive_type_token3); + ACCEPT_TOKEN(aux_sym_format_directive_type_token4); END_STATE(); case 570: - ACCEPT_TOKEN(aux_sym_format_directive_type_token4); + ACCEPT_TOKEN(aux_sym_format_directive_type_token5); END_STATE(); case 571: - ACCEPT_TOKEN(aux_sym_format_directive_type_token5); + ACCEPT_TOKEN(aux_sym_format_directive_type_token6); END_STATE(); case 572: - ACCEPT_TOKEN(aux_sym_format_directive_type_token6); + ACCEPT_TOKEN(anon_sym__); END_STATE(); case 573: - ACCEPT_TOKEN(anon_sym__); + ACCEPT_TOKEN(aux_sym_format_directive_type_token7); END_STATE(); case 574: - ACCEPT_TOKEN(aux_sym_format_directive_type_token7); + ACCEPT_TOKEN(aux_sym_format_directive_type_token8); END_STATE(); case 575: - ACCEPT_TOKEN(aux_sym_format_directive_type_token8); + ACCEPT_TOKEN(aux_sym_format_directive_type_token9); END_STATE(); case 576: - ACCEPT_TOKEN(aux_sym_format_directive_type_token9); + ACCEPT_TOKEN(aux_sym_format_directive_type_token10); END_STATE(); case 577: - ACCEPT_TOKEN(aux_sym_format_directive_type_token10); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 578: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); case 579: - ACCEPT_TOKEN(anon_sym_STAR); + ACCEPT_TOKEN(anon_sym_SLASH); END_STATE(); case 580: - ACCEPT_TOKEN(anon_sym_SLASH); + ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); case 581: - ACCEPT_TOKEN(anon_sym_QMARK); + ACCEPT_TOKEN(anon_sym_Newline); END_STATE(); case 582: - ACCEPT_TOKEN(anon_sym_Newline); + ACCEPT_TOKEN(aux_sym_format_directive_type_token11); END_STATE(); case 583: - ACCEPT_TOKEN(aux_sym_format_directive_type_token11); + ACCEPT_TOKEN(anon_sym_cl); END_STATE(); case 584: ACCEPT_TOKEN(anon_sym_cl); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 585: - ACCEPT_TOKEN(anon_sym_cl); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + ACCEPT_TOKEN(anon_sym_in); END_STATE(); case 586: ACCEPT_TOKEN(anon_sym_in); + if (lookahead == 'i') ADVANCE(244); END_STATE(); case 587: ACCEPT_TOKEN(anon_sym_in); - if (lookahead == 'i') ADVANCE(245); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 588: - ACCEPT_TOKEN(anon_sym_in); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + ACCEPT_TOKEN(anon_sym_across); END_STATE(); case 589: ACCEPT_TOKEN(anon_sym_across); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 590: - ACCEPT_TOKEN(anon_sym_across); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + ACCEPT_TOKEN(anon_sym_being); + if (lookahead == ' ') ADVANCE(74); END_STATE(); case 591: ACCEPT_TOKEN(anon_sym_being); - if (lookahead == ' ') ADVANCE(75); + if (lookahead == ' ') ADVANCE(74); + if (!aux_sym_sym_lit_token1_character_set_19(lookahead)) ADVANCE(532); END_STATE(); case 592: - ACCEPT_TOKEN(anon_sym_being); - if (lookahead == ' ') ADVANCE(75); - if (!aux_sym_sym_lit_token1_character_set_19(lookahead)) ADVANCE(533); + ACCEPT_TOKEN(anon_sym_using); END_STATE(); case 593: ACCEPT_TOKEN(anon_sym_using); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 594: - ACCEPT_TOKEN(anon_sym_using); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + ACCEPT_TOKEN(aux_sym_for_clause_word_token1); END_STATE(); case 595: - ACCEPT_TOKEN(aux_sym_for_clause_word_token1); + ACCEPT_TOKEN(anon_sym_below); END_STATE(); case 596: ACCEPT_TOKEN(anon_sym_below); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 597: - ACCEPT_TOKEN(anon_sym_below); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + ACCEPT_TOKEN(anon_sym_above); END_STATE(); case 598: ACCEPT_TOKEN(anon_sym_above); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 599: - ACCEPT_TOKEN(anon_sym_above); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + ACCEPT_TOKEN(anon_sym_from); END_STATE(); case 600: ACCEPT_TOKEN(anon_sym_from); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 601: - ACCEPT_TOKEN(anon_sym_from); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + ACCEPT_TOKEN(anon_sym_to); END_STATE(); case 602: ACCEPT_TOKEN(anon_sym_to); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 603: - ACCEPT_TOKEN(anon_sym_to); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + ACCEPT_TOKEN(anon_sym_upto); END_STATE(); case 604: ACCEPT_TOKEN(anon_sym_upto); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 605: - ACCEPT_TOKEN(anon_sym_upto); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + ACCEPT_TOKEN(anon_sym_downto); END_STATE(); case 606: ACCEPT_TOKEN(anon_sym_downto); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 607: - ACCEPT_TOKEN(anon_sym_downto); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + ACCEPT_TOKEN(anon_sym_downfrom); END_STATE(); case 608: ACCEPT_TOKEN(anon_sym_downfrom); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 609: - ACCEPT_TOKEN(anon_sym_downfrom); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + ACCEPT_TOKEN(anon_sym_on); END_STATE(); case 610: ACCEPT_TOKEN(anon_sym_on); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 611: - ACCEPT_TOKEN(anon_sym_on); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + ACCEPT_TOKEN(anon_sym_by); END_STATE(); case 612: ACCEPT_TOKEN(anon_sym_by); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 613: - ACCEPT_TOKEN(anon_sym_by); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + ACCEPT_TOKEN(anon_sym_then); END_STATE(); case 614: ACCEPT_TOKEN(anon_sym_then); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 615: - ACCEPT_TOKEN(anon_sym_then); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); case 616: ACCEPT_TOKEN(anon_sym_EQ); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 617: - ACCEPT_TOKEN(anon_sym_EQ); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + ACCEPT_TOKEN(aux_sym_accumulation_verb_token1); END_STATE(); case 618: ACCEPT_TOKEN(aux_sym_accumulation_verb_token1); + if (lookahead == 'i') ADVANCE(189); END_STATE(); case 619: ACCEPT_TOKEN(aux_sym_accumulation_verb_token1); - if (lookahead == 'i') ADVANCE(190); + if (lookahead == 'm') ADVANCE(137); END_STATE(); case 620: - ACCEPT_TOKEN(aux_sym_accumulation_verb_token1); - if (lookahead == 'm') ADVANCE(138); + ACCEPT_TOKEN(anon_sym_for); END_STATE(); case 621: ACCEPT_TOKEN(anon_sym_for); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 622: - ACCEPT_TOKEN(anon_sym_for); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + ACCEPT_TOKEN(anon_sym_and); END_STATE(); case 623: ACCEPT_TOKEN(anon_sym_and); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 624: - ACCEPT_TOKEN(anon_sym_and); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + ACCEPT_TOKEN(anon_sym_as); END_STATE(); case 625: ACCEPT_TOKEN(anon_sym_as); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 626: - ACCEPT_TOKEN(anon_sym_as); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + ACCEPT_TOKEN(anon_sym_with); END_STATE(); case 627: ACCEPT_TOKEN(anon_sym_with); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 628: - ACCEPT_TOKEN(anon_sym_with); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + ACCEPT_TOKEN(anon_sym_do); END_STATE(); case 629: ACCEPT_TOKEN(anon_sym_do); + if (lookahead == 'w') ADVANCE(180); END_STATE(); case 630: ACCEPT_TOKEN(anon_sym_do); - if (lookahead == 'w') ADVANCE(181); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 631: - ACCEPT_TOKEN(anon_sym_do); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + ACCEPT_TOKEN(anon_sym_while); END_STATE(); case 632: ACCEPT_TOKEN(anon_sym_while); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 633: - ACCEPT_TOKEN(anon_sym_while); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + ACCEPT_TOKEN(anon_sym_until); END_STATE(); case 634: ACCEPT_TOKEN(anon_sym_until); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 635: - ACCEPT_TOKEN(anon_sym_until); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + ACCEPT_TOKEN(anon_sym_repeat); END_STATE(); case 636: ACCEPT_TOKEN(anon_sym_repeat); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 637: - ACCEPT_TOKEN(anon_sym_repeat); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + ACCEPT_TOKEN(anon_sym_when); END_STATE(); case 638: ACCEPT_TOKEN(anon_sym_when); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 639: - ACCEPT_TOKEN(anon_sym_when); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + ACCEPT_TOKEN(anon_sym_if); END_STATE(); case 640: ACCEPT_TOKEN(anon_sym_if); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 641: - ACCEPT_TOKEN(anon_sym_if); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + ACCEPT_TOKEN(anon_sym_unless); END_STATE(); case 642: ACCEPT_TOKEN(anon_sym_unless); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 643: - ACCEPT_TOKEN(anon_sym_unless); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + ACCEPT_TOKEN(anon_sym_always); END_STATE(); case 644: ACCEPT_TOKEN(anon_sym_always); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 645: - ACCEPT_TOKEN(anon_sym_always); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + ACCEPT_TOKEN(anon_sym_thereis); END_STATE(); case 646: ACCEPT_TOKEN(anon_sym_thereis); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 647: - ACCEPT_TOKEN(anon_sym_thereis); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + ACCEPT_TOKEN(anon_sym_never); END_STATE(); case 648: ACCEPT_TOKEN(anon_sym_never); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 649: - ACCEPT_TOKEN(anon_sym_never); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 650: ACCEPT_TOKEN(anon_sym_else); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 651: - ACCEPT_TOKEN(anon_sym_else); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + ACCEPT_TOKEN(anon_sym_into); END_STATE(); case 652: - ACCEPT_TOKEN(anon_sym_into); + ACCEPT_TOKEN(anon_sym_finally); END_STATE(); case 653: ACCEPT_TOKEN(anon_sym_finally); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 654: - ACCEPT_TOKEN(anon_sym_finally); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + ACCEPT_TOKEN(anon_sym_return); END_STATE(); case 655: ACCEPT_TOKEN(anon_sym_return); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 656: - ACCEPT_TOKEN(anon_sym_return); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + ACCEPT_TOKEN(anon_sym_initially); END_STATE(); case 657: ACCEPT_TOKEN(anon_sym_initially); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 658: - ACCEPT_TOKEN(anon_sym_initially); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + ACCEPT_TOKEN(anon_sym_loop); END_STATE(); case 659: ACCEPT_TOKEN(anon_sym_loop); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 660: - ACCEPT_TOKEN(anon_sym_loop); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + ACCEPT_TOKEN(anon_sym_defun); END_STATE(); case 661: ACCEPT_TOKEN(anon_sym_defun); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 662: - ACCEPT_TOKEN(anon_sym_defun); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + ACCEPT_TOKEN(anon_sym_defmacro); END_STATE(); case 663: ACCEPT_TOKEN(anon_sym_defmacro); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 664: - ACCEPT_TOKEN(anon_sym_defmacro); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + ACCEPT_TOKEN(anon_sym_defgeneric); END_STATE(); case 665: ACCEPT_TOKEN(anon_sym_defgeneric); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 666: - ACCEPT_TOKEN(anon_sym_defgeneric); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + ACCEPT_TOKEN(anon_sym_defmethod); END_STATE(); case 667: ACCEPT_TOKEN(anon_sym_defmethod); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 668: - ACCEPT_TOKEN(anon_sym_defmethod); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + ACCEPT_TOKEN(anon_sym_lambda); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 669: - ACCEPT_TOKEN(anon_sym_lambda); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(533); + ACCEPT_TOKEN(anon_sym_POUNDP); END_STATE(); case 670: - ACCEPT_TOKEN(anon_sym_POUNDP); + ACCEPT_TOKEN(anon_sym_POUNDp); END_STATE(); case 671: - ACCEPT_TOKEN(anon_sym_POUNDp); + ACCEPT_TOKEN(aux_sym__sym_lit_without_slash_token1); END_STATE(); case 672: ACCEPT_TOKEN(aux_sym__sym_lit_without_slash_token1); + if (lookahead == 'l') ADVANCE(583); END_STATE(); case 673: - ACCEPT_TOKEN(aux_sym__sym_lit_without_slash_token1); - if (lookahead == 'l') ADVANCE(584); - END_STATE(); - case 674: ACCEPT_TOKEN(sym_self_referential_reader_macro); END_STATE(); - case 675: + case 674: ACCEPT_TOKEN(anon_sym_POUND_PLUS); END_STATE(); - case 676: + case 675: ACCEPT_TOKEN(anon_sym_POUND_DASH); END_STATE(); - case 677: + case 676: ACCEPT_TOKEN(anon_sym_POUNDC); END_STATE(); - case 678: + case 677: ACCEPT_TOKEN(anon_sym_POUNDc); END_STATE(); default: @@ -6441,1429 +6435,1429 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, - [1] = {.lex_state = 289}, - [2] = {.lex_state = 9}, - [3] = {.lex_state = 9}, - [4] = {.lex_state = 9}, - [5] = {.lex_state = 9}, - [6] = {.lex_state = 9}, - [7] = {.lex_state = 14}, - [8] = {.lex_state = 14}, - [9] = {.lex_state = 14}, - [10] = {.lex_state = 14}, - [11] = {.lex_state = 14}, - [12] = {.lex_state = 14}, - [13] = {.lex_state = 14}, - [14] = {.lex_state = 14}, - [15] = {.lex_state = 14}, - [16] = {.lex_state = 14}, - [17] = {.lex_state = 14}, - [18] = {.lex_state = 14}, - [19] = {.lex_state = 12}, - [20] = {.lex_state = 12}, - [21] = {.lex_state = 12}, - [22] = {.lex_state = 12}, - [23] = {.lex_state = 12}, - [24] = {.lex_state = 12}, - [25] = {.lex_state = 12}, - [26] = {.lex_state = 12}, - [27] = {.lex_state = 12}, - [28] = {.lex_state = 12}, - [29] = {.lex_state = 17}, - [30] = {.lex_state = 17}, - [31] = {.lex_state = 17}, - [32] = {.lex_state = 17}, - [33] = {.lex_state = 17}, - [34] = {.lex_state = 17}, - [35] = {.lex_state = 17}, - [36] = {.lex_state = 17}, - [37] = {.lex_state = 289}, - [38] = {.lex_state = 17}, - [39] = {.lex_state = 17}, - [40] = {.lex_state = 17}, - [41] = {.lex_state = 17}, - [42] = {.lex_state = 17}, - [43] = {.lex_state = 17}, - [44] = {.lex_state = 289}, - [45] = {.lex_state = 289}, - [46] = {.lex_state = 289}, - [47] = {.lex_state = 289}, - [48] = {.lex_state = 289}, - [49] = {.lex_state = 289}, - [50] = {.lex_state = 289}, - [51] = {.lex_state = 289}, - [52] = {.lex_state = 289}, - [53] = {.lex_state = 289}, - [54] = {.lex_state = 289}, - [55] = {.lex_state = 289}, - [56] = {.lex_state = 289}, - [57] = {.lex_state = 289}, - [58] = {.lex_state = 289}, - [59] = {.lex_state = 289}, - [60] = {.lex_state = 289}, - [61] = {.lex_state = 289}, - [62] = {.lex_state = 16}, - [63] = {.lex_state = 289}, - [64] = {.lex_state = 289}, - [65] = {.lex_state = 289}, - [66] = {.lex_state = 289}, - [67] = {.lex_state = 289}, - [68] = {.lex_state = 289}, - [69] = {.lex_state = 289}, - [70] = {.lex_state = 289}, - [71] = {.lex_state = 289}, - [72] = {.lex_state = 289}, - [73] = {.lex_state = 289}, - [74] = {.lex_state = 289}, - [75] = {.lex_state = 289}, - [76] = {.lex_state = 289}, - [77] = {.lex_state = 289}, - [78] = {.lex_state = 289}, - [79] = {.lex_state = 289}, - [80] = {.lex_state = 16}, - [81] = {.lex_state = 16}, - [82] = {.lex_state = 289}, - [83] = {.lex_state = 289}, - [84] = {.lex_state = 289}, - [85] = {.lex_state = 289}, - [86] = {.lex_state = 289}, - [87] = {.lex_state = 289}, - [88] = {.lex_state = 289}, - [89] = {.lex_state = 289}, - [90] = {.lex_state = 289}, - [91] = {.lex_state = 289}, - [92] = {.lex_state = 289}, - [93] = {.lex_state = 289}, - [94] = {.lex_state = 289}, - [95] = {.lex_state = 289}, - [96] = {.lex_state = 289}, - [97] = {.lex_state = 16}, - [98] = {.lex_state = 289}, - [99] = {.lex_state = 289}, - [100] = {.lex_state = 289}, - [101] = {.lex_state = 289}, - [102] = {.lex_state = 289}, - [103] = {.lex_state = 289}, - [104] = {.lex_state = 16}, - [105] = {.lex_state = 289}, - [106] = {.lex_state = 289}, - [107] = {.lex_state = 289}, - [108] = {.lex_state = 289}, - [109] = {.lex_state = 289}, - [110] = {.lex_state = 289}, - [111] = {.lex_state = 289}, - [112] = {.lex_state = 289}, - [113] = {.lex_state = 289}, - [114] = {.lex_state = 289}, - [115] = {.lex_state = 289}, - [116] = {.lex_state = 289}, - [117] = {.lex_state = 289}, - [118] = {.lex_state = 289}, - [119] = {.lex_state = 289}, - [120] = {.lex_state = 289}, - [121] = {.lex_state = 289}, - [122] = {.lex_state = 16}, - [123] = {.lex_state = 289}, - [124] = {.lex_state = 289}, - [125] = {.lex_state = 16}, - [126] = {.lex_state = 289}, - [127] = {.lex_state = 289}, - [128] = {.lex_state = 289}, - [129] = {.lex_state = 289}, - [130] = {.lex_state = 289}, - [131] = {.lex_state = 289}, - [132] = {.lex_state = 289}, - [133] = {.lex_state = 289}, - [134] = {.lex_state = 289}, - [135] = {.lex_state = 289}, - [136] = {.lex_state = 289}, - [137] = {.lex_state = 289}, - [138] = {.lex_state = 289}, - [139] = {.lex_state = 289}, - [140] = {.lex_state = 289}, - [141] = {.lex_state = 289}, - [142] = {.lex_state = 289}, - [143] = {.lex_state = 289}, - [144] = {.lex_state = 289}, - [145] = {.lex_state = 289}, - [146] = {.lex_state = 289}, - [147] = {.lex_state = 16}, - [148] = {.lex_state = 289}, - [149] = {.lex_state = 289}, - [150] = {.lex_state = 289}, - [151] = {.lex_state = 289}, - [152] = {.lex_state = 289}, - [153] = {.lex_state = 289}, - [154] = {.lex_state = 289}, - [155] = {.lex_state = 289}, - [156] = {.lex_state = 289}, - [157] = {.lex_state = 289}, - [158] = {.lex_state = 289}, - [159] = {.lex_state = 289}, - [160] = {.lex_state = 289}, - [161] = {.lex_state = 289}, - [162] = {.lex_state = 289}, - [163] = {.lex_state = 289}, - [164] = {.lex_state = 289}, - [165] = {.lex_state = 289}, - [166] = {.lex_state = 289}, - [167] = {.lex_state = 289}, - [168] = {.lex_state = 289}, - [169] = {.lex_state = 289}, - [170] = {.lex_state = 289}, - [171] = {.lex_state = 289}, - [172] = {.lex_state = 289}, - [173] = {.lex_state = 289}, - [174] = {.lex_state = 289}, - [175] = {.lex_state = 289}, - [176] = {.lex_state = 289}, - [177] = {.lex_state = 289}, - [178] = {.lex_state = 289}, - [179] = {.lex_state = 289}, - [180] = {.lex_state = 289}, - [181] = {.lex_state = 289}, - [182] = {.lex_state = 289}, - [183] = {.lex_state = 289}, - [184] = {.lex_state = 289}, - [185] = {.lex_state = 289}, - [186] = {.lex_state = 289}, - [187] = {.lex_state = 289}, - [188] = {.lex_state = 289}, - [189] = {.lex_state = 289}, - [190] = {.lex_state = 289}, - [191] = {.lex_state = 289}, - [192] = {.lex_state = 289}, - [193] = {.lex_state = 289}, - [194] = {.lex_state = 289}, - [195] = {.lex_state = 289}, - [196] = {.lex_state = 289}, - [197] = {.lex_state = 289}, - [198] = {.lex_state = 289}, - [199] = {.lex_state = 289}, - [200] = {.lex_state = 289}, - [201] = {.lex_state = 289}, - [202] = {.lex_state = 289}, - [203] = {.lex_state = 289}, - [204] = {.lex_state = 289}, - [205] = {.lex_state = 289}, - [206] = {.lex_state = 289}, - [207] = {.lex_state = 289}, - [208] = {.lex_state = 289}, - [209] = {.lex_state = 289}, - [210] = {.lex_state = 289}, - [211] = {.lex_state = 289}, - [212] = {.lex_state = 289}, - [213] = {.lex_state = 289}, - [214] = {.lex_state = 289}, - [215] = {.lex_state = 289}, - [216] = {.lex_state = 289}, - [217] = {.lex_state = 289}, - [218] = {.lex_state = 289}, - [219] = {.lex_state = 289}, - [220] = {.lex_state = 289}, - [221] = {.lex_state = 289}, - [222] = {.lex_state = 289}, - [223] = {.lex_state = 289}, - [224] = {.lex_state = 289}, - [225] = {.lex_state = 289}, - [226] = {.lex_state = 289}, - [227] = {.lex_state = 289}, - [228] = {.lex_state = 289}, - [229] = {.lex_state = 289}, - [230] = {.lex_state = 289}, - [231] = {.lex_state = 289}, - [232] = {.lex_state = 289}, - [233] = {.lex_state = 289}, - [234] = {.lex_state = 289}, - [235] = {.lex_state = 289}, - [236] = {.lex_state = 289}, - [237] = {.lex_state = 289}, - [238] = {.lex_state = 289}, - [239] = {.lex_state = 289}, - [240] = {.lex_state = 289}, - [241] = {.lex_state = 289}, - [242] = {.lex_state = 289}, - [243] = {.lex_state = 289}, - [244] = {.lex_state = 289}, - [245] = {.lex_state = 289}, - [246] = {.lex_state = 289}, - [247] = {.lex_state = 289}, - [248] = {.lex_state = 289}, - [249] = {.lex_state = 289}, - [250] = {.lex_state = 289}, - [251] = {.lex_state = 289}, - [252] = {.lex_state = 289}, - [253] = {.lex_state = 289}, - [254] = {.lex_state = 289}, - [255] = {.lex_state = 289}, - [256] = {.lex_state = 289}, - [257] = {.lex_state = 289}, - [258] = {.lex_state = 289}, - [259] = {.lex_state = 289}, - [260] = {.lex_state = 289}, - [261] = {.lex_state = 289}, - [262] = {.lex_state = 289}, - [263] = {.lex_state = 289}, - [264] = {.lex_state = 289}, - [265] = {.lex_state = 289}, - [266] = {.lex_state = 289}, - [267] = {.lex_state = 289}, - [268] = {.lex_state = 289}, - [269] = {.lex_state = 289}, - [270] = {.lex_state = 289}, - [271] = {.lex_state = 289}, - [272] = {.lex_state = 289}, - [273] = {.lex_state = 289}, - [274] = {.lex_state = 289}, - [275] = {.lex_state = 289}, - [276] = {.lex_state = 289}, - [277] = {.lex_state = 289}, - [278] = {.lex_state = 289}, - [279] = {.lex_state = 289}, - [280] = {.lex_state = 289}, - [281] = {.lex_state = 289}, - [282] = {.lex_state = 289}, - [283] = {.lex_state = 289}, - [284] = {.lex_state = 289}, - [285] = {.lex_state = 289}, - [286] = {.lex_state = 289}, - [287] = {.lex_state = 289}, - [288] = {.lex_state = 289}, - [289] = {.lex_state = 289}, - [290] = {.lex_state = 289}, - [291] = {.lex_state = 289}, - [292] = {.lex_state = 289}, - [293] = {.lex_state = 289}, - [294] = {.lex_state = 289}, - [295] = {.lex_state = 289}, - [296] = {.lex_state = 289}, - [297] = {.lex_state = 289}, - [298] = {.lex_state = 289}, - [299] = {.lex_state = 289}, - [300] = {.lex_state = 289}, - [301] = {.lex_state = 289}, - [302] = {.lex_state = 289}, - [303] = {.lex_state = 289}, - [304] = {.lex_state = 289}, - [305] = {.lex_state = 289}, - [306] = {.lex_state = 289}, - [307] = {.lex_state = 289}, - [308] = {.lex_state = 289}, - [309] = {.lex_state = 289}, - [310] = {.lex_state = 289}, - [311] = {.lex_state = 289}, - [312] = {.lex_state = 289}, - [313] = {.lex_state = 289}, - [314] = {.lex_state = 289}, - [315] = {.lex_state = 289}, - [316] = {.lex_state = 289}, - [317] = {.lex_state = 289}, - [318] = {.lex_state = 289}, - [319] = {.lex_state = 289}, - [320] = {.lex_state = 289}, - [321] = {.lex_state = 289}, - [322] = {.lex_state = 289}, - [323] = {.lex_state = 289}, - [324] = {.lex_state = 289}, - [325] = {.lex_state = 289}, - [326] = {.lex_state = 289}, - [327] = {.lex_state = 289}, - [328] = {.lex_state = 289}, - [329] = {.lex_state = 289}, - [330] = {.lex_state = 289}, - [331] = {.lex_state = 289}, - [332] = {.lex_state = 289}, - [333] = {.lex_state = 289}, - [334] = {.lex_state = 289}, - [335] = {.lex_state = 289}, - [336] = {.lex_state = 289}, - [337] = {.lex_state = 289}, - [338] = {.lex_state = 289}, - [339] = {.lex_state = 289}, - [340] = {.lex_state = 289}, - [341] = {.lex_state = 289}, - [342] = {.lex_state = 289}, - [343] = {.lex_state = 289}, - [344] = {.lex_state = 289}, - [345] = {.lex_state = 289}, - [346] = {.lex_state = 289}, - [347] = {.lex_state = 289}, - [348] = {.lex_state = 289}, - [349] = {.lex_state = 289}, - [350] = {.lex_state = 289}, - [351] = {.lex_state = 289}, - [352] = {.lex_state = 289}, - [353] = {.lex_state = 289}, - [354] = {.lex_state = 289}, - [355] = {.lex_state = 289}, - [356] = {.lex_state = 289}, - [357] = {.lex_state = 289}, - [358] = {.lex_state = 289}, - [359] = {.lex_state = 289}, - [360] = {.lex_state = 289}, - [361] = {.lex_state = 289}, - [362] = {.lex_state = 289}, - [363] = {.lex_state = 289}, - [364] = {.lex_state = 289}, - [365] = {.lex_state = 289}, - [366] = {.lex_state = 289}, - [367] = {.lex_state = 289}, - [368] = {.lex_state = 289}, - [369] = {.lex_state = 289}, - [370] = {.lex_state = 289}, - [371] = {.lex_state = 289}, - [372] = {.lex_state = 289}, - [373] = {.lex_state = 289}, - [374] = {.lex_state = 289}, - [375] = {.lex_state = 289}, - [376] = {.lex_state = 289}, - [377] = {.lex_state = 289}, - [378] = {.lex_state = 289}, - [379] = {.lex_state = 289}, - [380] = {.lex_state = 289}, - [381] = {.lex_state = 289}, - [382] = {.lex_state = 289}, - [383] = {.lex_state = 289}, - [384] = {.lex_state = 289}, - [385] = {.lex_state = 289}, - [386] = {.lex_state = 289}, - [387] = {.lex_state = 289}, - [388] = {.lex_state = 289}, - [389] = {.lex_state = 289}, - [390] = {.lex_state = 289}, - [391] = {.lex_state = 289}, - [392] = {.lex_state = 289}, - [393] = {.lex_state = 289}, - [394] = {.lex_state = 289}, - [395] = {.lex_state = 289}, - [396] = {.lex_state = 289}, - [397] = {.lex_state = 289}, - [398] = {.lex_state = 289}, - [399] = {.lex_state = 289}, - [400] = {.lex_state = 289}, - [401] = {.lex_state = 289}, - [402] = {.lex_state = 289}, - [403] = {.lex_state = 289}, - [404] = {.lex_state = 289}, - [405] = {.lex_state = 289}, - [406] = {.lex_state = 289}, - [407] = {.lex_state = 289}, - [408] = {.lex_state = 289}, - [409] = {.lex_state = 289}, - [410] = {.lex_state = 289}, - [411] = {.lex_state = 289}, - [412] = {.lex_state = 289}, - [413] = {.lex_state = 289}, - [414] = {.lex_state = 289}, - [415] = {.lex_state = 289}, - [416] = {.lex_state = 289}, - [417] = {.lex_state = 289}, - [418] = {.lex_state = 289}, - [419] = {.lex_state = 289}, - [420] = {.lex_state = 289}, - [421] = {.lex_state = 289}, - [422] = {.lex_state = 289}, - [423] = {.lex_state = 289}, - [424] = {.lex_state = 289}, - [425] = {.lex_state = 289}, - [426] = {.lex_state = 289}, - [427] = {.lex_state = 289}, - [428] = {.lex_state = 289}, - [429] = {.lex_state = 289}, - [430] = {.lex_state = 289}, - [431] = {.lex_state = 289}, - [432] = {.lex_state = 289}, - [433] = {.lex_state = 289}, - [434] = {.lex_state = 289}, - [435] = {.lex_state = 289}, - [436] = {.lex_state = 289}, - [437] = {.lex_state = 289}, - [438] = {.lex_state = 289}, - [439] = {.lex_state = 289}, - [440] = {.lex_state = 289}, - [441] = {.lex_state = 289}, - [442] = {.lex_state = 289}, - [443] = {.lex_state = 289}, - [444] = {.lex_state = 289}, - [445] = {.lex_state = 289}, - [446] = {.lex_state = 289}, - [447] = {.lex_state = 289}, - [448] = {.lex_state = 289}, - [449] = {.lex_state = 289}, - [450] = {.lex_state = 289}, - [451] = {.lex_state = 289}, - [452] = {.lex_state = 289}, - [453] = {.lex_state = 289}, - [454] = {.lex_state = 289}, - [455] = {.lex_state = 289}, - [456] = {.lex_state = 289}, - [457] = {.lex_state = 289}, - [458] = {.lex_state = 289}, - [459] = {.lex_state = 289}, - [460] = {.lex_state = 289}, - [461] = {.lex_state = 289}, - [462] = {.lex_state = 289}, - [463] = {.lex_state = 289}, - [464] = {.lex_state = 289}, - [465] = {.lex_state = 289}, - [466] = {.lex_state = 289}, - [467] = {.lex_state = 289}, - [468] = {.lex_state = 289}, - [469] = {.lex_state = 289}, - [470] = {.lex_state = 289}, - [471] = {.lex_state = 289}, - [472] = {.lex_state = 289}, - [473] = {.lex_state = 289}, - [474] = {.lex_state = 289}, - [475] = {.lex_state = 289}, - [476] = {.lex_state = 289}, - [477] = {.lex_state = 289}, - [478] = {.lex_state = 289}, - [479] = {.lex_state = 289}, - [480] = {.lex_state = 289}, - [481] = {.lex_state = 289}, - [482] = {.lex_state = 289}, - [483] = {.lex_state = 289}, - [484] = {.lex_state = 289}, - [485] = {.lex_state = 289}, - [486] = {.lex_state = 289}, - [487] = {.lex_state = 289}, - [488] = {.lex_state = 289}, - [489] = {.lex_state = 289}, - [490] = {.lex_state = 289}, - [491] = {.lex_state = 289}, - [492] = {.lex_state = 289}, - [493] = {.lex_state = 289}, - [494] = {.lex_state = 289}, - [495] = {.lex_state = 289}, - [496] = {.lex_state = 289}, - [497] = {.lex_state = 289}, - [498] = {.lex_state = 289}, - [499] = {.lex_state = 289}, - [500] = {.lex_state = 289}, - [501] = {.lex_state = 289}, - [502] = {.lex_state = 289}, - [503] = {.lex_state = 289}, - [504] = {.lex_state = 289}, - [505] = {.lex_state = 289}, - [506] = {.lex_state = 289}, - [507] = {.lex_state = 289}, - [508] = {.lex_state = 289}, - [509] = {.lex_state = 289}, - [510] = {.lex_state = 289}, - [511] = {.lex_state = 289}, - [512] = {.lex_state = 289}, - [513] = {.lex_state = 289}, - [514] = {.lex_state = 289}, - [515] = {.lex_state = 289}, - [516] = {.lex_state = 289}, - [517] = {.lex_state = 289}, - [518] = {.lex_state = 289}, - [519] = {.lex_state = 289}, - [520] = {.lex_state = 289}, - [521] = {.lex_state = 289}, - [522] = {.lex_state = 289}, - [523] = {.lex_state = 289}, - [524] = {.lex_state = 289}, - [525] = {.lex_state = 289}, - [526] = {.lex_state = 289}, - [527] = {.lex_state = 289}, - [528] = {.lex_state = 289}, - [529] = {.lex_state = 289}, - [530] = {.lex_state = 289}, - [531] = {.lex_state = 289}, - [532] = {.lex_state = 289}, - [533] = {.lex_state = 289}, - [534] = {.lex_state = 289}, - [535] = {.lex_state = 289}, - [536] = {.lex_state = 289}, - [537] = {.lex_state = 289}, - [538] = {.lex_state = 289}, - [539] = {.lex_state = 289}, - [540] = {.lex_state = 289}, - [541] = {.lex_state = 289}, - [542] = {.lex_state = 289}, - [543] = {.lex_state = 289}, - [544] = {.lex_state = 289}, - [545] = {.lex_state = 289}, - [546] = {.lex_state = 289}, - [547] = {.lex_state = 289}, - [548] = {.lex_state = 289}, - [549] = {.lex_state = 289}, - [550] = {.lex_state = 289}, - [551] = {.lex_state = 289}, - [552] = {.lex_state = 289}, - [553] = {.lex_state = 289}, - [554] = {.lex_state = 289}, - [555] = {.lex_state = 289}, - [556] = {.lex_state = 289}, - [557] = {.lex_state = 289}, - [558] = {.lex_state = 289}, - [559] = {.lex_state = 289}, - [560] = {.lex_state = 289}, - [561] = {.lex_state = 289}, - [562] = {.lex_state = 289}, - [563] = {.lex_state = 289}, - [564] = {.lex_state = 289}, - [565] = {.lex_state = 289}, - [566] = {.lex_state = 289}, - [567] = {.lex_state = 289}, - [568] = {.lex_state = 289}, - [569] = {.lex_state = 289}, - [570] = {.lex_state = 289}, - [571] = {.lex_state = 289}, - [572] = {.lex_state = 289}, - [573] = {.lex_state = 289}, - [574] = {.lex_state = 289}, - [575] = {.lex_state = 289}, - [576] = {.lex_state = 289}, - [577] = {.lex_state = 289}, - [578] = {.lex_state = 289}, - [579] = {.lex_state = 289}, - [580] = {.lex_state = 289}, - [581] = {.lex_state = 289}, - [582] = {.lex_state = 289}, - [583] = {.lex_state = 289}, - [584] = {.lex_state = 289}, - [585] = {.lex_state = 289}, - [586] = {.lex_state = 289}, - [587] = {.lex_state = 289}, - [588] = {.lex_state = 289}, - [589] = {.lex_state = 289}, - [590] = {.lex_state = 289}, - [591] = {.lex_state = 289}, - [592] = {.lex_state = 289}, - [593] = {.lex_state = 289}, - [594] = {.lex_state = 289}, - [595] = {.lex_state = 289}, - [596] = {.lex_state = 289}, - [597] = {.lex_state = 289}, - [598] = {.lex_state = 289}, - [599] = {.lex_state = 289}, - [600] = {.lex_state = 289}, - [601] = {.lex_state = 289}, - [602] = {.lex_state = 289}, - [603] = {.lex_state = 289}, - [604] = {.lex_state = 289}, - [605] = {.lex_state = 289}, - [606] = {.lex_state = 289}, - [607] = {.lex_state = 289}, - [608] = {.lex_state = 289}, - [609] = {.lex_state = 289}, - [610] = {.lex_state = 289}, - [611] = {.lex_state = 289}, - [612] = {.lex_state = 289}, - [613] = {.lex_state = 289}, - [614] = {.lex_state = 289}, - [615] = {.lex_state = 289}, - [616] = {.lex_state = 289}, - [617] = {.lex_state = 289}, - [618] = {.lex_state = 289}, - [619] = {.lex_state = 289}, - [620] = {.lex_state = 289}, - [621] = {.lex_state = 289}, - [622] = {.lex_state = 289}, - [623] = {.lex_state = 289}, - [624] = {.lex_state = 289}, - [625] = {.lex_state = 289}, - [626] = {.lex_state = 289}, - [627] = {.lex_state = 289}, - [628] = {.lex_state = 289}, - [629] = {.lex_state = 289}, - [630] = {.lex_state = 289}, - [631] = {.lex_state = 289}, - [632] = {.lex_state = 289}, - [633] = {.lex_state = 289}, - [634] = {.lex_state = 289}, - [635] = {.lex_state = 289}, - [636] = {.lex_state = 289}, - [637] = {.lex_state = 289}, - [638] = {.lex_state = 289}, - [639] = {.lex_state = 289}, - [640] = {.lex_state = 289}, - [641] = {.lex_state = 289}, - [642] = {.lex_state = 289}, - [643] = {.lex_state = 289}, - [644] = {.lex_state = 289}, - [645] = {.lex_state = 289}, - [646] = {.lex_state = 289}, - [647] = {.lex_state = 289}, - [648] = {.lex_state = 289}, - [649] = {.lex_state = 289}, - [650] = {.lex_state = 289}, - [651] = {.lex_state = 289}, - [652] = {.lex_state = 289}, - [653] = {.lex_state = 289}, - [654] = {.lex_state = 289}, - [655] = {.lex_state = 289}, - [656] = {.lex_state = 289}, - [657] = {.lex_state = 289}, - [658] = {.lex_state = 289}, - [659] = {.lex_state = 289}, - [660] = {.lex_state = 289}, - [661] = {.lex_state = 289}, - [662] = {.lex_state = 289}, - [663] = {.lex_state = 289}, - [664] = {.lex_state = 289}, - [665] = {.lex_state = 289}, - [666] = {.lex_state = 289}, - [667] = {.lex_state = 289}, - [668] = {.lex_state = 289}, - [669] = {.lex_state = 289}, - [670] = {.lex_state = 289}, - [671] = {.lex_state = 289}, - [672] = {.lex_state = 289}, - [673] = {.lex_state = 289}, - [674] = {.lex_state = 289}, - [675] = {.lex_state = 289}, - [676] = {.lex_state = 289}, - [677] = {.lex_state = 289}, - [678] = {.lex_state = 289}, - [679] = {.lex_state = 289}, - [680] = {.lex_state = 289}, - [681] = {.lex_state = 289}, - [682] = {.lex_state = 289}, - [683] = {.lex_state = 289}, - [684] = {.lex_state = 289}, - [685] = {.lex_state = 289}, - [686] = {.lex_state = 289}, - [687] = {.lex_state = 289}, - [688] = {.lex_state = 289}, - [689] = {.lex_state = 289}, - [690] = {.lex_state = 289}, - [691] = {.lex_state = 289}, - [692] = {.lex_state = 289}, - [693] = {.lex_state = 289}, - [694] = {.lex_state = 289}, - [695] = {.lex_state = 289}, - [696] = {.lex_state = 289}, - [697] = {.lex_state = 289}, - [698] = {.lex_state = 289}, - [699] = {.lex_state = 289}, - [700] = {.lex_state = 289}, - [701] = {.lex_state = 289}, - [702] = {.lex_state = 289}, - [703] = {.lex_state = 289}, - [704] = {.lex_state = 289}, - [705] = {.lex_state = 289}, - [706] = {.lex_state = 289}, - [707] = {.lex_state = 289}, - [708] = {.lex_state = 289}, - [709] = {.lex_state = 289}, - [710] = {.lex_state = 289}, - [711] = {.lex_state = 289}, - [712] = {.lex_state = 289}, - [713] = {.lex_state = 289}, - [714] = {.lex_state = 289}, - [715] = {.lex_state = 289}, - [716] = {.lex_state = 289}, - [717] = {.lex_state = 289}, - [718] = {.lex_state = 289}, - [719] = {.lex_state = 289}, - [720] = {.lex_state = 289}, - [721] = {.lex_state = 289}, - [722] = {.lex_state = 289}, - [723] = {.lex_state = 289}, - [724] = {.lex_state = 289}, - [725] = {.lex_state = 289}, - [726] = {.lex_state = 289}, - [727] = {.lex_state = 289}, - [728] = {.lex_state = 289}, - [729] = {.lex_state = 289}, - [730] = {.lex_state = 289}, - [731] = {.lex_state = 289}, - [732] = {.lex_state = 289}, - [733] = {.lex_state = 289}, - [734] = {.lex_state = 289}, - [735] = {.lex_state = 289}, - [736] = {.lex_state = 289}, - [737] = {.lex_state = 289}, - [738] = {.lex_state = 289}, - [739] = {.lex_state = 289}, - [740] = {.lex_state = 289}, - [741] = {.lex_state = 289}, - [742] = {.lex_state = 289}, - [743] = {.lex_state = 289}, - [744] = {.lex_state = 289}, - [745] = {.lex_state = 289}, - [746] = {.lex_state = 289}, - [747] = {.lex_state = 289}, - [748] = {.lex_state = 289}, - [749] = {.lex_state = 289}, - [750] = {.lex_state = 289}, - [751] = {.lex_state = 289}, - [752] = {.lex_state = 289}, - [753] = {.lex_state = 289}, - [754] = {.lex_state = 289}, - [755] = {.lex_state = 289}, - [756] = {.lex_state = 289}, - [757] = {.lex_state = 289}, - [758] = {.lex_state = 289}, - [759] = {.lex_state = 289}, - [760] = {.lex_state = 289}, - [761] = {.lex_state = 289}, - [762] = {.lex_state = 289}, - [763] = {.lex_state = 289}, - [764] = {.lex_state = 289}, - [765] = {.lex_state = 289}, - [766] = {.lex_state = 289}, - [767] = {.lex_state = 289}, - [768] = {.lex_state = 289}, - [769] = {.lex_state = 289}, - [770] = {.lex_state = 289}, - [771] = {.lex_state = 289}, - [772] = {.lex_state = 289}, - [773] = {.lex_state = 289}, - [774] = {.lex_state = 289}, - [775] = {.lex_state = 289}, - [776] = {.lex_state = 289}, - [777] = {.lex_state = 289}, - [778] = {.lex_state = 289}, - [779] = {.lex_state = 289}, - [780] = {.lex_state = 289}, - [781] = {.lex_state = 289}, - [782] = {.lex_state = 289}, - [783] = {.lex_state = 289}, - [784] = {.lex_state = 289}, - [785] = {.lex_state = 289}, - [786] = {.lex_state = 289}, - [787] = {.lex_state = 289}, - [788] = {.lex_state = 289}, - [789] = {.lex_state = 289}, - [790] = {.lex_state = 289}, - [791] = {.lex_state = 289}, - [792] = {.lex_state = 289}, - [793] = {.lex_state = 289}, - [794] = {.lex_state = 289}, - [795] = {.lex_state = 289}, - [796] = {.lex_state = 289}, - [797] = {.lex_state = 289}, - [798] = {.lex_state = 289}, - [799] = {.lex_state = 289}, - [800] = {.lex_state = 289}, - [801] = {.lex_state = 289}, - [802] = {.lex_state = 289}, - [803] = {.lex_state = 289}, - [804] = {.lex_state = 289}, - [805] = {.lex_state = 289}, - [806] = {.lex_state = 289}, - [807] = {.lex_state = 289}, - [808] = {.lex_state = 289}, - [809] = {.lex_state = 289}, - [810] = {.lex_state = 289}, - [811] = {.lex_state = 289}, - [812] = {.lex_state = 289}, - [813] = {.lex_state = 9}, - [814] = {.lex_state = 9}, - [815] = {.lex_state = 9}, - [816] = {.lex_state = 9}, - [817] = {.lex_state = 9}, - [818] = {.lex_state = 10}, - [819] = {.lex_state = 9}, - [820] = {.lex_state = 9}, - [821] = {.lex_state = 9}, - [822] = {.lex_state = 9}, - [823] = {.lex_state = 9}, - [824] = {.lex_state = 9}, - [825] = {.lex_state = 9}, - [826] = {.lex_state = 9}, - [827] = {.lex_state = 9}, - [828] = {.lex_state = 9}, - [829] = {.lex_state = 9}, - [830] = {.lex_state = 9}, - [831] = {.lex_state = 9}, - [832] = {.lex_state = 9}, - [833] = {.lex_state = 9}, - [834] = {.lex_state = 9}, - [835] = {.lex_state = 9}, - [836] = {.lex_state = 9}, - [837] = {.lex_state = 9}, - [838] = {.lex_state = 9}, - [839] = {.lex_state = 9}, - [840] = {.lex_state = 9}, - [841] = {.lex_state = 9}, - [842] = {.lex_state = 9}, - [843] = {.lex_state = 9}, - [844] = {.lex_state = 9}, - [845] = {.lex_state = 9}, - [846] = {.lex_state = 9}, - [847] = {.lex_state = 9}, - [848] = {.lex_state = 9}, - [849] = {.lex_state = 9}, - [850] = {.lex_state = 9}, - [851] = {.lex_state = 9}, - [852] = {.lex_state = 9}, - [853] = {.lex_state = 9}, - [854] = {.lex_state = 9}, - [855] = {.lex_state = 9}, - [856] = {.lex_state = 9}, - [857] = {.lex_state = 9}, - [858] = {.lex_state = 9}, - [859] = {.lex_state = 9}, - [860] = {.lex_state = 9}, - [861] = {.lex_state = 9}, - [862] = {.lex_state = 9}, - [863] = {.lex_state = 9}, - [864] = {.lex_state = 9}, - [865] = {.lex_state = 9}, - [866] = {.lex_state = 9}, - [867] = {.lex_state = 9}, - [868] = {.lex_state = 9}, - [869] = {.lex_state = 9}, - [870] = {.lex_state = 9}, - [871] = {.lex_state = 9}, - [872] = {.lex_state = 9}, - [873] = {.lex_state = 9}, - [874] = {.lex_state = 9}, - [875] = {.lex_state = 9}, - [876] = {.lex_state = 9}, - [877] = {.lex_state = 9}, - [878] = {.lex_state = 9}, - [879] = {.lex_state = 9}, - [880] = {.lex_state = 9}, - [881] = {.lex_state = 9}, - [882] = {.lex_state = 9}, - [883] = {.lex_state = 9}, - [884] = {.lex_state = 9}, - [885] = {.lex_state = 9}, - [886] = {.lex_state = 9}, - [887] = {.lex_state = 9}, - [888] = {.lex_state = 9}, - [889] = {.lex_state = 9}, - [890] = {.lex_state = 9}, - [891] = {.lex_state = 9}, - [892] = {.lex_state = 9}, - [893] = {.lex_state = 9}, - [894] = {.lex_state = 9}, - [895] = {.lex_state = 9}, - [896] = {.lex_state = 9}, - [897] = {.lex_state = 9}, - [898] = {.lex_state = 9}, - [899] = {.lex_state = 9}, - [900] = {.lex_state = 9}, - [901] = {.lex_state = 9}, - [902] = {.lex_state = 9}, - [903] = {.lex_state = 9}, - [904] = {.lex_state = 9}, - [905] = {.lex_state = 9}, - [906] = {.lex_state = 9}, - [907] = {.lex_state = 9}, - [908] = {.lex_state = 9}, - [909] = {.lex_state = 9}, - [910] = {.lex_state = 9}, - [911] = {.lex_state = 9}, - [912] = {.lex_state = 9}, - [913] = {.lex_state = 9}, - [914] = {.lex_state = 9}, - [915] = {.lex_state = 9}, - [916] = {.lex_state = 9}, - [917] = {.lex_state = 9}, - [918] = {.lex_state = 9}, - [919] = {.lex_state = 9}, - [920] = {.lex_state = 9}, - [921] = {.lex_state = 9}, - [922] = {.lex_state = 9}, - [923] = {.lex_state = 9}, - [924] = {.lex_state = 9}, - [925] = {.lex_state = 9}, - [926] = {.lex_state = 9}, - [927] = {.lex_state = 9}, - [928] = {.lex_state = 9}, - [929] = {.lex_state = 9}, - [930] = {.lex_state = 9}, - [931] = {.lex_state = 9}, - [932] = {.lex_state = 9}, - [933] = {.lex_state = 9}, - [934] = {.lex_state = 9}, - [935] = {.lex_state = 9}, - [936] = {.lex_state = 9}, - [937] = {.lex_state = 9}, - [938] = {.lex_state = 9}, - [939] = {.lex_state = 9}, - [940] = {.lex_state = 14}, + [1] = {.lex_state = 288}, + [2] = {.lex_state = 8}, + [3] = {.lex_state = 8}, + [4] = {.lex_state = 8}, + [5] = {.lex_state = 8}, + [6] = {.lex_state = 8}, + [7] = {.lex_state = 13}, + [8] = {.lex_state = 13}, + [9] = {.lex_state = 13}, + [10] = {.lex_state = 13}, + [11] = {.lex_state = 13}, + [12] = {.lex_state = 13}, + [13] = {.lex_state = 13}, + [14] = {.lex_state = 13}, + [15] = {.lex_state = 13}, + [16] = {.lex_state = 13}, + [17] = {.lex_state = 13}, + [18] = {.lex_state = 13}, + [19] = {.lex_state = 11}, + [20] = {.lex_state = 11}, + [21] = {.lex_state = 11}, + [22] = {.lex_state = 11}, + [23] = {.lex_state = 11}, + [24] = {.lex_state = 11}, + [25] = {.lex_state = 11}, + [26] = {.lex_state = 11}, + [27] = {.lex_state = 11}, + [28] = {.lex_state = 11}, + [29] = {.lex_state = 16}, + [30] = {.lex_state = 16}, + [31] = {.lex_state = 16}, + [32] = {.lex_state = 16}, + [33] = {.lex_state = 16}, + [34] = {.lex_state = 16}, + [35] = {.lex_state = 16}, + [36] = {.lex_state = 16}, + [37] = {.lex_state = 16}, + [38] = {.lex_state = 16}, + [39] = {.lex_state = 16}, + [40] = {.lex_state = 16}, + [41] = {.lex_state = 16}, + [42] = {.lex_state = 288}, + [43] = {.lex_state = 16}, + [44] = {.lex_state = 15}, + [45] = {.lex_state = 288}, + [46] = {.lex_state = 288}, + [47] = {.lex_state = 288}, + [48] = {.lex_state = 288}, + [49] = {.lex_state = 288}, + [50] = {.lex_state = 288}, + [51] = {.lex_state = 288}, + [52] = {.lex_state = 288}, + [53] = {.lex_state = 288}, + [54] = {.lex_state = 288}, + [55] = {.lex_state = 288}, + [56] = {.lex_state = 288}, + [57] = {.lex_state = 288}, + [58] = {.lex_state = 288}, + [59] = {.lex_state = 288}, + [60] = {.lex_state = 288}, + [61] = {.lex_state = 288}, + [62] = {.lex_state = 288}, + [63] = {.lex_state = 288}, + [64] = {.lex_state = 15}, + [65] = {.lex_state = 288}, + [66] = {.lex_state = 288}, + [67] = {.lex_state = 288}, + [68] = {.lex_state = 288}, + [69] = {.lex_state = 288}, + [70] = {.lex_state = 288}, + [71] = {.lex_state = 288}, + [72] = {.lex_state = 288}, + [73] = {.lex_state = 288}, + [74] = {.lex_state = 288}, + [75] = {.lex_state = 288}, + [76] = {.lex_state = 288}, + [77] = {.lex_state = 288}, + [78] = {.lex_state = 288}, + [79] = {.lex_state = 288}, + [80] = {.lex_state = 15}, + [81] = {.lex_state = 288}, + [82] = {.lex_state = 288}, + [83] = {.lex_state = 288}, + [84] = {.lex_state = 288}, + [85] = {.lex_state = 288}, + [86] = {.lex_state = 288}, + [87] = {.lex_state = 288}, + [88] = {.lex_state = 288}, + [89] = {.lex_state = 288}, + [90] = {.lex_state = 288}, + [91] = {.lex_state = 288}, + [92] = {.lex_state = 288}, + [93] = {.lex_state = 288}, + [94] = {.lex_state = 288}, + [95] = {.lex_state = 288}, + [96] = {.lex_state = 288}, + [97] = {.lex_state = 288}, + [98] = {.lex_state = 288}, + [99] = {.lex_state = 288}, + [100] = {.lex_state = 288}, + [101] = {.lex_state = 15}, + [102] = {.lex_state = 288}, + [103] = {.lex_state = 288}, + [104] = {.lex_state = 288}, + [105] = {.lex_state = 288}, + [106] = {.lex_state = 288}, + [107] = {.lex_state = 15}, + [108] = {.lex_state = 288}, + [109] = {.lex_state = 288}, + [110] = {.lex_state = 288}, + [111] = {.lex_state = 288}, + [112] = {.lex_state = 288}, + [113] = {.lex_state = 288}, + [114] = {.lex_state = 288}, + [115] = {.lex_state = 288}, + [116] = {.lex_state = 288}, + [117] = {.lex_state = 288}, + [118] = {.lex_state = 288}, + [119] = {.lex_state = 288}, + [120] = {.lex_state = 288}, + [121] = {.lex_state = 288}, + [122] = {.lex_state = 288}, + [123] = {.lex_state = 288}, + [124] = {.lex_state = 288}, + [125] = {.lex_state = 288}, + [126] = {.lex_state = 15}, + [127] = {.lex_state = 15}, + [128] = {.lex_state = 288}, + [129] = {.lex_state = 288}, + [130] = {.lex_state = 288}, + [131] = {.lex_state = 288}, + [132] = {.lex_state = 288}, + [133] = {.lex_state = 288}, + [134] = {.lex_state = 288}, + [135] = {.lex_state = 288}, + [136] = {.lex_state = 288}, + [137] = {.lex_state = 288}, + [138] = {.lex_state = 288}, + [139] = {.lex_state = 288}, + [140] = {.lex_state = 288}, + [141] = {.lex_state = 288}, + [142] = {.lex_state = 288}, + [143] = {.lex_state = 288}, + [144] = {.lex_state = 288}, + [145] = {.lex_state = 288}, + [146] = {.lex_state = 288}, + [147] = {.lex_state = 288}, + [148] = {.lex_state = 288}, + [149] = {.lex_state = 288}, + [150] = {.lex_state = 15}, + [151] = {.lex_state = 288}, + [152] = {.lex_state = 288}, + [153] = {.lex_state = 288}, + [154] = {.lex_state = 288}, + [155] = {.lex_state = 288}, + [156] = {.lex_state = 288}, + [157] = {.lex_state = 288}, + [158] = {.lex_state = 288}, + [159] = {.lex_state = 288}, + [160] = {.lex_state = 288}, + [161] = {.lex_state = 288}, + [162] = {.lex_state = 288}, + [163] = {.lex_state = 288}, + [164] = {.lex_state = 288}, + [165] = {.lex_state = 288}, + [166] = {.lex_state = 288}, + [167] = {.lex_state = 288}, + [168] = {.lex_state = 288}, + [169] = {.lex_state = 288}, + [170] = {.lex_state = 288}, + [171] = {.lex_state = 288}, + [172] = {.lex_state = 288}, + [173] = {.lex_state = 288}, + [174] = {.lex_state = 288}, + [175] = {.lex_state = 288}, + [176] = {.lex_state = 288}, + [177] = {.lex_state = 288}, + [178] = {.lex_state = 288}, + [179] = {.lex_state = 288}, + [180] = {.lex_state = 288}, + [181] = {.lex_state = 288}, + [182] = {.lex_state = 288}, + [183] = {.lex_state = 288}, + [184] = {.lex_state = 288}, + [185] = {.lex_state = 288}, + [186] = {.lex_state = 288}, + [187] = {.lex_state = 288}, + [188] = {.lex_state = 288}, + [189] = {.lex_state = 288}, + [190] = {.lex_state = 288}, + [191] = {.lex_state = 288}, + [192] = {.lex_state = 288}, + [193] = {.lex_state = 288}, + [194] = {.lex_state = 288}, + [195] = {.lex_state = 288}, + [196] = {.lex_state = 288}, + [197] = {.lex_state = 288}, + [198] = {.lex_state = 288}, + [199] = {.lex_state = 288}, + [200] = {.lex_state = 288}, + [201] = {.lex_state = 288}, + [202] = {.lex_state = 288}, + [203] = {.lex_state = 288}, + [204] = {.lex_state = 288}, + [205] = {.lex_state = 288}, + [206] = {.lex_state = 288}, + [207] = {.lex_state = 288}, + [208] = {.lex_state = 288}, + [209] = {.lex_state = 288}, + [210] = {.lex_state = 288}, + [211] = {.lex_state = 288}, + [212] = {.lex_state = 288}, + [213] = {.lex_state = 288}, + [214] = {.lex_state = 288}, + [215] = {.lex_state = 288}, + [216] = {.lex_state = 288}, + [217] = {.lex_state = 288}, + [218] = {.lex_state = 288}, + [219] = {.lex_state = 288}, + [220] = {.lex_state = 288}, + [221] = {.lex_state = 288}, + [222] = {.lex_state = 288}, + [223] = {.lex_state = 288}, + [224] = {.lex_state = 288}, + [225] = {.lex_state = 288}, + [226] = {.lex_state = 288}, + [227] = {.lex_state = 288}, + [228] = {.lex_state = 288}, + [229] = {.lex_state = 288}, + [230] = {.lex_state = 288}, + [231] = {.lex_state = 288}, + [232] = {.lex_state = 288}, + [233] = {.lex_state = 288}, + [234] = {.lex_state = 288}, + [235] = {.lex_state = 288}, + [236] = {.lex_state = 288}, + [237] = {.lex_state = 288}, + [238] = {.lex_state = 288}, + [239] = {.lex_state = 288}, + [240] = {.lex_state = 288}, + [241] = {.lex_state = 288}, + [242] = {.lex_state = 288}, + [243] = {.lex_state = 288}, + [244] = {.lex_state = 288}, + [245] = {.lex_state = 288}, + [246] = {.lex_state = 288}, + [247] = {.lex_state = 288}, + [248] = {.lex_state = 288}, + [249] = {.lex_state = 288}, + [250] = {.lex_state = 288}, + [251] = {.lex_state = 288}, + [252] = {.lex_state = 288}, + [253] = {.lex_state = 288}, + [254] = {.lex_state = 288}, + [255] = {.lex_state = 288}, + [256] = {.lex_state = 288}, + [257] = {.lex_state = 288}, + [258] = {.lex_state = 288}, + [259] = {.lex_state = 288}, + [260] = {.lex_state = 288}, + [261] = {.lex_state = 288}, + [262] = {.lex_state = 288}, + [263] = {.lex_state = 288}, + [264] = {.lex_state = 288}, + [265] = {.lex_state = 288}, + [266] = {.lex_state = 288}, + [267] = {.lex_state = 288}, + [268] = {.lex_state = 288}, + [269] = {.lex_state = 288}, + [270] = {.lex_state = 288}, + [271] = {.lex_state = 288}, + [272] = {.lex_state = 288}, + [273] = {.lex_state = 288}, + [274] = {.lex_state = 288}, + [275] = {.lex_state = 288}, + [276] = {.lex_state = 288}, + [277] = {.lex_state = 288}, + [278] = {.lex_state = 288}, + [279] = {.lex_state = 288}, + [280] = {.lex_state = 288}, + [281] = {.lex_state = 288}, + [282] = {.lex_state = 288}, + [283] = {.lex_state = 288}, + [284] = {.lex_state = 288}, + [285] = {.lex_state = 288}, + [286] = {.lex_state = 288}, + [287] = {.lex_state = 288}, + [288] = {.lex_state = 288}, + [289] = {.lex_state = 288}, + [290] = {.lex_state = 288}, + [291] = {.lex_state = 288}, + [292] = {.lex_state = 288}, + [293] = {.lex_state = 288}, + [294] = {.lex_state = 288}, + [295] = {.lex_state = 288}, + [296] = {.lex_state = 288}, + [297] = {.lex_state = 288}, + [298] = {.lex_state = 288}, + [299] = {.lex_state = 288}, + [300] = {.lex_state = 288}, + [301] = {.lex_state = 288}, + [302] = {.lex_state = 288}, + [303] = {.lex_state = 288}, + [304] = {.lex_state = 288}, + [305] = {.lex_state = 288}, + [306] = {.lex_state = 288}, + [307] = {.lex_state = 288}, + [308] = {.lex_state = 288}, + [309] = {.lex_state = 288}, + [310] = {.lex_state = 288}, + [311] = {.lex_state = 288}, + [312] = {.lex_state = 288}, + [313] = {.lex_state = 288}, + [314] = {.lex_state = 288}, + [315] = {.lex_state = 288}, + [316] = {.lex_state = 288}, + [317] = {.lex_state = 288}, + [318] = {.lex_state = 288}, + [319] = {.lex_state = 288}, + [320] = {.lex_state = 288}, + [321] = {.lex_state = 288}, + [322] = {.lex_state = 288}, + [323] = {.lex_state = 288}, + [324] = {.lex_state = 288}, + [325] = {.lex_state = 288}, + [326] = {.lex_state = 288}, + [327] = {.lex_state = 288}, + [328] = {.lex_state = 288}, + [329] = {.lex_state = 288}, + [330] = {.lex_state = 288}, + [331] = {.lex_state = 288}, + [332] = {.lex_state = 288}, + [333] = {.lex_state = 288}, + [334] = {.lex_state = 288}, + [335] = {.lex_state = 288}, + [336] = {.lex_state = 288}, + [337] = {.lex_state = 288}, + [338] = {.lex_state = 288}, + [339] = {.lex_state = 288}, + [340] = {.lex_state = 288}, + [341] = {.lex_state = 288}, + [342] = {.lex_state = 288}, + [343] = {.lex_state = 288}, + [344] = {.lex_state = 288}, + [345] = {.lex_state = 288}, + [346] = {.lex_state = 288}, + [347] = {.lex_state = 288}, + [348] = {.lex_state = 288}, + [349] = {.lex_state = 288}, + [350] = {.lex_state = 288}, + [351] = {.lex_state = 288}, + [352] = {.lex_state = 288}, + [353] = {.lex_state = 288}, + [354] = {.lex_state = 288}, + [355] = {.lex_state = 288}, + [356] = {.lex_state = 288}, + [357] = {.lex_state = 288}, + [358] = {.lex_state = 288}, + [359] = {.lex_state = 288}, + [360] = {.lex_state = 288}, + [361] = {.lex_state = 288}, + [362] = {.lex_state = 288}, + [363] = {.lex_state = 288}, + [364] = {.lex_state = 288}, + [365] = {.lex_state = 288}, + [366] = {.lex_state = 288}, + [367] = {.lex_state = 288}, + [368] = {.lex_state = 288}, + [369] = {.lex_state = 288}, + [370] = {.lex_state = 288}, + [371] = {.lex_state = 288}, + [372] = {.lex_state = 288}, + [373] = {.lex_state = 288}, + [374] = {.lex_state = 288}, + [375] = {.lex_state = 288}, + [376] = {.lex_state = 288}, + [377] = {.lex_state = 288}, + [378] = {.lex_state = 288}, + [379] = {.lex_state = 288}, + [380] = {.lex_state = 288}, + [381] = {.lex_state = 288}, + [382] = {.lex_state = 288}, + [383] = {.lex_state = 288}, + [384] = {.lex_state = 288}, + [385] = {.lex_state = 288}, + [386] = {.lex_state = 288}, + [387] = {.lex_state = 288}, + [388] = {.lex_state = 288}, + [389] = {.lex_state = 288}, + [390] = {.lex_state = 288}, + [391] = {.lex_state = 288}, + [392] = {.lex_state = 288}, + [393] = {.lex_state = 288}, + [394] = {.lex_state = 288}, + [395] = {.lex_state = 288}, + [396] = {.lex_state = 288}, + [397] = {.lex_state = 288}, + [398] = {.lex_state = 288}, + [399] = {.lex_state = 288}, + [400] = {.lex_state = 288}, + [401] = {.lex_state = 288}, + [402] = {.lex_state = 288}, + [403] = {.lex_state = 288}, + [404] = {.lex_state = 288}, + [405] = {.lex_state = 288}, + [406] = {.lex_state = 288}, + [407] = {.lex_state = 288}, + [408] = {.lex_state = 288}, + [409] = {.lex_state = 288}, + [410] = {.lex_state = 288}, + [411] = {.lex_state = 288}, + [412] = {.lex_state = 288}, + [413] = {.lex_state = 288}, + [414] = {.lex_state = 288}, + [415] = {.lex_state = 288}, + [416] = {.lex_state = 288}, + [417] = {.lex_state = 288}, + [418] = {.lex_state = 288}, + [419] = {.lex_state = 288}, + [420] = {.lex_state = 288}, + [421] = {.lex_state = 288}, + [422] = {.lex_state = 288}, + [423] = {.lex_state = 288}, + [424] = {.lex_state = 288}, + [425] = {.lex_state = 288}, + [426] = {.lex_state = 288}, + [427] = {.lex_state = 288}, + [428] = {.lex_state = 288}, + [429] = {.lex_state = 288}, + [430] = {.lex_state = 288}, + [431] = {.lex_state = 288}, + [432] = {.lex_state = 288}, + [433] = {.lex_state = 288}, + [434] = {.lex_state = 288}, + [435] = {.lex_state = 288}, + [436] = {.lex_state = 288}, + [437] = {.lex_state = 288}, + [438] = {.lex_state = 288}, + [439] = {.lex_state = 288}, + [440] = {.lex_state = 288}, + [441] = {.lex_state = 288}, + [442] = {.lex_state = 288}, + [443] = {.lex_state = 288}, + [444] = {.lex_state = 288}, + [445] = {.lex_state = 288}, + [446] = {.lex_state = 288}, + [447] = {.lex_state = 288}, + [448] = {.lex_state = 288}, + [449] = {.lex_state = 288}, + [450] = {.lex_state = 288}, + [451] = {.lex_state = 288}, + [452] = {.lex_state = 288}, + [453] = {.lex_state = 288}, + [454] = {.lex_state = 288}, + [455] = {.lex_state = 288}, + [456] = {.lex_state = 288}, + [457] = {.lex_state = 288}, + [458] = {.lex_state = 288}, + [459] = {.lex_state = 288}, + [460] = {.lex_state = 288}, + [461] = {.lex_state = 288}, + [462] = {.lex_state = 288}, + [463] = {.lex_state = 288}, + [464] = {.lex_state = 288}, + [465] = {.lex_state = 288}, + [466] = {.lex_state = 288}, + [467] = {.lex_state = 288}, + [468] = {.lex_state = 288}, + [469] = {.lex_state = 288}, + [470] = {.lex_state = 288}, + [471] = {.lex_state = 288}, + [472] = {.lex_state = 288}, + [473] = {.lex_state = 288}, + [474] = {.lex_state = 288}, + [475] = {.lex_state = 288}, + [476] = {.lex_state = 288}, + [477] = {.lex_state = 288}, + [478] = {.lex_state = 288}, + [479] = {.lex_state = 288}, + [480] = {.lex_state = 288}, + [481] = {.lex_state = 288}, + [482] = {.lex_state = 288}, + [483] = {.lex_state = 288}, + [484] = {.lex_state = 288}, + [485] = {.lex_state = 288}, + [486] = {.lex_state = 288}, + [487] = {.lex_state = 288}, + [488] = {.lex_state = 288}, + [489] = {.lex_state = 288}, + [490] = {.lex_state = 288}, + [491] = {.lex_state = 288}, + [492] = {.lex_state = 288}, + [493] = {.lex_state = 288}, + [494] = {.lex_state = 288}, + [495] = {.lex_state = 288}, + [496] = {.lex_state = 288}, + [497] = {.lex_state = 288}, + [498] = {.lex_state = 288}, + [499] = {.lex_state = 288}, + [500] = {.lex_state = 288}, + [501] = {.lex_state = 288}, + [502] = {.lex_state = 288}, + [503] = {.lex_state = 288}, + [504] = {.lex_state = 288}, + [505] = {.lex_state = 288}, + [506] = {.lex_state = 288}, + [507] = {.lex_state = 288}, + [508] = {.lex_state = 288}, + [509] = {.lex_state = 288}, + [510] = {.lex_state = 288}, + [511] = {.lex_state = 288}, + [512] = {.lex_state = 288}, + [513] = {.lex_state = 288}, + [514] = {.lex_state = 288}, + [515] = {.lex_state = 288}, + [516] = {.lex_state = 288}, + [517] = {.lex_state = 288}, + [518] = {.lex_state = 288}, + [519] = {.lex_state = 288}, + [520] = {.lex_state = 288}, + [521] = {.lex_state = 288}, + [522] = {.lex_state = 288}, + [523] = {.lex_state = 288}, + [524] = {.lex_state = 288}, + [525] = {.lex_state = 288}, + [526] = {.lex_state = 288}, + [527] = {.lex_state = 288}, + [528] = {.lex_state = 288}, + [529] = {.lex_state = 288}, + [530] = {.lex_state = 288}, + [531] = {.lex_state = 288}, + [532] = {.lex_state = 288}, + [533] = {.lex_state = 288}, + [534] = {.lex_state = 288}, + [535] = {.lex_state = 288}, + [536] = {.lex_state = 288}, + [537] = {.lex_state = 288}, + [538] = {.lex_state = 288}, + [539] = {.lex_state = 288}, + [540] = {.lex_state = 288}, + [541] = {.lex_state = 288}, + [542] = {.lex_state = 288}, + [543] = {.lex_state = 288}, + [544] = {.lex_state = 288}, + [545] = {.lex_state = 288}, + [546] = {.lex_state = 288}, + [547] = {.lex_state = 288}, + [548] = {.lex_state = 288}, + [549] = {.lex_state = 288}, + [550] = {.lex_state = 288}, + [551] = {.lex_state = 288}, + [552] = {.lex_state = 288}, + [553] = {.lex_state = 288}, + [554] = {.lex_state = 288}, + [555] = {.lex_state = 288}, + [556] = {.lex_state = 288}, + [557] = {.lex_state = 288}, + [558] = {.lex_state = 288}, + [559] = {.lex_state = 288}, + [560] = {.lex_state = 288}, + [561] = {.lex_state = 288}, + [562] = {.lex_state = 288}, + [563] = {.lex_state = 288}, + [564] = {.lex_state = 288}, + [565] = {.lex_state = 288}, + [566] = {.lex_state = 288}, + [567] = {.lex_state = 288}, + [568] = {.lex_state = 288}, + [569] = {.lex_state = 288}, + [570] = {.lex_state = 288}, + [571] = {.lex_state = 288}, + [572] = {.lex_state = 288}, + [573] = {.lex_state = 288}, + [574] = {.lex_state = 288}, + [575] = {.lex_state = 288}, + [576] = {.lex_state = 288}, + [577] = {.lex_state = 288}, + [578] = {.lex_state = 288}, + [579] = {.lex_state = 288}, + [580] = {.lex_state = 288}, + [581] = {.lex_state = 288}, + [582] = {.lex_state = 288}, + [583] = {.lex_state = 288}, + [584] = {.lex_state = 288}, + [585] = {.lex_state = 288}, + [586] = {.lex_state = 288}, + [587] = {.lex_state = 288}, + [588] = {.lex_state = 288}, + [589] = {.lex_state = 288}, + [590] = {.lex_state = 288}, + [591] = {.lex_state = 288}, + [592] = {.lex_state = 288}, + [593] = {.lex_state = 288}, + [594] = {.lex_state = 288}, + [595] = {.lex_state = 288}, + [596] = {.lex_state = 288}, + [597] = {.lex_state = 288}, + [598] = {.lex_state = 288}, + [599] = {.lex_state = 288}, + [600] = {.lex_state = 288}, + [601] = {.lex_state = 288}, + [602] = {.lex_state = 288}, + [603] = {.lex_state = 288}, + [604] = {.lex_state = 288}, + [605] = {.lex_state = 288}, + [606] = {.lex_state = 288}, + [607] = {.lex_state = 288}, + [608] = {.lex_state = 288}, + [609] = {.lex_state = 288}, + [610] = {.lex_state = 288}, + [611] = {.lex_state = 288}, + [612] = {.lex_state = 288}, + [613] = {.lex_state = 288}, + [614] = {.lex_state = 288}, + [615] = {.lex_state = 288}, + [616] = {.lex_state = 288}, + [617] = {.lex_state = 288}, + [618] = {.lex_state = 288}, + [619] = {.lex_state = 288}, + [620] = {.lex_state = 288}, + [621] = {.lex_state = 288}, + [622] = {.lex_state = 288}, + [623] = {.lex_state = 288}, + [624] = {.lex_state = 288}, + [625] = {.lex_state = 288}, + [626] = {.lex_state = 288}, + [627] = {.lex_state = 288}, + [628] = {.lex_state = 288}, + [629] = {.lex_state = 288}, + [630] = {.lex_state = 288}, + [631] = {.lex_state = 288}, + [632] = {.lex_state = 288}, + [633] = {.lex_state = 288}, + [634] = {.lex_state = 288}, + [635] = {.lex_state = 288}, + [636] = {.lex_state = 288}, + [637] = {.lex_state = 288}, + [638] = {.lex_state = 288}, + [639] = {.lex_state = 288}, + [640] = {.lex_state = 288}, + [641] = {.lex_state = 288}, + [642] = {.lex_state = 288}, + [643] = {.lex_state = 288}, + [644] = {.lex_state = 288}, + [645] = {.lex_state = 288}, + [646] = {.lex_state = 288}, + [647] = {.lex_state = 288}, + [648] = {.lex_state = 288}, + [649] = {.lex_state = 288}, + [650] = {.lex_state = 288}, + [651] = {.lex_state = 288}, + [652] = {.lex_state = 288}, + [653] = {.lex_state = 288}, + [654] = {.lex_state = 288}, + [655] = {.lex_state = 288}, + [656] = {.lex_state = 288}, + [657] = {.lex_state = 288}, + [658] = {.lex_state = 288}, + [659] = {.lex_state = 288}, + [660] = {.lex_state = 288}, + [661] = {.lex_state = 288}, + [662] = {.lex_state = 288}, + [663] = {.lex_state = 288}, + [664] = {.lex_state = 288}, + [665] = {.lex_state = 288}, + [666] = {.lex_state = 288}, + [667] = {.lex_state = 288}, + [668] = {.lex_state = 288}, + [669] = {.lex_state = 288}, + [670] = {.lex_state = 288}, + [671] = {.lex_state = 288}, + [672] = {.lex_state = 288}, + [673] = {.lex_state = 288}, + [674] = {.lex_state = 288}, + [675] = {.lex_state = 288}, + [676] = {.lex_state = 288}, + [677] = {.lex_state = 288}, + [678] = {.lex_state = 288}, + [679] = {.lex_state = 288}, + [680] = {.lex_state = 288}, + [681] = {.lex_state = 288}, + [682] = {.lex_state = 288}, + [683] = {.lex_state = 288}, + [684] = {.lex_state = 288}, + [685] = {.lex_state = 288}, + [686] = {.lex_state = 288}, + [687] = {.lex_state = 288}, + [688] = {.lex_state = 288}, + [689] = {.lex_state = 288}, + [690] = {.lex_state = 288}, + [691] = {.lex_state = 288}, + [692] = {.lex_state = 288}, + [693] = {.lex_state = 288}, + [694] = {.lex_state = 288}, + [695] = {.lex_state = 288}, + [696] = {.lex_state = 288}, + [697] = {.lex_state = 288}, + [698] = {.lex_state = 288}, + [699] = {.lex_state = 288}, + [700] = {.lex_state = 288}, + [701] = {.lex_state = 288}, + [702] = {.lex_state = 288}, + [703] = {.lex_state = 288}, + [704] = {.lex_state = 288}, + [705] = {.lex_state = 288}, + [706] = {.lex_state = 288}, + [707] = {.lex_state = 288}, + [708] = {.lex_state = 288}, + [709] = {.lex_state = 288}, + [710] = {.lex_state = 288}, + [711] = {.lex_state = 288}, + [712] = {.lex_state = 288}, + [713] = {.lex_state = 288}, + [714] = {.lex_state = 288}, + [715] = {.lex_state = 288}, + [716] = {.lex_state = 288}, + [717] = {.lex_state = 288}, + [718] = {.lex_state = 288}, + [719] = {.lex_state = 288}, + [720] = {.lex_state = 288}, + [721] = {.lex_state = 288}, + [722] = {.lex_state = 288}, + [723] = {.lex_state = 288}, + [724] = {.lex_state = 288}, + [725] = {.lex_state = 288}, + [726] = {.lex_state = 288}, + [727] = {.lex_state = 288}, + [728] = {.lex_state = 288}, + [729] = {.lex_state = 288}, + [730] = {.lex_state = 288}, + [731] = {.lex_state = 288}, + [732] = {.lex_state = 288}, + [733] = {.lex_state = 288}, + [734] = {.lex_state = 288}, + [735] = {.lex_state = 288}, + [736] = {.lex_state = 288}, + [737] = {.lex_state = 288}, + [738] = {.lex_state = 288}, + [739] = {.lex_state = 288}, + [740] = {.lex_state = 288}, + [741] = {.lex_state = 288}, + [742] = {.lex_state = 288}, + [743] = {.lex_state = 288}, + [744] = {.lex_state = 288}, + [745] = {.lex_state = 288}, + [746] = {.lex_state = 288}, + [747] = {.lex_state = 288}, + [748] = {.lex_state = 288}, + [749] = {.lex_state = 288}, + [750] = {.lex_state = 288}, + [751] = {.lex_state = 288}, + [752] = {.lex_state = 288}, + [753] = {.lex_state = 288}, + [754] = {.lex_state = 288}, + [755] = {.lex_state = 288}, + [756] = {.lex_state = 288}, + [757] = {.lex_state = 288}, + [758] = {.lex_state = 288}, + [759] = {.lex_state = 288}, + [760] = {.lex_state = 288}, + [761] = {.lex_state = 288}, + [762] = {.lex_state = 288}, + [763] = {.lex_state = 288}, + [764] = {.lex_state = 288}, + [765] = {.lex_state = 288}, + [766] = {.lex_state = 288}, + [767] = {.lex_state = 288}, + [768] = {.lex_state = 288}, + [769] = {.lex_state = 288}, + [770] = {.lex_state = 288}, + [771] = {.lex_state = 288}, + [772] = {.lex_state = 288}, + [773] = {.lex_state = 288}, + [774] = {.lex_state = 288}, + [775] = {.lex_state = 288}, + [776] = {.lex_state = 288}, + [777] = {.lex_state = 288}, + [778] = {.lex_state = 288}, + [779] = {.lex_state = 288}, + [780] = {.lex_state = 288}, + [781] = {.lex_state = 288}, + [782] = {.lex_state = 288}, + [783] = {.lex_state = 288}, + [784] = {.lex_state = 288}, + [785] = {.lex_state = 288}, + [786] = {.lex_state = 288}, + [787] = {.lex_state = 288}, + [788] = {.lex_state = 288}, + [789] = {.lex_state = 288}, + [790] = {.lex_state = 288}, + [791] = {.lex_state = 288}, + [792] = {.lex_state = 288}, + [793] = {.lex_state = 288}, + [794] = {.lex_state = 288}, + [795] = {.lex_state = 288}, + [796] = {.lex_state = 288}, + [797] = {.lex_state = 288}, + [798] = {.lex_state = 288}, + [799] = {.lex_state = 288}, + [800] = {.lex_state = 288}, + [801] = {.lex_state = 288}, + [802] = {.lex_state = 288}, + [803] = {.lex_state = 288}, + [804] = {.lex_state = 288}, + [805] = {.lex_state = 288}, + [806] = {.lex_state = 288}, + [807] = {.lex_state = 288}, + [808] = {.lex_state = 288}, + [809] = {.lex_state = 288}, + [810] = {.lex_state = 288}, + [811] = {.lex_state = 288}, + [812] = {.lex_state = 288}, + [813] = {.lex_state = 8}, + [814] = {.lex_state = 8}, + [815] = {.lex_state = 8}, + [816] = {.lex_state = 8}, + [817] = {.lex_state = 8}, + [818] = {.lex_state = 9}, + [819] = {.lex_state = 8}, + [820] = {.lex_state = 8}, + [821] = {.lex_state = 8}, + [822] = {.lex_state = 8}, + [823] = {.lex_state = 8}, + [824] = {.lex_state = 8}, + [825] = {.lex_state = 8}, + [826] = {.lex_state = 8}, + [827] = {.lex_state = 8}, + [828] = {.lex_state = 8}, + [829] = {.lex_state = 8}, + [830] = {.lex_state = 8}, + [831] = {.lex_state = 8}, + [832] = {.lex_state = 8}, + [833] = {.lex_state = 8}, + [834] = {.lex_state = 8}, + [835] = {.lex_state = 8}, + [836] = {.lex_state = 8}, + [837] = {.lex_state = 8}, + [838] = {.lex_state = 8}, + [839] = {.lex_state = 8}, + [840] = {.lex_state = 8}, + [841] = {.lex_state = 8}, + [842] = {.lex_state = 8}, + [843] = {.lex_state = 8}, + [844] = {.lex_state = 8}, + [845] = {.lex_state = 8}, + [846] = {.lex_state = 8}, + [847] = {.lex_state = 8}, + [848] = {.lex_state = 8}, + [849] = {.lex_state = 8}, + [850] = {.lex_state = 8}, + [851] = {.lex_state = 8}, + [852] = {.lex_state = 8}, + [853] = {.lex_state = 8}, + [854] = {.lex_state = 8}, + [855] = {.lex_state = 8}, + [856] = {.lex_state = 8}, + [857] = {.lex_state = 8}, + [858] = {.lex_state = 8}, + [859] = {.lex_state = 8}, + [860] = {.lex_state = 8}, + [861] = {.lex_state = 8}, + [862] = {.lex_state = 8}, + [863] = {.lex_state = 8}, + [864] = {.lex_state = 8}, + [865] = {.lex_state = 8}, + [866] = {.lex_state = 8}, + [867] = {.lex_state = 8}, + [868] = {.lex_state = 8}, + [869] = {.lex_state = 8}, + [870] = {.lex_state = 8}, + [871] = {.lex_state = 8}, + [872] = {.lex_state = 8}, + [873] = {.lex_state = 8}, + [874] = {.lex_state = 8}, + [875] = {.lex_state = 8}, + [876] = {.lex_state = 8}, + [877] = {.lex_state = 8}, + [878] = {.lex_state = 8}, + [879] = {.lex_state = 8}, + [880] = {.lex_state = 8}, + [881] = {.lex_state = 8}, + [882] = {.lex_state = 8}, + [883] = {.lex_state = 8}, + [884] = {.lex_state = 8}, + [885] = {.lex_state = 8}, + [886] = {.lex_state = 8}, + [887] = {.lex_state = 8}, + [888] = {.lex_state = 8}, + [889] = {.lex_state = 8}, + [890] = {.lex_state = 8}, + [891] = {.lex_state = 8}, + [892] = {.lex_state = 8}, + [893] = {.lex_state = 8}, + [894] = {.lex_state = 8}, + [895] = {.lex_state = 8}, + [896] = {.lex_state = 8}, + [897] = {.lex_state = 8}, + [898] = {.lex_state = 8}, + [899] = {.lex_state = 8}, + [900] = {.lex_state = 8}, + [901] = {.lex_state = 8}, + [902] = {.lex_state = 8}, + [903] = {.lex_state = 8}, + [904] = {.lex_state = 8}, + [905] = {.lex_state = 8}, + [906] = {.lex_state = 8}, + [907] = {.lex_state = 8}, + [908] = {.lex_state = 8}, + [909] = {.lex_state = 8}, + [910] = {.lex_state = 8}, + [911] = {.lex_state = 8}, + [912] = {.lex_state = 8}, + [913] = {.lex_state = 8}, + [914] = {.lex_state = 8}, + [915] = {.lex_state = 8}, + [916] = {.lex_state = 8}, + [917] = {.lex_state = 8}, + [918] = {.lex_state = 8}, + [919] = {.lex_state = 8}, + [920] = {.lex_state = 8}, + [921] = {.lex_state = 8}, + [922] = {.lex_state = 8}, + [923] = {.lex_state = 8}, + [924] = {.lex_state = 8}, + [925] = {.lex_state = 8}, + [926] = {.lex_state = 8}, + [927] = {.lex_state = 8}, + [928] = {.lex_state = 8}, + [929] = {.lex_state = 8}, + [930] = {.lex_state = 8}, + [931] = {.lex_state = 8}, + [932] = {.lex_state = 8}, + [933] = {.lex_state = 8}, + [934] = {.lex_state = 8}, + [935] = {.lex_state = 8}, + [936] = {.lex_state = 8}, + [937] = {.lex_state = 8}, + [938] = {.lex_state = 8}, + [939] = {.lex_state = 8}, + [940] = {.lex_state = 8}, [941] = {.lex_state = 13}, - [942] = {.lex_state = 23}, - [943] = {.lex_state = 23}, - [944] = {.lex_state = 23}, - [945] = {.lex_state = 23}, - [946] = {.lex_state = 23}, - [947] = {.lex_state = 23}, - [948] = {.lex_state = 23}, - [949] = {.lex_state = 23}, - [950] = {.lex_state = 23}, - [951] = {.lex_state = 23}, - [952] = {.lex_state = 23}, - [953] = {.lex_state = 23}, - [954] = {.lex_state = 23}, - [955] = {.lex_state = 23}, - [956] = {.lex_state = 23}, - [957] = {.lex_state = 23}, - [958] = {.lex_state = 23}, - [959] = {.lex_state = 23}, - [960] = {.lex_state = 23}, - [961] = {.lex_state = 14}, - [962] = {.lex_state = 14}, - [963] = {.lex_state = 26}, - [964] = {.lex_state = 26}, - [965] = {.lex_state = 26}, - [966] = {.lex_state = 26}, - [967] = {.lex_state = 26}, - [968] = {.lex_state = 26}, - [969] = {.lex_state = 26}, - [970] = {.lex_state = 26}, - [971] = {.lex_state = 26}, - [972] = {.lex_state = 26}, - [973] = {.lex_state = 26}, - [974] = {.lex_state = 26}, - [975] = {.lex_state = 26}, - [976] = {.lex_state = 26}, - [977] = {.lex_state = 26}, - [978] = {.lex_state = 26}, - [979] = {.lex_state = 26}, - [980] = {.lex_state = 26}, - [981] = {.lex_state = 26}, - [982] = {.lex_state = 26}, - [983] = {.lex_state = 26}, - [984] = {.lex_state = 26}, - [985] = {.lex_state = 26}, - [986] = {.lex_state = 26}, - [987] = {.lex_state = 26}, - [988] = {.lex_state = 26}, - [989] = {.lex_state = 26}, - [990] = {.lex_state = 26}, - [991] = {.lex_state = 26}, - [992] = {.lex_state = 26}, - [993] = {.lex_state = 26}, - [994] = {.lex_state = 26}, - [995] = {.lex_state = 26}, - [996] = {.lex_state = 26}, - [997] = {.lex_state = 14}, - [998] = {.lex_state = 26}, - [999] = {.lex_state = 26}, - [1000] = {.lex_state = 26}, - [1001] = {.lex_state = 26}, - [1002] = {.lex_state = 26}, - [1003] = {.lex_state = 26}, - [1004] = {.lex_state = 26}, - [1005] = {.lex_state = 26}, - [1006] = {.lex_state = 14}, - [1007] = {.lex_state = 26}, - [1008] = {.lex_state = 26}, - [1009] = {.lex_state = 14}, - [1010] = {.lex_state = 26}, - [1011] = {.lex_state = 26}, - [1012] = {.lex_state = 14}, - [1013] = {.lex_state = 26}, - [1014] = {.lex_state = 26}, - [1015] = {.lex_state = 14}, - [1016] = {.lex_state = 26}, - [1017] = {.lex_state = 14}, - [1018] = {.lex_state = 26}, - [1019] = {.lex_state = 26}, - [1020] = {.lex_state = 14}, - [1021] = {.lex_state = 26}, - [1022] = {.lex_state = 14}, - [1023] = {.lex_state = 14}, - [1024] = {.lex_state = 14}, - [1025] = {.lex_state = 26}, - [1026] = {.lex_state = 26}, - [1027] = {.lex_state = 26}, - [1028] = {.lex_state = 26}, - [1029] = {.lex_state = 26}, - [1030] = {.lex_state = 14}, - [1031] = {.lex_state = 14}, - [1032] = {.lex_state = 26}, - [1033] = {.lex_state = 14}, - [1034] = {.lex_state = 14}, - [1035] = {.lex_state = 14}, - [1036] = {.lex_state = 26}, - [1037] = {.lex_state = 14}, - [1038] = {.lex_state = 26}, - [1039] = {.lex_state = 14}, - [1040] = {.lex_state = 14}, - [1041] = {.lex_state = 26}, - [1042] = {.lex_state = 14}, - [1043] = {.lex_state = 14}, - [1044] = {.lex_state = 26}, - [1045] = {.lex_state = 14}, - [1046] = {.lex_state = 14}, - [1047] = {.lex_state = 26}, - [1048] = {.lex_state = 14}, - [1049] = {.lex_state = 26}, - [1050] = {.lex_state = 26}, - [1051] = {.lex_state = 26}, - [1052] = {.lex_state = 26}, - [1053] = {.lex_state = 26}, - [1054] = {.lex_state = 14}, - [1055] = {.lex_state = 14}, - [1056] = {.lex_state = 26}, - [1057] = {.lex_state = 14}, - [1058] = {.lex_state = 14}, - [1059] = {.lex_state = 14}, - [1060] = {.lex_state = 14}, - [1061] = {.lex_state = 26}, - [1062] = {.lex_state = 14}, - [1063] = {.lex_state = 14}, - [1064] = {.lex_state = 26}, - [1065] = {.lex_state = 14}, - [1066] = {.lex_state = 14}, - [1067] = {.lex_state = 14}, - [1068] = {.lex_state = 14}, - [1069] = {.lex_state = 14}, - [1070] = {.lex_state = 14}, - [1071] = {.lex_state = 14}, - [1072] = {.lex_state = 14}, - [1073] = {.lex_state = 14}, - [1074] = {.lex_state = 14}, - [1075] = {.lex_state = 14}, - [1076] = {.lex_state = 14}, - [1077] = {.lex_state = 14}, - [1078] = {.lex_state = 14}, - [1079] = {.lex_state = 26}, - [1080] = {.lex_state = 26}, - [1081] = {.lex_state = 14}, - [1082] = {.lex_state = 14}, - [1083] = {.lex_state = 14}, - [1084] = {.lex_state = 26}, - [1085] = {.lex_state = 14}, - [1086] = {.lex_state = 14}, - [1087] = {.lex_state = 14}, - [1088] = {.lex_state = 14}, - [1089] = {.lex_state = 26}, - [1090] = {.lex_state = 14}, - [1091] = {.lex_state = 14}, - [1092] = {.lex_state = 14}, - [1093] = {.lex_state = 14}, - [1094] = {.lex_state = 14}, - [1095] = {.lex_state = 14}, - [1096] = {.lex_state = 14}, - [1097] = {.lex_state = 14}, - [1098] = {.lex_state = 14}, - [1099] = {.lex_state = 14}, - [1100] = {.lex_state = 14}, - [1101] = {.lex_state = 14}, - [1102] = {.lex_state = 14}, - [1103] = {.lex_state = 14}, - [1104] = {.lex_state = 14}, - [1105] = {.lex_state = 14}, - [1106] = {.lex_state = 14}, - [1107] = {.lex_state = 14}, - [1108] = {.lex_state = 14}, - [1109] = {.lex_state = 14}, - [1110] = {.lex_state = 26}, - [1111] = {.lex_state = 14}, - [1112] = {.lex_state = 14}, - [1113] = {.lex_state = 26}, - [1114] = {.lex_state = 14}, - [1115] = {.lex_state = 14}, - [1116] = {.lex_state = 14}, - [1117] = {.lex_state = 14}, - [1118] = {.lex_state = 14}, - [1119] = {.lex_state = 14}, - [1120] = {.lex_state = 26}, - [1121] = {.lex_state = 14}, - [1122] = {.lex_state = 14}, - [1123] = {.lex_state = 14}, - [1124] = {.lex_state = 14}, - [1125] = {.lex_state = 14}, - [1126] = {.lex_state = 14}, - [1127] = {.lex_state = 14}, - [1128] = {.lex_state = 14}, - [1129] = {.lex_state = 14}, - [1130] = {.lex_state = 14}, - [1131] = {.lex_state = 14}, - [1132] = {.lex_state = 14}, - [1133] = {.lex_state = 14}, - [1134] = {.lex_state = 14}, - [1135] = {.lex_state = 26}, - [1136] = {.lex_state = 26}, - [1137] = {.lex_state = 14}, - [1138] = {.lex_state = 14}, - [1139] = {.lex_state = 14}, - [1140] = {.lex_state = 14}, - [1141] = {.lex_state = 14}, - [1142] = {.lex_state = 14}, - [1143] = {.lex_state = 14}, - [1144] = {.lex_state = 26}, - [1145] = {.lex_state = 14}, - [1146] = {.lex_state = 14}, - [1147] = {.lex_state = 14}, - [1148] = {.lex_state = 14}, - [1149] = {.lex_state = 14}, - [1150] = {.lex_state = 14}, - [1151] = {.lex_state = 14}, - [1152] = {.lex_state = 14}, - [1153] = {.lex_state = 14}, - [1154] = {.lex_state = 14}, - [1155] = {.lex_state = 14}, - [1156] = {.lex_state = 14}, - [1157] = {.lex_state = 14}, - [1158] = {.lex_state = 14}, - [1159] = {.lex_state = 14}, - [1160] = {.lex_state = 14}, - [1161] = {.lex_state = 14}, - [1162] = {.lex_state = 14}, - [1163] = {.lex_state = 23}, - [1164] = {.lex_state = 23}, - [1165] = {.lex_state = 23}, - [1166] = {.lex_state = 23}, - [1167] = {.lex_state = 23}, - [1168] = {.lex_state = 23}, - [1169] = {.lex_state = 23}, - [1170] = {.lex_state = 23}, - [1171] = {.lex_state = 23}, - [1172] = {.lex_state = 23}, - [1173] = {.lex_state = 23}, - [1174] = {.lex_state = 23}, - [1175] = {.lex_state = 23}, - [1176] = {.lex_state = 23}, - [1177] = {.lex_state = 23}, - [1178] = {.lex_state = 23}, - [1179] = {.lex_state = 23}, - [1180] = {.lex_state = 23}, - [1181] = {.lex_state = 23}, - [1182] = {.lex_state = 23}, - [1183] = {.lex_state = 23}, - [1184] = {.lex_state = 23}, - [1185] = {.lex_state = 23}, - [1186] = {.lex_state = 23}, - [1187] = {.lex_state = 23}, - [1188] = {.lex_state = 23}, - [1189] = {.lex_state = 23}, - [1190] = {.lex_state = 23}, - [1191] = {.lex_state = 23}, - [1192] = {.lex_state = 23}, - [1193] = {.lex_state = 23}, - [1194] = {.lex_state = 23}, - [1195] = {.lex_state = 23}, - [1196] = {.lex_state = 23}, - [1197] = {.lex_state = 23}, - [1198] = {.lex_state = 23}, - [1199] = {.lex_state = 23}, - [1200] = {.lex_state = 23}, - [1201] = {.lex_state = 23}, - [1202] = {.lex_state = 23}, - [1203] = {.lex_state = 23}, - [1204] = {.lex_state = 23}, - [1205] = {.lex_state = 23}, - [1206] = {.lex_state = 23}, - [1207] = {.lex_state = 23}, - [1208] = {.lex_state = 23}, - [1209] = {.lex_state = 23}, - [1210] = {.lex_state = 23}, - [1211] = {.lex_state = 23}, - [1212] = {.lex_state = 23}, - [1213] = {.lex_state = 23}, - [1214] = {.lex_state = 23}, - [1215] = {.lex_state = 23}, - [1216] = {.lex_state = 23}, - [1217] = {.lex_state = 23}, - [1218] = {.lex_state = 23}, - [1219] = {.lex_state = 23}, - [1220] = {.lex_state = 23}, - [1221] = {.lex_state = 23}, - [1222] = {.lex_state = 23}, - [1223] = {.lex_state = 23}, - [1224] = {.lex_state = 23}, - [1225] = {.lex_state = 23}, - [1226] = {.lex_state = 23}, - [1227] = {.lex_state = 23}, - [1228] = {.lex_state = 23}, - [1229] = {.lex_state = 23}, - [1230] = {.lex_state = 23}, - [1231] = {.lex_state = 23}, - [1232] = {.lex_state = 23}, - [1233] = {.lex_state = 23}, - [1234] = {.lex_state = 23}, - [1235] = {.lex_state = 23}, - [1236] = {.lex_state = 23}, - [1237] = {.lex_state = 23}, - [1238] = {.lex_state = 23}, - [1239] = {.lex_state = 23}, - [1240] = {.lex_state = 23}, - [1241] = {.lex_state = 23}, - [1242] = {.lex_state = 23}, - [1243] = {.lex_state = 23}, - [1244] = {.lex_state = 23}, - [1245] = {.lex_state = 23}, - [1246] = {.lex_state = 23}, - [1247] = {.lex_state = 23}, - [1248] = {.lex_state = 23}, - [1249] = {.lex_state = 23}, - [1250] = {.lex_state = 23}, - [1251] = {.lex_state = 23}, - [1252] = {.lex_state = 23}, - [1253] = {.lex_state = 23}, - [1254] = {.lex_state = 23}, - [1255] = {.lex_state = 23}, - [1256] = {.lex_state = 23}, - [1257] = {.lex_state = 23}, - [1258] = {.lex_state = 23}, - [1259] = {.lex_state = 23}, - [1260] = {.lex_state = 23}, - [1261] = {.lex_state = 23}, - [1262] = {.lex_state = 23}, - [1263] = {.lex_state = 23}, - [1264] = {.lex_state = 23}, - [1265] = {.lex_state = 23}, - [1266] = {.lex_state = 23}, - [1267] = {.lex_state = 23}, - [1268] = {.lex_state = 23}, - [1269] = {.lex_state = 23}, - [1270] = {.lex_state = 23}, - [1271] = {.lex_state = 23}, - [1272] = {.lex_state = 23}, - [1273] = {.lex_state = 23}, - [1274] = {.lex_state = 23}, - [1275] = {.lex_state = 23}, - [1276] = {.lex_state = 23}, - [1277] = {.lex_state = 23}, - [1278] = {.lex_state = 23}, - [1279] = {.lex_state = 23}, - [1280] = {.lex_state = 23}, - [1281] = {.lex_state = 23}, - [1282] = {.lex_state = 23}, - [1283] = {.lex_state = 23}, - [1284] = {.lex_state = 23}, - [1285] = {.lex_state = 23}, - [1286] = {.lex_state = 23}, - [1287] = {.lex_state = 23}, - [1288] = {.lex_state = 12}, - [1289] = {.lex_state = 12}, - [1290] = {.lex_state = 12}, - [1291] = {.lex_state = 12}, - [1292] = {.lex_state = 12}, - [1293] = {.lex_state = 12}, - [1294] = {.lex_state = 12}, - [1295] = {.lex_state = 12}, - [1296] = {.lex_state = 12}, - [1297] = {.lex_state = 12}, + [942] = {.lex_state = 22}, + [943] = {.lex_state = 22}, + [944] = {.lex_state = 22}, + [945] = {.lex_state = 22}, + [946] = {.lex_state = 22}, + [947] = {.lex_state = 22}, + [948] = {.lex_state = 22}, + [949] = {.lex_state = 22}, + [950] = {.lex_state = 22}, + [951] = {.lex_state = 22}, + [952] = {.lex_state = 12}, + [953] = {.lex_state = 22}, + [954] = {.lex_state = 22}, + [955] = {.lex_state = 22}, + [956] = {.lex_state = 22}, + [957] = {.lex_state = 22}, + [958] = {.lex_state = 22}, + [959] = {.lex_state = 22}, + [960] = {.lex_state = 22}, + [961] = {.lex_state = 22}, + [962] = {.lex_state = 13}, + [963] = {.lex_state = 13}, + [964] = {.lex_state = 27}, + [965] = {.lex_state = 27}, + [966] = {.lex_state = 13}, + [967] = {.lex_state = 27}, + [968] = {.lex_state = 13}, + [969] = {.lex_state = 27}, + [970] = {.lex_state = 27}, + [971] = {.lex_state = 27}, + [972] = {.lex_state = 27}, + [973] = {.lex_state = 13}, + [974] = {.lex_state = 13}, + [975] = {.lex_state = 13}, + [976] = {.lex_state = 27}, + [977] = {.lex_state = 13}, + [978] = {.lex_state = 13}, + [979] = {.lex_state = 27}, + [980] = {.lex_state = 27}, + [981] = {.lex_state = 13}, + [982] = {.lex_state = 27}, + [983] = {.lex_state = 13}, + [984] = {.lex_state = 13}, + [985] = {.lex_state = 13}, + [986] = {.lex_state = 13}, + [987] = {.lex_state = 13}, + [988] = {.lex_state = 27}, + [989] = {.lex_state = 13}, + [990] = {.lex_state = 13}, + [991] = {.lex_state = 13}, + [992] = {.lex_state = 13}, + [993] = {.lex_state = 27}, + [994] = {.lex_state = 27}, + [995] = {.lex_state = 27}, + [996] = {.lex_state = 13}, + [997] = {.lex_state = 27}, + [998] = {.lex_state = 13}, + [999] = {.lex_state = 27}, + [1000] = {.lex_state = 13}, + [1001] = {.lex_state = 27}, + [1002] = {.lex_state = 27}, + [1003] = {.lex_state = 13}, + [1004] = {.lex_state = 27}, + [1005] = {.lex_state = 13}, + [1006] = {.lex_state = 27}, + [1007] = {.lex_state = 13}, + [1008] = {.lex_state = 13}, + [1009] = {.lex_state = 27}, + [1010] = {.lex_state = 27}, + [1011] = {.lex_state = 13}, + [1012] = {.lex_state = 13}, + [1013] = {.lex_state = 27}, + [1014] = {.lex_state = 13}, + [1015] = {.lex_state = 13}, + [1016] = {.lex_state = 13}, + [1017] = {.lex_state = 13}, + [1018] = {.lex_state = 13}, + [1019] = {.lex_state = 13}, + [1020] = {.lex_state = 13}, + [1021] = {.lex_state = 27}, + [1022] = {.lex_state = 13}, + [1023] = {.lex_state = 13}, + [1024] = {.lex_state = 13}, + [1025] = {.lex_state = 13}, + [1026] = {.lex_state = 13}, + [1027] = {.lex_state = 13}, + [1028] = {.lex_state = 13}, + [1029] = {.lex_state = 13}, + [1030] = {.lex_state = 13}, + [1031] = {.lex_state = 13}, + [1032] = {.lex_state = 13}, + [1033] = {.lex_state = 13}, + [1034] = {.lex_state = 13}, + [1035] = {.lex_state = 13}, + [1036] = {.lex_state = 13}, + [1037] = {.lex_state = 13}, + [1038] = {.lex_state = 13}, + [1039] = {.lex_state = 13}, + [1040] = {.lex_state = 13}, + [1041] = {.lex_state = 13}, + [1042] = {.lex_state = 13}, + [1043] = {.lex_state = 13}, + [1044] = {.lex_state = 13}, + [1045] = {.lex_state = 27}, + [1046] = {.lex_state = 27}, + [1047] = {.lex_state = 27}, + [1048] = {.lex_state = 13}, + [1049] = {.lex_state = 13}, + [1050] = {.lex_state = 27}, + [1051] = {.lex_state = 27}, + [1052] = {.lex_state = 13}, + [1053] = {.lex_state = 13}, + [1054] = {.lex_state = 13}, + [1055] = {.lex_state = 13}, + [1056] = {.lex_state = 27}, + [1057] = {.lex_state = 13}, + [1058] = {.lex_state = 27}, + [1059] = {.lex_state = 27}, + [1060] = {.lex_state = 13}, + [1061] = {.lex_state = 13}, + [1062] = {.lex_state = 13}, + [1063] = {.lex_state = 13}, + [1064] = {.lex_state = 13}, + [1065] = {.lex_state = 27}, + [1066] = {.lex_state = 13}, + [1067] = {.lex_state = 13}, + [1068] = {.lex_state = 13}, + [1069] = {.lex_state = 13}, + [1070] = {.lex_state = 13}, + [1071] = {.lex_state = 13}, + [1072] = {.lex_state = 13}, + [1073] = {.lex_state = 13}, + [1074] = {.lex_state = 13}, + [1075] = {.lex_state = 13}, + [1076] = {.lex_state = 13}, + [1077] = {.lex_state = 13}, + [1078] = {.lex_state = 13}, + [1079] = {.lex_state = 13}, + [1080] = {.lex_state = 13}, + [1081] = {.lex_state = 13}, + [1082] = {.lex_state = 13}, + [1083] = {.lex_state = 13}, + [1084] = {.lex_state = 13}, + [1085] = {.lex_state = 13}, + [1086] = {.lex_state = 13}, + [1087] = {.lex_state = 13}, + [1088] = {.lex_state = 13}, + [1089] = {.lex_state = 13}, + [1090] = {.lex_state = 27}, + [1091] = {.lex_state = 27}, + [1092] = {.lex_state = 27}, + [1093] = {.lex_state = 13}, + [1094] = {.lex_state = 13}, + [1095] = {.lex_state = 13}, + [1096] = {.lex_state = 13}, + [1097] = {.lex_state = 13}, + [1098] = {.lex_state = 13}, + [1099] = {.lex_state = 13}, + [1100] = {.lex_state = 13}, + [1101] = {.lex_state = 13}, + [1102] = {.lex_state = 13}, + [1103] = {.lex_state = 13}, + [1104] = {.lex_state = 13}, + [1105] = {.lex_state = 13}, + [1106] = {.lex_state = 13}, + [1107] = {.lex_state = 13}, + [1108] = {.lex_state = 27}, + [1109] = {.lex_state = 27}, + [1110] = {.lex_state = 13}, + [1111] = {.lex_state = 13}, + [1112] = {.lex_state = 13}, + [1113] = {.lex_state = 13}, + [1114] = {.lex_state = 13}, + [1115] = {.lex_state = 13}, + [1116] = {.lex_state = 13}, + [1117] = {.lex_state = 13}, + [1118] = {.lex_state = 27}, + [1119] = {.lex_state = 13}, + [1120] = {.lex_state = 27}, + [1121] = {.lex_state = 27}, + [1122] = {.lex_state = 27}, + [1123] = {.lex_state = 27}, + [1124] = {.lex_state = 27}, + [1125] = {.lex_state = 27}, + [1126] = {.lex_state = 27}, + [1127] = {.lex_state = 27}, + [1128] = {.lex_state = 27}, + [1129] = {.lex_state = 27}, + [1130] = {.lex_state = 27}, + [1131] = {.lex_state = 27}, + [1132] = {.lex_state = 27}, + [1133] = {.lex_state = 27}, + [1134] = {.lex_state = 13}, + [1135] = {.lex_state = 27}, + [1136] = {.lex_state = 27}, + [1137] = {.lex_state = 27}, + [1138] = {.lex_state = 27}, + [1139] = {.lex_state = 27}, + [1140] = {.lex_state = 27}, + [1141] = {.lex_state = 27}, + [1142] = {.lex_state = 27}, + [1143] = {.lex_state = 27}, + [1144] = {.lex_state = 13}, + [1145] = {.lex_state = 27}, + [1146] = {.lex_state = 27}, + [1147] = {.lex_state = 27}, + [1148] = {.lex_state = 13}, + [1149] = {.lex_state = 13}, + [1150] = {.lex_state = 27}, + [1151] = {.lex_state = 27}, + [1152] = {.lex_state = 27}, + [1153] = {.lex_state = 27}, + [1154] = {.lex_state = 27}, + [1155] = {.lex_state = 27}, + [1156] = {.lex_state = 27}, + [1157] = {.lex_state = 27}, + [1158] = {.lex_state = 27}, + [1159] = {.lex_state = 27}, + [1160] = {.lex_state = 27}, + [1161] = {.lex_state = 27}, + [1162] = {.lex_state = 27}, + [1163] = {.lex_state = 27}, + [1164] = {.lex_state = 27}, + [1165] = {.lex_state = 22}, + [1166] = {.lex_state = 22}, + [1167] = {.lex_state = 22}, + [1168] = {.lex_state = 22}, + [1169] = {.lex_state = 22}, + [1170] = {.lex_state = 22}, + [1171] = {.lex_state = 22}, + [1172] = {.lex_state = 22}, + [1173] = {.lex_state = 22}, + [1174] = {.lex_state = 22}, + [1175] = {.lex_state = 22}, + [1176] = {.lex_state = 22}, + [1177] = {.lex_state = 22}, + [1178] = {.lex_state = 22}, + [1179] = {.lex_state = 22}, + [1180] = {.lex_state = 22}, + [1181] = {.lex_state = 22}, + [1182] = {.lex_state = 22}, + [1183] = {.lex_state = 22}, + [1184] = {.lex_state = 22}, + [1185] = {.lex_state = 22}, + [1186] = {.lex_state = 22}, + [1187] = {.lex_state = 22}, + [1188] = {.lex_state = 22}, + [1189] = {.lex_state = 22}, + [1190] = {.lex_state = 22}, + [1191] = {.lex_state = 22}, + [1192] = {.lex_state = 22}, + [1193] = {.lex_state = 22}, + [1194] = {.lex_state = 22}, + [1195] = {.lex_state = 22}, + [1196] = {.lex_state = 22}, + [1197] = {.lex_state = 22}, + [1198] = {.lex_state = 22}, + [1199] = {.lex_state = 22}, + [1200] = {.lex_state = 22}, + [1201] = {.lex_state = 22}, + [1202] = {.lex_state = 22}, + [1203] = {.lex_state = 22}, + [1204] = {.lex_state = 22}, + [1205] = {.lex_state = 22}, + [1206] = {.lex_state = 22}, + [1207] = {.lex_state = 22}, + [1208] = {.lex_state = 22}, + [1209] = {.lex_state = 22}, + [1210] = {.lex_state = 22}, + [1211] = {.lex_state = 22}, + [1212] = {.lex_state = 22}, + [1213] = {.lex_state = 22}, + [1214] = {.lex_state = 22}, + [1215] = {.lex_state = 22}, + [1216] = {.lex_state = 22}, + [1217] = {.lex_state = 22}, + [1218] = {.lex_state = 22}, + [1219] = {.lex_state = 22}, + [1220] = {.lex_state = 22}, + [1221] = {.lex_state = 22}, + [1222] = {.lex_state = 22}, + [1223] = {.lex_state = 22}, + [1224] = {.lex_state = 22}, + [1225] = {.lex_state = 22}, + [1226] = {.lex_state = 22}, + [1227] = {.lex_state = 22}, + [1228] = {.lex_state = 22}, + [1229] = {.lex_state = 22}, + [1230] = {.lex_state = 22}, + [1231] = {.lex_state = 22}, + [1232] = {.lex_state = 22}, + [1233] = {.lex_state = 22}, + [1234] = {.lex_state = 22}, + [1235] = {.lex_state = 22}, + [1236] = {.lex_state = 22}, + [1237] = {.lex_state = 22}, + [1238] = {.lex_state = 22}, + [1239] = {.lex_state = 22}, + [1240] = {.lex_state = 22}, + [1241] = {.lex_state = 22}, + [1242] = {.lex_state = 22}, + [1243] = {.lex_state = 22}, + [1244] = {.lex_state = 22}, + [1245] = {.lex_state = 22}, + [1246] = {.lex_state = 22}, + [1247] = {.lex_state = 22}, + [1248] = {.lex_state = 22}, + [1249] = {.lex_state = 22}, + [1250] = {.lex_state = 22}, + [1251] = {.lex_state = 22}, + [1252] = {.lex_state = 22}, + [1253] = {.lex_state = 22}, + [1254] = {.lex_state = 22}, + [1255] = {.lex_state = 22}, + [1256] = {.lex_state = 22}, + [1257] = {.lex_state = 22}, + [1258] = {.lex_state = 22}, + [1259] = {.lex_state = 22}, + [1260] = {.lex_state = 22}, + [1261] = {.lex_state = 22}, + [1262] = {.lex_state = 22}, + [1263] = {.lex_state = 22}, + [1264] = {.lex_state = 22}, + [1265] = {.lex_state = 22}, + [1266] = {.lex_state = 22}, + [1267] = {.lex_state = 22}, + [1268] = {.lex_state = 22}, + [1269] = {.lex_state = 22}, + [1270] = {.lex_state = 22}, + [1271] = {.lex_state = 22}, + [1272] = {.lex_state = 22}, + [1273] = {.lex_state = 22}, + [1274] = {.lex_state = 22}, + [1275] = {.lex_state = 22}, + [1276] = {.lex_state = 22}, + [1277] = {.lex_state = 22}, + [1278] = {.lex_state = 22}, + [1279] = {.lex_state = 22}, + [1280] = {.lex_state = 22}, + [1281] = {.lex_state = 22}, + [1282] = {.lex_state = 22}, + [1283] = {.lex_state = 22}, + [1284] = {.lex_state = 22}, + [1285] = {.lex_state = 22}, + [1286] = {.lex_state = 22}, + [1287] = {.lex_state = 22}, + [1288] = {.lex_state = 22}, + [1289] = {.lex_state = 22}, + [1290] = {.lex_state = 22}, + [1291] = {.lex_state = 11}, + [1292] = {.lex_state = 11}, + [1293] = {.lex_state = 11}, + [1294] = {.lex_state = 11}, + [1295] = {.lex_state = 11}, + [1296] = {.lex_state = 11}, + [1297] = {.lex_state = 11}, [1298] = {.lex_state = 11}, - [1299] = {.lex_state = 12}, - [1300] = {.lex_state = 12}, - [1301] = {.lex_state = 12}, - [1302] = {.lex_state = 12}, - [1303] = {.lex_state = 12}, - [1304] = {.lex_state = 12}, - [1305] = {.lex_state = 12}, - [1306] = {.lex_state = 12}, - [1307] = {.lex_state = 12}, - [1308] = {.lex_state = 12}, - [1309] = {.lex_state = 12}, - [1310] = {.lex_state = 12}, - [1311] = {.lex_state = 12}, - [1312] = {.lex_state = 12}, - [1313] = {.lex_state = 12}, - [1314] = {.lex_state = 12}, - [1315] = {.lex_state = 12}, - [1316] = {.lex_state = 12}, - [1317] = {.lex_state = 12}, - [1318] = {.lex_state = 12}, - [1319] = {.lex_state = 12}, - [1320] = {.lex_state = 12}, - [1321] = {.lex_state = 12}, - [1322] = {.lex_state = 12}, - [1323] = {.lex_state = 12}, - [1324] = {.lex_state = 12}, - [1325] = {.lex_state = 12}, - [1326] = {.lex_state = 12}, - [1327] = {.lex_state = 12}, - [1328] = {.lex_state = 12}, - [1329] = {.lex_state = 12}, - [1330] = {.lex_state = 12}, - [1331] = {.lex_state = 12}, - [1332] = {.lex_state = 12}, - [1333] = {.lex_state = 12}, - [1334] = {.lex_state = 12}, - [1335] = {.lex_state = 12}, - [1336] = {.lex_state = 12}, - [1337] = {.lex_state = 12}, - [1338] = {.lex_state = 12}, - [1339] = {.lex_state = 12}, - [1340] = {.lex_state = 12}, - [1341] = {.lex_state = 12}, - [1342] = {.lex_state = 12}, - [1343] = {.lex_state = 12}, - [1344] = {.lex_state = 12}, - [1345] = {.lex_state = 12}, - [1346] = {.lex_state = 12}, - [1347] = {.lex_state = 12}, - [1348] = {.lex_state = 12}, - [1349] = {.lex_state = 12}, - [1350] = {.lex_state = 12}, - [1351] = {.lex_state = 12}, - [1352] = {.lex_state = 12}, - [1353] = {.lex_state = 12}, - [1354] = {.lex_state = 12}, - [1355] = {.lex_state = 12}, - [1356] = {.lex_state = 12}, - [1357] = {.lex_state = 12}, - [1358] = {.lex_state = 12}, - [1359] = {.lex_state = 12}, - [1360] = {.lex_state = 12}, - [1361] = {.lex_state = 12}, - [1362] = {.lex_state = 12}, - [1363] = {.lex_state = 12}, - [1364] = {.lex_state = 12}, - [1365] = {.lex_state = 12}, - [1366] = {.lex_state = 12}, - [1367] = {.lex_state = 12}, - [1368] = {.lex_state = 12}, - [1369] = {.lex_state = 12}, - [1370] = {.lex_state = 12}, - [1371] = {.lex_state = 12}, - [1372] = {.lex_state = 12}, - [1373] = {.lex_state = 12}, - [1374] = {.lex_state = 12}, - [1375] = {.lex_state = 12}, - [1376] = {.lex_state = 12}, - [1377] = {.lex_state = 12}, - [1378] = {.lex_state = 12}, - [1379] = {.lex_state = 12}, - [1380] = {.lex_state = 12}, - [1381] = {.lex_state = 12}, - [1382] = {.lex_state = 12}, - [1383] = {.lex_state = 12}, - [1384] = {.lex_state = 12}, - [1385] = {.lex_state = 12}, - [1386] = {.lex_state = 12}, - [1387] = {.lex_state = 12}, - [1388] = {.lex_state = 12}, - [1389] = {.lex_state = 12}, - [1390] = {.lex_state = 12}, - [1391] = {.lex_state = 12}, - [1392] = {.lex_state = 12}, - [1393] = {.lex_state = 12}, - [1394] = {.lex_state = 12}, - [1395] = {.lex_state = 12}, - [1396] = {.lex_state = 12}, - [1397] = {.lex_state = 12}, - [1398] = {.lex_state = 12}, - [1399] = {.lex_state = 12}, - [1400] = {.lex_state = 12}, - [1401] = {.lex_state = 12}, - [1402] = {.lex_state = 12}, - [1403] = {.lex_state = 12}, - [1404] = {.lex_state = 12}, - [1405] = {.lex_state = 12}, - [1406] = {.lex_state = 12}, - [1407] = {.lex_state = 12}, - [1408] = {.lex_state = 12}, - [1409] = {.lex_state = 12}, - [1410] = {.lex_state = 12}, - [1411] = {.lex_state = 12}, - [1412] = {.lex_state = 12}, - [1413] = {.lex_state = 12}, - [1414] = {.lex_state = 12}, - [1415] = {.lex_state = 12}, - [1416] = {.lex_state = 12}, - [1417] = {.lex_state = 12}, - [1418] = {.lex_state = 12}, - [1419] = {.lex_state = 12}, - [1420] = {.lex_state = 1}, - [1421] = {.lex_state = 1}, - [1422] = {.lex_state = 1}, - [1423] = {.lex_state = 1}, + [1299] = {.lex_state = 11}, + [1300] = {.lex_state = 11}, + [1301] = {.lex_state = 10}, + [1302] = {.lex_state = 11}, + [1303] = {.lex_state = 11}, + [1304] = {.lex_state = 11}, + [1305] = {.lex_state = 11}, + [1306] = {.lex_state = 11}, + [1307] = {.lex_state = 11}, + [1308] = {.lex_state = 11}, + [1309] = {.lex_state = 11}, + [1310] = {.lex_state = 11}, + [1311] = {.lex_state = 11}, + [1312] = {.lex_state = 11}, + [1313] = {.lex_state = 11}, + [1314] = {.lex_state = 11}, + [1315] = {.lex_state = 11}, + [1316] = {.lex_state = 11}, + [1317] = {.lex_state = 11}, + [1318] = {.lex_state = 11}, + [1319] = {.lex_state = 11}, + [1320] = {.lex_state = 11}, + [1321] = {.lex_state = 11}, + [1322] = {.lex_state = 11}, + [1323] = {.lex_state = 11}, + [1324] = {.lex_state = 11}, + [1325] = {.lex_state = 11}, + [1326] = {.lex_state = 11}, + [1327] = {.lex_state = 11}, + [1328] = {.lex_state = 11}, + [1329] = {.lex_state = 11}, + [1330] = {.lex_state = 11}, + [1331] = {.lex_state = 11}, + [1332] = {.lex_state = 11}, + [1333] = {.lex_state = 11}, + [1334] = {.lex_state = 11}, + [1335] = {.lex_state = 11}, + [1336] = {.lex_state = 11}, + [1337] = {.lex_state = 11}, + [1338] = {.lex_state = 11}, + [1339] = {.lex_state = 11}, + [1340] = {.lex_state = 11}, + [1341] = {.lex_state = 11}, + [1342] = {.lex_state = 11}, + [1343] = {.lex_state = 11}, + [1344] = {.lex_state = 11}, + [1345] = {.lex_state = 11}, + [1346] = {.lex_state = 11}, + [1347] = {.lex_state = 11}, + [1348] = {.lex_state = 11}, + [1349] = {.lex_state = 11}, + [1350] = {.lex_state = 11}, + [1351] = {.lex_state = 11}, + [1352] = {.lex_state = 11}, + [1353] = {.lex_state = 11}, + [1354] = {.lex_state = 11}, + [1355] = {.lex_state = 11}, + [1356] = {.lex_state = 11}, + [1357] = {.lex_state = 11}, + [1358] = {.lex_state = 11}, + [1359] = {.lex_state = 11}, + [1360] = {.lex_state = 11}, + [1361] = {.lex_state = 11}, + [1362] = {.lex_state = 11}, + [1363] = {.lex_state = 11}, + [1364] = {.lex_state = 11}, + [1365] = {.lex_state = 11}, + [1366] = {.lex_state = 11}, + [1367] = {.lex_state = 11}, + [1368] = {.lex_state = 11}, + [1369] = {.lex_state = 11}, + [1370] = {.lex_state = 11}, + [1371] = {.lex_state = 11}, + [1372] = {.lex_state = 11}, + [1373] = {.lex_state = 11}, + [1374] = {.lex_state = 11}, + [1375] = {.lex_state = 11}, + [1376] = {.lex_state = 11}, + [1377] = {.lex_state = 11}, + [1378] = {.lex_state = 11}, + [1379] = {.lex_state = 11}, + [1380] = {.lex_state = 11}, + [1381] = {.lex_state = 11}, + [1382] = {.lex_state = 11}, + [1383] = {.lex_state = 11}, + [1384] = {.lex_state = 11}, + [1385] = {.lex_state = 11}, + [1386] = {.lex_state = 11}, + [1387] = {.lex_state = 11}, + [1388] = {.lex_state = 11}, + [1389] = {.lex_state = 11}, + [1390] = {.lex_state = 11}, + [1391] = {.lex_state = 11}, + [1392] = {.lex_state = 11}, + [1393] = {.lex_state = 11}, + [1394] = {.lex_state = 11}, + [1395] = {.lex_state = 11}, + [1396] = {.lex_state = 11}, + [1397] = {.lex_state = 11}, + [1398] = {.lex_state = 11}, + [1399] = {.lex_state = 11}, + [1400] = {.lex_state = 11}, + [1401] = {.lex_state = 11}, + [1402] = {.lex_state = 11}, + [1403] = {.lex_state = 11}, + [1404] = {.lex_state = 11}, + [1405] = {.lex_state = 11}, + [1406] = {.lex_state = 11}, + [1407] = {.lex_state = 11}, + [1408] = {.lex_state = 11}, + [1409] = {.lex_state = 11}, + [1410] = {.lex_state = 11}, + [1411] = {.lex_state = 11}, + [1412] = {.lex_state = 11}, + [1413] = {.lex_state = 11}, + [1414] = {.lex_state = 11}, + [1415] = {.lex_state = 11}, + [1416] = {.lex_state = 11}, + [1417] = {.lex_state = 11}, + [1418] = {.lex_state = 11}, + [1419] = {.lex_state = 11}, + [1420] = {.lex_state = 11}, + [1421] = {.lex_state = 11}, + [1422] = {.lex_state = 11}, + [1423] = {.lex_state = 11}, [1424] = {.lex_state = 1}, [1425] = {.lex_state = 1}, [1426] = {.lex_state = 1}, @@ -7881,2074 +7875,2074 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1438] = {.lex_state = 1}, [1439] = {.lex_state = 1}, [1440] = {.lex_state = 1}, - [1441] = {.lex_state = 289}, - [1442] = {.lex_state = 289}, - [1443] = {.lex_state = 289}, - [1444] = {.lex_state = 16}, - [1445] = {.lex_state = 289}, - [1446] = {.lex_state = 289}, - [1447] = {.lex_state = 289}, - [1448] = {.lex_state = 289}, - [1449] = {.lex_state = 289}, - [1450] = {.lex_state = 289}, - [1451] = {.lex_state = 289}, - [1452] = {.lex_state = 289}, - [1453] = {.lex_state = 289}, - [1454] = {.lex_state = 289}, - [1455] = {.lex_state = 289}, - [1456] = {.lex_state = 289}, - [1457] = {.lex_state = 289}, - [1458] = {.lex_state = 289}, - [1459] = {.lex_state = 289}, - [1460] = {.lex_state = 289}, - [1461] = {.lex_state = 289}, - [1462] = {.lex_state = 289}, - [1463] = {.lex_state = 289}, - [1464] = {.lex_state = 290}, - [1465] = {.lex_state = 289}, - [1466] = {.lex_state = 289}, - [1467] = {.lex_state = 289}, - [1468] = {.lex_state = 289}, - [1469] = {.lex_state = 289}, - [1470] = {.lex_state = 289}, - [1471] = {.lex_state = 289}, - [1472] = {.lex_state = 289}, - [1473] = {.lex_state = 289}, - [1474] = {.lex_state = 289}, - [1475] = {.lex_state = 289}, - [1476] = {.lex_state = 289}, - [1477] = {.lex_state = 289}, - [1478] = {.lex_state = 289}, - [1479] = {.lex_state = 289}, - [1480] = {.lex_state = 289}, - [1481] = {.lex_state = 289}, + [1441] = {.lex_state = 1}, + [1442] = {.lex_state = 1}, + [1443] = {.lex_state = 1}, + [1444] = {.lex_state = 1}, + [1445] = {.lex_state = 288}, + [1446] = {.lex_state = 288}, + [1447] = {.lex_state = 15}, + [1448] = {.lex_state = 288}, + [1449] = {.lex_state = 288}, + [1450] = {.lex_state = 288}, + [1451] = {.lex_state = 288}, + [1452] = {.lex_state = 288}, + [1453] = {.lex_state = 288}, + [1454] = {.lex_state = 288}, + [1455] = {.lex_state = 288}, + [1456] = {.lex_state = 288}, + [1457] = {.lex_state = 288}, + [1458] = {.lex_state = 288}, + [1459] = {.lex_state = 288}, + [1460] = {.lex_state = 288}, + [1461] = {.lex_state = 288}, + [1462] = {.lex_state = 288}, + [1463] = {.lex_state = 288}, + [1464] = {.lex_state = 288}, + [1465] = {.lex_state = 288}, + [1466] = {.lex_state = 288}, + [1467] = {.lex_state = 288}, + [1468] = {.lex_state = 288}, + [1469] = {.lex_state = 288}, + [1470] = {.lex_state = 288}, + [1471] = {.lex_state = 288}, + [1472] = {.lex_state = 288}, + [1473] = {.lex_state = 288}, + [1474] = {.lex_state = 288}, + [1475] = {.lex_state = 288}, + [1476] = {.lex_state = 288}, + [1477] = {.lex_state = 288}, + [1478] = {.lex_state = 288}, + [1479] = {.lex_state = 288}, + [1480] = {.lex_state = 288}, + [1481] = {.lex_state = 288}, [1482] = {.lex_state = 289}, - [1483] = {.lex_state = 289}, - [1484] = {.lex_state = 289}, - [1485] = {.lex_state = 289}, - [1486] = {.lex_state = 289}, - [1487] = {.lex_state = 289}, - [1488] = {.lex_state = 289}, - [1489] = {.lex_state = 289}, - [1490] = {.lex_state = 289}, - [1491] = {.lex_state = 289}, - [1492] = {.lex_state = 289}, - [1493] = {.lex_state = 289}, - [1494] = {.lex_state = 289}, - [1495] = {.lex_state = 289}, - [1496] = {.lex_state = 289}, - [1497] = {.lex_state = 289}, - [1498] = {.lex_state = 289}, - [1499] = {.lex_state = 289}, - [1500] = {.lex_state = 289}, - [1501] = {.lex_state = 289}, - [1502] = {.lex_state = 289}, - [1503] = {.lex_state = 289}, - [1504] = {.lex_state = 289}, - [1505] = {.lex_state = 289}, - [1506] = {.lex_state = 289}, - [1507] = {.lex_state = 289}, - [1508] = {.lex_state = 289}, - [1509] = {.lex_state = 289}, - [1510] = {.lex_state = 289}, - [1511] = {.lex_state = 289}, - [1512] = {.lex_state = 289}, - [1513] = {.lex_state = 289}, - [1514] = {.lex_state = 289}, - [1515] = {.lex_state = 289}, - [1516] = {.lex_state = 289}, - [1517] = {.lex_state = 289}, - [1518] = {.lex_state = 289}, - [1519] = {.lex_state = 289}, - [1520] = {.lex_state = 289}, - [1521] = {.lex_state = 289}, - [1522] = {.lex_state = 289}, - [1523] = {.lex_state = 289}, - [1524] = {.lex_state = 289}, - [1525] = {.lex_state = 289}, - [1526] = {.lex_state = 289}, - [1527] = {.lex_state = 289}, - [1528] = {.lex_state = 289}, - [1529] = {.lex_state = 289}, - [1530] = {.lex_state = 289}, - [1531] = {.lex_state = 289}, - [1532] = {.lex_state = 289}, - [1533] = {.lex_state = 289}, - [1534] = {.lex_state = 289}, - [1535] = {.lex_state = 289}, - [1536] = {.lex_state = 289}, - [1537] = {.lex_state = 289}, - [1538] = {.lex_state = 289}, - [1539] = {.lex_state = 289}, - [1540] = {.lex_state = 289}, - [1541] = {.lex_state = 289}, - [1542] = {.lex_state = 289}, - [1543] = {.lex_state = 289}, - [1544] = {.lex_state = 289}, - [1545] = {.lex_state = 289}, - [1546] = {.lex_state = 289}, - [1547] = {.lex_state = 289}, - [1548] = {.lex_state = 289}, - [1549] = {.lex_state = 289}, - [1550] = {.lex_state = 289}, - [1551] = {.lex_state = 289}, - [1552] = {.lex_state = 289}, - [1553] = {.lex_state = 289}, - [1554] = {.lex_state = 289}, - [1555] = {.lex_state = 289}, - [1556] = {.lex_state = 289}, - [1557] = {.lex_state = 289}, - [1558] = {.lex_state = 289}, - [1559] = {.lex_state = 289}, - [1560] = {.lex_state = 289}, - [1561] = {.lex_state = 289}, - [1562] = {.lex_state = 289}, - [1563] = {.lex_state = 289}, - [1564] = {.lex_state = 289}, - [1565] = {.lex_state = 15}, - [1566] = {.lex_state = 289}, - [1567] = {.lex_state = 289}, - [1568] = {.lex_state = 289}, - [1569] = {.lex_state = 16}, - [1570] = {.lex_state = 16}, - [1571] = {.lex_state = 16}, - [1572] = {.lex_state = 16}, - [1573] = {.lex_state = 16}, - [1574] = {.lex_state = 16}, - [1575] = {.lex_state = 16}, - [1576] = {.lex_state = 16}, - [1577] = {.lex_state = 16}, - [1578] = {.lex_state = 16}, - [1579] = {.lex_state = 16}, - [1580] = {.lex_state = 16}, - [1581] = {.lex_state = 16}, - [1582] = {.lex_state = 16}, - [1583] = {.lex_state = 16}, - [1584] = {.lex_state = 16}, - [1585] = {.lex_state = 16}, - [1586] = {.lex_state = 16}, - [1587] = {.lex_state = 16}, - [1588] = {.lex_state = 16}, - [1589] = {.lex_state = 16}, - [1590] = {.lex_state = 16}, - [1591] = {.lex_state = 16}, - [1592] = {.lex_state = 16}, - [1593] = {.lex_state = 16}, - [1594] = {.lex_state = 16}, - [1595] = {.lex_state = 16}, - [1596] = {.lex_state = 16}, - [1597] = {.lex_state = 16}, - [1598] = {.lex_state = 16}, - [1599] = {.lex_state = 16}, - [1600] = {.lex_state = 16}, - [1601] = {.lex_state = 16}, - [1602] = {.lex_state = 16}, - [1603] = {.lex_state = 16}, - [1604] = {.lex_state = 16}, - [1605] = {.lex_state = 16}, - [1606] = {.lex_state = 16}, - [1607] = {.lex_state = 16}, - [1608] = {.lex_state = 16}, - [1609] = {.lex_state = 16}, - [1610] = {.lex_state = 16}, - [1611] = {.lex_state = 16}, - [1612] = {.lex_state = 16}, - [1613] = {.lex_state = 16}, - [1614] = {.lex_state = 16}, - [1615] = {.lex_state = 16}, - [1616] = {.lex_state = 16}, - [1617] = {.lex_state = 16}, - [1618] = {.lex_state = 16}, - [1619] = {.lex_state = 16}, - [1620] = {.lex_state = 16}, - [1621] = {.lex_state = 16}, - [1622] = {.lex_state = 16}, - [1623] = {.lex_state = 16}, - [1624] = {.lex_state = 16}, - [1625] = {.lex_state = 16}, - [1626] = {.lex_state = 16}, - [1627] = {.lex_state = 16}, - [1628] = {.lex_state = 16}, - [1629] = {.lex_state = 16}, - [1630] = {.lex_state = 16}, - [1631] = {.lex_state = 16}, - [1632] = {.lex_state = 16}, - [1633] = {.lex_state = 289}, - [1634] = {.lex_state = 16}, - [1635] = {.lex_state = 16}, - [1636] = {.lex_state = 16}, - [1637] = {.lex_state = 16}, - [1638] = {.lex_state = 16}, - [1639] = {.lex_state = 16}, - [1640] = {.lex_state = 16}, - [1641] = {.lex_state = 16}, - [1642] = {.lex_state = 16}, - [1643] = {.lex_state = 16}, - [1644] = {.lex_state = 16}, - [1645] = {.lex_state = 16}, - [1646] = {.lex_state = 16}, - [1647] = {.lex_state = 16}, - [1648] = {.lex_state = 16}, - [1649] = {.lex_state = 16}, - [1650] = {.lex_state = 16}, - [1651] = {.lex_state = 16}, - [1652] = {.lex_state = 16}, - [1653] = {.lex_state = 16}, - [1654] = {.lex_state = 16}, - [1655] = {.lex_state = 16}, - [1656] = {.lex_state = 16}, - [1657] = {.lex_state = 16}, - [1658] = {.lex_state = 16}, - [1659] = {.lex_state = 16}, - [1660] = {.lex_state = 16}, - [1661] = {.lex_state = 16}, - [1662] = {.lex_state = 16}, - [1663] = {.lex_state = 16}, - [1664] = {.lex_state = 16}, - [1665] = {.lex_state = 16}, - [1666] = {.lex_state = 16}, - [1667] = {.lex_state = 16}, - [1668] = {.lex_state = 16}, - [1669] = {.lex_state = 16}, - [1670] = {.lex_state = 16}, - [1671] = {.lex_state = 16}, - [1672] = {.lex_state = 16}, - [1673] = {.lex_state = 16}, - [1674] = {.lex_state = 16}, - [1675] = {.lex_state = 16}, - [1676] = {.lex_state = 16}, - [1677] = {.lex_state = 16}, - [1678] = {.lex_state = 16}, - [1679] = {.lex_state = 16}, - [1680] = {.lex_state = 16}, - [1681] = {.lex_state = 16}, - [1682] = {.lex_state = 16}, - [1683] = {.lex_state = 16}, - [1684] = {.lex_state = 16}, - [1685] = {.lex_state = 16}, - [1686] = {.lex_state = 16}, - [1687] = {.lex_state = 16}, - [1688] = {.lex_state = 16}, - [1689] = {.lex_state = 16}, - [1690] = {.lex_state = 29}, - [1691] = {.lex_state = 1}, - [1692] = {.lex_state = 29}, - [1693] = {.lex_state = 289}, - [1694] = {.lex_state = 29}, - [1695] = {.lex_state = 29}, - [1696] = {.lex_state = 289}, - [1697] = {.lex_state = 289}, - [1698] = {.lex_state = 289}, - [1699] = {.lex_state = 29}, - [1700] = {.lex_state = 29}, - [1701] = {.lex_state = 289}, - [1702] = {.lex_state = 289}, - [1703] = {.lex_state = 289}, - [1704] = {.lex_state = 289}, - [1705] = {.lex_state = 289}, - [1706] = {.lex_state = 16}, - [1707] = {.lex_state = 289}, - [1708] = {.lex_state = 289}, - [1709] = {.lex_state = 289}, - [1710] = {.lex_state = 29}, - [1711] = {.lex_state = 29}, - [1712] = {.lex_state = 289}, - [1713] = {.lex_state = 289}, - [1714] = {.lex_state = 289}, - [1715] = {.lex_state = 289}, - [1716] = {.lex_state = 289}, - [1717] = {.lex_state = 289}, - [1718] = {.lex_state = 289}, - [1719] = {.lex_state = 289}, - [1720] = {.lex_state = 289}, - [1721] = {.lex_state = 289}, - [1722] = {.lex_state = 289}, - [1723] = {.lex_state = 289}, - [1724] = {.lex_state = 289}, - [1725] = {.lex_state = 29}, - [1726] = {.lex_state = 289}, - [1727] = {.lex_state = 289}, - [1728] = {.lex_state = 289}, - [1729] = {.lex_state = 29}, - [1730] = {.lex_state = 289}, - [1731] = {.lex_state = 289}, - [1732] = {.lex_state = 289}, - [1733] = {.lex_state = 289}, - [1734] = {.lex_state = 289}, - [1735] = {.lex_state = 289}, - [1736] = {.lex_state = 29}, - [1737] = {.lex_state = 29}, - [1738] = {.lex_state = 29}, - [1739] = {.lex_state = 289}, - [1740] = {.lex_state = 289}, - [1741] = {.lex_state = 289}, - [1742] = {.lex_state = 289}, - [1743] = {.lex_state = 289}, - [1744] = {.lex_state = 289}, - [1745] = {.lex_state = 29}, - [1746] = {.lex_state = 29}, - [1747] = {.lex_state = 29}, - [1748] = {.lex_state = 29}, - [1749] = {.lex_state = 29}, - [1750] = {.lex_state = 29}, - [1751] = {.lex_state = 29}, - [1752] = {.lex_state = 29}, - [1753] = {.lex_state = 29}, - [1754] = {.lex_state = 29}, - [1755] = {.lex_state = 29}, - [1756] = {.lex_state = 29}, - [1757] = {.lex_state = 29}, - [1758] = {.lex_state = 29}, - [1759] = {.lex_state = 29}, - [1760] = {.lex_state = 29}, - [1761] = {.lex_state = 29}, - [1762] = {.lex_state = 29}, - [1763] = {.lex_state = 29}, - [1764] = {.lex_state = 29}, - [1765] = {.lex_state = 29}, - [1766] = {.lex_state = 29}, - [1767] = {.lex_state = 29}, - [1768] = {.lex_state = 29}, - [1769] = {.lex_state = 29}, - [1770] = {.lex_state = 29}, - [1771] = {.lex_state = 29}, - [1772] = {.lex_state = 29}, - [1773] = {.lex_state = 29}, - [1774] = {.lex_state = 29}, - [1775] = {.lex_state = 29}, - [1776] = {.lex_state = 29}, - [1777] = {.lex_state = 29}, - [1778] = {.lex_state = 29}, - [1779] = {.lex_state = 29}, - [1780] = {.lex_state = 29}, - [1781] = {.lex_state = 29}, - [1782] = {.lex_state = 29}, - [1783] = {.lex_state = 29}, - [1784] = {.lex_state = 29}, - [1785] = {.lex_state = 29}, - [1786] = {.lex_state = 29}, - [1787] = {.lex_state = 29}, - [1788] = {.lex_state = 29}, - [1789] = {.lex_state = 29}, - [1790] = {.lex_state = 29}, - [1791] = {.lex_state = 29}, - [1792] = {.lex_state = 29}, - [1793] = {.lex_state = 29}, - [1794] = {.lex_state = 29}, - [1795] = {.lex_state = 29}, - [1796] = {.lex_state = 29}, - [1797] = {.lex_state = 29}, - [1798] = {.lex_state = 29}, - [1799] = {.lex_state = 29}, - [1800] = {.lex_state = 29}, - [1801] = {.lex_state = 29}, - [1802] = {.lex_state = 29}, - [1803] = {.lex_state = 29}, - [1804] = {.lex_state = 29}, - [1805] = {.lex_state = 29}, - [1806] = {.lex_state = 29}, - [1807] = {.lex_state = 29}, - [1808] = {.lex_state = 29}, - [1809] = {.lex_state = 29}, - [1810] = {.lex_state = 29}, - [1811] = {.lex_state = 29}, - [1812] = {.lex_state = 29}, - [1813] = {.lex_state = 29}, - [1814] = {.lex_state = 29}, - [1815] = {.lex_state = 29}, - [1816] = {.lex_state = 29}, - [1817] = {.lex_state = 29}, - [1818] = {.lex_state = 29}, - [1819] = {.lex_state = 29}, - [1820] = {.lex_state = 29}, - [1821] = {.lex_state = 29}, - [1822] = {.lex_state = 29}, - [1823] = {.lex_state = 29}, - [1824] = {.lex_state = 29}, - [1825] = {.lex_state = 26}, + [1483] = {.lex_state = 288}, + [1484] = {.lex_state = 288}, + [1485] = {.lex_state = 288}, + [1486] = {.lex_state = 288}, + [1487] = {.lex_state = 288}, + [1488] = {.lex_state = 288}, + [1489] = {.lex_state = 288}, + [1490] = {.lex_state = 288}, + [1491] = {.lex_state = 288}, + [1492] = {.lex_state = 288}, + [1493] = {.lex_state = 288}, + [1494] = {.lex_state = 288}, + [1495] = {.lex_state = 288}, + [1496] = {.lex_state = 288}, + [1497] = {.lex_state = 288}, + [1498] = {.lex_state = 288}, + [1499] = {.lex_state = 288}, + [1500] = {.lex_state = 288}, + [1501] = {.lex_state = 288}, + [1502] = {.lex_state = 288}, + [1503] = {.lex_state = 288}, + [1504] = {.lex_state = 288}, + [1505] = {.lex_state = 288}, + [1506] = {.lex_state = 288}, + [1507] = {.lex_state = 288}, + [1508] = {.lex_state = 288}, + [1509] = {.lex_state = 288}, + [1510] = {.lex_state = 288}, + [1511] = {.lex_state = 288}, + [1512] = {.lex_state = 288}, + [1513] = {.lex_state = 288}, + [1514] = {.lex_state = 288}, + [1515] = {.lex_state = 288}, + [1516] = {.lex_state = 288}, + [1517] = {.lex_state = 288}, + [1518] = {.lex_state = 288}, + [1519] = {.lex_state = 288}, + [1520] = {.lex_state = 288}, + [1521] = {.lex_state = 288}, + [1522] = {.lex_state = 288}, + [1523] = {.lex_state = 288}, + [1524] = {.lex_state = 288}, + [1525] = {.lex_state = 288}, + [1526] = {.lex_state = 288}, + [1527] = {.lex_state = 288}, + [1528] = {.lex_state = 288}, + [1529] = {.lex_state = 288}, + [1530] = {.lex_state = 288}, + [1531] = {.lex_state = 288}, + [1532] = {.lex_state = 288}, + [1533] = {.lex_state = 288}, + [1534] = {.lex_state = 288}, + [1535] = {.lex_state = 288}, + [1536] = {.lex_state = 288}, + [1537] = {.lex_state = 288}, + [1538] = {.lex_state = 288}, + [1539] = {.lex_state = 288}, + [1540] = {.lex_state = 288}, + [1541] = {.lex_state = 288}, + [1542] = {.lex_state = 288}, + [1543] = {.lex_state = 288}, + [1544] = {.lex_state = 288}, + [1545] = {.lex_state = 288}, + [1546] = {.lex_state = 288}, + [1547] = {.lex_state = 288}, + [1548] = {.lex_state = 288}, + [1549] = {.lex_state = 288}, + [1550] = {.lex_state = 288}, + [1551] = {.lex_state = 288}, + [1552] = {.lex_state = 288}, + [1553] = {.lex_state = 288}, + [1554] = {.lex_state = 288}, + [1555] = {.lex_state = 288}, + [1556] = {.lex_state = 288}, + [1557] = {.lex_state = 288}, + [1558] = {.lex_state = 288}, + [1559] = {.lex_state = 288}, + [1560] = {.lex_state = 288}, + [1561] = {.lex_state = 288}, + [1562] = {.lex_state = 288}, + [1563] = {.lex_state = 288}, + [1564] = {.lex_state = 288}, + [1565] = {.lex_state = 288}, + [1566] = {.lex_state = 288}, + [1567] = {.lex_state = 288}, + [1568] = {.lex_state = 288}, + [1569] = {.lex_state = 288}, + [1570] = {.lex_state = 14}, + [1571] = {.lex_state = 288}, + [1572] = {.lex_state = 15}, + [1573] = {.lex_state = 26}, + [1574] = {.lex_state = 288}, + [1575] = {.lex_state = 15}, + [1576] = {.lex_state = 288}, + [1577] = {.lex_state = 288}, + [1578] = {.lex_state = 15}, + [1579] = {.lex_state = 15}, + [1580] = {.lex_state = 15}, + [1581] = {.lex_state = 15}, + [1582] = {.lex_state = 15}, + [1583] = {.lex_state = 15}, + [1584] = {.lex_state = 15}, + [1585] = {.lex_state = 15}, + [1586] = {.lex_state = 288}, + [1587] = {.lex_state = 15}, + [1588] = {.lex_state = 15}, + [1589] = {.lex_state = 288}, + [1590] = {.lex_state = 15}, + [1591] = {.lex_state = 15}, + [1592] = {.lex_state = 15}, + [1593] = {.lex_state = 15}, + [1594] = {.lex_state = 15}, + [1595] = {.lex_state = 15}, + [1596] = {.lex_state = 15}, + [1597] = {.lex_state = 15}, + [1598] = {.lex_state = 15}, + [1599] = {.lex_state = 15}, + [1600] = {.lex_state = 15}, + [1601] = {.lex_state = 15}, + [1602] = {.lex_state = 15}, + [1603] = {.lex_state = 15}, + [1604] = {.lex_state = 15}, + [1605] = {.lex_state = 15}, + [1606] = {.lex_state = 15}, + [1607] = {.lex_state = 15}, + [1608] = {.lex_state = 15}, + [1609] = {.lex_state = 15}, + [1610] = {.lex_state = 15}, + [1611] = {.lex_state = 15}, + [1612] = {.lex_state = 15}, + [1613] = {.lex_state = 15}, + [1614] = {.lex_state = 15}, + [1615] = {.lex_state = 15}, + [1616] = {.lex_state = 15}, + [1617] = {.lex_state = 15}, + [1618] = {.lex_state = 15}, + [1619] = {.lex_state = 288}, + [1620] = {.lex_state = 15}, + [1621] = {.lex_state = 15}, + [1622] = {.lex_state = 15}, + [1623] = {.lex_state = 15}, + [1624] = {.lex_state = 15}, + [1625] = {.lex_state = 15}, + [1626] = {.lex_state = 15}, + [1627] = {.lex_state = 15}, + [1628] = {.lex_state = 15}, + [1629] = {.lex_state = 15}, + [1630] = {.lex_state = 15}, + [1631] = {.lex_state = 15}, + [1632] = {.lex_state = 15}, + [1633] = {.lex_state = 15}, + [1634] = {.lex_state = 15}, + [1635] = {.lex_state = 15}, + [1636] = {.lex_state = 15}, + [1637] = {.lex_state = 15}, + [1638] = {.lex_state = 288}, + [1639] = {.lex_state = 288}, + [1640] = {.lex_state = 288}, + [1641] = {.lex_state = 288}, + [1642] = {.lex_state = 288}, + [1643] = {.lex_state = 288}, + [1644] = {.lex_state = 15}, + [1645] = {.lex_state = 15}, + [1646] = {.lex_state = 15}, + [1647] = {.lex_state = 15}, + [1648] = {.lex_state = 15}, + [1649] = {.lex_state = 15}, + [1650] = {.lex_state = 288}, + [1651] = {.lex_state = 288}, + [1652] = {.lex_state = 288}, + [1653] = {.lex_state = 288}, + [1654] = {.lex_state = 288}, + [1655] = {.lex_state = 288}, + [1656] = {.lex_state = 288}, + [1657] = {.lex_state = 288}, + [1658] = {.lex_state = 288}, + [1659] = {.lex_state = 288}, + [1660] = {.lex_state = 15}, + [1661] = {.lex_state = 26}, + [1662] = {.lex_state = 26}, + [1663] = {.lex_state = 26}, + [1664] = {.lex_state = 26}, + [1665] = {.lex_state = 26}, + [1666] = {.lex_state = 26}, + [1667] = {.lex_state = 26}, + [1668] = {.lex_state = 26}, + [1669] = {.lex_state = 26}, + [1670] = {.lex_state = 26}, + [1671] = {.lex_state = 26}, + [1672] = {.lex_state = 26}, + [1673] = {.lex_state = 26}, + [1674] = {.lex_state = 26}, + [1675] = {.lex_state = 26}, + [1676] = {.lex_state = 26}, + [1677] = {.lex_state = 26}, + [1678] = {.lex_state = 26}, + [1679] = {.lex_state = 26}, + [1680] = {.lex_state = 26}, + [1681] = {.lex_state = 26}, + [1682] = {.lex_state = 288}, + [1683] = {.lex_state = 288}, + [1684] = {.lex_state = 26}, + [1685] = {.lex_state = 288}, + [1686] = {.lex_state = 288}, + [1687] = {.lex_state = 288}, + [1688] = {.lex_state = 26}, + [1689] = {.lex_state = 288}, + [1690] = {.lex_state = 288}, + [1691] = {.lex_state = 288}, + [1692] = {.lex_state = 288}, + [1693] = {.lex_state = 26}, + [1694] = {.lex_state = 288}, + [1695] = {.lex_state = 26}, + [1696] = {.lex_state = 26}, + [1697] = {.lex_state = 26}, + [1698] = {.lex_state = 26}, + [1699] = {.lex_state = 26}, + [1700] = {.lex_state = 26}, + [1701] = {.lex_state = 26}, + [1702] = {.lex_state = 26}, + [1703] = {.lex_state = 26}, + [1704] = {.lex_state = 26}, + [1705] = {.lex_state = 26}, + [1706] = {.lex_state = 26}, + [1707] = {.lex_state = 288}, + [1708] = {.lex_state = 26}, + [1709] = {.lex_state = 26}, + [1710] = {.lex_state = 288}, + [1711] = {.lex_state = 26}, + [1712] = {.lex_state = 26}, + [1713] = {.lex_state = 26}, + [1714] = {.lex_state = 26}, + [1715] = {.lex_state = 26}, + [1716] = {.lex_state = 26}, + [1717] = {.lex_state = 26}, + [1718] = {.lex_state = 288}, + [1719] = {.lex_state = 15}, + [1720] = {.lex_state = 15}, + [1721] = {.lex_state = 26}, + [1722] = {.lex_state = 26}, + [1723] = {.lex_state = 15}, + [1724] = {.lex_state = 26}, + [1725] = {.lex_state = 26}, + [1726] = {.lex_state = 26}, + [1727] = {.lex_state = 26}, + [1728] = {.lex_state = 15}, + [1729] = {.lex_state = 15}, + [1730] = {.lex_state = 1}, + [1731] = {.lex_state = 15}, + [1732] = {.lex_state = 15}, + [1733] = {.lex_state = 15}, + [1734] = {.lex_state = 288}, + [1735] = {.lex_state = 15}, + [1736] = {.lex_state = 15}, + [1737] = {.lex_state = 15}, + [1738] = {.lex_state = 15}, + [1739] = {.lex_state = 26}, + [1740] = {.lex_state = 15}, + [1741] = {.lex_state = 26}, + [1742] = {.lex_state = 26}, + [1743] = {.lex_state = 26}, + [1744] = {.lex_state = 15}, + [1745] = {.lex_state = 15}, + [1746] = {.lex_state = 15}, + [1747] = {.lex_state = 15}, + [1748] = {.lex_state = 15}, + [1749] = {.lex_state = 26}, + [1750] = {.lex_state = 15}, + [1751] = {.lex_state = 15}, + [1752] = {.lex_state = 15}, + [1753] = {.lex_state = 15}, + [1754] = {.lex_state = 15}, + [1755] = {.lex_state = 15}, + [1756] = {.lex_state = 288}, + [1757] = {.lex_state = 15}, + [1758] = {.lex_state = 288}, + [1759] = {.lex_state = 26}, + [1760] = {.lex_state = 15}, + [1761] = {.lex_state = 15}, + [1762] = {.lex_state = 15}, + [1763] = {.lex_state = 15}, + [1764] = {.lex_state = 26}, + [1765] = {.lex_state = 15}, + [1766] = {.lex_state = 15}, + [1767] = {.lex_state = 15}, + [1768] = {.lex_state = 15}, + [1769] = {.lex_state = 15}, + [1770] = {.lex_state = 288}, + [1771] = {.lex_state = 15}, + [1772] = {.lex_state = 288}, + [1773] = {.lex_state = 288}, + [1774] = {.lex_state = 15}, + [1775] = {.lex_state = 15}, + [1776] = {.lex_state = 15}, + [1777] = {.lex_state = 15}, + [1778] = {.lex_state = 15}, + [1779] = {.lex_state = 15}, + [1780] = {.lex_state = 15}, + [1781] = {.lex_state = 15}, + [1782] = {.lex_state = 15}, + [1783] = {.lex_state = 15}, + [1784] = {.lex_state = 15}, + [1785] = {.lex_state = 26}, + [1786] = {.lex_state = 26}, + [1787] = {.lex_state = 26}, + [1788] = {.lex_state = 26}, + [1789] = {.lex_state = 15}, + [1790] = {.lex_state = 15}, + [1791] = {.lex_state = 15}, + [1792] = {.lex_state = 26}, + [1793] = {.lex_state = 15}, + [1794] = {.lex_state = 26}, + [1795] = {.lex_state = 26}, + [1796] = {.lex_state = 26}, + [1797] = {.lex_state = 15}, + [1798] = {.lex_state = 15}, + [1799] = {.lex_state = 288}, + [1800] = {.lex_state = 26}, + [1801] = {.lex_state = 26}, + [1802] = {.lex_state = 26}, + [1803] = {.lex_state = 15}, + [1804] = {.lex_state = 26}, + [1805] = {.lex_state = 26}, + [1806] = {.lex_state = 288}, + [1807] = {.lex_state = 26}, + [1808] = {.lex_state = 26}, + [1809] = {.lex_state = 26}, + [1810] = {.lex_state = 26}, + [1811] = {.lex_state = 26}, + [1812] = {.lex_state = 26}, + [1813] = {.lex_state = 26}, + [1814] = {.lex_state = 26}, + [1815] = {.lex_state = 26}, + [1816] = {.lex_state = 26}, + [1817] = {.lex_state = 15}, + [1818] = {.lex_state = 26}, + [1819] = {.lex_state = 15}, + [1820] = {.lex_state = 26}, + [1821] = {.lex_state = 15}, + [1822] = {.lex_state = 26}, + [1823] = {.lex_state = 288}, + [1824] = {.lex_state = 26}, + [1825] = {.lex_state = 288}, [1826] = {.lex_state = 26}, - [1827] = {.lex_state = 289}, - [1828] = {.lex_state = 26}, - [1829] = {.lex_state = 289}, - [1830] = {.lex_state = 289}, - [1831] = {.lex_state = 289}, - [1832] = {.lex_state = 289}, - [1833] = {.lex_state = 289}, - [1834] = {.lex_state = 26}, + [1827] = {.lex_state = 288}, + [1828] = {.lex_state = 288}, + [1829] = {.lex_state = 288}, + [1830] = {.lex_state = 288}, + [1831] = {.lex_state = 26}, + [1832] = {.lex_state = 26}, + [1833] = {.lex_state = 288}, + [1834] = {.lex_state = 288}, [1835] = {.lex_state = 26}, [1836] = {.lex_state = 26}, [1837] = {.lex_state = 26}, [1838] = {.lex_state = 26}, - [1839] = {.lex_state = 26}, - [1840] = {.lex_state = 26}, - [1841] = {.lex_state = 26}, - [1842] = {.lex_state = 26}, - [1843] = {.lex_state = 26}, - [1844] = {.lex_state = 26}, - [1845] = {.lex_state = 26}, - [1846] = {.lex_state = 26}, - [1847] = {.lex_state = 26}, - [1848] = {.lex_state = 26}, - [1849] = {.lex_state = 26}, - [1850] = {.lex_state = 26}, - [1851] = {.lex_state = 26}, - [1852] = {.lex_state = 26}, - [1853] = {.lex_state = 26}, - [1854] = {.lex_state = 26}, - [1855] = {.lex_state = 26}, - [1856] = {.lex_state = 26}, - [1857] = {.lex_state = 26}, - [1858] = {.lex_state = 26}, - [1859] = {.lex_state = 26}, - [1860] = {.lex_state = 26}, - [1861] = {.lex_state = 26}, - [1862] = {.lex_state = 26}, - [1863] = {.lex_state = 26}, - [1864] = {.lex_state = 26}, - [1865] = {.lex_state = 26}, - [1866] = {.lex_state = 26}, - [1867] = {.lex_state = 26}, - [1868] = {.lex_state = 26}, - [1869] = {.lex_state = 26}, - [1870] = {.lex_state = 26}, - [1871] = {.lex_state = 26}, - [1872] = {.lex_state = 26}, - [1873] = {.lex_state = 26}, - [1874] = {.lex_state = 26}, - [1875] = {.lex_state = 26}, - [1876] = {.lex_state = 26}, - [1877] = {.lex_state = 26}, - [1878] = {.lex_state = 26}, - [1879] = {.lex_state = 26}, - [1880] = {.lex_state = 26}, - [1881] = {.lex_state = 26}, - [1882] = {.lex_state = 26}, - [1883] = {.lex_state = 26}, - [1884] = {.lex_state = 26}, - [1885] = {.lex_state = 26}, - [1886] = {.lex_state = 26}, - [1887] = {.lex_state = 26}, - [1888] = {.lex_state = 26}, - [1889] = {.lex_state = 26}, - [1890] = {.lex_state = 26}, - [1891] = {.lex_state = 26}, - [1892] = {.lex_state = 26}, - [1893] = {.lex_state = 26}, - [1894] = {.lex_state = 26}, - [1895] = {.lex_state = 26}, - [1896] = {.lex_state = 26}, - [1897] = {.lex_state = 26}, - [1898] = {.lex_state = 26}, - [1899] = {.lex_state = 26}, - [1900] = {.lex_state = 26}, - [1901] = {.lex_state = 26}, - [1902] = {.lex_state = 26}, - [1903] = {.lex_state = 26}, - [1904] = {.lex_state = 26}, - [1905] = {.lex_state = 26}, - [1906] = {.lex_state = 26}, - [1907] = {.lex_state = 26}, - [1908] = {.lex_state = 26}, - [1909] = {.lex_state = 26}, - [1910] = {.lex_state = 26}, - [1911] = {.lex_state = 26}, - [1912] = {.lex_state = 26}, - [1913] = {.lex_state = 26}, - [1914] = {.lex_state = 26}, - [1915] = {.lex_state = 26}, - [1916] = {.lex_state = 26}, - [1917] = {.lex_state = 26}, - [1918] = {.lex_state = 26}, - [1919] = {.lex_state = 26}, - [1920] = {.lex_state = 26}, - [1921] = {.lex_state = 26}, - [1922] = {.lex_state = 26}, - [1923] = {.lex_state = 26}, - [1924] = {.lex_state = 26}, - [1925] = {.lex_state = 26}, - [1926] = {.lex_state = 26}, - [1927] = {.lex_state = 26}, - [1928] = {.lex_state = 26}, - [1929] = {.lex_state = 26}, - [1930] = {.lex_state = 26}, - [1931] = {.lex_state = 26}, - [1932] = {.lex_state = 26}, - [1933] = {.lex_state = 26}, - [1934] = {.lex_state = 26}, - [1935] = {.lex_state = 26}, - [1936] = {.lex_state = 26}, - [1937] = {.lex_state = 26}, - [1938] = {.lex_state = 26}, - [1939] = {.lex_state = 26}, - [1940] = {.lex_state = 26}, - [1941] = {.lex_state = 26}, - [1942] = {.lex_state = 26}, - [1943] = {.lex_state = 26}, - [1944] = {.lex_state = 26}, - [1945] = {.lex_state = 26}, - [1946] = {.lex_state = 26}, - [1947] = {.lex_state = 26}, - [1948] = {.lex_state = 26}, - [1949] = {.lex_state = 26}, - [1950] = {.lex_state = 26}, - [1951] = {.lex_state = 26}, - [1952] = {.lex_state = 26}, - [1953] = {.lex_state = 26}, - [1954] = {.lex_state = 26}, - [1955] = {.lex_state = 1}, - [1956] = {.lex_state = 1}, - [1957] = {.lex_state = 1}, - [1958] = {.lex_state = 26}, - [1959] = {.lex_state = 26}, - [1960] = {.lex_state = 26}, - [1961] = {.lex_state = 26}, - [1962] = {.lex_state = 26}, - [1963] = {.lex_state = 26}, - [1964] = {.lex_state = 26}, - [1965] = {.lex_state = 26}, - [1966] = {.lex_state = 26}, - [1967] = {.lex_state = 26}, - [1968] = {.lex_state = 26}, - [1969] = {.lex_state = 26}, - [1970] = {.lex_state = 26}, - [1971] = {.lex_state = 26}, - [1972] = {.lex_state = 26}, - [1973] = {.lex_state = 26}, - [1974] = {.lex_state = 26}, - [1975] = {.lex_state = 26}, - [1976] = {.lex_state = 26}, - [1977] = {.lex_state = 26}, - [1978] = {.lex_state = 26}, - [1979] = {.lex_state = 26}, - [1980] = {.lex_state = 26}, - [1981] = {.lex_state = 26}, - [1982] = {.lex_state = 26}, - [1983] = {.lex_state = 26}, - [1984] = {.lex_state = 26}, - [1985] = {.lex_state = 26}, - [1986] = {.lex_state = 26}, - [1987] = {.lex_state = 26}, - [1988] = {.lex_state = 26}, - [1989] = {.lex_state = 26}, - [1990] = {.lex_state = 26}, - [1991] = {.lex_state = 26}, - [1992] = {.lex_state = 26}, - [1993] = {.lex_state = 26}, - [1994] = {.lex_state = 26}, - [1995] = {.lex_state = 26}, - [1996] = {.lex_state = 26}, - [1997] = {.lex_state = 26}, - [1998] = {.lex_state = 26}, - [1999] = {.lex_state = 26}, - [2000] = {.lex_state = 26}, - [2001] = {.lex_state = 26}, - [2002] = {.lex_state = 26}, - [2003] = {.lex_state = 26}, - [2004] = {.lex_state = 26}, - [2005] = {.lex_state = 26}, - [2006] = {.lex_state = 26}, - [2007] = {.lex_state = 26}, - [2008] = {.lex_state = 26}, - [2009] = {.lex_state = 26}, - [2010] = {.lex_state = 26}, - [2011] = {.lex_state = 26}, - [2012] = {.lex_state = 26}, - [2013] = {.lex_state = 26}, - [2014] = {.lex_state = 26}, - [2015] = {.lex_state = 26}, - [2016] = {.lex_state = 26}, - [2017] = {.lex_state = 26}, - [2018] = {.lex_state = 26}, - [2019] = {.lex_state = 26}, - [2020] = {.lex_state = 26}, - [2021] = {.lex_state = 26}, - [2022] = {.lex_state = 26}, - [2023] = {.lex_state = 26}, - [2024] = {.lex_state = 26}, - [2025] = {.lex_state = 26}, - [2026] = {.lex_state = 26}, - [2027] = {.lex_state = 26}, - [2028] = {.lex_state = 26}, - [2029] = {.lex_state = 26}, - [2030] = {.lex_state = 26}, - [2031] = {.lex_state = 26}, - [2032] = {.lex_state = 26}, - [2033] = {.lex_state = 26}, - [2034] = {.lex_state = 26}, - [2035] = {.lex_state = 26}, - [2036] = {.lex_state = 26}, - [2037] = {.lex_state = 26}, - [2038] = {.lex_state = 26}, - [2039] = {.lex_state = 26}, - [2040] = {.lex_state = 26}, - [2041] = {.lex_state = 26}, - [2042] = {.lex_state = 26}, - [2043] = {.lex_state = 26}, - [2044] = {.lex_state = 26}, - [2045] = {.lex_state = 26}, - [2046] = {.lex_state = 26}, - [2047] = {.lex_state = 26}, - [2048] = {.lex_state = 26}, - [2049] = {.lex_state = 26}, - [2050] = {.lex_state = 26}, - [2051] = {.lex_state = 26}, - [2052] = {.lex_state = 26}, - [2053] = {.lex_state = 26}, - [2054] = {.lex_state = 26}, - [2055] = {.lex_state = 26}, - [2056] = {.lex_state = 26}, - [2057] = {.lex_state = 26}, - [2058] = {.lex_state = 26}, - [2059] = {.lex_state = 26}, - [2060] = {.lex_state = 26}, - [2061] = {.lex_state = 26}, - [2062] = {.lex_state = 26}, - [2063] = {.lex_state = 26}, - [2064] = {.lex_state = 26}, - [2065] = {.lex_state = 26}, - [2066] = {.lex_state = 26}, - [2067] = {.lex_state = 26}, - [2068] = {.lex_state = 26}, - [2069] = {.lex_state = 26}, - [2070] = {.lex_state = 26}, - [2071] = {.lex_state = 26}, - [2072] = {.lex_state = 26}, - [2073] = {.lex_state = 26}, - [2074] = {.lex_state = 26}, - [2075] = {.lex_state = 26}, - [2076] = {.lex_state = 26}, - [2077] = {.lex_state = 26}, - [2078] = {.lex_state = 26}, - [2079] = {.lex_state = 26}, - [2080] = {.lex_state = 26}, - [2081] = {.lex_state = 26}, - [2082] = {.lex_state = 26}, - [2083] = {.lex_state = 26}, - [2084] = {.lex_state = 26}, - [2085] = {.lex_state = 26}, - [2086] = {.lex_state = 26}, - [2087] = {.lex_state = 26}, - [2088] = {.lex_state = 26}, - [2089] = {.lex_state = 29}, - [2090] = {.lex_state = 29}, - [2091] = {.lex_state = 29}, - [2092] = {.lex_state = 29}, - [2093] = {.lex_state = 29}, - [2094] = {.lex_state = 29}, - [2095] = {.lex_state = 29}, - [2096] = {.lex_state = 29}, - [2097] = {.lex_state = 29}, - [2098] = {.lex_state = 29}, - [2099] = {.lex_state = 29}, - [2100] = {.lex_state = 29}, - [2101] = {.lex_state = 1}, - [2102] = {.lex_state = 1}, - [2103] = {.lex_state = 29}, - [2104] = {.lex_state = 20}, - [2105] = {.lex_state = 20}, - [2106] = {.lex_state = 20}, - [2107] = {.lex_state = 20}, - [2108] = {.lex_state = 20}, - [2109] = {.lex_state = 20}, - [2110] = {.lex_state = 20}, - [2111] = {.lex_state = 20}, - [2112] = {.lex_state = 20}, - [2113] = {.lex_state = 20}, - [2114] = {.lex_state = 20}, - [2115] = {.lex_state = 20}, - [2116] = {.lex_state = 29}, - [2117] = {.lex_state = 29}, - [2118] = {.lex_state = 29}, - [2119] = {.lex_state = 29}, - [2120] = {.lex_state = 18}, - [2121] = {.lex_state = 18}, - [2122] = {.lex_state = 18}, - [2123] = {.lex_state = 18}, - [2124] = {.lex_state = 18}, - [2125] = {.lex_state = 30}, - [2126] = {.lex_state = 30}, - [2127] = {.lex_state = 18}, - [2128] = {.lex_state = 18}, - [2129] = {.lex_state = 18}, - [2130] = {.lex_state = 18}, - [2131] = {.lex_state = 18}, - [2132] = {.lex_state = 18}, - [2133] = {.lex_state = 18}, - [2134] = {.lex_state = 18}, - [2135] = {.lex_state = 30}, - [2136] = {.lex_state = 18}, - [2137] = {.lex_state = 30}, - [2138] = {.lex_state = 30}, - [2139] = {.lex_state = 30}, - [2140] = {.lex_state = 30}, - [2141] = {.lex_state = 18}, - [2142] = {.lex_state = 18}, - [2143] = {.lex_state = 18}, - [2144] = {.lex_state = 18}, - [2145] = {.lex_state = 18}, - [2146] = {.lex_state = 18}, - [2147] = {.lex_state = 18}, - [2148] = {.lex_state = 30}, - [2149] = {.lex_state = 30}, - [2150] = {.lex_state = 30}, - [2151] = {.lex_state = 30}, - [2152] = {.lex_state = 30}, - [2153] = {.lex_state = 18}, - [2154] = {.lex_state = 18}, - [2155] = {.lex_state = 18}, - [2156] = {.lex_state = 29}, - [2157] = {.lex_state = 18}, - [2158] = {.lex_state = 30}, - [2159] = {.lex_state = 18}, - [2160] = {.lex_state = 30}, - [2161] = {.lex_state = 23}, - [2162] = {.lex_state = 29}, - [2163] = {.lex_state = 29}, - [2164] = {.lex_state = 29}, + [1839] = {.lex_state = 288}, + [1840] = {.lex_state = 288}, + [1841] = {.lex_state = 288}, + [1842] = {.lex_state = 288}, + [1843] = {.lex_state = 288}, + [1844] = {.lex_state = 288}, + [1845] = {.lex_state = 288}, + [1846] = {.lex_state = 27}, + [1847] = {.lex_state = 288}, + [1848] = {.lex_state = 27}, + [1849] = {.lex_state = 27}, + [1850] = {.lex_state = 27}, + [1851] = {.lex_state = 27}, + [1852] = {.lex_state = 27}, + [1853] = {.lex_state = 27}, + [1854] = {.lex_state = 27}, + [1855] = {.lex_state = 27}, + [1856] = {.lex_state = 27}, + [1857] = {.lex_state = 27}, + [1858] = {.lex_state = 27}, + [1859] = {.lex_state = 27}, + [1860] = {.lex_state = 27}, + [1861] = {.lex_state = 27}, + [1862] = {.lex_state = 27}, + [1863] = {.lex_state = 27}, + [1864] = {.lex_state = 27}, + [1865] = {.lex_state = 27}, + [1866] = {.lex_state = 27}, + [1867] = {.lex_state = 27}, + [1868] = {.lex_state = 27}, + [1869] = {.lex_state = 27}, + [1870] = {.lex_state = 27}, + [1871] = {.lex_state = 27}, + [1872] = {.lex_state = 27}, + [1873] = {.lex_state = 27}, + [1874] = {.lex_state = 27}, + [1875] = {.lex_state = 27}, + [1876] = {.lex_state = 27}, + [1877] = {.lex_state = 27}, + [1878] = {.lex_state = 27}, + [1879] = {.lex_state = 27}, + [1880] = {.lex_state = 27}, + [1881] = {.lex_state = 27}, + [1882] = {.lex_state = 27}, + [1883] = {.lex_state = 27}, + [1884] = {.lex_state = 27}, + [1885] = {.lex_state = 27}, + [1886] = {.lex_state = 27}, + [1887] = {.lex_state = 27}, + [1888] = {.lex_state = 27}, + [1889] = {.lex_state = 27}, + [1890] = {.lex_state = 27}, + [1891] = {.lex_state = 27}, + [1892] = {.lex_state = 27}, + [1893] = {.lex_state = 27}, + [1894] = {.lex_state = 27}, + [1895] = {.lex_state = 27}, + [1896] = {.lex_state = 27}, + [1897] = {.lex_state = 27}, + [1898] = {.lex_state = 27}, + [1899] = {.lex_state = 27}, + [1900] = {.lex_state = 27}, + [1901] = {.lex_state = 27}, + [1902] = {.lex_state = 27}, + [1903] = {.lex_state = 27}, + [1904] = {.lex_state = 27}, + [1905] = {.lex_state = 27}, + [1906] = {.lex_state = 27}, + [1907] = {.lex_state = 27}, + [1908] = {.lex_state = 27}, + [1909] = {.lex_state = 27}, + [1910] = {.lex_state = 27}, + [1911] = {.lex_state = 27}, + [1912] = {.lex_state = 27}, + [1913] = {.lex_state = 27}, + [1914] = {.lex_state = 27}, + [1915] = {.lex_state = 27}, + [1916] = {.lex_state = 27}, + [1917] = {.lex_state = 27}, + [1918] = {.lex_state = 27}, + [1919] = {.lex_state = 27}, + [1920] = {.lex_state = 27}, + [1921] = {.lex_state = 27}, + [1922] = {.lex_state = 27}, + [1923] = {.lex_state = 27}, + [1924] = {.lex_state = 27}, + [1925] = {.lex_state = 27}, + [1926] = {.lex_state = 27}, + [1927] = {.lex_state = 27}, + [1928] = {.lex_state = 27}, + [1929] = {.lex_state = 27}, + [1930] = {.lex_state = 27}, + [1931] = {.lex_state = 27}, + [1932] = {.lex_state = 27}, + [1933] = {.lex_state = 27}, + [1934] = {.lex_state = 27}, + [1935] = {.lex_state = 27}, + [1936] = {.lex_state = 27}, + [1937] = {.lex_state = 27}, + [1938] = {.lex_state = 27}, + [1939] = {.lex_state = 27}, + [1940] = {.lex_state = 27}, + [1941] = {.lex_state = 27}, + [1942] = {.lex_state = 27}, + [1943] = {.lex_state = 27}, + [1944] = {.lex_state = 27}, + [1945] = {.lex_state = 27}, + [1946] = {.lex_state = 27}, + [1947] = {.lex_state = 27}, + [1948] = {.lex_state = 27}, + [1949] = {.lex_state = 27}, + [1950] = {.lex_state = 27}, + [1951] = {.lex_state = 27}, + [1952] = {.lex_state = 27}, + [1953] = {.lex_state = 27}, + [1954] = {.lex_state = 27}, + [1955] = {.lex_state = 27}, + [1956] = {.lex_state = 27}, + [1957] = {.lex_state = 27}, + [1958] = {.lex_state = 27}, + [1959] = {.lex_state = 27}, + [1960] = {.lex_state = 27}, + [1961] = {.lex_state = 27}, + [1962] = {.lex_state = 27}, + [1963] = {.lex_state = 27}, + [1964] = {.lex_state = 27}, + [1965] = {.lex_state = 27}, + [1966] = {.lex_state = 27}, + [1967] = {.lex_state = 27}, + [1968] = {.lex_state = 27}, + [1969] = {.lex_state = 27}, + [1970] = {.lex_state = 27}, + [1971] = {.lex_state = 27}, + [1972] = {.lex_state = 1}, + [1973] = {.lex_state = 1}, + [1974] = {.lex_state = 1}, + [1975] = {.lex_state = 27}, + [1976] = {.lex_state = 27}, + [1977] = {.lex_state = 27}, + [1978] = {.lex_state = 27}, + [1979] = {.lex_state = 27}, + [1980] = {.lex_state = 27}, + [1981] = {.lex_state = 27}, + [1982] = {.lex_state = 27}, + [1983] = {.lex_state = 27}, + [1984] = {.lex_state = 27}, + [1985] = {.lex_state = 27}, + [1986] = {.lex_state = 27}, + [1987] = {.lex_state = 27}, + [1988] = {.lex_state = 27}, + [1989] = {.lex_state = 27}, + [1990] = {.lex_state = 27}, + [1991] = {.lex_state = 27}, + [1992] = {.lex_state = 27}, + [1993] = {.lex_state = 27}, + [1994] = {.lex_state = 27}, + [1995] = {.lex_state = 27}, + [1996] = {.lex_state = 27}, + [1997] = {.lex_state = 27}, + [1998] = {.lex_state = 27}, + [1999] = {.lex_state = 27}, + [2000] = {.lex_state = 27}, + [2001] = {.lex_state = 27}, + [2002] = {.lex_state = 27}, + [2003] = {.lex_state = 27}, + [2004] = {.lex_state = 27}, + [2005] = {.lex_state = 27}, + [2006] = {.lex_state = 27}, + [2007] = {.lex_state = 27}, + [2008] = {.lex_state = 27}, + [2009] = {.lex_state = 27}, + [2010] = {.lex_state = 27}, + [2011] = {.lex_state = 27}, + [2012] = {.lex_state = 27}, + [2013] = {.lex_state = 27}, + [2014] = {.lex_state = 27}, + [2015] = {.lex_state = 27}, + [2016] = {.lex_state = 27}, + [2017] = {.lex_state = 27}, + [2018] = {.lex_state = 27}, + [2019] = {.lex_state = 27}, + [2020] = {.lex_state = 27}, + [2021] = {.lex_state = 27}, + [2022] = {.lex_state = 27}, + [2023] = {.lex_state = 27}, + [2024] = {.lex_state = 27}, + [2025] = {.lex_state = 27}, + [2026] = {.lex_state = 27}, + [2027] = {.lex_state = 27}, + [2028] = {.lex_state = 27}, + [2029] = {.lex_state = 27}, + [2030] = {.lex_state = 27}, + [2031] = {.lex_state = 27}, + [2032] = {.lex_state = 27}, + [2033] = {.lex_state = 27}, + [2034] = {.lex_state = 27}, + [2035] = {.lex_state = 27}, + [2036] = {.lex_state = 27}, + [2037] = {.lex_state = 27}, + [2038] = {.lex_state = 27}, + [2039] = {.lex_state = 27}, + [2040] = {.lex_state = 27}, + [2041] = {.lex_state = 27}, + [2042] = {.lex_state = 27}, + [2043] = {.lex_state = 27}, + [2044] = {.lex_state = 27}, + [2045] = {.lex_state = 27}, + [2046] = {.lex_state = 27}, + [2047] = {.lex_state = 27}, + [2048] = {.lex_state = 27}, + [2049] = {.lex_state = 27}, + [2050] = {.lex_state = 27}, + [2051] = {.lex_state = 27}, + [2052] = {.lex_state = 27}, + [2053] = {.lex_state = 27}, + [2054] = {.lex_state = 27}, + [2055] = {.lex_state = 27}, + [2056] = {.lex_state = 27}, + [2057] = {.lex_state = 27}, + [2058] = {.lex_state = 27}, + [2059] = {.lex_state = 27}, + [2060] = {.lex_state = 27}, + [2061] = {.lex_state = 27}, + [2062] = {.lex_state = 27}, + [2063] = {.lex_state = 27}, + [2064] = {.lex_state = 27}, + [2065] = {.lex_state = 27}, + [2066] = {.lex_state = 27}, + [2067] = {.lex_state = 27}, + [2068] = {.lex_state = 27}, + [2069] = {.lex_state = 27}, + [2070] = {.lex_state = 27}, + [2071] = {.lex_state = 27}, + [2072] = {.lex_state = 27}, + [2073] = {.lex_state = 27}, + [2074] = {.lex_state = 27}, + [2075] = {.lex_state = 27}, + [2076] = {.lex_state = 27}, + [2077] = {.lex_state = 27}, + [2078] = {.lex_state = 27}, + [2079] = {.lex_state = 27}, + [2080] = {.lex_state = 27}, + [2081] = {.lex_state = 27}, + [2082] = {.lex_state = 27}, + [2083] = {.lex_state = 27}, + [2084] = {.lex_state = 27}, + [2085] = {.lex_state = 27}, + [2086] = {.lex_state = 27}, + [2087] = {.lex_state = 27}, + [2088] = {.lex_state = 27}, + [2089] = {.lex_state = 27}, + [2090] = {.lex_state = 27}, + [2091] = {.lex_state = 27}, + [2092] = {.lex_state = 27}, + [2093] = {.lex_state = 27}, + [2094] = {.lex_state = 27}, + [2095] = {.lex_state = 27}, + [2096] = {.lex_state = 27}, + [2097] = {.lex_state = 27}, + [2098] = {.lex_state = 27}, + [2099] = {.lex_state = 27}, + [2100] = {.lex_state = 27}, + [2101] = {.lex_state = 27}, + [2102] = {.lex_state = 27}, + [2103] = {.lex_state = 27}, + [2104] = {.lex_state = 27}, + [2105] = {.lex_state = 27}, + [2106] = {.lex_state = 26}, + [2107] = {.lex_state = 26}, + [2108] = {.lex_state = 26}, + [2109] = {.lex_state = 26}, + [2110] = {.lex_state = 26}, + [2111] = {.lex_state = 26}, + [2112] = {.lex_state = 26}, + [2113] = {.lex_state = 26}, + [2114] = {.lex_state = 26}, + [2115] = {.lex_state = 26}, + [2116] = {.lex_state = 26}, + [2117] = {.lex_state = 26}, + [2118] = {.lex_state = 1}, + [2119] = {.lex_state = 1}, + [2120] = {.lex_state = 19}, + [2121] = {.lex_state = 19}, + [2122] = {.lex_state = 19}, + [2123] = {.lex_state = 19}, + [2124] = {.lex_state = 19}, + [2125] = {.lex_state = 19}, + [2126] = {.lex_state = 19}, + [2127] = {.lex_state = 19}, + [2128] = {.lex_state = 26}, + [2129] = {.lex_state = 19}, + [2130] = {.lex_state = 19}, + [2131] = {.lex_state = 19}, + [2132] = {.lex_state = 19}, + [2133] = {.lex_state = 26}, + [2134] = {.lex_state = 26}, + [2135] = {.lex_state = 26}, + [2136] = {.lex_state = 26}, + [2137] = {.lex_state = 26}, + [2138] = {.lex_state = 26}, + [2139] = {.lex_state = 17}, + [2140] = {.lex_state = 17}, + [2141] = {.lex_state = 17}, + [2142] = {.lex_state = 29}, + [2143] = {.lex_state = 17}, + [2144] = {.lex_state = 17}, + [2145] = {.lex_state = 17}, + [2146] = {.lex_state = 29}, + [2147] = {.lex_state = 17}, + [2148] = {.lex_state = 17}, + [2149] = {.lex_state = 29}, + [2150] = {.lex_state = 17}, + [2151] = {.lex_state = 29}, + [2152] = {.lex_state = 17}, + [2153] = {.lex_state = 17}, + [2154] = {.lex_state = 29}, + [2155] = {.lex_state = 17}, + [2156] = {.lex_state = 17}, + [2157] = {.lex_state = 17}, + [2158] = {.lex_state = 17}, + [2159] = {.lex_state = 17}, + [2160] = {.lex_state = 29}, + [2161] = {.lex_state = 17}, + [2162] = {.lex_state = 17}, + [2163] = {.lex_state = 17}, + [2164] = {.lex_state = 17}, [2165] = {.lex_state = 29}, - [2166] = {.lex_state = 29}, + [2166] = {.lex_state = 17}, [2167] = {.lex_state = 29}, [2168] = {.lex_state = 29}, [2169] = {.lex_state = 29}, - [2170] = {.lex_state = 29}, + [2170] = {.lex_state = 17}, [2171] = {.lex_state = 29}, [2172] = {.lex_state = 29}, - [2173] = {.lex_state = 23}, - [2174] = {.lex_state = 29}, - [2175] = {.lex_state = 29}, - [2176] = {.lex_state = 29}, + [2173] = {.lex_state = 17}, + [2174] = {.lex_state = 17}, + [2175] = {.lex_state = 17}, + [2176] = {.lex_state = 26}, [2177] = {.lex_state = 29}, [2178] = {.lex_state = 29}, - [2179] = {.lex_state = 23}, - [2180] = {.lex_state = 23}, - [2181] = {.lex_state = 23}, - [2182] = {.lex_state = 23}, - [2183] = {.lex_state = 23}, - [2184] = {.lex_state = 29}, - [2185] = {.lex_state = 29}, - [2186] = {.lex_state = 23}, - [2187] = {.lex_state = 23}, - [2188] = {.lex_state = 29}, - [2189] = {.lex_state = 23}, - [2190] = {.lex_state = 29}, - [2191] = {.lex_state = 29}, - [2192] = {.lex_state = 29}, - [2193] = {.lex_state = 29}, - [2194] = {.lex_state = 29}, - [2195] = {.lex_state = 23}, - [2196] = {.lex_state = 29}, - [2197] = {.lex_state = 23}, - [2198] = {.lex_state = 23}, - [2199] = {.lex_state = 23}, - [2200] = {.lex_state = 23}, - [2201] = {.lex_state = 23}, - [2202] = {.lex_state = 29}, - [2203] = {.lex_state = 26}, - [2204] = {.lex_state = 23}, - [2205] = {.lex_state = 23}, - [2206] = {.lex_state = 23}, - [2207] = {.lex_state = 23}, - [2208] = {.lex_state = 23}, - [2209] = {.lex_state = 23}, - [2210] = {.lex_state = 23}, - [2211] = {.lex_state = 23}, - [2212] = {.lex_state = 23}, - [2213] = {.lex_state = 23}, - [2214] = {.lex_state = 29}, - [2215] = {.lex_state = 29}, - [2216] = {.lex_state = 23}, - [2217] = {.lex_state = 29}, - [2218] = {.lex_state = 23}, - [2219] = {.lex_state = 29}, - [2220] = {.lex_state = 23}, - [2221] = {.lex_state = 23}, - [2222] = {.lex_state = 30}, - [2223] = {.lex_state = 29}, - [2224] = {.lex_state = 29}, - [2225] = {.lex_state = 30}, - [2226] = {.lex_state = 29}, - [2227] = {.lex_state = 29}, - [2228] = {.lex_state = 29}, - [2229] = {.lex_state = 29}, - [2230] = {.lex_state = 29}, - [2231] = {.lex_state = 29}, - [2232] = {.lex_state = 29}, - [2233] = {.lex_state = 29}, - [2234] = {.lex_state = 28}, - [2235] = {.lex_state = 29}, - [2236] = {.lex_state = 289}, - [2237] = {.lex_state = 19}, - [2238] = {.lex_state = 20}, - [2239] = {.lex_state = 30}, - [2240] = {.lex_state = 20}, - [2241] = {.lex_state = 20}, - [2242] = {.lex_state = 20}, - [2243] = {.lex_state = 20}, - [2244] = {.lex_state = 20}, - [2245] = {.lex_state = 20}, - [2246] = {.lex_state = 20}, - [2247] = {.lex_state = 20}, - [2248] = {.lex_state = 20}, - [2249] = {.lex_state = 20}, - [2250] = {.lex_state = 20}, - [2251] = {.lex_state = 20}, - [2252] = {.lex_state = 20}, - [2253] = {.lex_state = 20}, - [2254] = {.lex_state = 20}, - [2255] = {.lex_state = 20}, - [2256] = {.lex_state = 20}, - [2257] = {.lex_state = 20}, - [2258] = {.lex_state = 20}, - [2259] = {.lex_state = 20}, - [2260] = {.lex_state = 20}, - [2261] = {.lex_state = 20}, - [2262] = {.lex_state = 20}, - [2263] = {.lex_state = 20}, - [2264] = {.lex_state = 20}, - [2265] = {.lex_state = 20}, - [2266] = {.lex_state = 20}, - [2267] = {.lex_state = 289}, - [2268] = {.lex_state = 289}, - [2269] = {.lex_state = 20}, - [2270] = {.lex_state = 20}, - [2271] = {.lex_state = 20}, - [2272] = {.lex_state = 20}, - [2273] = {.lex_state = 20}, - [2274] = {.lex_state = 20}, - [2275] = {.lex_state = 20}, - [2276] = {.lex_state = 20}, - [2277] = {.lex_state = 20}, - [2278] = {.lex_state = 20}, - [2279] = {.lex_state = 20}, - [2280] = {.lex_state = 20}, - [2281] = {.lex_state = 20}, - [2282] = {.lex_state = 20}, - [2283] = {.lex_state = 20}, - [2284] = {.lex_state = 20}, - [2285] = {.lex_state = 20}, - [2286] = {.lex_state = 20}, - [2287] = {.lex_state = 20}, - [2288] = {.lex_state = 20}, - [2289] = {.lex_state = 20}, - [2290] = {.lex_state = 20}, - [2291] = {.lex_state = 20}, - [2292] = {.lex_state = 20}, - [2293] = {.lex_state = 20}, - [2294] = {.lex_state = 20}, - [2295] = {.lex_state = 20}, - [2296] = {.lex_state = 20}, - [2297] = {.lex_state = 20}, - [2298] = {.lex_state = 20}, - [2299] = {.lex_state = 20}, - [2300] = {.lex_state = 20}, - [2301] = {.lex_state = 20}, - [2302] = {.lex_state = 20}, - [2303] = {.lex_state = 20}, - [2304] = {.lex_state = 20}, - [2305] = {.lex_state = 20}, - [2306] = {.lex_state = 20}, - [2307] = {.lex_state = 20}, - [2308] = {.lex_state = 20}, - [2309] = {.lex_state = 20}, - [2310] = {.lex_state = 20}, - [2311] = {.lex_state = 289}, - [2312] = {.lex_state = 289}, - [2313] = {.lex_state = 20}, - [2314] = {.lex_state = 20}, - [2315] = {.lex_state = 20}, - [2316] = {.lex_state = 20}, - [2317] = {.lex_state = 20}, - [2318] = {.lex_state = 20}, - [2319] = {.lex_state = 20}, - [2320] = {.lex_state = 20}, - [2321] = {.lex_state = 20}, - [2322] = {.lex_state = 20}, - [2323] = {.lex_state = 20}, - [2324] = {.lex_state = 20}, - [2325] = {.lex_state = 20}, - [2326] = {.lex_state = 20}, - [2327] = {.lex_state = 20}, - [2328] = {.lex_state = 20}, - [2329] = {.lex_state = 20}, - [2330] = {.lex_state = 20}, - [2331] = {.lex_state = 1}, - [2332] = {.lex_state = 20}, - [2333] = {.lex_state = 20}, - [2334] = {.lex_state = 1}, - [2335] = {.lex_state = 1}, - [2336] = {.lex_state = 20}, - [2337] = {.lex_state = 20}, - [2338] = {.lex_state = 20}, - [2339] = {.lex_state = 20}, - [2340] = {.lex_state = 20}, - [2341] = {.lex_state = 28}, - [2342] = {.lex_state = 289}, - [2343] = {.lex_state = 26}, - [2344] = {.lex_state = 26}, - [2345] = {.lex_state = 26}, - [2346] = {.lex_state = 289}, - [2347] = {.lex_state = 289}, - [2348] = {.lex_state = 289}, - [2349] = {.lex_state = 289}, - [2350] = {.lex_state = 289}, - [2351] = {.lex_state = 289}, - [2352] = {.lex_state = 26}, - [2353] = {.lex_state = 26}, - [2354] = {.lex_state = 289}, - [2355] = {.lex_state = 289}, - [2356] = {.lex_state = 289}, - [2357] = {.lex_state = 289}, - [2358] = {.lex_state = 289}, - [2359] = {.lex_state = 289}, - [2360] = {.lex_state = 26}, - [2361] = {.lex_state = 289}, - [2362] = {.lex_state = 289}, - [2363] = {.lex_state = 289}, - [2364] = {.lex_state = 289}, - [2365] = {.lex_state = 289}, - [2366] = {.lex_state = 289}, - [2367] = {.lex_state = 289}, - [2368] = {.lex_state = 289}, - [2369] = {.lex_state = 26}, - [2370] = {.lex_state = 26}, - [2371] = {.lex_state = 26}, - [2372] = {.lex_state = 26}, - [2373] = {.lex_state = 20}, - [2374] = {.lex_state = 289}, - [2375] = {.lex_state = 289}, - [2376] = {.lex_state = 289}, - [2377] = {.lex_state = 289}, - [2378] = {.lex_state = 289}, - [2379] = {.lex_state = 289}, - [2380] = {.lex_state = 289}, - [2381] = {.lex_state = 289}, - [2382] = {.lex_state = 289}, - [2383] = {.lex_state = 289}, - [2384] = {.lex_state = 26}, - [2385] = {.lex_state = 289}, - [2386] = {.lex_state = 289}, - [2387] = {.lex_state = 26}, - [2388] = {.lex_state = 26}, - [2389] = {.lex_state = 289}, - [2390] = {.lex_state = 289}, - [2391] = {.lex_state = 289}, - [2392] = {.lex_state = 289}, - [2393] = {.lex_state = 20}, - [2394] = {.lex_state = 289}, - [2395] = {.lex_state = 20}, - [2396] = {.lex_state = 20}, - [2397] = {.lex_state = 289}, - [2398] = {.lex_state = 20}, - [2399] = {.lex_state = 20}, - [2400] = {.lex_state = 20}, - [2401] = {.lex_state = 289}, - [2402] = {.lex_state = 20}, - [2403] = {.lex_state = 20}, - [2404] = {.lex_state = 289}, - [2405] = {.lex_state = 20}, - [2406] = {.lex_state = 20}, - [2407] = {.lex_state = 20}, - [2408] = {.lex_state = 1}, - [2409] = {.lex_state = 289}, - [2410] = {.lex_state = 20}, - [2411] = {.lex_state = 20}, - [2412] = {.lex_state = 20}, - [2413] = {.lex_state = 20}, - [2414] = {.lex_state = 20}, - [2415] = {.lex_state = 23}, - [2416] = {.lex_state = 20}, - [2417] = {.lex_state = 289}, - [2418] = {.lex_state = 20}, - [2419] = {.lex_state = 20}, - [2420] = {.lex_state = 20}, - [2421] = {.lex_state = 20}, - [2422] = {.lex_state = 20}, - [2423] = {.lex_state = 26}, - [2424] = {.lex_state = 289}, - [2425] = {.lex_state = 289}, - [2426] = {.lex_state = 20}, - [2427] = {.lex_state = 20}, - [2428] = {.lex_state = 20}, - [2429] = {.lex_state = 20}, - [2430] = {.lex_state = 20}, - [2431] = {.lex_state = 289}, - [2432] = {.lex_state = 1}, - [2433] = {.lex_state = 289}, - [2434] = {.lex_state = 20}, - [2435] = {.lex_state = 289}, - [2436] = {.lex_state = 20}, - [2437] = {.lex_state = 289}, - [2438] = {.lex_state = 289}, - [2439] = {.lex_state = 289}, - [2440] = {.lex_state = 26}, - [2441] = {.lex_state = 26}, - [2442] = {.lex_state = 26}, - [2443] = {.lex_state = 26}, - [2444] = {.lex_state = 26}, - [2445] = {.lex_state = 26}, - [2446] = {.lex_state = 26}, - [2447] = {.lex_state = 26}, - [2448] = {.lex_state = 26}, - [2449] = {.lex_state = 26}, - [2450] = {.lex_state = 26}, - [2451] = {.lex_state = 26}, - [2452] = {.lex_state = 26}, - [2453] = {.lex_state = 26}, - [2454] = {.lex_state = 26}, - [2455] = {.lex_state = 26}, - [2456] = {.lex_state = 26}, - [2457] = {.lex_state = 26}, - [2458] = {.lex_state = 26}, - [2459] = {.lex_state = 26}, - [2460] = {.lex_state = 26}, - [2461] = {.lex_state = 26}, - [2462] = {.lex_state = 26}, - [2463] = {.lex_state = 26}, - [2464] = {.lex_state = 26}, - [2465] = {.lex_state = 26}, - [2466] = {.lex_state = 26}, - [2467] = {.lex_state = 26}, - [2468] = {.lex_state = 26}, - [2469] = {.lex_state = 26}, - [2470] = {.lex_state = 26}, - [2471] = {.lex_state = 26}, - [2472] = {.lex_state = 26}, - [2473] = {.lex_state = 23}, - [2474] = {.lex_state = 26}, - [2475] = {.lex_state = 26}, - [2476] = {.lex_state = 26}, - [2477] = {.lex_state = 26}, - [2478] = {.lex_state = 26}, - [2479] = {.lex_state = 26}, - [2480] = {.lex_state = 26}, - [2481] = {.lex_state = 26}, - [2482] = {.lex_state = 26}, - [2483] = {.lex_state = 26}, - [2484] = {.lex_state = 26}, - [2485] = {.lex_state = 26}, - [2486] = {.lex_state = 26}, - [2487] = {.lex_state = 26}, - [2488] = {.lex_state = 26}, - [2489] = {.lex_state = 26}, - [2490] = {.lex_state = 26}, - [2491] = {.lex_state = 26}, - [2492] = {.lex_state = 26}, - [2493] = {.lex_state = 23}, - [2494] = {.lex_state = 26}, - [2495] = {.lex_state = 26}, - [2496] = {.lex_state = 26}, - [2497] = {.lex_state = 23}, - [2498] = {.lex_state = 26}, - [2499] = {.lex_state = 26}, - [2500] = {.lex_state = 23}, - [2501] = {.lex_state = 26}, - [2502] = {.lex_state = 26}, - [2503] = {.lex_state = 26}, - [2504] = {.lex_state = 26}, - [2505] = {.lex_state = 26}, - [2506] = {.lex_state = 26}, - [2507] = {.lex_state = 26}, - [2508] = {.lex_state = 26}, - [2509] = {.lex_state = 26}, - [2510] = {.lex_state = 26}, - [2511] = {.lex_state = 26}, - [2512] = {.lex_state = 26}, - [2513] = {.lex_state = 26}, - [2514] = {.lex_state = 26}, - [2515] = {.lex_state = 26}, - [2516] = {.lex_state = 26}, - [2517] = {.lex_state = 26}, - [2518] = {.lex_state = 26}, - [2519] = {.lex_state = 26}, - [2520] = {.lex_state = 26}, - [2521] = {.lex_state = 26}, - [2522] = {.lex_state = 26}, - [2523] = {.lex_state = 26}, - [2524] = {.lex_state = 26}, - [2525] = {.lex_state = 26}, - [2526] = {.lex_state = 26}, - [2527] = {.lex_state = 26}, - [2528] = {.lex_state = 26}, - [2529] = {.lex_state = 26}, - [2530] = {.lex_state = 26}, - [2531] = {.lex_state = 26}, - [2532] = {.lex_state = 26}, - [2533] = {.lex_state = 26}, - [2534] = {.lex_state = 26}, - [2535] = {.lex_state = 26}, - [2536] = {.lex_state = 26}, - [2537] = {.lex_state = 26}, - [2538] = {.lex_state = 26}, - [2539] = {.lex_state = 26}, - [2540] = {.lex_state = 26}, - [2541] = {.lex_state = 26}, - [2542] = {.lex_state = 26}, - [2543] = {.lex_state = 26}, - [2544] = {.lex_state = 26}, - [2545] = {.lex_state = 26}, - [2546] = {.lex_state = 26}, - [2547] = {.lex_state = 26}, - [2548] = {.lex_state = 26}, - [2549] = {.lex_state = 26}, - [2550] = {.lex_state = 26}, - [2551] = {.lex_state = 26}, - [2552] = {.lex_state = 26}, - [2553] = {.lex_state = 26}, - [2554] = {.lex_state = 26}, - [2555] = {.lex_state = 26}, - [2556] = {.lex_state = 26}, - [2557] = {.lex_state = 26}, - [2558] = {.lex_state = 26}, - [2559] = {.lex_state = 26}, - [2560] = {.lex_state = 26}, - [2561] = {.lex_state = 26}, - [2562] = {.lex_state = 26}, - [2563] = {.lex_state = 26}, - [2564] = {.lex_state = 26}, - [2565] = {.lex_state = 26}, - [2566] = {.lex_state = 26}, - [2567] = {.lex_state = 26}, - [2568] = {.lex_state = 26}, - [2569] = {.lex_state = 26}, - [2570] = {.lex_state = 26}, - [2571] = {.lex_state = 26}, - [2572] = {.lex_state = 23}, - [2573] = {.lex_state = 26}, - [2574] = {.lex_state = 26}, - [2575] = {.lex_state = 26}, - [2576] = {.lex_state = 26}, - [2577] = {.lex_state = 26}, - [2578] = {.lex_state = 26}, - [2579] = {.lex_state = 26}, - [2580] = {.lex_state = 26}, - [2581] = {.lex_state = 26}, - [2582] = {.lex_state = 26}, - [2583] = {.lex_state = 26}, - [2584] = {.lex_state = 26}, - [2585] = {.lex_state = 26}, - [2586] = {.lex_state = 26}, - [2587] = {.lex_state = 23}, - [2588] = {.lex_state = 26}, - [2589] = {.lex_state = 23}, - [2590] = {.lex_state = 26}, - [2591] = {.lex_state = 26}, - [2592] = {.lex_state = 26}, - [2593] = {.lex_state = 23}, - [2594] = {.lex_state = 26}, - [2595] = {.lex_state = 26}, - [2596] = {.lex_state = 26}, - [2597] = {.lex_state = 26}, - [2598] = {.lex_state = 26}, - [2599] = {.lex_state = 26}, - [2600] = {.lex_state = 26}, - [2601] = {.lex_state = 26}, - [2602] = {.lex_state = 26}, - [2603] = {.lex_state = 26}, - [2604] = {.lex_state = 26}, - [2605] = {.lex_state = 26}, - [2606] = {.lex_state = 26}, - [2607] = {.lex_state = 26}, - [2608] = {.lex_state = 26}, - [2609] = {.lex_state = 26}, - [2610] = {.lex_state = 26}, - [2611] = {.lex_state = 26}, - [2612] = {.lex_state = 26}, - [2613] = {.lex_state = 26}, - [2614] = {.lex_state = 26}, - [2615] = {.lex_state = 26}, - [2616] = {.lex_state = 26}, - [2617] = {.lex_state = 26}, - [2618] = {.lex_state = 26}, - [2619] = {.lex_state = 26}, - [2620] = {.lex_state = 26}, - [2621] = {.lex_state = 26}, - [2622] = {.lex_state = 26}, - [2623] = {.lex_state = 26}, - [2624] = {.lex_state = 26}, - [2625] = {.lex_state = 26}, - [2626] = {.lex_state = 26}, - [2627] = {.lex_state = 26}, - [2628] = {.lex_state = 26}, - [2629] = {.lex_state = 26}, - [2630] = {.lex_state = 26}, - [2631] = {.lex_state = 26}, - [2632] = {.lex_state = 26}, - [2633] = {.lex_state = 26}, - [2634] = {.lex_state = 26}, - [2635] = {.lex_state = 26}, - [2636] = {.lex_state = 26}, - [2637] = {.lex_state = 26}, - [2638] = {.lex_state = 26}, - [2639] = {.lex_state = 26}, - [2640] = {.lex_state = 26}, - [2641] = {.lex_state = 26}, - [2642] = {.lex_state = 26}, - [2643] = {.lex_state = 26}, - [2644] = {.lex_state = 26}, - [2645] = {.lex_state = 26}, - [2646] = {.lex_state = 26}, - [2647] = {.lex_state = 26}, - [2648] = {.lex_state = 26}, - [2649] = {.lex_state = 26}, - [2650] = {.lex_state = 26}, - [2651] = {.lex_state = 26}, - [2652] = {.lex_state = 26}, - [2653] = {.lex_state = 289}, - [2654] = {.lex_state = 26}, - [2655] = {.lex_state = 26}, - [2656] = {.lex_state = 26}, - [2657] = {.lex_state = 26}, - [2658] = {.lex_state = 26}, - [2659] = {.lex_state = 26}, - [2660] = {.lex_state = 26}, - [2661] = {.lex_state = 26}, - [2662] = {.lex_state = 26}, - [2663] = {.lex_state = 26}, - [2664] = {.lex_state = 26}, - [2665] = {.lex_state = 26}, - [2666] = {.lex_state = 26}, - [2667] = {.lex_state = 26}, - [2668] = {.lex_state = 26}, - [2669] = {.lex_state = 26}, - [2670] = {.lex_state = 26}, - [2671] = {.lex_state = 26}, - [2672] = {.lex_state = 26}, - [2673] = {.lex_state = 26}, - [2674] = {.lex_state = 26}, - [2675] = {.lex_state = 26}, - [2676] = {.lex_state = 26}, - [2677] = {.lex_state = 26}, - [2678] = {.lex_state = 26}, - [2679] = {.lex_state = 26}, - [2680] = {.lex_state = 26}, - [2681] = {.lex_state = 26}, - [2682] = {.lex_state = 23}, - [2683] = {.lex_state = 26}, - [2684] = {.lex_state = 23}, - [2685] = {.lex_state = 26}, - [2686] = {.lex_state = 26}, - [2687] = {.lex_state = 26}, - [2688] = {.lex_state = 26}, - [2689] = {.lex_state = 23}, - [2690] = {.lex_state = 26}, - [2691] = {.lex_state = 26}, - [2692] = {.lex_state = 26}, - [2693] = {.lex_state = 26}, - [2694] = {.lex_state = 26}, - [2695] = {.lex_state = 23}, - [2696] = {.lex_state = 26}, - [2697] = {.lex_state = 23}, - [2698] = {.lex_state = 26}, - [2699] = {.lex_state = 26}, - [2700] = {.lex_state = 26}, - [2701] = {.lex_state = 26}, - [2702] = {.lex_state = 26}, - [2703] = {.lex_state = 26}, - [2704] = {.lex_state = 26}, - [2705] = {.lex_state = 26}, - [2706] = {.lex_state = 26}, - [2707] = {.lex_state = 26}, - [2708] = {.lex_state = 26}, - [2709] = {.lex_state = 26}, - [2710] = {.lex_state = 26}, - [2711] = {.lex_state = 26}, - [2712] = {.lex_state = 26}, - [2713] = {.lex_state = 26}, - [2714] = {.lex_state = 26}, - [2715] = {.lex_state = 26}, - [2716] = {.lex_state = 26}, - [2717] = {.lex_state = 26}, - [2718] = {.lex_state = 26}, - [2719] = {.lex_state = 26}, - [2720] = {.lex_state = 26}, - [2721] = {.lex_state = 26}, - [2722] = {.lex_state = 26}, - [2723] = {.lex_state = 26}, - [2724] = {.lex_state = 26}, - [2725] = {.lex_state = 26}, - [2726] = {.lex_state = 26}, - [2727] = {.lex_state = 23}, - [2728] = {.lex_state = 26}, - [2729] = {.lex_state = 26}, - [2730] = {.lex_state = 26}, - [2731] = {.lex_state = 26}, - [2732] = {.lex_state = 26}, - [2733] = {.lex_state = 26}, - [2734] = {.lex_state = 26}, - [2735] = {.lex_state = 26}, - [2736] = {.lex_state = 26}, - [2737] = {.lex_state = 26}, - [2738] = {.lex_state = 26}, - [2739] = {.lex_state = 26}, - [2740] = {.lex_state = 26}, - [2741] = {.lex_state = 26}, - [2742] = {.lex_state = 26}, - [2743] = {.lex_state = 26}, - [2744] = {.lex_state = 26}, - [2745] = {.lex_state = 26}, - [2746] = {.lex_state = 26}, - [2747] = {.lex_state = 26}, - [2748] = {.lex_state = 26}, - [2749] = {.lex_state = 26}, - [2750] = {.lex_state = 26}, - [2751] = {.lex_state = 26}, - [2752] = {.lex_state = 26}, - [2753] = {.lex_state = 26}, - [2754] = {.lex_state = 26}, - [2755] = {.lex_state = 26}, - [2756] = {.lex_state = 31}, - [2757] = {.lex_state = 26}, - [2758] = {.lex_state = 26}, - [2759] = {.lex_state = 26}, - [2760] = {.lex_state = 26}, - [2761] = {.lex_state = 289}, - [2762] = {.lex_state = 289}, - [2763] = {.lex_state = 26}, - [2764] = {.lex_state = 289}, - [2765] = {.lex_state = 289}, - [2766] = {.lex_state = 26}, - [2767] = {.lex_state = 289}, - [2768] = {.lex_state = 289}, - [2769] = {.lex_state = 289}, - [2770] = {.lex_state = 23}, - [2771] = {.lex_state = 23}, - [2772] = {.lex_state = 26}, - [2773] = {.lex_state = 31}, - [2774] = {.lex_state = 289}, - [2775] = {.lex_state = 289}, - [2776] = {.lex_state = 289}, - [2777] = {.lex_state = 289}, - [2778] = {.lex_state = 289}, - [2779] = {.lex_state = 289}, - [2780] = {.lex_state = 289}, - [2781] = {.lex_state = 289}, - [2782] = {.lex_state = 289}, - [2783] = {.lex_state = 289}, - [2784] = {.lex_state = 289}, - [2785] = {.lex_state = 289}, - [2786] = {.lex_state = 289}, - [2787] = {.lex_state = 289}, - [2788] = {.lex_state = 289}, - [2789] = {.lex_state = 289}, - [2790] = {.lex_state = 289}, - [2791] = {.lex_state = 289}, - [2792] = {.lex_state = 289}, - [2793] = {.lex_state = 289}, - [2794] = {.lex_state = 289}, - [2795] = {.lex_state = 289}, - [2796] = {.lex_state = 289}, - [2797] = {.lex_state = 289}, - [2798] = {.lex_state = 289}, - [2799] = {.lex_state = 289}, - [2800] = {.lex_state = 289}, - [2801] = {.lex_state = 289}, - [2802] = {.lex_state = 289}, - [2803] = {.lex_state = 289}, - [2804] = {.lex_state = 289}, - [2805] = {.lex_state = 289}, - [2806] = {.lex_state = 289}, - [2807] = {.lex_state = 289}, - [2808] = {.lex_state = 289}, - [2809] = {.lex_state = 289}, - [2810] = {.lex_state = 289}, - [2811] = {.lex_state = 289}, - [2812] = {.lex_state = 289}, - [2813] = {.lex_state = 289}, - [2814] = {.lex_state = 289}, - [2815] = {.lex_state = 289}, - [2816] = {.lex_state = 289}, - [2817] = {.lex_state = 289}, - [2818] = {.lex_state = 289}, - [2819] = {.lex_state = 289}, - [2820] = {.lex_state = 289}, - [2821] = {.lex_state = 289}, - [2822] = {.lex_state = 289}, - [2823] = {.lex_state = 289}, - [2824] = {.lex_state = 289}, - [2825] = {.lex_state = 289}, - [2826] = {.lex_state = 289}, - [2827] = {.lex_state = 289}, - [2828] = {.lex_state = 289}, - [2829] = {.lex_state = 289}, - [2830] = {.lex_state = 289}, - [2831] = {.lex_state = 289}, - [2832] = {.lex_state = 289}, - [2833] = {.lex_state = 289}, - [2834] = {.lex_state = 289}, - [2835] = {.lex_state = 289}, - [2836] = {.lex_state = 289}, - [2837] = {.lex_state = 289}, - [2838] = {.lex_state = 289}, - [2839] = {.lex_state = 289}, - [2840] = {.lex_state = 289}, - [2841] = {.lex_state = 289}, - [2842] = {.lex_state = 289}, - [2843] = {.lex_state = 289}, - [2844] = {.lex_state = 289}, - [2845] = {.lex_state = 289}, - [2846] = {.lex_state = 289}, - [2847] = {.lex_state = 289}, - [2848] = {.lex_state = 289}, - [2849] = {.lex_state = 289}, - [2850] = {.lex_state = 289}, - [2851] = {.lex_state = 289}, - [2852] = {.lex_state = 289}, - [2853] = {.lex_state = 289}, - [2854] = {.lex_state = 289}, - [2855] = {.lex_state = 289}, - [2856] = {.lex_state = 289}, - [2857] = {.lex_state = 289}, - [2858] = {.lex_state = 289}, - [2859] = {.lex_state = 289}, - [2860] = {.lex_state = 289}, - [2861] = {.lex_state = 289}, - [2862] = {.lex_state = 289}, - [2863] = {.lex_state = 289}, - [2864] = {.lex_state = 289}, - [2865] = {.lex_state = 289}, - [2866] = {.lex_state = 289}, - [2867] = {.lex_state = 289}, - [2868] = {.lex_state = 289}, - [2869] = {.lex_state = 289}, - [2870] = {.lex_state = 289}, - [2871] = {.lex_state = 289}, - [2872] = {.lex_state = 289}, - [2873] = {.lex_state = 289}, - [2874] = {.lex_state = 289}, - [2875] = {.lex_state = 289}, - [2876] = {.lex_state = 289}, - [2877] = {.lex_state = 289}, - [2878] = {.lex_state = 289}, - [2879] = {.lex_state = 289}, - [2880] = {.lex_state = 289}, - [2881] = {.lex_state = 289}, - [2882] = {.lex_state = 289}, - [2883] = {.lex_state = 289}, - [2884] = {.lex_state = 289}, - [2885] = {.lex_state = 289}, - [2886] = {.lex_state = 289}, - [2887] = {.lex_state = 289}, - [2888] = {.lex_state = 289}, - [2889] = {.lex_state = 289}, - [2890] = {.lex_state = 289}, - [2891] = {.lex_state = 289}, - [2892] = {.lex_state = 289}, - [2893] = {.lex_state = 289}, - [2894] = {.lex_state = 289}, - [2895] = {.lex_state = 289}, - [2896] = {.lex_state = 289}, - [2897] = {.lex_state = 289}, - [2898] = {.lex_state = 289}, - [2899] = {.lex_state = 289}, - [2900] = {.lex_state = 289}, - [2901] = {.lex_state = 289}, - [2902] = {.lex_state = 289}, - [2903] = {.lex_state = 289}, - [2904] = {.lex_state = 289}, - [2905] = {.lex_state = 289}, - [2906] = {.lex_state = 289}, - [2907] = {.lex_state = 289}, - [2908] = {.lex_state = 289}, - [2909] = {.lex_state = 289}, - [2910] = {.lex_state = 289}, - [2911] = {.lex_state = 289}, - [2912] = {.lex_state = 289}, - [2913] = {.lex_state = 289}, - [2914] = {.lex_state = 289}, - [2915] = {.lex_state = 289}, - [2916] = {.lex_state = 289}, - [2917] = {.lex_state = 289}, - [2918] = {.lex_state = 289}, - [2919] = {.lex_state = 289}, - [2920] = {.lex_state = 289}, - [2921] = {.lex_state = 289}, - [2922] = {.lex_state = 289}, - [2923] = {.lex_state = 289}, - [2924] = {.lex_state = 289}, - [2925] = {.lex_state = 289}, - [2926] = {.lex_state = 289}, - [2927] = {.lex_state = 289}, - [2928] = {.lex_state = 289}, - [2929] = {.lex_state = 289}, - [2930] = {.lex_state = 289}, - [2931] = {.lex_state = 289}, - [2932] = {.lex_state = 289}, - [2933] = {.lex_state = 289}, - [2934] = {.lex_state = 289}, - [2935] = {.lex_state = 289}, - [2936] = {.lex_state = 289}, - [2937] = {.lex_state = 289}, - [2938] = {.lex_state = 289}, - [2939] = {.lex_state = 289}, - [2940] = {.lex_state = 289}, - [2941] = {.lex_state = 289}, - [2942] = {.lex_state = 289}, - [2943] = {.lex_state = 289}, - [2944] = {.lex_state = 289}, - [2945] = {.lex_state = 289}, - [2946] = {.lex_state = 289}, - [2947] = {.lex_state = 289}, - [2948] = {.lex_state = 289}, - [2949] = {.lex_state = 289}, - [2950] = {.lex_state = 289}, - [2951] = {.lex_state = 289}, - [2952] = {.lex_state = 289}, - [2953] = {.lex_state = 289}, - [2954] = {.lex_state = 289}, - [2955] = {.lex_state = 289}, - [2956] = {.lex_state = 289}, - [2957] = {.lex_state = 289}, - [2958] = {.lex_state = 289}, - [2959] = {.lex_state = 289}, - [2960] = {.lex_state = 289}, - [2961] = {.lex_state = 289}, - [2962] = {.lex_state = 289}, - [2963] = {.lex_state = 289}, - [2964] = {.lex_state = 289}, - [2965] = {.lex_state = 289}, - [2966] = {.lex_state = 289}, - [2967] = {.lex_state = 289}, - [2968] = {.lex_state = 289}, - [2969] = {.lex_state = 289}, - [2970] = {.lex_state = 289}, - [2971] = {.lex_state = 289}, - [2972] = {.lex_state = 289}, - [2973] = {.lex_state = 289}, - [2974] = {.lex_state = 289}, - [2975] = {.lex_state = 289}, - [2976] = {.lex_state = 289}, - [2977] = {.lex_state = 289}, - [2978] = {.lex_state = 289}, - [2979] = {.lex_state = 289}, - [2980] = {.lex_state = 289}, - [2981] = {.lex_state = 289}, - [2982] = {.lex_state = 289}, - [2983] = {.lex_state = 289}, - [2984] = {.lex_state = 289}, - [2985] = {.lex_state = 289}, - [2986] = {.lex_state = 289}, - [2987] = {.lex_state = 289}, - [2988] = {.lex_state = 289}, - [2989] = {.lex_state = 289}, - [2990] = {.lex_state = 289}, - [2991] = {.lex_state = 289}, - [2992] = {.lex_state = 289}, - [2993] = {.lex_state = 289}, - [2994] = {.lex_state = 289}, - [2995] = {.lex_state = 289}, - [2996] = {.lex_state = 289}, - [2997] = {.lex_state = 289}, - [2998] = {.lex_state = 289}, - [2999] = {.lex_state = 289}, - [3000] = {.lex_state = 289}, - [3001] = {.lex_state = 289}, - [3002] = {.lex_state = 289}, - [3003] = {.lex_state = 289}, - [3004] = {.lex_state = 289}, - [3005] = {.lex_state = 289}, - [3006] = {.lex_state = 289}, - [3007] = {.lex_state = 289}, - [3008] = {.lex_state = 289}, - [3009] = {.lex_state = 289}, - [3010] = {.lex_state = 289}, - [3011] = {.lex_state = 289}, - [3012] = {.lex_state = 289}, - [3013] = {.lex_state = 289}, - [3014] = {.lex_state = 289}, - [3015] = {.lex_state = 289}, - [3016] = {.lex_state = 289}, - [3017] = {.lex_state = 289}, - [3018] = {.lex_state = 289}, - [3019] = {.lex_state = 289}, - [3020] = {.lex_state = 289}, - [3021] = {.lex_state = 289}, - [3022] = {.lex_state = 289}, - [3023] = {.lex_state = 289}, - [3024] = {.lex_state = 289}, - [3025] = {.lex_state = 289}, - [3026] = {.lex_state = 289}, - [3027] = {.lex_state = 289}, - [3028] = {.lex_state = 289}, - [3029] = {.lex_state = 289}, - [3030] = {.lex_state = 289}, - [3031] = {.lex_state = 289}, - [3032] = {.lex_state = 289}, - [3033] = {.lex_state = 289}, - [3034] = {.lex_state = 289}, - [3035] = {.lex_state = 289}, - [3036] = {.lex_state = 289}, - [3037] = {.lex_state = 289}, - [3038] = {.lex_state = 289}, - [3039] = {.lex_state = 289}, - [3040] = {.lex_state = 289}, - [3041] = {.lex_state = 289}, - [3042] = {.lex_state = 289}, - [3043] = {.lex_state = 289}, - [3044] = {.lex_state = 289}, - [3045] = {.lex_state = 289}, - [3046] = {.lex_state = 289}, - [3047] = {.lex_state = 289}, - [3048] = {.lex_state = 289}, - [3049] = {.lex_state = 289}, - [3050] = {.lex_state = 289}, - [3051] = {.lex_state = 289}, - [3052] = {.lex_state = 289}, - [3053] = {.lex_state = 289}, - [3054] = {.lex_state = 289}, - [3055] = {.lex_state = 289}, - [3056] = {.lex_state = 289}, - [3057] = {.lex_state = 289}, - [3058] = {.lex_state = 289}, - [3059] = {.lex_state = 289}, - [3060] = {.lex_state = 289}, - [3061] = {.lex_state = 289}, - [3062] = {.lex_state = 289}, - [3063] = {.lex_state = 289}, - [3064] = {.lex_state = 35}, - [3065] = {.lex_state = 289}, - [3066] = {.lex_state = 289}, - [3067] = {.lex_state = 289}, - [3068] = {.lex_state = 289}, - [3069] = {.lex_state = 289}, - [3070] = {.lex_state = 289}, - [3071] = {.lex_state = 289}, - [3072] = {.lex_state = 289}, - [3073] = {.lex_state = 289}, - [3074] = {.lex_state = 289}, - [3075] = {.lex_state = 289}, - [3076] = {.lex_state = 289}, - [3077] = {.lex_state = 289}, - [3078] = {.lex_state = 289}, - [3079] = {.lex_state = 289}, - [3080] = {.lex_state = 289}, - [3081] = {.lex_state = 289}, - [3082] = {.lex_state = 289}, - [3083] = {.lex_state = 289}, - [3084] = {.lex_state = 289}, - [3085] = {.lex_state = 289}, - [3086] = {.lex_state = 35}, - [3087] = {.lex_state = 289}, - [3088] = {.lex_state = 289}, - [3089] = {.lex_state = 289}, - [3090] = {.lex_state = 289}, - [3091] = {.lex_state = 289}, - [3092] = {.lex_state = 289}, - [3093] = {.lex_state = 289}, - [3094] = {.lex_state = 289}, - [3095] = {.lex_state = 289}, - [3096] = {.lex_state = 289}, - [3097] = {.lex_state = 289}, - [3098] = {.lex_state = 289}, - [3099] = {.lex_state = 289}, - [3100] = {.lex_state = 289}, - [3101] = {.lex_state = 289}, - [3102] = {.lex_state = 289}, - [3103] = {.lex_state = 289}, - [3104] = {.lex_state = 289}, - [3105] = {.lex_state = 289}, - [3106] = {.lex_state = 289}, - [3107] = {.lex_state = 289}, - [3108] = {.lex_state = 289}, - [3109] = {.lex_state = 289}, - [3110] = {.lex_state = 289}, - [3111] = {.lex_state = 289}, - [3112] = {.lex_state = 289}, - [3113] = {.lex_state = 289}, - [3114] = {.lex_state = 289}, - [3115] = {.lex_state = 289}, - [3116] = {.lex_state = 289}, - [3117] = {.lex_state = 289}, - [3118] = {.lex_state = 289}, - [3119] = {.lex_state = 35}, - [3120] = {.lex_state = 289}, - [3121] = {.lex_state = 289}, - [3122] = {.lex_state = 289}, - [3123] = {.lex_state = 35}, - [3124] = {.lex_state = 289}, - [3125] = {.lex_state = 289}, - [3126] = {.lex_state = 289}, - [3127] = {.lex_state = 289}, - [3128] = {.lex_state = 289}, - [3129] = {.lex_state = 289}, - [3130] = {.lex_state = 289}, - [3131] = {.lex_state = 289}, - [3132] = {.lex_state = 289}, - [3133] = {.lex_state = 289}, - [3134] = {.lex_state = 289}, - [3135] = {.lex_state = 35}, - [3136] = {.lex_state = 289}, - [3137] = {.lex_state = 289}, - [3138] = {.lex_state = 289}, - [3139] = {.lex_state = 289}, - [3140] = {.lex_state = 289}, - [3141] = {.lex_state = 289}, - [3142] = {.lex_state = 289}, - [3143] = {.lex_state = 289}, - [3144] = {.lex_state = 289}, - [3145] = {.lex_state = 289}, - [3146] = {.lex_state = 289}, - [3147] = {.lex_state = 289}, - [3148] = {.lex_state = 289}, - [3149] = {.lex_state = 289}, - [3150] = {.lex_state = 289}, - [3151] = {.lex_state = 289}, - [3152] = {.lex_state = 289}, - [3153] = {.lex_state = 289}, - [3154] = {.lex_state = 289}, - [3155] = {.lex_state = 289}, - [3156] = {.lex_state = 289}, - [3157] = {.lex_state = 289}, - [3158] = {.lex_state = 289}, - [3159] = {.lex_state = 289}, - [3160] = {.lex_state = 289}, - [3161] = {.lex_state = 289}, - [3162] = {.lex_state = 35}, - [3163] = {.lex_state = 289}, - [3164] = {.lex_state = 289}, - [3165] = {.lex_state = 289}, - [3166] = {.lex_state = 289}, - [3167] = {.lex_state = 289}, - [3168] = {.lex_state = 289}, - [3169] = {.lex_state = 289}, - [3170] = {.lex_state = 289}, - [3171] = {.lex_state = 289}, - [3172] = {.lex_state = 289}, - [3173] = {.lex_state = 289}, - [3174] = {.lex_state = 289}, - [3175] = {.lex_state = 289}, - [3176] = {.lex_state = 289}, - [3177] = {.lex_state = 289}, - [3178] = {.lex_state = 289}, - [3179] = {.lex_state = 289}, - [3180] = {.lex_state = 289}, - [3181] = {.lex_state = 289}, - [3182] = {.lex_state = 289}, - [3183] = {.lex_state = 289}, - [3184] = {.lex_state = 289}, - [3185] = {.lex_state = 35}, - [3186] = {.lex_state = 289}, - [3187] = {.lex_state = 35}, - [3188] = {.lex_state = 289}, - [3189] = {.lex_state = 289}, - [3190] = {.lex_state = 289}, - [3191] = {.lex_state = 289}, - [3192] = {.lex_state = 289}, - [3193] = {.lex_state = 289}, - [3194] = {.lex_state = 289}, - [3195] = {.lex_state = 289}, - [3196] = {.lex_state = 289}, - [3197] = {.lex_state = 289}, - [3198] = {.lex_state = 289}, - [3199] = {.lex_state = 289}, - [3200] = {.lex_state = 289}, - [3201] = {.lex_state = 289}, - [3202] = {.lex_state = 289}, - [3203] = {.lex_state = 289}, - [3204] = {.lex_state = 289}, - [3205] = {.lex_state = 289}, - [3206] = {.lex_state = 289}, - [3207] = {.lex_state = 289}, - [3208] = {.lex_state = 289}, - [3209] = {.lex_state = 289}, - [3210] = {.lex_state = 289}, - [3211] = {.lex_state = 289}, - [3212] = {.lex_state = 35}, - [3213] = {.lex_state = 289}, - [3214] = {.lex_state = 35}, - [3215] = {.lex_state = 289}, - [3216] = {.lex_state = 289}, - [3217] = {.lex_state = 289}, - [3218] = {.lex_state = 289}, - [3219] = {.lex_state = 289}, - [3220] = {.lex_state = 289}, - [3221] = {.lex_state = 289}, - [3222] = {.lex_state = 289}, - [3223] = {.lex_state = 289}, - [3224] = {.lex_state = 289}, - [3225] = {.lex_state = 289}, - [3226] = {.lex_state = 289}, - [3227] = {.lex_state = 289}, - [3228] = {.lex_state = 289}, - [3229] = {.lex_state = 289}, - [3230] = {.lex_state = 289}, - [3231] = {.lex_state = 289}, - [3232] = {.lex_state = 289}, - [3233] = {.lex_state = 289}, - [3234] = {.lex_state = 289}, - [3235] = {.lex_state = 289}, - [3236] = {.lex_state = 289}, - [3237] = {.lex_state = 289}, - [3238] = {.lex_state = 289}, - [3239] = {.lex_state = 21}, - [3240] = {.lex_state = 289}, - [3241] = {.lex_state = 289}, - [3242] = {.lex_state = 289}, - [3243] = {.lex_state = 289}, - [3244] = {.lex_state = 21}, - [3245] = {.lex_state = 289}, - [3246] = {.lex_state = 289}, - [3247] = {.lex_state = 289}, - [3248] = {.lex_state = 289}, - [3249] = {.lex_state = 289}, - [3250] = {.lex_state = 289}, - [3251] = {.lex_state = 289}, - [3252] = {.lex_state = 289}, - [3253] = {.lex_state = 21}, - [3254] = {.lex_state = 21}, - [3255] = {.lex_state = 289}, - [3256] = {.lex_state = 289}, - [3257] = {.lex_state = 289}, - [3258] = {.lex_state = 289}, - [3259] = {.lex_state = 289}, - [3260] = {.lex_state = 289}, - [3261] = {.lex_state = 21}, - [3262] = {.lex_state = 21}, - [3263] = {.lex_state = 289}, - [3264] = {.lex_state = 289}, - [3265] = {.lex_state = 289}, - [3266] = {.lex_state = 289}, - [3267] = {.lex_state = 21}, - [3268] = {.lex_state = 289}, - [3269] = {.lex_state = 289}, - [3270] = {.lex_state = 289}, - [3271] = {.lex_state = 289}, - [3272] = {.lex_state = 289}, - [3273] = {.lex_state = 289}, - [3274] = {.lex_state = 289}, - [3275] = {.lex_state = 21}, - [3276] = {.lex_state = 289}, - [3277] = {.lex_state = 289}, - [3278] = {.lex_state = 289}, - [3279] = {.lex_state = 289}, - [3280] = {.lex_state = 289}, - [3281] = {.lex_state = 21}, - [3282] = {.lex_state = 289}, - [3283] = {.lex_state = 289}, - [3284] = {.lex_state = 289}, - [3285] = {.lex_state = 21}, - [3286] = {.lex_state = 289}, - [3287] = {.lex_state = 289}, - [3288] = {.lex_state = 289}, - [3289] = {.lex_state = 289}, - [3290] = {.lex_state = 289}, - [3291] = {.lex_state = 289}, - [3292] = {.lex_state = 289}, - [3293] = {.lex_state = 21}, - [3294] = {.lex_state = 289}, - [3295] = {.lex_state = 289}, - [3296] = {.lex_state = 289}, - [3297] = {.lex_state = 289}, - [3298] = {.lex_state = 21}, - [3299] = {.lex_state = 21}, - [3300] = {.lex_state = 289}, - [3301] = {.lex_state = 289}, - [3302] = {.lex_state = 289}, - [3303] = {.lex_state = 21}, - [3304] = {.lex_state = 289}, - [3305] = {.lex_state = 289}, - [3306] = {.lex_state = 1}, - [3307] = {.lex_state = 21}, - [3308] = {.lex_state = 289}, - [3309] = {.lex_state = 21}, - [3310] = {.lex_state = 289}, - [3311] = {.lex_state = 289}, - [3312] = {.lex_state = 21}, - [3313] = {.lex_state = 21}, - [3314] = {.lex_state = 289}, - [3315] = {.lex_state = 289}, - [3316] = {.lex_state = 289}, - [3317] = {.lex_state = 289}, - [3318] = {.lex_state = 289}, - [3319] = {.lex_state = 289}, - [3320] = {.lex_state = 289}, - [3321] = {.lex_state = 289}, - [3322] = {.lex_state = 289}, - [3323] = {.lex_state = 289}, - [3324] = {.lex_state = 289}, - [3325] = {.lex_state = 21}, - [3326] = {.lex_state = 289}, - [3327] = {.lex_state = 289}, - [3328] = {.lex_state = 289}, - [3329] = {.lex_state = 289}, - [3330] = {.lex_state = 289}, - [3331] = {.lex_state = 289}, - [3332] = {.lex_state = 289}, - [3333] = {.lex_state = 289}, - [3334] = {.lex_state = 289}, - [3335] = {.lex_state = 289}, - [3336] = {.lex_state = 21}, - [3337] = {.lex_state = 289}, - [3338] = {.lex_state = 289}, - [3339] = {.lex_state = 289}, - [3340] = {.lex_state = 289}, - [3341] = {.lex_state = 289}, - [3342] = {.lex_state = 289}, - [3343] = {.lex_state = 289}, - [3344] = {.lex_state = 289}, - [3345] = {.lex_state = 289}, - [3346] = {.lex_state = 21}, - [3347] = {.lex_state = 289}, - [3348] = {.lex_state = 289}, - [3349] = {.lex_state = 36}, - [3350] = {.lex_state = 36}, - [3351] = {.lex_state = 32}, - [3352] = {.lex_state = 36}, - [3353] = {.lex_state = 36}, - [3354] = {.lex_state = 36}, - [3355] = {.lex_state = 32}, - [3356] = {.lex_state = 34}, - [3357] = {.lex_state = 36}, - [3358] = {.lex_state = 36}, - [3359] = {.lex_state = 36}, - [3360] = {.lex_state = 36}, - [3361] = {.lex_state = 36}, - [3362] = {.lex_state = 21}, - [3363] = {.lex_state = 21}, - [3364] = {.lex_state = 21}, - [3365] = {.lex_state = 21}, - [3366] = {.lex_state = 21}, - [3367] = {.lex_state = 21}, - [3368] = {.lex_state = 21}, - [3369] = {.lex_state = 21}, - [3370] = {.lex_state = 32}, - [3371] = {.lex_state = 21}, - [3372] = {.lex_state = 23}, - [3373] = {.lex_state = 33}, - [3374] = {.lex_state = 33}, - [3375] = {.lex_state = 32}, - [3376] = {.lex_state = 33}, - [3377] = {.lex_state = 33}, - [3378] = {.lex_state = 33}, + [2179] = {.lex_state = 17}, + [2180] = {.lex_state = 26}, + [2181] = {.lex_state = 22}, + [2182] = {.lex_state = 26}, + [2183] = {.lex_state = 26}, + [2184] = {.lex_state = 26}, + [2185] = {.lex_state = 26}, + [2186] = {.lex_state = 26}, + [2187] = {.lex_state = 26}, + [2188] = {.lex_state = 26}, + [2189] = {.lex_state = 26}, + [2190] = {.lex_state = 26}, + [2191] = {.lex_state = 26}, + [2192] = {.lex_state = 22}, + [2193] = {.lex_state = 22}, + [2194] = {.lex_state = 22}, + [2195] = {.lex_state = 22}, + [2196] = {.lex_state = 26}, + [2197] = {.lex_state = 26}, + [2198] = {.lex_state = 26}, + [2199] = {.lex_state = 22}, + [2200] = {.lex_state = 22}, + [2201] = {.lex_state = 22}, + [2202] = {.lex_state = 26}, + [2203] = {.lex_state = 22}, + [2204] = {.lex_state = 26}, + [2205] = {.lex_state = 26}, + [2206] = {.lex_state = 26}, + [2207] = {.lex_state = 26}, + [2208] = {.lex_state = 22}, + [2209] = {.lex_state = 26}, + [2210] = {.lex_state = 26}, + [2211] = {.lex_state = 22}, + [2212] = {.lex_state = 26}, + [2213] = {.lex_state = 22}, + [2214] = {.lex_state = 26}, + [2215] = {.lex_state = 26}, + [2216] = {.lex_state = 26}, + [2217] = {.lex_state = 22}, + [2218] = {.lex_state = 27}, + [2219] = {.lex_state = 27}, + [2220] = {.lex_state = 27}, + [2221] = {.lex_state = 22}, + [2222] = {.lex_state = 27}, + [2223] = {.lex_state = 27}, + [2224] = {.lex_state = 27}, + [2225] = {.lex_state = 27}, + [2226] = {.lex_state = 27}, + [2227] = {.lex_state = 27}, + [2228] = {.lex_state = 27}, + [2229] = {.lex_state = 27}, + [2230] = {.lex_state = 27}, + [2231] = {.lex_state = 27}, + [2232] = {.lex_state = 27}, + [2233] = {.lex_state = 27}, + [2234] = {.lex_state = 22}, + [2235] = {.lex_state = 22}, + [2236] = {.lex_state = 22}, + [2237] = {.lex_state = 27}, + [2238] = {.lex_state = 27}, + [2239] = {.lex_state = 27}, + [2240] = {.lex_state = 27}, + [2241] = {.lex_state = 22}, + [2242] = {.lex_state = 29}, + [2243] = {.lex_state = 22}, + [2244] = {.lex_state = 22}, + [2245] = {.lex_state = 22}, + [2246] = {.lex_state = 29}, + [2247] = {.lex_state = 22}, + [2248] = {.lex_state = 22}, + [2249] = {.lex_state = 22}, + [2250] = {.lex_state = 22}, + [2251] = {.lex_state = 22}, + [2252] = {.lex_state = 22}, + [2253] = {.lex_state = 25}, + [2254] = {.lex_state = 22}, + [2255] = {.lex_state = 26}, + [2256] = {.lex_state = 288}, + [2257] = {.lex_state = 19}, + [2258] = {.lex_state = 29}, + [2259] = {.lex_state = 18}, + [2260] = {.lex_state = 19}, + [2261] = {.lex_state = 19}, + [2262] = {.lex_state = 19}, + [2263] = {.lex_state = 19}, + [2264] = {.lex_state = 19}, + [2265] = {.lex_state = 19}, + [2266] = {.lex_state = 19}, + [2267] = {.lex_state = 19}, + [2268] = {.lex_state = 19}, + [2269] = {.lex_state = 19}, + [2270] = {.lex_state = 19}, + [2271] = {.lex_state = 19}, + [2272] = {.lex_state = 19}, + [2273] = {.lex_state = 288}, + [2274] = {.lex_state = 19}, + [2275] = {.lex_state = 19}, + [2276] = {.lex_state = 19}, + [2277] = {.lex_state = 288}, + [2278] = {.lex_state = 19}, + [2279] = {.lex_state = 19}, + [2280] = {.lex_state = 19}, + [2281] = {.lex_state = 19}, + [2282] = {.lex_state = 19}, + [2283] = {.lex_state = 19}, + [2284] = {.lex_state = 19}, + [2285] = {.lex_state = 19}, + [2286] = {.lex_state = 19}, + [2287] = {.lex_state = 19}, + [2288] = {.lex_state = 19}, + [2289] = {.lex_state = 19}, + [2290] = {.lex_state = 19}, + [2291] = {.lex_state = 19}, + [2292] = {.lex_state = 19}, + [2293] = {.lex_state = 19}, + [2294] = {.lex_state = 19}, + [2295] = {.lex_state = 19}, + [2296] = {.lex_state = 19}, + [2297] = {.lex_state = 19}, + [2298] = {.lex_state = 19}, + [2299] = {.lex_state = 19}, + [2300] = {.lex_state = 19}, + [2301] = {.lex_state = 19}, + [2302] = {.lex_state = 19}, + [2303] = {.lex_state = 19}, + [2304] = {.lex_state = 19}, + [2305] = {.lex_state = 19}, + [2306] = {.lex_state = 19}, + [2307] = {.lex_state = 19}, + [2308] = {.lex_state = 19}, + [2309] = {.lex_state = 19}, + [2310] = {.lex_state = 19}, + [2311] = {.lex_state = 19}, + [2312] = {.lex_state = 19}, + [2313] = {.lex_state = 19}, + [2314] = {.lex_state = 19}, + [2315] = {.lex_state = 19}, + [2316] = {.lex_state = 19}, + [2317] = {.lex_state = 19}, + [2318] = {.lex_state = 19}, + [2319] = {.lex_state = 19}, + [2320] = {.lex_state = 19}, + [2321] = {.lex_state = 19}, + [2322] = {.lex_state = 19}, + [2323] = {.lex_state = 19}, + [2324] = {.lex_state = 19}, + [2325] = {.lex_state = 19}, + [2326] = {.lex_state = 19}, + [2327] = {.lex_state = 19}, + [2328] = {.lex_state = 1}, + [2329] = {.lex_state = 19}, + [2330] = {.lex_state = 19}, + [2331] = {.lex_state = 19}, + [2332] = {.lex_state = 19}, + [2333] = {.lex_state = 1}, + [2334] = {.lex_state = 19}, + [2335] = {.lex_state = 288}, + [2336] = {.lex_state = 288}, + [2337] = {.lex_state = 19}, + [2338] = {.lex_state = 19}, + [2339] = {.lex_state = 19}, + [2340] = {.lex_state = 19}, + [2341] = {.lex_state = 19}, + [2342] = {.lex_state = 19}, + [2343] = {.lex_state = 19}, + [2344] = {.lex_state = 19}, + [2345] = {.lex_state = 19}, + [2346] = {.lex_state = 1}, + [2347] = {.lex_state = 19}, + [2348] = {.lex_state = 19}, + [2349] = {.lex_state = 19}, + [2350] = {.lex_state = 19}, + [2351] = {.lex_state = 19}, + [2352] = {.lex_state = 19}, + [2353] = {.lex_state = 19}, + [2354] = {.lex_state = 19}, + [2355] = {.lex_state = 19}, + [2356] = {.lex_state = 19}, + [2357] = {.lex_state = 19}, + [2358] = {.lex_state = 19}, + [2359] = {.lex_state = 19}, + [2360] = {.lex_state = 19}, + [2361] = {.lex_state = 25}, + [2362] = {.lex_state = 288}, + [2363] = {.lex_state = 288}, + [2364] = {.lex_state = 288}, + [2365] = {.lex_state = 27}, + [2366] = {.lex_state = 288}, + [2367] = {.lex_state = 19}, + [2368] = {.lex_state = 288}, + [2369] = {.lex_state = 288}, + [2370] = {.lex_state = 288}, + [2371] = {.lex_state = 288}, + [2372] = {.lex_state = 288}, + [2373] = {.lex_state = 27}, + [2374] = {.lex_state = 288}, + [2375] = {.lex_state = 288}, + [2376] = {.lex_state = 27}, + [2377] = {.lex_state = 27}, + [2378] = {.lex_state = 288}, + [2379] = {.lex_state = 288}, + [2380] = {.lex_state = 19}, + [2381] = {.lex_state = 27}, + [2382] = {.lex_state = 288}, + [2383] = {.lex_state = 27}, + [2384] = {.lex_state = 288}, + [2385] = {.lex_state = 288}, + [2386] = {.lex_state = 288}, + [2387] = {.lex_state = 19}, + [2388] = {.lex_state = 27}, + [2389] = {.lex_state = 288}, + [2390] = {.lex_state = 27}, + [2391] = {.lex_state = 288}, + [2392] = {.lex_state = 288}, + [2393] = {.lex_state = 288}, + [2394] = {.lex_state = 288}, + [2395] = {.lex_state = 27}, + [2396] = {.lex_state = 288}, + [2397] = {.lex_state = 288}, + [2398] = {.lex_state = 288}, + [2399] = {.lex_state = 288}, + [2400] = {.lex_state = 27}, + [2401] = {.lex_state = 288}, + [2402] = {.lex_state = 288}, + [2403] = {.lex_state = 27}, + [2404] = {.lex_state = 288}, + [2405] = {.lex_state = 288}, + [2406] = {.lex_state = 288}, + [2407] = {.lex_state = 288}, + [2408] = {.lex_state = 288}, + [2409] = {.lex_state = 288}, + [2410] = {.lex_state = 27}, + [2411] = {.lex_state = 288}, + [2412] = {.lex_state = 288}, + [2413] = {.lex_state = 288}, + [2414] = {.lex_state = 27}, + [2415] = {.lex_state = 19}, + [2416] = {.lex_state = 19}, + [2417] = {.lex_state = 19}, + [2418] = {.lex_state = 19}, + [2419] = {.lex_state = 27}, + [2420] = {.lex_state = 288}, + [2421] = {.lex_state = 288}, + [2422] = {.lex_state = 288}, + [2423] = {.lex_state = 19}, + [2424] = {.lex_state = 19}, + [2425] = {.lex_state = 19}, + [2426] = {.lex_state = 19}, + [2427] = {.lex_state = 19}, + [2428] = {.lex_state = 19}, + [2429] = {.lex_state = 19}, + [2430] = {.lex_state = 288}, + [2431] = {.lex_state = 19}, + [2432] = {.lex_state = 288}, + [2433] = {.lex_state = 19}, + [2434] = {.lex_state = 288}, + [2435] = {.lex_state = 19}, + [2436] = {.lex_state = 288}, + [2437] = {.lex_state = 1}, + [2438] = {.lex_state = 19}, + [2439] = {.lex_state = 19}, + [2440] = {.lex_state = 288}, + [2441] = {.lex_state = 288}, + [2442] = {.lex_state = 19}, + [2443] = {.lex_state = 19}, + [2444] = {.lex_state = 19}, + [2445] = {.lex_state = 19}, + [2446] = {.lex_state = 19}, + [2447] = {.lex_state = 288}, + [2448] = {.lex_state = 19}, + [2449] = {.lex_state = 19}, + [2450] = {.lex_state = 27}, + [2451] = {.lex_state = 288}, + [2452] = {.lex_state = 19}, + [2453] = {.lex_state = 288}, + [2454] = {.lex_state = 19}, + [2455] = {.lex_state = 19}, + [2456] = {.lex_state = 19}, + [2457] = {.lex_state = 19}, + [2458] = {.lex_state = 19}, + [2459] = {.lex_state = 1}, + [2460] = {.lex_state = 288}, + [2461] = {.lex_state = 288}, + [2462] = {.lex_state = 27}, + [2463] = {.lex_state = 27}, + [2464] = {.lex_state = 288}, + [2465] = {.lex_state = 288}, + [2466] = {.lex_state = 288}, + [2467] = {.lex_state = 288}, + [2468] = {.lex_state = 288}, + [2469] = {.lex_state = 288}, + [2470] = {.lex_state = 288}, + [2471] = {.lex_state = 288}, + [2472] = {.lex_state = 27}, + [2473] = {.lex_state = 27}, + [2474] = {.lex_state = 27}, + [2475] = {.lex_state = 27}, + [2476] = {.lex_state = 27}, + [2477] = {.lex_state = 27}, + [2478] = {.lex_state = 27}, + [2479] = {.lex_state = 27}, + [2480] = {.lex_state = 27}, + [2481] = {.lex_state = 27}, + [2482] = {.lex_state = 27}, + [2483] = {.lex_state = 27}, + [2484] = {.lex_state = 27}, + [2485] = {.lex_state = 27}, + [2486] = {.lex_state = 27}, + [2487] = {.lex_state = 27}, + [2488] = {.lex_state = 27}, + [2489] = {.lex_state = 27}, + [2490] = {.lex_state = 27}, + [2491] = {.lex_state = 27}, + [2492] = {.lex_state = 27}, + [2493] = {.lex_state = 27}, + [2494] = {.lex_state = 27}, + [2495] = {.lex_state = 27}, + [2496] = {.lex_state = 27}, + [2497] = {.lex_state = 27}, + [2498] = {.lex_state = 22}, + [2499] = {.lex_state = 27}, + [2500] = {.lex_state = 27}, + [2501] = {.lex_state = 27}, + [2502] = {.lex_state = 27}, + [2503] = {.lex_state = 27}, + [2504] = {.lex_state = 27}, + [2505] = {.lex_state = 27}, + [2506] = {.lex_state = 27}, + [2507] = {.lex_state = 27}, + [2508] = {.lex_state = 27}, + [2509] = {.lex_state = 27}, + [2510] = {.lex_state = 27}, + [2511] = {.lex_state = 27}, + [2512] = {.lex_state = 27}, + [2513] = {.lex_state = 27}, + [2514] = {.lex_state = 27}, + [2515] = {.lex_state = 27}, + [2516] = {.lex_state = 27}, + [2517] = {.lex_state = 27}, + [2518] = {.lex_state = 27}, + [2519] = {.lex_state = 27}, + [2520] = {.lex_state = 22}, + [2521] = {.lex_state = 27}, + [2522] = {.lex_state = 27}, + [2523] = {.lex_state = 27}, + [2524] = {.lex_state = 27}, + [2525] = {.lex_state = 27}, + [2526] = {.lex_state = 27}, + [2527] = {.lex_state = 27}, + [2528] = {.lex_state = 27}, + [2529] = {.lex_state = 27}, + [2530] = {.lex_state = 27}, + [2531] = {.lex_state = 27}, + [2532] = {.lex_state = 27}, + [2533] = {.lex_state = 27}, + [2534] = {.lex_state = 27}, + [2535] = {.lex_state = 27}, + [2536] = {.lex_state = 27}, + [2537] = {.lex_state = 27}, + [2538] = {.lex_state = 27}, + [2539] = {.lex_state = 27}, + [2540] = {.lex_state = 27}, + [2541] = {.lex_state = 27}, + [2542] = {.lex_state = 27}, + [2543] = {.lex_state = 27}, + [2544] = {.lex_state = 27}, + [2545] = {.lex_state = 27}, + [2546] = {.lex_state = 27}, + [2547] = {.lex_state = 27}, + [2548] = {.lex_state = 27}, + [2549] = {.lex_state = 27}, + [2550] = {.lex_state = 27}, + [2551] = {.lex_state = 27}, + [2552] = {.lex_state = 27}, + [2553] = {.lex_state = 27}, + [2554] = {.lex_state = 27}, + [2555] = {.lex_state = 27}, + [2556] = {.lex_state = 27}, + [2557] = {.lex_state = 27}, + [2558] = {.lex_state = 30}, + [2559] = {.lex_state = 27}, + [2560] = {.lex_state = 27}, + [2561] = {.lex_state = 27}, + [2562] = {.lex_state = 22}, + [2563] = {.lex_state = 27}, + [2564] = {.lex_state = 27}, + [2565] = {.lex_state = 27}, + [2566] = {.lex_state = 27}, + [2567] = {.lex_state = 27}, + [2568] = {.lex_state = 27}, + [2569] = {.lex_state = 27}, + [2570] = {.lex_state = 27}, + [2571] = {.lex_state = 27}, + [2572] = {.lex_state = 27}, + [2573] = {.lex_state = 22}, + [2574] = {.lex_state = 27}, + [2575] = {.lex_state = 27}, + [2576] = {.lex_state = 27}, + [2577] = {.lex_state = 27}, + [2578] = {.lex_state = 27}, + [2579] = {.lex_state = 27}, + [2580] = {.lex_state = 27}, + [2581] = {.lex_state = 27}, + [2582] = {.lex_state = 27}, + [2583] = {.lex_state = 27}, + [2584] = {.lex_state = 27}, + [2585] = {.lex_state = 27}, + [2586] = {.lex_state = 27}, + [2587] = {.lex_state = 27}, + [2588] = {.lex_state = 27}, + [2589] = {.lex_state = 27}, + [2590] = {.lex_state = 27}, + [2591] = {.lex_state = 27}, + [2592] = {.lex_state = 27}, + [2593] = {.lex_state = 27}, + [2594] = {.lex_state = 27}, + [2595] = {.lex_state = 30}, + [2596] = {.lex_state = 27}, + [2597] = {.lex_state = 27}, + [2598] = {.lex_state = 27}, + [2599] = {.lex_state = 22}, + [2600] = {.lex_state = 27}, + [2601] = {.lex_state = 27}, + [2602] = {.lex_state = 27}, + [2603] = {.lex_state = 27}, + [2604] = {.lex_state = 27}, + [2605] = {.lex_state = 27}, + [2606] = {.lex_state = 27}, + [2607] = {.lex_state = 27}, + [2608] = {.lex_state = 22}, + [2609] = {.lex_state = 27}, + [2610] = {.lex_state = 27}, + [2611] = {.lex_state = 27}, + [2612] = {.lex_state = 27}, + [2613] = {.lex_state = 27}, + [2614] = {.lex_state = 27}, + [2615] = {.lex_state = 22}, + [2616] = {.lex_state = 27}, + [2617] = {.lex_state = 27}, + [2618] = {.lex_state = 27}, + [2619] = {.lex_state = 27}, + [2620] = {.lex_state = 27}, + [2621] = {.lex_state = 27}, + [2622] = {.lex_state = 27}, + [2623] = {.lex_state = 27}, + [2624] = {.lex_state = 27}, + [2625] = {.lex_state = 27}, + [2626] = {.lex_state = 27}, + [2627] = {.lex_state = 27}, + [2628] = {.lex_state = 27}, + [2629] = {.lex_state = 27}, + [2630] = {.lex_state = 27}, + [2631] = {.lex_state = 27}, + [2632] = {.lex_state = 27}, + [2633] = {.lex_state = 27}, + [2634] = {.lex_state = 27}, + [2635] = {.lex_state = 27}, + [2636] = {.lex_state = 27}, + [2637] = {.lex_state = 27}, + [2638] = {.lex_state = 27}, + [2639] = {.lex_state = 27}, + [2640] = {.lex_state = 27}, + [2641] = {.lex_state = 27}, + [2642] = {.lex_state = 27}, + [2643] = {.lex_state = 27}, + [2644] = {.lex_state = 27}, + [2645] = {.lex_state = 27}, + [2646] = {.lex_state = 27}, + [2647] = {.lex_state = 27}, + [2648] = {.lex_state = 27}, + [2649] = {.lex_state = 27}, + [2650] = {.lex_state = 27}, + [2651] = {.lex_state = 27}, + [2652] = {.lex_state = 27}, + [2653] = {.lex_state = 27}, + [2654] = {.lex_state = 27}, + [2655] = {.lex_state = 27}, + [2656] = {.lex_state = 27}, + [2657] = {.lex_state = 22}, + [2658] = {.lex_state = 27}, + [2659] = {.lex_state = 27}, + [2660] = {.lex_state = 27}, + [2661] = {.lex_state = 27}, + [2662] = {.lex_state = 27}, + [2663] = {.lex_state = 27}, + [2664] = {.lex_state = 27}, + [2665] = {.lex_state = 27}, + [2666] = {.lex_state = 27}, + [2667] = {.lex_state = 27}, + [2668] = {.lex_state = 27}, + [2669] = {.lex_state = 27}, + [2670] = {.lex_state = 27}, + [2671] = {.lex_state = 27}, + [2672] = {.lex_state = 27}, + [2673] = {.lex_state = 27}, + [2674] = {.lex_state = 27}, + [2675] = {.lex_state = 27}, + [2676] = {.lex_state = 27}, + [2677] = {.lex_state = 27}, + [2678] = {.lex_state = 27}, + [2679] = {.lex_state = 27}, + [2680] = {.lex_state = 27}, + [2681] = {.lex_state = 27}, + [2682] = {.lex_state = 27}, + [2683] = {.lex_state = 27}, + [2684] = {.lex_state = 27}, + [2685] = {.lex_state = 27}, + [2686] = {.lex_state = 27}, + [2687] = {.lex_state = 27}, + [2688] = {.lex_state = 27}, + [2689] = {.lex_state = 27}, + [2690] = {.lex_state = 27}, + [2691] = {.lex_state = 27}, + [2692] = {.lex_state = 27}, + [2693] = {.lex_state = 27}, + [2694] = {.lex_state = 27}, + [2695] = {.lex_state = 27}, + [2696] = {.lex_state = 27}, + [2697] = {.lex_state = 27}, + [2698] = {.lex_state = 27}, + [2699] = {.lex_state = 27}, + [2700] = {.lex_state = 27}, + [2701] = {.lex_state = 27}, + [2702] = {.lex_state = 22}, + [2703] = {.lex_state = 27}, + [2704] = {.lex_state = 22}, + [2705] = {.lex_state = 27}, + [2706] = {.lex_state = 27}, + [2707] = {.lex_state = 27}, + [2708] = {.lex_state = 27}, + [2709] = {.lex_state = 27}, + [2710] = {.lex_state = 27}, + [2711] = {.lex_state = 27}, + [2712] = {.lex_state = 27}, + [2713] = {.lex_state = 27}, + [2714] = {.lex_state = 27}, + [2715] = {.lex_state = 27}, + [2716] = {.lex_state = 27}, + [2717] = {.lex_state = 27}, + [2718] = {.lex_state = 27}, + [2719] = {.lex_state = 27}, + [2720] = {.lex_state = 27}, + [2721] = {.lex_state = 27}, + [2722] = {.lex_state = 27}, + [2723] = {.lex_state = 27}, + [2724] = {.lex_state = 27}, + [2725] = {.lex_state = 27}, + [2726] = {.lex_state = 27}, + [2727] = {.lex_state = 27}, + [2728] = {.lex_state = 27}, + [2729] = {.lex_state = 27}, + [2730] = {.lex_state = 27}, + [2731] = {.lex_state = 27}, + [2732] = {.lex_state = 27}, + [2733] = {.lex_state = 27}, + [2734] = {.lex_state = 27}, + [2735] = {.lex_state = 27}, + [2736] = {.lex_state = 27}, + [2737] = {.lex_state = 27}, + [2738] = {.lex_state = 27}, + [2739] = {.lex_state = 27}, + [2740] = {.lex_state = 27}, + [2741] = {.lex_state = 27}, + [2742] = {.lex_state = 27}, + [2743] = {.lex_state = 27}, + [2744] = {.lex_state = 27}, + [2745] = {.lex_state = 27}, + [2746] = {.lex_state = 27}, + [2747] = {.lex_state = 27}, + [2748] = {.lex_state = 27}, + [2749] = {.lex_state = 27}, + [2750] = {.lex_state = 27}, + [2751] = {.lex_state = 22}, + [2752] = {.lex_state = 27}, + [2753] = {.lex_state = 27}, + [2754] = {.lex_state = 27}, + [2755] = {.lex_state = 27}, + [2756] = {.lex_state = 27}, + [2757] = {.lex_state = 27}, + [2758] = {.lex_state = 288}, + [2759] = {.lex_state = 27}, + [2760] = {.lex_state = 27}, + [2761] = {.lex_state = 27}, + [2762] = {.lex_state = 27}, + [2763] = {.lex_state = 27}, + [2764] = {.lex_state = 27}, + [2765] = {.lex_state = 27}, + [2766] = {.lex_state = 27}, + [2767] = {.lex_state = 22}, + [2768] = {.lex_state = 27}, + [2769] = {.lex_state = 27}, + [2770] = {.lex_state = 27}, + [2771] = {.lex_state = 27}, + [2772] = {.lex_state = 27}, + [2773] = {.lex_state = 27}, + [2774] = {.lex_state = 27}, + [2775] = {.lex_state = 27}, + [2776] = {.lex_state = 22}, + [2777] = {.lex_state = 27}, + [2778] = {.lex_state = 27}, + [2779] = {.lex_state = 27}, + [2780] = {.lex_state = 27}, + [2781] = {.lex_state = 27}, + [2782] = {.lex_state = 27}, + [2783] = {.lex_state = 27}, + [2784] = {.lex_state = 27}, + [2785] = {.lex_state = 27}, + [2786] = {.lex_state = 27}, + [2787] = {.lex_state = 27}, + [2788] = {.lex_state = 27}, + [2789] = {.lex_state = 27}, + [2790] = {.lex_state = 27}, + [2791] = {.lex_state = 27}, + [2792] = {.lex_state = 27}, + [2793] = {.lex_state = 27}, + [2794] = {.lex_state = 22}, + [2795] = {.lex_state = 22}, + [2796] = {.lex_state = 22}, + [2797] = {.lex_state = 288}, + [2798] = {.lex_state = 288}, + [2799] = {.lex_state = 288}, + [2800] = {.lex_state = 288}, + [2801] = {.lex_state = 288}, + [2802] = {.lex_state = 288}, + [2803] = {.lex_state = 288}, + [2804] = {.lex_state = 288}, + [2805] = {.lex_state = 288}, + [2806] = {.lex_state = 288}, + [2807] = {.lex_state = 288}, + [2808] = {.lex_state = 288}, + [2809] = {.lex_state = 288}, + [2810] = {.lex_state = 288}, + [2811] = {.lex_state = 288}, + [2812] = {.lex_state = 288}, + [2813] = {.lex_state = 288}, + [2814] = {.lex_state = 288}, + [2815] = {.lex_state = 288}, + [2816] = {.lex_state = 288}, + [2817] = {.lex_state = 288}, + [2818] = {.lex_state = 288}, + [2819] = {.lex_state = 288}, + [2820] = {.lex_state = 288}, + [2821] = {.lex_state = 288}, + [2822] = {.lex_state = 288}, + [2823] = {.lex_state = 288}, + [2824] = {.lex_state = 288}, + [2825] = {.lex_state = 288}, + [2826] = {.lex_state = 288}, + [2827] = {.lex_state = 288}, + [2828] = {.lex_state = 288}, + [2829] = {.lex_state = 288}, + [2830] = {.lex_state = 288}, + [2831] = {.lex_state = 288}, + [2832] = {.lex_state = 288}, + [2833] = {.lex_state = 288}, + [2834] = {.lex_state = 288}, + [2835] = {.lex_state = 288}, + [2836] = {.lex_state = 288}, + [2837] = {.lex_state = 288}, + [2838] = {.lex_state = 288}, + [2839] = {.lex_state = 288}, + [2840] = {.lex_state = 288}, + [2841] = {.lex_state = 288}, + [2842] = {.lex_state = 288}, + [2843] = {.lex_state = 288}, + [2844] = {.lex_state = 288}, + [2845] = {.lex_state = 288}, + [2846] = {.lex_state = 288}, + [2847] = {.lex_state = 288}, + [2848] = {.lex_state = 288}, + [2849] = {.lex_state = 288}, + [2850] = {.lex_state = 288}, + [2851] = {.lex_state = 288}, + [2852] = {.lex_state = 288}, + [2853] = {.lex_state = 288}, + [2854] = {.lex_state = 288}, + [2855] = {.lex_state = 288}, + [2856] = {.lex_state = 288}, + [2857] = {.lex_state = 288}, + [2858] = {.lex_state = 288}, + [2859] = {.lex_state = 288}, + [2860] = {.lex_state = 288}, + [2861] = {.lex_state = 288}, + [2862] = {.lex_state = 288}, + [2863] = {.lex_state = 288}, + [2864] = {.lex_state = 288}, + [2865] = {.lex_state = 22}, + [2866] = {.lex_state = 288}, + [2867] = {.lex_state = 288}, + [2868] = {.lex_state = 288}, + [2869] = {.lex_state = 288}, + [2870] = {.lex_state = 22}, + [2871] = {.lex_state = 288}, + [2872] = {.lex_state = 288}, + [2873] = {.lex_state = 288}, + [2874] = {.lex_state = 288}, + [2875] = {.lex_state = 288}, + [2876] = {.lex_state = 288}, + [2877] = {.lex_state = 288}, + [2878] = {.lex_state = 288}, + [2879] = {.lex_state = 288}, + [2880] = {.lex_state = 288}, + [2881] = {.lex_state = 288}, + [2882] = {.lex_state = 288}, + [2883] = {.lex_state = 288}, + [2884] = {.lex_state = 288}, + [2885] = {.lex_state = 288}, + [2886] = {.lex_state = 288}, + [2887] = {.lex_state = 288}, + [2888] = {.lex_state = 288}, + [2889] = {.lex_state = 288}, + [2890] = {.lex_state = 288}, + [2891] = {.lex_state = 288}, + [2892] = {.lex_state = 288}, + [2893] = {.lex_state = 288}, + [2894] = {.lex_state = 288}, + [2895] = {.lex_state = 288}, + [2896] = {.lex_state = 288}, + [2897] = {.lex_state = 288}, + [2898] = {.lex_state = 288}, + [2899] = {.lex_state = 288}, + [2900] = {.lex_state = 288}, + [2901] = {.lex_state = 288}, + [2902] = {.lex_state = 288}, + [2903] = {.lex_state = 288}, + [2904] = {.lex_state = 288}, + [2905] = {.lex_state = 288}, + [2906] = {.lex_state = 288}, + [2907] = {.lex_state = 288}, + [2908] = {.lex_state = 288}, + [2909] = {.lex_state = 288}, + [2910] = {.lex_state = 288}, + [2911] = {.lex_state = 288}, + [2912] = {.lex_state = 288}, + [2913] = {.lex_state = 288}, + [2914] = {.lex_state = 288}, + [2915] = {.lex_state = 288}, + [2916] = {.lex_state = 288}, + [2917] = {.lex_state = 288}, + [2918] = {.lex_state = 288}, + [2919] = {.lex_state = 288}, + [2920] = {.lex_state = 288}, + [2921] = {.lex_state = 288}, + [2922] = {.lex_state = 288}, + [2923] = {.lex_state = 288}, + [2924] = {.lex_state = 288}, + [2925] = {.lex_state = 288}, + [2926] = {.lex_state = 288}, + [2927] = {.lex_state = 288}, + [2928] = {.lex_state = 288}, + [2929] = {.lex_state = 288}, + [2930] = {.lex_state = 288}, + [2931] = {.lex_state = 288}, + [2932] = {.lex_state = 288}, + [2933] = {.lex_state = 288}, + [2934] = {.lex_state = 288}, + [2935] = {.lex_state = 288}, + [2936] = {.lex_state = 288}, + [2937] = {.lex_state = 288}, + [2938] = {.lex_state = 288}, + [2939] = {.lex_state = 288}, + [2940] = {.lex_state = 288}, + [2941] = {.lex_state = 288}, + [2942] = {.lex_state = 288}, + [2943] = {.lex_state = 288}, + [2944] = {.lex_state = 288}, + [2945] = {.lex_state = 288}, + [2946] = {.lex_state = 288}, + [2947] = {.lex_state = 288}, + [2948] = {.lex_state = 288}, + [2949] = {.lex_state = 288}, + [2950] = {.lex_state = 288}, + [2951] = {.lex_state = 288}, + [2952] = {.lex_state = 288}, + [2953] = {.lex_state = 288}, + [2954] = {.lex_state = 288}, + [2955] = {.lex_state = 288}, + [2956] = {.lex_state = 288}, + [2957] = {.lex_state = 288}, + [2958] = {.lex_state = 288}, + [2959] = {.lex_state = 288}, + [2960] = {.lex_state = 288}, + [2961] = {.lex_state = 288}, + [2962] = {.lex_state = 288}, + [2963] = {.lex_state = 288}, + [2964] = {.lex_state = 288}, + [2965] = {.lex_state = 288}, + [2966] = {.lex_state = 288}, + [2967] = {.lex_state = 22}, + [2968] = {.lex_state = 288}, + [2969] = {.lex_state = 288}, + [2970] = {.lex_state = 288}, + [2971] = {.lex_state = 288}, + [2972] = {.lex_state = 288}, + [2973] = {.lex_state = 288}, + [2974] = {.lex_state = 288}, + [2975] = {.lex_state = 288}, + [2976] = {.lex_state = 288}, + [2977] = {.lex_state = 288}, + [2978] = {.lex_state = 288}, + [2979] = {.lex_state = 288}, + [2980] = {.lex_state = 288}, + [2981] = {.lex_state = 22}, + [2982] = {.lex_state = 22}, + [2983] = {.lex_state = 288}, + [2984] = {.lex_state = 288}, + [2985] = {.lex_state = 288}, + [2986] = {.lex_state = 288}, + [2987] = {.lex_state = 288}, + [2988] = {.lex_state = 288}, + [2989] = {.lex_state = 288}, + [2990] = {.lex_state = 288}, + [2991] = {.lex_state = 288}, + [2992] = {.lex_state = 288}, + [2993] = {.lex_state = 288}, + [2994] = {.lex_state = 288}, + [2995] = {.lex_state = 288}, + [2996] = {.lex_state = 288}, + [2997] = {.lex_state = 288}, + [2998] = {.lex_state = 288}, + [2999] = {.lex_state = 288}, + [3000] = {.lex_state = 288}, + [3001] = {.lex_state = 288}, + [3002] = {.lex_state = 288}, + [3003] = {.lex_state = 288}, + [3004] = {.lex_state = 288}, + [3005] = {.lex_state = 288}, + [3006] = {.lex_state = 288}, + [3007] = {.lex_state = 288}, + [3008] = {.lex_state = 288}, + [3009] = {.lex_state = 288}, + [3010] = {.lex_state = 288}, + [3011] = {.lex_state = 288}, + [3012] = {.lex_state = 288}, + [3013] = {.lex_state = 288}, + [3014] = {.lex_state = 288}, + [3015] = {.lex_state = 288}, + [3016] = {.lex_state = 288}, + [3017] = {.lex_state = 288}, + [3018] = {.lex_state = 288}, + [3019] = {.lex_state = 288}, + [3020] = {.lex_state = 288}, + [3021] = {.lex_state = 288}, + [3022] = {.lex_state = 288}, + [3023] = {.lex_state = 288}, + [3024] = {.lex_state = 288}, + [3025] = {.lex_state = 288}, + [3026] = {.lex_state = 288}, + [3027] = {.lex_state = 288}, + [3028] = {.lex_state = 288}, + [3029] = {.lex_state = 288}, + [3030] = {.lex_state = 288}, + [3031] = {.lex_state = 288}, + [3032] = {.lex_state = 288}, + [3033] = {.lex_state = 288}, + [3034] = {.lex_state = 288}, + [3035] = {.lex_state = 288}, + [3036] = {.lex_state = 288}, + [3037] = {.lex_state = 288}, + [3038] = {.lex_state = 288}, + [3039] = {.lex_state = 288}, + [3040] = {.lex_state = 288}, + [3041] = {.lex_state = 288}, + [3042] = {.lex_state = 288}, + [3043] = {.lex_state = 288}, + [3044] = {.lex_state = 288}, + [3045] = {.lex_state = 288}, + [3046] = {.lex_state = 288}, + [3047] = {.lex_state = 288}, + [3048] = {.lex_state = 288}, + [3049] = {.lex_state = 288}, + [3050] = {.lex_state = 288}, + [3051] = {.lex_state = 288}, + [3052] = {.lex_state = 288}, + [3053] = {.lex_state = 288}, + [3054] = {.lex_state = 288}, + [3055] = {.lex_state = 288}, + [3056] = {.lex_state = 288}, + [3057] = {.lex_state = 288}, + [3058] = {.lex_state = 288}, + [3059] = {.lex_state = 288}, + [3060] = {.lex_state = 288}, + [3061] = {.lex_state = 288}, + [3062] = {.lex_state = 288}, + [3063] = {.lex_state = 288}, + [3064] = {.lex_state = 288}, + [3065] = {.lex_state = 288}, + [3066] = {.lex_state = 288}, + [3067] = {.lex_state = 288}, + [3068] = {.lex_state = 288}, + [3069] = {.lex_state = 288}, + [3070] = {.lex_state = 288}, + [3071] = {.lex_state = 288}, + [3072] = {.lex_state = 288}, + [3073] = {.lex_state = 288}, + [3074] = {.lex_state = 288}, + [3075] = {.lex_state = 288}, + [3076] = {.lex_state = 34}, + [3077] = {.lex_state = 288}, + [3078] = {.lex_state = 288}, + [3079] = {.lex_state = 288}, + [3080] = {.lex_state = 288}, + [3081] = {.lex_state = 288}, + [3082] = {.lex_state = 288}, + [3083] = {.lex_state = 288}, + [3084] = {.lex_state = 288}, + [3085] = {.lex_state = 288}, + [3086] = {.lex_state = 288}, + [3087] = {.lex_state = 288}, + [3088] = {.lex_state = 288}, + [3089] = {.lex_state = 288}, + [3090] = {.lex_state = 288}, + [3091] = {.lex_state = 288}, + [3092] = {.lex_state = 288}, + [3093] = {.lex_state = 288}, + [3094] = {.lex_state = 288}, + [3095] = {.lex_state = 288}, + [3096] = {.lex_state = 288}, + [3097] = {.lex_state = 288}, + [3098] = {.lex_state = 288}, + [3099] = {.lex_state = 288}, + [3100] = {.lex_state = 288}, + [3101] = {.lex_state = 288}, + [3102] = {.lex_state = 288}, + [3103] = {.lex_state = 288}, + [3104] = {.lex_state = 288}, + [3105] = {.lex_state = 288}, + [3106] = {.lex_state = 288}, + [3107] = {.lex_state = 288}, + [3108] = {.lex_state = 288}, + [3109] = {.lex_state = 288}, + [3110] = {.lex_state = 288}, + [3111] = {.lex_state = 288}, + [3112] = {.lex_state = 288}, + [3113] = {.lex_state = 288}, + [3114] = {.lex_state = 288}, + [3115] = {.lex_state = 288}, + [3116] = {.lex_state = 288}, + [3117] = {.lex_state = 288}, + [3118] = {.lex_state = 288}, + [3119] = {.lex_state = 288}, + [3120] = {.lex_state = 288}, + [3121] = {.lex_state = 288}, + [3122] = {.lex_state = 288}, + [3123] = {.lex_state = 288}, + [3124] = {.lex_state = 288}, + [3125] = {.lex_state = 288}, + [3126] = {.lex_state = 288}, + [3127] = {.lex_state = 288}, + [3128] = {.lex_state = 34}, + [3129] = {.lex_state = 288}, + [3130] = {.lex_state = 288}, + [3131] = {.lex_state = 288}, + [3132] = {.lex_state = 288}, + [3133] = {.lex_state = 288}, + [3134] = {.lex_state = 288}, + [3135] = {.lex_state = 34}, + [3136] = {.lex_state = 288}, + [3137] = {.lex_state = 288}, + [3138] = {.lex_state = 288}, + [3139] = {.lex_state = 288}, + [3140] = {.lex_state = 288}, + [3141] = {.lex_state = 288}, + [3142] = {.lex_state = 288}, + [3143] = {.lex_state = 34}, + [3144] = {.lex_state = 288}, + [3145] = {.lex_state = 288}, + [3146] = {.lex_state = 288}, + [3147] = {.lex_state = 288}, + [3148] = {.lex_state = 288}, + [3149] = {.lex_state = 288}, + [3150] = {.lex_state = 288}, + [3151] = {.lex_state = 288}, + [3152] = {.lex_state = 288}, + [3153] = {.lex_state = 288}, + [3154] = {.lex_state = 288}, + [3155] = {.lex_state = 288}, + [3156] = {.lex_state = 288}, + [3157] = {.lex_state = 288}, + [3158] = {.lex_state = 288}, + [3159] = {.lex_state = 22}, + [3160] = {.lex_state = 288}, + [3161] = {.lex_state = 288}, + [3162] = {.lex_state = 34}, + [3163] = {.lex_state = 288}, + [3164] = {.lex_state = 288}, + [3165] = {.lex_state = 288}, + [3166] = {.lex_state = 288}, + [3167] = {.lex_state = 288}, + [3168] = {.lex_state = 288}, + [3169] = {.lex_state = 288}, + [3170] = {.lex_state = 288}, + [3171] = {.lex_state = 288}, + [3172] = {.lex_state = 288}, + [3173] = {.lex_state = 288}, + [3174] = {.lex_state = 288}, + [3175] = {.lex_state = 288}, + [3176] = {.lex_state = 288}, + [3177] = {.lex_state = 288}, + [3178] = {.lex_state = 288}, + [3179] = {.lex_state = 288}, + [3180] = {.lex_state = 288}, + [3181] = {.lex_state = 288}, + [3182] = {.lex_state = 288}, + [3183] = {.lex_state = 288}, + [3184] = {.lex_state = 288}, + [3185] = {.lex_state = 288}, + [3186] = {.lex_state = 288}, + [3187] = {.lex_state = 34}, + [3188] = {.lex_state = 288}, + [3189] = {.lex_state = 288}, + [3190] = {.lex_state = 288}, + [3191] = {.lex_state = 288}, + [3192] = {.lex_state = 288}, + [3193] = {.lex_state = 288}, + [3194] = {.lex_state = 288}, + [3195] = {.lex_state = 288}, + [3196] = {.lex_state = 288}, + [3197] = {.lex_state = 288}, + [3198] = {.lex_state = 288}, + [3199] = {.lex_state = 22}, + [3200] = {.lex_state = 288}, + [3201] = {.lex_state = 288}, + [3202] = {.lex_state = 288}, + [3203] = {.lex_state = 288}, + [3204] = {.lex_state = 288}, + [3205] = {.lex_state = 288}, + [3206] = {.lex_state = 288}, + [3207] = {.lex_state = 288}, + [3208] = {.lex_state = 288}, + [3209] = {.lex_state = 34}, + [3210] = {.lex_state = 288}, + [3211] = {.lex_state = 288}, + [3212] = {.lex_state = 34}, + [3213] = {.lex_state = 288}, + [3214] = {.lex_state = 288}, + [3215] = {.lex_state = 288}, + [3216] = {.lex_state = 288}, + [3217] = {.lex_state = 288}, + [3218] = {.lex_state = 288}, + [3219] = {.lex_state = 288}, + [3220] = {.lex_state = 288}, + [3221] = {.lex_state = 288}, + [3222] = {.lex_state = 288}, + [3223] = {.lex_state = 288}, + [3224] = {.lex_state = 288}, + [3225] = {.lex_state = 288}, + [3226] = {.lex_state = 288}, + [3227] = {.lex_state = 288}, + [3228] = {.lex_state = 288}, + [3229] = {.lex_state = 288}, + [3230] = {.lex_state = 288}, + [3231] = {.lex_state = 288}, + [3232] = {.lex_state = 288}, + [3233] = {.lex_state = 288}, + [3234] = {.lex_state = 288}, + [3235] = {.lex_state = 288}, + [3236] = {.lex_state = 288}, + [3237] = {.lex_state = 34}, + [3238] = {.lex_state = 288}, + [3239] = {.lex_state = 288}, + [3240] = {.lex_state = 288}, + [3241] = {.lex_state = 288}, + [3242] = {.lex_state = 288}, + [3243] = {.lex_state = 288}, + [3244] = {.lex_state = 288}, + [3245] = {.lex_state = 288}, + [3246] = {.lex_state = 288}, + [3247] = {.lex_state = 288}, + [3248] = {.lex_state = 22}, + [3249] = {.lex_state = 288}, + [3250] = {.lex_state = 288}, + [3251] = {.lex_state = 288}, + [3252] = {.lex_state = 288}, + [3253] = {.lex_state = 288}, + [3254] = {.lex_state = 288}, + [3255] = {.lex_state = 288}, + [3256] = {.lex_state = 288}, + [3257] = {.lex_state = 288}, + [3258] = {.lex_state = 288}, + [3259] = {.lex_state = 288}, + [3260] = {.lex_state = 288}, + [3261] = {.lex_state = 34}, + [3262] = {.lex_state = 288}, + [3263] = {.lex_state = 288}, + [3264] = {.lex_state = 288}, + [3265] = {.lex_state = 288}, + [3266] = {.lex_state = 288}, + [3267] = {.lex_state = 20}, + [3268] = {.lex_state = 288}, + [3269] = {.lex_state = 288}, + [3270] = {.lex_state = 288}, + [3271] = {.lex_state = 20}, + [3272] = {.lex_state = 288}, + [3273] = {.lex_state = 288}, + [3274] = {.lex_state = 288}, + [3275] = {.lex_state = 288}, + [3276] = {.lex_state = 288}, + [3277] = {.lex_state = 288}, + [3278] = {.lex_state = 20}, + [3279] = {.lex_state = 20}, + [3280] = {.lex_state = 288}, + [3281] = {.lex_state = 288}, + [3282] = {.lex_state = 20}, + [3283] = {.lex_state = 288}, + [3284] = {.lex_state = 288}, + [3285] = {.lex_state = 288}, + [3286] = {.lex_state = 288}, + [3287] = {.lex_state = 288}, + [3288] = {.lex_state = 288}, + [3289] = {.lex_state = 288}, + [3290] = {.lex_state = 288}, + [3291] = {.lex_state = 288}, + [3292] = {.lex_state = 20}, + [3293] = {.lex_state = 288}, + [3294] = {.lex_state = 288}, + [3295] = {.lex_state = 20}, + [3296] = {.lex_state = 288}, + [3297] = {.lex_state = 288}, + [3298] = {.lex_state = 288}, + [3299] = {.lex_state = 288}, + [3300] = {.lex_state = 288}, + [3301] = {.lex_state = 288}, + [3302] = {.lex_state = 288}, + [3303] = {.lex_state = 20}, + [3304] = {.lex_state = 288}, + [3305] = {.lex_state = 288}, + [3306] = {.lex_state = 288}, + [3307] = {.lex_state = 288}, + [3308] = {.lex_state = 20}, + [3309] = {.lex_state = 288}, + [3310] = {.lex_state = 288}, + [3311] = {.lex_state = 20}, + [3312] = {.lex_state = 288}, + [3313] = {.lex_state = 288}, + [3314] = {.lex_state = 288}, + [3315] = {.lex_state = 20}, + [3316] = {.lex_state = 288}, + [3317] = {.lex_state = 288}, + [3318] = {.lex_state = 288}, + [3319] = {.lex_state = 288}, + [3320] = {.lex_state = 20}, + [3321] = {.lex_state = 288}, + [3322] = {.lex_state = 288}, + [3323] = {.lex_state = 288}, + [3324] = {.lex_state = 288}, + [3325] = {.lex_state = 288}, + [3326] = {.lex_state = 288}, + [3327] = {.lex_state = 288}, + [3328] = {.lex_state = 288}, + [3329] = {.lex_state = 288}, + [3330] = {.lex_state = 288}, + [3331] = {.lex_state = 20}, + [3332] = {.lex_state = 288}, + [3333] = {.lex_state = 20}, + [3334] = {.lex_state = 288}, + [3335] = {.lex_state = 288}, + [3336] = {.lex_state = 20}, + [3337] = {.lex_state = 288}, + [3338] = {.lex_state = 288}, + [3339] = {.lex_state = 288}, + [3340] = {.lex_state = 288}, + [3341] = {.lex_state = 288}, + [3342] = {.lex_state = 288}, + [3343] = {.lex_state = 288}, + [3344] = {.lex_state = 288}, + [3345] = {.lex_state = 288}, + [3346] = {.lex_state = 288}, + [3347] = {.lex_state = 288}, + [3348] = {.lex_state = 288}, + [3349] = {.lex_state = 20}, + [3350] = {.lex_state = 20}, + [3351] = {.lex_state = 288}, + [3352] = {.lex_state = 288}, + [3353] = {.lex_state = 288}, + [3354] = {.lex_state = 288}, + [3355] = {.lex_state = 288}, + [3356] = {.lex_state = 288}, + [3357] = {.lex_state = 288}, + [3358] = {.lex_state = 20}, + [3359] = {.lex_state = 288}, + [3360] = {.lex_state = 1}, + [3361] = {.lex_state = 288}, + [3362] = {.lex_state = 288}, + [3363] = {.lex_state = 288}, + [3364] = {.lex_state = 288}, + [3365] = {.lex_state = 288}, + [3366] = {.lex_state = 20}, + [3367] = {.lex_state = 288}, + [3368] = {.lex_state = 288}, + [3369] = {.lex_state = 20}, + [3370] = {.lex_state = 288}, + [3371] = {.lex_state = 288}, + [3372] = {.lex_state = 288}, + [3373] = {.lex_state = 288}, + [3374] = {.lex_state = 288}, + [3375] = {.lex_state = 20}, + [3376] = {.lex_state = 288}, + [3377] = {.lex_state = 288}, + [3378] = {.lex_state = 288}, [3379] = {.lex_state = 33}, - [3380] = {.lex_state = 33}, - [3381] = {.lex_state = 33}, - [3382] = {.lex_state = 289}, - [3383] = {.lex_state = 20}, - [3384] = {.lex_state = 20}, - [3385] = {.lex_state = 289}, - [3386] = {.lex_state = 289}, - [3387] = {.lex_state = 289}, - [3388] = {.lex_state = 289}, - [3389] = {.lex_state = 289}, - [3390] = {.lex_state = 20}, - [3391] = {.lex_state = 20}, + [3380] = {.lex_state = 35}, + [3381] = {.lex_state = 35}, + [3382] = {.lex_state = 35}, + [3383] = {.lex_state = 35}, + [3384] = {.lex_state = 35}, + [3385] = {.lex_state = 35}, + [3386] = {.lex_state = 35}, + [3387] = {.lex_state = 35}, + [3388] = {.lex_state = 35}, + [3389] = {.lex_state = 31}, + [3390] = {.lex_state = 31}, + [3391] = {.lex_state = 35}, [3392] = {.lex_state = 20}, [3393] = {.lex_state = 20}, - [3394] = {.lex_state = 289}, + [3394] = {.lex_state = 20}, [3395] = {.lex_state = 20}, - [3396] = {.lex_state = 289}, - [3397] = {.lex_state = 289}, - [3398] = {.lex_state = 289}, - [3399] = {.lex_state = 289}, - [3400] = {.lex_state = 289}, - [3401] = {.lex_state = 289}, - [3402] = {.lex_state = 20}, - [3403] = {.lex_state = 20}, - [3404] = {.lex_state = 289}, - [3405] = {.lex_state = 20}, - [3406] = {.lex_state = 289}, - [3407] = {.lex_state = 289}, - [3408] = {.lex_state = 289}, - [3409] = {.lex_state = 289}, - [3410] = {.lex_state = 20}, - [3411] = {.lex_state = 289}, - [3412] = {.lex_state = 289}, - [3413] = {.lex_state = 20}, - [3414] = {.lex_state = 20}, - [3415] = {.lex_state = 289}, - [3416] = {.lex_state = 289}, - [3417] = {.lex_state = 289}, - [3418] = {.lex_state = 289}, - [3419] = {.lex_state = 20}, - [3420] = {.lex_state = 20}, - [3421] = {.lex_state = 289}, - [3422] = {.lex_state = 20}, - [3423] = {.lex_state = 289}, - [3424] = {.lex_state = 20}, - [3425] = {.lex_state = 289}, - [3426] = {.lex_state = 289}, - [3427] = {.lex_state = 289}, - [3428] = {.lex_state = 289}, - [3429] = {.lex_state = 20}, - [3430] = {.lex_state = 20}, - [3431] = {.lex_state = 289}, - [3432] = {.lex_state = 20}, - [3433] = {.lex_state = 20}, - [3434] = {.lex_state = 289}, - [3435] = {.lex_state = 23}, - [3436] = {.lex_state = 23}, - [3437] = {.lex_state = 289}, - [3438] = {.lex_state = 289}, - [3439] = {.lex_state = 289}, - [3440] = {.lex_state = 289}, - [3441] = {.lex_state = 23}, - [3442] = {.lex_state = 23}, - [3443] = {.lex_state = 289}, - [3444] = {.lex_state = 289}, - [3445] = {.lex_state = 23}, - [3446] = {.lex_state = 289}, - [3447] = {.lex_state = 289}, - [3448] = {.lex_state = 289}, - [3449] = {.lex_state = 23}, - [3450] = {.lex_state = 23}, - [3451] = {.lex_state = 289}, - [3452] = {.lex_state = 289}, - [3453] = {.lex_state = 23}, - [3454] = {.lex_state = 23}, - [3455] = {.lex_state = 23}, - [3456] = {.lex_state = 23}, - [3457] = {.lex_state = 23}, - [3458] = {.lex_state = 289}, - [3459] = {.lex_state = 289}, - [3460] = {.lex_state = 23}, - [3461] = {.lex_state = 23}, - [3462] = {.lex_state = 289}, - [3463] = {.lex_state = 289}, - [3464] = {.lex_state = 26}, - [3465] = {.lex_state = 289}, - [3466] = {.lex_state = 23}, - [3467] = {.lex_state = 289}, - [3468] = {.lex_state = 289}, - [3469] = {.lex_state = 289}, - [3470] = {.lex_state = 23}, - [3471] = {.lex_state = 289}, - [3472] = {.lex_state = 23}, - [3473] = {.lex_state = 289}, - [3474] = {.lex_state = 23}, - [3475] = {.lex_state = 289}, - [3476] = {.lex_state = 289}, - [3477] = {.lex_state = 289}, - [3478] = {.lex_state = 23}, - [3479] = {.lex_state = 289}, - [3480] = {.lex_state = 23}, - [3481] = {.lex_state = 289}, - [3482] = {.lex_state = 23}, - [3483] = {.lex_state = 23}, - [3484] = {.lex_state = 289}, - [3485] = {.lex_state = 23}, - [3486] = {.lex_state = 289}, - [3487] = {.lex_state = 289}, - [3488] = {.lex_state = 289}, - [3489] = {.lex_state = 289}, - [3490] = {.lex_state = 289}, - [3491] = {.lex_state = 26}, - [3492] = {.lex_state = 289}, - [3493] = {.lex_state = 289}, - [3494] = {.lex_state = 289}, - [3495] = {.lex_state = 289}, - [3496] = {.lex_state = 23}, - [3497] = {.lex_state = 289}, - [3498] = {.lex_state = 289}, - [3499] = {.lex_state = 26}, - [3500] = {.lex_state = 23}, - [3501] = {.lex_state = 37}, - [3502] = {.lex_state = 289}, - [3503] = {.lex_state = 289}, - [3504] = {.lex_state = 26}, - [3505] = {.lex_state = 23}, - [3506] = {.lex_state = 289}, - [3507] = {.lex_state = 289}, - [3508] = {.lex_state = 23}, + [3396] = {.lex_state = 20}, + [3397] = {.lex_state = 20}, + [3398] = {.lex_state = 20}, + [3399] = {.lex_state = 20}, + [3400] = {.lex_state = 20}, + [3401] = {.lex_state = 31}, + [3402] = {.lex_state = 32}, + [3403] = {.lex_state = 32}, + [3404] = {.lex_state = 32}, + [3405] = {.lex_state = 22}, + [3406] = {.lex_state = 32}, + [3407] = {.lex_state = 32}, + [3408] = {.lex_state = 288}, + [3409] = {.lex_state = 32}, + [3410] = {.lex_state = 31}, + [3411] = {.lex_state = 32}, + [3412] = {.lex_state = 32}, + [3413] = {.lex_state = 19}, + [3414] = {.lex_state = 19}, + [3415] = {.lex_state = 19}, + [3416] = {.lex_state = 19}, + [3417] = {.lex_state = 19}, + [3418] = {.lex_state = 19}, + [3419] = {.lex_state = 19}, + [3420] = {.lex_state = 19}, + [3421] = {.lex_state = 288}, + [3422] = {.lex_state = 19}, + [3423] = {.lex_state = 19}, + [3424] = {.lex_state = 19}, + [3425] = {.lex_state = 19}, + [3426] = {.lex_state = 19}, + [3427] = {.lex_state = 19}, + [3428] = {.lex_state = 19}, + [3429] = {.lex_state = 19}, + [3430] = {.lex_state = 19}, + [3431] = {.lex_state = 19}, + [3432] = {.lex_state = 19}, + [3433] = {.lex_state = 19}, + [3434] = {.lex_state = 19}, + [3435] = {.lex_state = 288}, + [3436] = {.lex_state = 22}, + [3437] = {.lex_state = 288}, + [3438] = {.lex_state = 288}, + [3439] = {.lex_state = 22}, + [3440] = {.lex_state = 22}, + [3441] = {.lex_state = 288}, + [3442] = {.lex_state = 288}, + [3443] = {.lex_state = 288}, + [3444] = {.lex_state = 288}, + [3445] = {.lex_state = 22}, + [3446] = {.lex_state = 288}, + [3447] = {.lex_state = 22}, + [3448] = {.lex_state = 288}, + [3449] = {.lex_state = 288}, + [3450] = {.lex_state = 288}, + [3451] = {.lex_state = 288}, + [3452] = {.lex_state = 288}, + [3453] = {.lex_state = 288}, + [3454] = {.lex_state = 22}, + [3455] = {.lex_state = 22}, + [3456] = {.lex_state = 22}, + [3457] = {.lex_state = 22}, + [3458] = {.lex_state = 288}, + [3459] = {.lex_state = 36}, + [3460] = {.lex_state = 288}, + [3461] = {.lex_state = 288}, + [3462] = {.lex_state = 288}, + [3463] = {.lex_state = 288}, + [3464] = {.lex_state = 22}, + [3465] = {.lex_state = 27}, + [3466] = {.lex_state = 22}, + [3467] = {.lex_state = 22}, + [3468] = {.lex_state = 288}, + [3469] = {.lex_state = 288}, + [3470] = {.lex_state = 22}, + [3471] = {.lex_state = 288}, + [3472] = {.lex_state = 288}, + [3473] = {.lex_state = 22}, + [3474] = {.lex_state = 288}, + [3475] = {.lex_state = 22}, + [3476] = {.lex_state = 22}, + [3477] = {.lex_state = 22}, + [3478] = {.lex_state = 288}, + [3479] = {.lex_state = 22}, + [3480] = {.lex_state = 288}, + [3481] = {.lex_state = 22}, + [3482] = {.lex_state = 288}, + [3483] = {.lex_state = 288}, + [3484] = {.lex_state = 288}, + [3485] = {.lex_state = 288}, + [3486] = {.lex_state = 27}, + [3487] = {.lex_state = 27}, + [3488] = {.lex_state = 288}, + [3489] = {.lex_state = 22}, + [3490] = {.lex_state = 288}, + [3491] = {.lex_state = 288}, + [3492] = {.lex_state = 22}, + [3493] = {.lex_state = 27}, + [3494] = {.lex_state = 288}, + [3495] = {.lex_state = 288}, + [3496] = {.lex_state = 288}, + [3497] = {.lex_state = 288}, + [3498] = {.lex_state = 288}, + [3499] = {.lex_state = 288}, + [3500] = {.lex_state = 288}, + [3501] = {.lex_state = 22}, + [3502] = {.lex_state = 22}, + [3503] = {.lex_state = 288}, + [3504] = {.lex_state = 22}, + [3505] = {.lex_state = 288}, + [3506] = {.lex_state = 22}, + [3507] = {.lex_state = 22}, + [3508] = {.lex_state = 22}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -9976,6 +9970,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK] = ACTIONS(1), [anon_sym_POUND_QMARK] = ACTIONS(1), [anon_sym_POUND_QMARK_AT] = ACTIONS(1), + [anon_sym_AT] = ACTIONS(1), [anon_sym_SQUOTE] = ACTIONS(1), [anon_sym_BQUOTE] = ACTIONS(1), [anon_sym_COMMA] = ACTIONS(1), @@ -9983,7 +9978,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__format_token_token1] = ACTIONS(1), [anon_sym_v] = ACTIONS(1), [anon_sym_V] = ACTIONS(1), - [anon_sym_AT] = ACTIONS(1), [anon_sym_PERCENT] = ACTIONS(1), [anon_sym_AMP] = ACTIONS(1), [anon_sym_PIPE] = ACTIONS(1), @@ -10013,38 +10007,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(1), }, [1] = { - [sym_source] = STATE(3469), - [sym__gap] = STATE(89), - [sym_dis_expr] = STATE(89), - [sym__form] = STATE(1633), - [sym_num_lit] = STATE(1633), - [sym_kwd_lit] = STATE(1633), - [sym_str_lit] = STATE(1633), - [sym_char_lit] = STATE(1633), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1633), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1633), - [sym_set_lit] = STATE(1633), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1633), - [sym_splicing_read_cond_lit] = STATE(1633), - [sym_var_quoting_lit] = STATE(1633), - [sym_quoting_lit] = STATE(1633), - [sym_syn_quoting_lit] = STATE(1633), - [sym_unquote_splicing_lit] = STATE(1633), - [sym_unquoting_lit] = STATE(1633), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1633), - [sym_package_lit] = STATE(1633), - [sym_include_reader_macro] = STATE(1633), - [sym_complex_num_lit] = STATE(1633), - [aux_sym_source_repeat1] = STATE(89), - [aux_sym_list_lit_repeat1] = STATE(2137), + [sym_source] = STATE(3478), + [sym__gap] = STATE(98), + [sym_dis_expr] = STATE(98), + [sym__form] = STATE(1692), + [sym_num_lit] = STATE(1692), + [sym_kwd_lit] = STATE(1692), + [sym_str_lit] = STATE(1692), + [sym_char_lit] = STATE(1692), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1692), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1692), + [sym_set_lit] = STATE(1692), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1692), + [sym_splicing_read_cond_lit] = STATE(1692), + [sym_var_quoting_lit] = STATE(1692), + [sym_quoting_lit] = STATE(1692), + [sym_syn_quoting_lit] = STATE(1692), + [sym_unquote_splicing_lit] = STATE(1692), + [sym_unquoting_lit] = STATE(1692), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1692), + [sym_package_lit] = STATE(1692), + [sym_include_reader_macro] = STATE(1692), + [sym_complex_num_lit] = STATE(1692), + [aux_sym_source_repeat1] = STATE(98), + [aux_sym_list_lit_repeat1] = STATE(2178), [ts_builtin_sym_end] = ACTIONS(5), [sym__ws] = ACTIONS(7), [sym_comment] = ACTIONS(7), @@ -10081,38 +10075,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [2] = { - [sym__gap] = STATE(227), - [sym_dis_expr] = STATE(227), - [sym__form] = STATE(816), - [sym_num_lit] = STATE(816), - [sym_kwd_lit] = STATE(816), - [sym_str_lit] = STATE(816), - [sym_char_lit] = STATE(816), - [sym_sym_lit] = STATE(822), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(816), - [sym__bare_list_lit] = STATE(823), - [sym_vec_lit] = STATE(816), - [sym_set_lit] = STATE(816), - [sym__bare_set_lit] = STATE(824), - [sym_read_cond_lit] = STATE(816), - [sym_splicing_read_cond_lit] = STATE(816), - [sym_var_quoting_lit] = STATE(816), - [sym_quoting_lit] = STATE(816), - [sym_syn_quoting_lit] = STATE(816), - [sym_unquote_splicing_lit] = STATE(816), - [sym_unquoting_lit] = STATE(816), - [sym_defun] = STATE(823), - [sym_loop_macro] = STATE(823), - [sym_path_lit] = STATE(816), - [sym_package_lit] = STATE(816), - [sym_include_reader_macro] = STATE(816), - [sym_complex_num_lit] = STATE(816), - [aux_sym_dis_expr_repeat1] = STATE(227), - [aux_sym_list_lit_repeat1] = STATE(2149), - [aux_sym_do_clause_repeat1] = STATE(4), + [sym__gap] = STATE(221), + [sym_dis_expr] = STATE(221), + [sym__form] = STATE(817), + [sym_num_lit] = STATE(817), + [sym_kwd_lit] = STATE(817), + [sym_str_lit] = STATE(817), + [sym_char_lit] = STATE(817), + [sym_sym_lit] = STATE(929), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(817), + [sym__bare_list_lit] = STATE(928), + [sym_vec_lit] = STATE(817), + [sym_set_lit] = STATE(817), + [sym__bare_set_lit] = STATE(927), + [sym_read_cond_lit] = STATE(817), + [sym_splicing_read_cond_lit] = STATE(817), + [sym_var_quoting_lit] = STATE(817), + [sym_quoting_lit] = STATE(817), + [sym_syn_quoting_lit] = STATE(817), + [sym_unquote_splicing_lit] = STATE(817), + [sym_unquoting_lit] = STATE(817), + [sym_defun] = STATE(928), + [sym_loop_macro] = STATE(928), + [sym_path_lit] = STATE(817), + [sym_package_lit] = STATE(817), + [sym_include_reader_macro] = STATE(817), + [sym_complex_num_lit] = STATE(817), + [aux_sym_dis_expr_repeat1] = STATE(221), + [aux_sym_list_lit_repeat1] = STATE(2169), + [aux_sym_do_clause_repeat1] = STATE(3), [sym__ws] = ACTIONS(59), [sym_comment] = ACTIONS(59), [anon_sym_POUND_] = ACTIONS(59), @@ -10168,41 +10162,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(99), }, [3] = { - [sym__gap] = STATE(227), - [sym_dis_expr] = STATE(227), - [sym__form] = STATE(816), - [sym_num_lit] = STATE(816), - [sym_kwd_lit] = STATE(816), - [sym_str_lit] = STATE(816), - [sym_char_lit] = STATE(816), - [sym_sym_lit] = STATE(822), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(816), - [sym__bare_list_lit] = STATE(823), - [sym_vec_lit] = STATE(816), - [sym_set_lit] = STATE(816), - [sym__bare_set_lit] = STATE(824), - [sym_read_cond_lit] = STATE(816), - [sym_splicing_read_cond_lit] = STATE(816), - [sym_var_quoting_lit] = STATE(816), - [sym_quoting_lit] = STATE(816), - [sym_syn_quoting_lit] = STATE(816), - [sym_unquote_splicing_lit] = STATE(816), - [sym_unquoting_lit] = STATE(816), - [sym_defun] = STATE(823), - [sym_loop_macro] = STATE(823), - [sym_path_lit] = STATE(816), - [sym_package_lit] = STATE(816), - [sym_include_reader_macro] = STATE(816), - [sym_complex_num_lit] = STATE(816), - [aux_sym_dis_expr_repeat1] = STATE(227), - [aux_sym_list_lit_repeat1] = STATE(2149), - [aux_sym_do_clause_repeat1] = STATE(4), + [sym__gap] = STATE(221), + [sym_dis_expr] = STATE(221), + [sym__form] = STATE(817), + [sym_num_lit] = STATE(817), + [sym_kwd_lit] = STATE(817), + [sym_str_lit] = STATE(817), + [sym_char_lit] = STATE(817), + [sym_sym_lit] = STATE(929), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(817), + [sym__bare_list_lit] = STATE(928), + [sym_vec_lit] = STATE(817), + [sym_set_lit] = STATE(817), + [sym__bare_set_lit] = STATE(927), + [sym_read_cond_lit] = STATE(817), + [sym_splicing_read_cond_lit] = STATE(817), + [sym_var_quoting_lit] = STATE(817), + [sym_quoting_lit] = STATE(817), + [sym_syn_quoting_lit] = STATE(817), + [sym_unquote_splicing_lit] = STATE(817), + [sym_unquoting_lit] = STATE(817), + [sym_defun] = STATE(928), + [sym_loop_macro] = STATE(928), + [sym_path_lit] = STATE(817), + [sym_package_lit] = STATE(817), + [sym_include_reader_macro] = STATE(817), + [sym_complex_num_lit] = STATE(817), + [aux_sym_dis_expr_repeat1] = STATE(221), + [aux_sym_list_lit_repeat1] = STATE(2169), + [aux_sym_do_clause_repeat1] = STATE(3), [sym__ws] = ACTIONS(101), [sym_comment] = ACTIONS(101), - [anon_sym_POUND_] = ACTIONS(101), + [anon_sym_POUND_] = ACTIONS(104), + [anon_sym_POUND] = ACTIONS(107), + [anon_sym_DOT] = ACTIONS(110), + [aux_sym_num_lit_token1] = ACTIONS(113), + [anon_sym_COLON] = ACTIONS(116), + [anon_sym_COLON_COLON] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(122), + [sym_nil_lit] = ACTIONS(110), + [aux_sym_sym_lit_token1] = ACTIONS(125), + [anon_sym_CARET] = ACTIONS(128), + [anon_sym_POUND_CARET] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(134), + [anon_sym_RPAREN] = ACTIONS(137), + [anon_sym_POUND0A] = ACTIONS(139), + [anon_sym_POUND0a] = ACTIONS(139), + [anon_sym_POUND_QMARK] = ACTIONS(142), + [anon_sym_POUND_QMARK_AT] = ACTIONS(145), + [anon_sym_POUND_SQUOTE] = ACTIONS(148), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_COMMA_AT] = ACTIONS(157), + [anon_sym_COMMA] = ACTIONS(160), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(110), + [anon_sym_cl] = ACTIONS(163), + [aux_sym_accumulation_verb_token1] = ACTIONS(166), + [anon_sym_for] = ACTIONS(166), + [anon_sym_and] = ACTIONS(166), + [anon_sym_as] = ACTIONS(166), + [anon_sym_with] = ACTIONS(166), + [anon_sym_do] = ACTIONS(166), + [anon_sym_while] = ACTIONS(166), + [anon_sym_until] = ACTIONS(166), + [anon_sym_repeat] = ACTIONS(166), + [anon_sym_when] = ACTIONS(166), + [anon_sym_if] = ACTIONS(166), + [anon_sym_unless] = ACTIONS(166), + [anon_sym_always] = ACTIONS(166), + [anon_sym_thereis] = ACTIONS(166), + [anon_sym_never] = ACTIONS(166), + [anon_sym_else] = ACTIONS(166), + [anon_sym_finally] = ACTIONS(166), + [anon_sym_return] = ACTIONS(166), + [anon_sym_initially] = ACTIONS(166), + [anon_sym_POUNDP] = ACTIONS(168), + [anon_sym_POUNDp] = ACTIONS(168), + [sym_self_referential_reader_macro] = ACTIONS(171), + [anon_sym_POUND_PLUS] = ACTIONS(174), + [anon_sym_POUND_DASH] = ACTIONS(174), + [anon_sym_POUNDC] = ACTIONS(177), + [anon_sym_POUNDc] = ACTIONS(177), + }, + [4] = { + [sym__gap] = STATE(221), + [sym_dis_expr] = STATE(221), + [sym__form] = STATE(817), + [sym_num_lit] = STATE(817), + [sym_kwd_lit] = STATE(817), + [sym_str_lit] = STATE(817), + [sym_char_lit] = STATE(817), + [sym_sym_lit] = STATE(929), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(817), + [sym__bare_list_lit] = STATE(928), + [sym_vec_lit] = STATE(817), + [sym_set_lit] = STATE(817), + [sym__bare_set_lit] = STATE(927), + [sym_read_cond_lit] = STATE(817), + [sym_splicing_read_cond_lit] = STATE(817), + [sym_var_quoting_lit] = STATE(817), + [sym_quoting_lit] = STATE(817), + [sym_syn_quoting_lit] = STATE(817), + [sym_unquote_splicing_lit] = STATE(817), + [sym_unquoting_lit] = STATE(817), + [sym_defun] = STATE(928), + [sym_loop_macro] = STATE(928), + [sym_path_lit] = STATE(817), + [sym_package_lit] = STATE(817), + [sym_include_reader_macro] = STATE(817), + [sym_complex_num_lit] = STATE(817), + [aux_sym_dis_expr_repeat1] = STATE(221), + [aux_sym_list_lit_repeat1] = STATE(2169), + [aux_sym_do_clause_repeat1] = STATE(3), + [sym__ws] = ACTIONS(180), + [sym_comment] = ACTIONS(180), + [anon_sym_POUND_] = ACTIONS(180), [anon_sym_POUND] = ACTIONS(61), [anon_sym_DOT] = ACTIONS(63), [aux_sym_num_lit_token1] = ACTIONS(65), @@ -10211,10 +10292,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(71), [sym_nil_lit] = ACTIONS(63), [aux_sym_sym_lit_token1] = ACTIONS(73), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_POUND_CARET] = ACTIONS(101), - [anon_sym_LPAREN] = ACTIONS(101), - [anon_sym_RPAREN] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(180), + [anon_sym_POUND_CARET] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(180), + [anon_sym_RPAREN] = ACTIONS(180), [anon_sym_POUND0A] = ACTIONS(75), [anon_sym_POUND0a] = ACTIONS(75), [anon_sym_POUND_QMARK] = ACTIONS(77), @@ -10226,26 +10307,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA] = ACTIONS(89), [sym_block_comment] = ACTIONS(47), [sym_fancy_literal] = ACTIONS(63), - [anon_sym_cl] = ACTIONS(103), - [aux_sym_accumulation_verb_token1] = ACTIONS(103), - [anon_sym_for] = ACTIONS(103), - [anon_sym_and] = ACTIONS(103), - [anon_sym_as] = ACTIONS(103), - [anon_sym_with] = ACTIONS(103), - [anon_sym_do] = ACTIONS(103), - [anon_sym_while] = ACTIONS(103), - [anon_sym_until] = ACTIONS(103), - [anon_sym_repeat] = ACTIONS(103), - [anon_sym_when] = ACTIONS(103), - [anon_sym_if] = ACTIONS(103), - [anon_sym_unless] = ACTIONS(103), - [anon_sym_always] = ACTIONS(103), - [anon_sym_thereis] = ACTIONS(103), - [anon_sym_never] = ACTIONS(103), - [anon_sym_else] = ACTIONS(103), - [anon_sym_finally] = ACTIONS(103), - [anon_sym_return] = ACTIONS(103), - [anon_sym_initially] = ACTIONS(103), + [anon_sym_cl] = ACTIONS(182), + [aux_sym_accumulation_verb_token1] = ACTIONS(182), + [anon_sym_for] = ACTIONS(182), + [anon_sym_and] = ACTIONS(182), + [anon_sym_as] = ACTIONS(182), + [anon_sym_with] = ACTIONS(182), + [anon_sym_do] = ACTIONS(182), + [anon_sym_while] = ACTIONS(182), + [anon_sym_until] = ACTIONS(182), + [anon_sym_repeat] = ACTIONS(182), + [anon_sym_when] = ACTIONS(182), + [anon_sym_if] = ACTIONS(182), + [anon_sym_unless] = ACTIONS(182), + [anon_sym_always] = ACTIONS(182), + [anon_sym_thereis] = ACTIONS(182), + [anon_sym_never] = ACTIONS(182), + [anon_sym_else] = ACTIONS(182), + [anon_sym_finally] = ACTIONS(182), + [anon_sym_return] = ACTIONS(182), + [anon_sym_initially] = ACTIONS(182), [anon_sym_POUNDP] = ACTIONS(93), [anon_sym_POUNDp] = ACTIONS(93), [sym_self_referential_reader_macro] = ACTIONS(95), @@ -10254,125 +10335,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(99), [anon_sym_POUNDc] = ACTIONS(99), }, - [4] = { - [sym__gap] = STATE(227), - [sym_dis_expr] = STATE(227), - [sym__form] = STATE(816), - [sym_num_lit] = STATE(816), - [sym_kwd_lit] = STATE(816), - [sym_str_lit] = STATE(816), - [sym_char_lit] = STATE(816), - [sym_sym_lit] = STATE(822), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(816), - [sym__bare_list_lit] = STATE(823), - [sym_vec_lit] = STATE(816), - [sym_set_lit] = STATE(816), - [sym__bare_set_lit] = STATE(824), - [sym_read_cond_lit] = STATE(816), - [sym_splicing_read_cond_lit] = STATE(816), - [sym_var_quoting_lit] = STATE(816), - [sym_quoting_lit] = STATE(816), - [sym_syn_quoting_lit] = STATE(816), - [sym_unquote_splicing_lit] = STATE(816), - [sym_unquoting_lit] = STATE(816), - [sym_defun] = STATE(823), - [sym_loop_macro] = STATE(823), - [sym_path_lit] = STATE(816), - [sym_package_lit] = STATE(816), - [sym_include_reader_macro] = STATE(816), - [sym_complex_num_lit] = STATE(816), - [aux_sym_dis_expr_repeat1] = STATE(227), - [aux_sym_list_lit_repeat1] = STATE(2149), - [aux_sym_do_clause_repeat1] = STATE(4), - [sym__ws] = ACTIONS(105), - [sym_comment] = ACTIONS(105), - [anon_sym_POUND_] = ACTIONS(108), - [anon_sym_POUND] = ACTIONS(111), - [anon_sym_DOT] = ACTIONS(114), - [aux_sym_num_lit_token1] = ACTIONS(117), - [anon_sym_COLON] = ACTIONS(120), - [anon_sym_COLON_COLON] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(126), - [sym_nil_lit] = ACTIONS(114), - [aux_sym_sym_lit_token1] = ACTIONS(129), - [anon_sym_CARET] = ACTIONS(132), - [anon_sym_POUND_CARET] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_RPAREN] = ACTIONS(141), - [anon_sym_POUND0A] = ACTIONS(143), - [anon_sym_POUND0a] = ACTIONS(143), - [anon_sym_POUND_QMARK] = ACTIONS(146), - [anon_sym_POUND_QMARK_AT] = ACTIONS(149), - [anon_sym_POUND_SQUOTE] = ACTIONS(152), - [anon_sym_SQUOTE] = ACTIONS(155), - [anon_sym_BQUOTE] = ACTIONS(158), - [anon_sym_COMMA_AT] = ACTIONS(161), - [anon_sym_COMMA] = ACTIONS(164), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(114), - [anon_sym_cl] = ACTIONS(167), - [aux_sym_accumulation_verb_token1] = ACTIONS(170), - [anon_sym_for] = ACTIONS(170), - [anon_sym_and] = ACTIONS(170), - [anon_sym_as] = ACTIONS(170), - [anon_sym_with] = ACTIONS(170), - [anon_sym_do] = ACTIONS(170), - [anon_sym_while] = ACTIONS(170), - [anon_sym_until] = ACTIONS(170), - [anon_sym_repeat] = ACTIONS(170), - [anon_sym_when] = ACTIONS(170), - [anon_sym_if] = ACTIONS(170), - [anon_sym_unless] = ACTIONS(170), - [anon_sym_always] = ACTIONS(170), - [anon_sym_thereis] = ACTIONS(170), - [anon_sym_never] = ACTIONS(170), - [anon_sym_else] = ACTIONS(170), - [anon_sym_finally] = ACTIONS(170), - [anon_sym_return] = ACTIONS(170), - [anon_sym_initially] = ACTIONS(170), - [anon_sym_POUNDP] = ACTIONS(172), - [anon_sym_POUNDp] = ACTIONS(172), - [sym_self_referential_reader_macro] = ACTIONS(175), - [anon_sym_POUND_PLUS] = ACTIONS(178), - [anon_sym_POUND_DASH] = ACTIONS(178), - [anon_sym_POUNDC] = ACTIONS(181), - [anon_sym_POUNDc] = ACTIONS(181), - }, [5] = { - [sym__gap] = STATE(362), - [sym_dis_expr] = STATE(362), - [sym__form] = STATE(8), - [sym_num_lit] = STATE(8), - [sym_kwd_lit] = STATE(8), - [sym_str_lit] = STATE(8), - [sym_char_lit] = STATE(8), - [sym_sym_lit] = STATE(1012), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(8), - [sym__bare_list_lit] = STATE(1015), - [sym_vec_lit] = STATE(8), - [sym_set_lit] = STATE(8), - [sym__bare_set_lit] = STATE(1017), - [sym_read_cond_lit] = STATE(8), - [sym_splicing_read_cond_lit] = STATE(8), - [sym_var_quoting_lit] = STATE(8), - [sym_quoting_lit] = STATE(8), - [sym_syn_quoting_lit] = STATE(8), - [sym_unquote_splicing_lit] = STATE(8), - [sym_unquoting_lit] = STATE(8), - [sym_defun] = STATE(1015), - [sym_loop_macro] = STATE(1015), - [sym_path_lit] = STATE(8), - [sym_package_lit] = STATE(8), - [sym_include_reader_macro] = STATE(8), - [sym_complex_num_lit] = STATE(8), - [aux_sym_dis_expr_repeat1] = STATE(362), - [aux_sym_list_lit_repeat1] = STATE(2139), + [sym__gap] = STATE(363), + [sym_dis_expr] = STATE(363), + [sym__form] = STATE(10), + [sym_num_lit] = STATE(10), + [sym_kwd_lit] = STATE(10), + [sym_str_lit] = STATE(10), + [sym_char_lit] = STATE(10), + [sym_sym_lit] = STATE(1074), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(10), + [sym__bare_list_lit] = STATE(1073), + [sym_vec_lit] = STATE(10), + [sym_set_lit] = STATE(10), + [sym__bare_set_lit] = STATE(1072), + [sym_read_cond_lit] = STATE(10), + [sym_splicing_read_cond_lit] = STATE(10), + [sym_var_quoting_lit] = STATE(10), + [sym_quoting_lit] = STATE(10), + [sym_syn_quoting_lit] = STATE(10), + [sym_unquote_splicing_lit] = STATE(10), + [sym_unquoting_lit] = STATE(10), + [sym_defun] = STATE(1073), + [sym_loop_macro] = STATE(1073), + [sym_path_lit] = STATE(10), + [sym_package_lit] = STATE(10), + [sym_include_reader_macro] = STATE(10), + [sym_complex_num_lit] = STATE(10), + [aux_sym_dis_expr_repeat1] = STATE(363), + [aux_sym_list_lit_repeat1] = STATE(2177), [sym__ws] = ACTIONS(184), [sym_comment] = ACTIONS(184), [anon_sym_POUND_] = ACTIONS(187), @@ -10428,37 +10422,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(242), }, [6] = { - [sym__gap] = STATE(225), - [sym_dis_expr] = STATE(225), - [sym__form] = STATE(7), - [sym_num_lit] = STATE(7), - [sym_kwd_lit] = STATE(7), - [sym_str_lit] = STATE(7), - [sym_char_lit] = STATE(7), - [sym_sym_lit] = STATE(1012), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(7), - [sym__bare_list_lit] = STATE(1015), - [sym_vec_lit] = STATE(7), - [sym_set_lit] = STATE(7), - [sym__bare_set_lit] = STATE(1017), - [sym_read_cond_lit] = STATE(7), - [sym_splicing_read_cond_lit] = STATE(7), - [sym_var_quoting_lit] = STATE(7), - [sym_quoting_lit] = STATE(7), - [sym_syn_quoting_lit] = STATE(7), - [sym_unquote_splicing_lit] = STATE(7), - [sym_unquoting_lit] = STATE(7), - [sym_defun] = STATE(1015), - [sym_loop_macro] = STATE(1015), - [sym_path_lit] = STATE(7), - [sym_package_lit] = STATE(7), - [sym_include_reader_macro] = STATE(7), - [sym_complex_num_lit] = STATE(7), - [aux_sym_dis_expr_repeat1] = STATE(225), - [aux_sym_list_lit_repeat1] = STATE(2139), + [sym__gap] = STATE(216), + [sym_dis_expr] = STATE(216), + [sym__form] = STATE(12), + [sym_num_lit] = STATE(12), + [sym_kwd_lit] = STATE(12), + [sym_str_lit] = STATE(12), + [sym_char_lit] = STATE(12), + [sym_sym_lit] = STATE(1074), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(12), + [sym__bare_list_lit] = STATE(1073), + [sym_vec_lit] = STATE(12), + [sym_set_lit] = STATE(12), + [sym__bare_set_lit] = STATE(1072), + [sym_read_cond_lit] = STATE(12), + [sym_splicing_read_cond_lit] = STATE(12), + [sym_var_quoting_lit] = STATE(12), + [sym_quoting_lit] = STATE(12), + [sym_syn_quoting_lit] = STATE(12), + [sym_unquote_splicing_lit] = STATE(12), + [sym_unquoting_lit] = STATE(12), + [sym_defun] = STATE(1073), + [sym_loop_macro] = STATE(1073), + [sym_path_lit] = STATE(12), + [sym_package_lit] = STATE(12), + [sym_include_reader_macro] = STATE(12), + [sym_complex_num_lit] = STATE(12), + [aux_sym_dis_expr_repeat1] = STATE(216), + [aux_sym_list_lit_repeat1] = STATE(2177), [sym__ws] = ACTIONS(244), [sym_comment] = ACTIONS(244), [anon_sym_POUND_] = ACTIONS(247), @@ -10514,40 +10508,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(242), }, [7] = { - [sym__gap] = STATE(13), - [sym_dis_expr] = STATE(13), - [sym__form] = STATE(2090), - [sym_num_lit] = STATE(2090), - [sym_kwd_lit] = STATE(2090), - [sym_str_lit] = STATE(2090), - [sym_char_lit] = STATE(2090), - [sym_sym_lit] = STATE(2118), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(2090), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(2090), - [sym_set_lit] = STATE(2090), - [sym__bare_set_lit] = STATE(1794), - [sym_read_cond_lit] = STATE(2090), - [sym_splicing_read_cond_lit] = STATE(2090), - [sym_var_quoting_lit] = STATE(2090), - [sym_quoting_lit] = STATE(2090), - [sym_syn_quoting_lit] = STATE(2090), - [sym_unquote_splicing_lit] = STATE(2090), - [sym_unquoting_lit] = STATE(2090), - [sym_defun] = STATE(1793), - [sym_for_clause_word] = STATE(290), - [sym__for_part] = STATE(1188), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(2090), - [sym_package_lit] = STATE(2090), - [sym_include_reader_macro] = STATE(2090), - [sym_complex_num_lit] = STATE(2090), - [aux_sym_dis_expr_repeat1] = STATE(13), - [aux_sym_list_lit_repeat1] = STATE(2158), - [aux_sym_for_clause_repeat1] = STATE(945), + [sym__gap] = STATE(16), + [sym_dis_expr] = STATE(16), + [sym__form] = STATE(2111), + [sym_num_lit] = STATE(2111), + [sym_kwd_lit] = STATE(2111), + [sym_str_lit] = STATE(2111), + [sym_char_lit] = STATE(2111), + [sym_sym_lit] = STATE(2137), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(2111), + [sym__bare_list_lit] = STATE(1800), + [sym_vec_lit] = STATE(2111), + [sym_set_lit] = STATE(2111), + [sym__bare_set_lit] = STATE(1801), + [sym_read_cond_lit] = STATE(2111), + [sym_splicing_read_cond_lit] = STATE(2111), + [sym_var_quoting_lit] = STATE(2111), + [sym_quoting_lit] = STATE(2111), + [sym_syn_quoting_lit] = STATE(2111), + [sym_unquote_splicing_lit] = STATE(2111), + [sym_unquoting_lit] = STATE(2111), + [sym_defun] = STATE(1800), + [sym_for_clause_word] = STATE(293), + [sym__for_part] = STATE(1189), + [sym_loop_macro] = STATE(1800), + [sym_path_lit] = STATE(2111), + [sym_package_lit] = STATE(2111), + [sym_include_reader_macro] = STATE(2111), + [sym_complex_num_lit] = STATE(2111), + [aux_sym_dis_expr_repeat1] = STATE(16), + [aux_sym_list_lit_repeat1] = STATE(2165), + [aux_sym_for_clause_repeat1] = STATE(961), [sym__ws] = ACTIONS(270), [sym_comment] = ACTIONS(270), [anon_sym_POUND_] = ACTIONS(272), @@ -10599,40 +10593,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(318), }, [8] = { - [sym__gap] = STATE(15), - [sym_dis_expr] = STATE(15), - [sym__form] = STATE(2100), - [sym_num_lit] = STATE(2100), - [sym_kwd_lit] = STATE(2100), - [sym_str_lit] = STATE(2100), - [sym_char_lit] = STATE(2100), - [sym_sym_lit] = STATE(2118), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(2100), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(2100), - [sym_set_lit] = STATE(2100), - [sym__bare_set_lit] = STATE(1794), - [sym_read_cond_lit] = STATE(2100), - [sym_splicing_read_cond_lit] = STATE(2100), - [sym_var_quoting_lit] = STATE(2100), - [sym_quoting_lit] = STATE(2100), - [sym_syn_quoting_lit] = STATE(2100), - [sym_unquote_splicing_lit] = STATE(2100), - [sym_unquoting_lit] = STATE(2100), - [sym_defun] = STATE(1793), - [sym_for_clause_word] = STATE(290), - [sym__for_part] = STATE(1188), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(2100), - [sym_package_lit] = STATE(2100), - [sym_include_reader_macro] = STATE(2100), - [sym_complex_num_lit] = STATE(2100), - [aux_sym_dis_expr_repeat1] = STATE(15), - [aux_sym_list_lit_repeat1] = STATE(2158), - [aux_sym_for_clause_repeat1] = STATE(955), + [sym__gap] = STATE(18), + [sym_dis_expr] = STATE(18), + [sym__form] = STATE(2112), + [sym_num_lit] = STATE(2112), + [sym_kwd_lit] = STATE(2112), + [sym_str_lit] = STATE(2112), + [sym_char_lit] = STATE(2112), + [sym_sym_lit] = STATE(2137), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(2112), + [sym__bare_list_lit] = STATE(1800), + [sym_vec_lit] = STATE(2112), + [sym_set_lit] = STATE(2112), + [sym__bare_set_lit] = STATE(1801), + [sym_read_cond_lit] = STATE(2112), + [sym_splicing_read_cond_lit] = STATE(2112), + [sym_var_quoting_lit] = STATE(2112), + [sym_quoting_lit] = STATE(2112), + [sym_syn_quoting_lit] = STATE(2112), + [sym_unquote_splicing_lit] = STATE(2112), + [sym_unquoting_lit] = STATE(2112), + [sym_defun] = STATE(1800), + [sym_for_clause_word] = STATE(293), + [sym__for_part] = STATE(1189), + [sym_loop_macro] = STATE(1800), + [sym_path_lit] = STATE(2112), + [sym_package_lit] = STATE(2112), + [sym_include_reader_macro] = STATE(2112), + [sym_complex_num_lit] = STATE(2112), + [aux_sym_dis_expr_repeat1] = STATE(18), + [aux_sym_list_lit_repeat1] = STATE(2165), + [aux_sym_for_clause_repeat1] = STATE(951), [sym__ws] = ACTIONS(320), [sym_comment] = ACTIONS(320), [anon_sym_POUND_] = ACTIONS(272), @@ -10684,40 +10678,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(318), }, [9] = { - [sym__gap] = STATE(18), - [sym_dis_expr] = STATE(18), - [sym__form] = STATE(2089), - [sym_num_lit] = STATE(2089), - [sym_kwd_lit] = STATE(2089), - [sym_str_lit] = STATE(2089), - [sym_char_lit] = STATE(2089), - [sym_sym_lit] = STATE(2118), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(2089), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(2089), - [sym_set_lit] = STATE(2089), - [sym__bare_set_lit] = STATE(1794), - [sym_read_cond_lit] = STATE(2089), - [sym_splicing_read_cond_lit] = STATE(2089), - [sym_var_quoting_lit] = STATE(2089), - [sym_quoting_lit] = STATE(2089), - [sym_syn_quoting_lit] = STATE(2089), - [sym_unquote_splicing_lit] = STATE(2089), - [sym_unquoting_lit] = STATE(2089), - [sym_defun] = STATE(1793), - [sym_for_clause_word] = STATE(290), - [sym__for_part] = STATE(1188), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(2089), - [sym_package_lit] = STATE(2089), - [sym_include_reader_macro] = STATE(2089), - [sym_complex_num_lit] = STATE(2089), - [aux_sym_dis_expr_repeat1] = STATE(18), - [aux_sym_list_lit_repeat1] = STATE(2158), - [aux_sym_for_clause_repeat1] = STATE(960), + [sym__gap] = STATE(14), + [sym_dis_expr] = STATE(14), + [sym__form] = STATE(2114), + [sym_num_lit] = STATE(2114), + [sym_kwd_lit] = STATE(2114), + [sym_str_lit] = STATE(2114), + [sym_char_lit] = STATE(2114), + [sym_sym_lit] = STATE(2137), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(2114), + [sym__bare_list_lit] = STATE(1800), + [sym_vec_lit] = STATE(2114), + [sym_set_lit] = STATE(2114), + [sym__bare_set_lit] = STATE(1801), + [sym_read_cond_lit] = STATE(2114), + [sym_splicing_read_cond_lit] = STATE(2114), + [sym_var_quoting_lit] = STATE(2114), + [sym_quoting_lit] = STATE(2114), + [sym_syn_quoting_lit] = STATE(2114), + [sym_unquote_splicing_lit] = STATE(2114), + [sym_unquoting_lit] = STATE(2114), + [sym_defun] = STATE(1800), + [sym_for_clause_word] = STATE(293), + [sym__for_part] = STATE(1189), + [sym_loop_macro] = STATE(1800), + [sym_path_lit] = STATE(2114), + [sym_package_lit] = STATE(2114), + [sym_include_reader_macro] = STATE(2114), + [sym_complex_num_lit] = STATE(2114), + [aux_sym_dis_expr_repeat1] = STATE(14), + [aux_sym_list_lit_repeat1] = STATE(2165), + [aux_sym_for_clause_repeat1] = STATE(942), [sym__ws] = ACTIONS(326), [sym_comment] = ACTIONS(326), [anon_sym_POUND_] = ACTIONS(272), @@ -10769,40 +10763,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(318), }, [10] = { - [sym__gap] = STATE(16), - [sym_dis_expr] = STATE(16), - [sym__form] = STATE(2092), - [sym_num_lit] = STATE(2092), - [sym_kwd_lit] = STATE(2092), - [sym_str_lit] = STATE(2092), - [sym_char_lit] = STATE(2092), - [sym_sym_lit] = STATE(2118), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(2092), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(2092), - [sym_set_lit] = STATE(2092), - [sym__bare_set_lit] = STATE(1794), - [sym_read_cond_lit] = STATE(2092), - [sym_splicing_read_cond_lit] = STATE(2092), - [sym_var_quoting_lit] = STATE(2092), - [sym_quoting_lit] = STATE(2092), - [sym_syn_quoting_lit] = STATE(2092), - [sym_unquote_splicing_lit] = STATE(2092), - [sym_unquoting_lit] = STATE(2092), - [sym_defun] = STATE(1793), - [sym_for_clause_word] = STATE(290), - [sym__for_part] = STATE(1188), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(2092), - [sym_package_lit] = STATE(2092), - [sym_include_reader_macro] = STATE(2092), - [sym_complex_num_lit] = STATE(2092), - [aux_sym_dis_expr_repeat1] = STATE(16), - [aux_sym_list_lit_repeat1] = STATE(2158), - [aux_sym_for_clause_repeat1] = STATE(959), + [sym__gap] = STATE(17), + [sym_dis_expr] = STATE(17), + [sym__form] = STATE(2107), + [sym_num_lit] = STATE(2107), + [sym_kwd_lit] = STATE(2107), + [sym_str_lit] = STATE(2107), + [sym_char_lit] = STATE(2107), + [sym_sym_lit] = STATE(2137), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(2107), + [sym__bare_list_lit] = STATE(1800), + [sym_vec_lit] = STATE(2107), + [sym_set_lit] = STATE(2107), + [sym__bare_set_lit] = STATE(1801), + [sym_read_cond_lit] = STATE(2107), + [sym_splicing_read_cond_lit] = STATE(2107), + [sym_var_quoting_lit] = STATE(2107), + [sym_quoting_lit] = STATE(2107), + [sym_syn_quoting_lit] = STATE(2107), + [sym_unquote_splicing_lit] = STATE(2107), + [sym_unquoting_lit] = STATE(2107), + [sym_defun] = STATE(1800), + [sym_for_clause_word] = STATE(293), + [sym__for_part] = STATE(1189), + [sym_loop_macro] = STATE(1800), + [sym_path_lit] = STATE(2107), + [sym_package_lit] = STATE(2107), + [sym_include_reader_macro] = STATE(2107), + [sym_complex_num_lit] = STATE(2107), + [aux_sym_dis_expr_repeat1] = STATE(17), + [aux_sym_list_lit_repeat1] = STATE(2165), + [aux_sym_for_clause_repeat1] = STATE(954), [sym__ws] = ACTIONS(332), [sym_comment] = ACTIONS(332), [anon_sym_POUND_] = ACTIONS(272), @@ -10854,40 +10848,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(318), }, [11] = { - [sym__gap] = STATE(17), - [sym_dis_expr] = STATE(17), - [sym__form] = STATE(2095), - [sym_num_lit] = STATE(2095), - [sym_kwd_lit] = STATE(2095), - [sym_str_lit] = STATE(2095), - [sym_char_lit] = STATE(2095), - [sym_sym_lit] = STATE(2118), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(2095), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(2095), - [sym_set_lit] = STATE(2095), - [sym__bare_set_lit] = STATE(1794), - [sym_read_cond_lit] = STATE(2095), - [sym_splicing_read_cond_lit] = STATE(2095), - [sym_var_quoting_lit] = STATE(2095), - [sym_quoting_lit] = STATE(2095), - [sym_syn_quoting_lit] = STATE(2095), - [sym_unquote_splicing_lit] = STATE(2095), - [sym_unquoting_lit] = STATE(2095), - [sym_defun] = STATE(1793), - [sym_for_clause_word] = STATE(290), - [sym__for_part] = STATE(1188), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(2095), - [sym_package_lit] = STATE(2095), - [sym_include_reader_macro] = STATE(2095), - [sym_complex_num_lit] = STATE(2095), - [aux_sym_dis_expr_repeat1] = STATE(17), - [aux_sym_list_lit_repeat1] = STATE(2158), - [aux_sym_for_clause_repeat1] = STATE(947), + [sym__gap] = STATE(15), + [sym_dis_expr] = STATE(15), + [sym__form] = STATE(2106), + [sym_num_lit] = STATE(2106), + [sym_kwd_lit] = STATE(2106), + [sym_str_lit] = STATE(2106), + [sym_char_lit] = STATE(2106), + [sym_sym_lit] = STATE(2137), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(2106), + [sym__bare_list_lit] = STATE(1800), + [sym_vec_lit] = STATE(2106), + [sym_set_lit] = STATE(2106), + [sym__bare_set_lit] = STATE(1801), + [sym_read_cond_lit] = STATE(2106), + [sym_splicing_read_cond_lit] = STATE(2106), + [sym_var_quoting_lit] = STATE(2106), + [sym_quoting_lit] = STATE(2106), + [sym_syn_quoting_lit] = STATE(2106), + [sym_unquote_splicing_lit] = STATE(2106), + [sym_unquoting_lit] = STATE(2106), + [sym_defun] = STATE(1800), + [sym_for_clause_word] = STATE(293), + [sym__for_part] = STATE(1189), + [sym_loop_macro] = STATE(1800), + [sym_path_lit] = STATE(2106), + [sym_package_lit] = STATE(2106), + [sym_include_reader_macro] = STATE(2106), + [sym_complex_num_lit] = STATE(2106), + [aux_sym_dis_expr_repeat1] = STATE(15), + [aux_sym_list_lit_repeat1] = STATE(2165), + [aux_sym_for_clause_repeat1] = STATE(953), [sym__ws] = ACTIONS(338), [sym_comment] = ACTIONS(338), [anon_sym_POUND_] = ACTIONS(272), @@ -10939,40 +10933,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(318), }, [12] = { - [sym__gap] = STATE(14), - [sym_dis_expr] = STATE(14), - [sym__form] = STATE(2097), - [sym_num_lit] = STATE(2097), - [sym_kwd_lit] = STATE(2097), - [sym_str_lit] = STATE(2097), - [sym_char_lit] = STATE(2097), - [sym_sym_lit] = STATE(2118), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(2097), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(2097), - [sym_set_lit] = STATE(2097), - [sym__bare_set_lit] = STATE(1794), - [sym_read_cond_lit] = STATE(2097), - [sym_splicing_read_cond_lit] = STATE(2097), - [sym_var_quoting_lit] = STATE(2097), - [sym_quoting_lit] = STATE(2097), - [sym_syn_quoting_lit] = STATE(2097), - [sym_unquote_splicing_lit] = STATE(2097), - [sym_unquoting_lit] = STATE(2097), - [sym_defun] = STATE(1793), - [sym_for_clause_word] = STATE(290), - [sym__for_part] = STATE(1188), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(2097), - [sym_package_lit] = STATE(2097), - [sym_include_reader_macro] = STATE(2097), - [sym_complex_num_lit] = STATE(2097), - [aux_sym_dis_expr_repeat1] = STATE(14), - [aux_sym_list_lit_repeat1] = STATE(2158), - [aux_sym_for_clause_repeat1] = STATE(951), + [sym__gap] = STATE(13), + [sym_dis_expr] = STATE(13), + [sym__form] = STATE(2115), + [sym_num_lit] = STATE(2115), + [sym_kwd_lit] = STATE(2115), + [sym_str_lit] = STATE(2115), + [sym_char_lit] = STATE(2115), + [sym_sym_lit] = STATE(2137), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(2115), + [sym__bare_list_lit] = STATE(1800), + [sym_vec_lit] = STATE(2115), + [sym_set_lit] = STATE(2115), + [sym__bare_set_lit] = STATE(1801), + [sym_read_cond_lit] = STATE(2115), + [sym_splicing_read_cond_lit] = STATE(2115), + [sym_var_quoting_lit] = STATE(2115), + [sym_quoting_lit] = STATE(2115), + [sym_syn_quoting_lit] = STATE(2115), + [sym_unquote_splicing_lit] = STATE(2115), + [sym_unquoting_lit] = STATE(2115), + [sym_defun] = STATE(1800), + [sym_for_clause_word] = STATE(293), + [sym__for_part] = STATE(1189), + [sym_loop_macro] = STATE(1800), + [sym_path_lit] = STATE(2115), + [sym_package_lit] = STATE(2115), + [sym_include_reader_macro] = STATE(2115), + [sym_complex_num_lit] = STATE(2115), + [aux_sym_dis_expr_repeat1] = STATE(13), + [aux_sym_list_lit_repeat1] = STATE(2165), + [aux_sym_for_clause_repeat1] = STATE(955), [sym__ws] = ACTIONS(344), [sym_comment] = ACTIONS(344), [anon_sym_POUND_] = ACTIONS(272), @@ -11024,38 +11018,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(318), }, [13] = { - [sym__gap] = STATE(940), - [sym_dis_expr] = STATE(940), - [sym__form] = STATE(2098), - [sym_num_lit] = STATE(2098), - [sym_kwd_lit] = STATE(2098), - [sym_str_lit] = STATE(2098), - [sym_char_lit] = STATE(2098), - [sym_sym_lit] = STATE(2118), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(2098), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(2098), - [sym_set_lit] = STATE(2098), - [sym__bare_set_lit] = STATE(1794), - [sym_read_cond_lit] = STATE(2098), - [sym_splicing_read_cond_lit] = STATE(2098), - [sym_var_quoting_lit] = STATE(2098), - [sym_quoting_lit] = STATE(2098), - [sym_syn_quoting_lit] = STATE(2098), - [sym_unquote_splicing_lit] = STATE(2098), - [sym_unquoting_lit] = STATE(2098), - [sym_defun] = STATE(1793), - [sym_for_clause_word] = STATE(382), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(2098), - [sym_package_lit] = STATE(2098), - [sym_include_reader_macro] = STATE(2098), - [sym_complex_num_lit] = STATE(2098), - [aux_sym_dis_expr_repeat1] = STATE(940), - [aux_sym_list_lit_repeat1] = STATE(2158), + [sym__gap] = STATE(941), + [sym_dis_expr] = STATE(941), + [sym__form] = STATE(2109), + [sym_num_lit] = STATE(2109), + [sym_kwd_lit] = STATE(2109), + [sym_str_lit] = STATE(2109), + [sym_char_lit] = STATE(2109), + [sym_sym_lit] = STATE(2137), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(2109), + [sym__bare_list_lit] = STATE(1800), + [sym_vec_lit] = STATE(2109), + [sym_set_lit] = STATE(2109), + [sym__bare_set_lit] = STATE(1801), + [sym_read_cond_lit] = STATE(2109), + [sym_splicing_read_cond_lit] = STATE(2109), + [sym_var_quoting_lit] = STATE(2109), + [sym_quoting_lit] = STATE(2109), + [sym_syn_quoting_lit] = STATE(2109), + [sym_unquote_splicing_lit] = STATE(2109), + [sym_unquoting_lit] = STATE(2109), + [sym_defun] = STATE(1800), + [sym_for_clause_word] = STATE(383), + [sym_loop_macro] = STATE(1800), + [sym_path_lit] = STATE(2109), + [sym_package_lit] = STATE(2109), + [sym_include_reader_macro] = STATE(2109), + [sym_complex_num_lit] = STATE(2109), + [aux_sym_dis_expr_repeat1] = STATE(941), + [aux_sym_list_lit_repeat1] = STATE(2165), [sym__ws] = ACTIONS(350), [sym_comment] = ACTIONS(350), [anon_sym_POUND_] = ACTIONS(272), @@ -11107,38 +11101,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(318), }, [14] = { - [sym__gap] = STATE(940), - [sym_dis_expr] = STATE(940), - [sym__form] = STATE(2099), - [sym_num_lit] = STATE(2099), - [sym_kwd_lit] = STATE(2099), - [sym_str_lit] = STATE(2099), - [sym_char_lit] = STATE(2099), - [sym_sym_lit] = STATE(2118), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(2099), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(2099), - [sym_set_lit] = STATE(2099), - [sym__bare_set_lit] = STATE(1794), - [sym_read_cond_lit] = STATE(2099), - [sym_splicing_read_cond_lit] = STATE(2099), - [sym_var_quoting_lit] = STATE(2099), - [sym_quoting_lit] = STATE(2099), - [sym_syn_quoting_lit] = STATE(2099), - [sym_unquote_splicing_lit] = STATE(2099), - [sym_unquoting_lit] = STATE(2099), - [sym_defun] = STATE(1793), - [sym_for_clause_word] = STATE(382), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(2099), - [sym_package_lit] = STATE(2099), - [sym_include_reader_macro] = STATE(2099), - [sym_complex_num_lit] = STATE(2099), - [aux_sym_dis_expr_repeat1] = STATE(940), - [aux_sym_list_lit_repeat1] = STATE(2158), + [sym__gap] = STATE(941), + [sym_dis_expr] = STATE(941), + [sym__form] = STATE(2113), + [sym_num_lit] = STATE(2113), + [sym_kwd_lit] = STATE(2113), + [sym_str_lit] = STATE(2113), + [sym_char_lit] = STATE(2113), + [sym_sym_lit] = STATE(2137), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(2113), + [sym__bare_list_lit] = STATE(1800), + [sym_vec_lit] = STATE(2113), + [sym_set_lit] = STATE(2113), + [sym__bare_set_lit] = STATE(1801), + [sym_read_cond_lit] = STATE(2113), + [sym_splicing_read_cond_lit] = STATE(2113), + [sym_var_quoting_lit] = STATE(2113), + [sym_quoting_lit] = STATE(2113), + [sym_syn_quoting_lit] = STATE(2113), + [sym_unquote_splicing_lit] = STATE(2113), + [sym_unquoting_lit] = STATE(2113), + [sym_defun] = STATE(1800), + [sym_for_clause_word] = STATE(383), + [sym_loop_macro] = STATE(1800), + [sym_path_lit] = STATE(2113), + [sym_package_lit] = STATE(2113), + [sym_include_reader_macro] = STATE(2113), + [sym_complex_num_lit] = STATE(2113), + [aux_sym_dis_expr_repeat1] = STATE(941), + [aux_sym_list_lit_repeat1] = STATE(2165), [sym__ws] = ACTIONS(350), [sym_comment] = ACTIONS(350), [anon_sym_POUND_] = ACTIONS(272), @@ -11190,38 +11184,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(318), }, [15] = { - [sym__gap] = STATE(940), - [sym_dis_expr] = STATE(940), - [sym__form] = STATE(2093), - [sym_num_lit] = STATE(2093), - [sym_kwd_lit] = STATE(2093), - [sym_str_lit] = STATE(2093), - [sym_char_lit] = STATE(2093), - [sym_sym_lit] = STATE(2118), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(2093), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(2093), - [sym_set_lit] = STATE(2093), - [sym__bare_set_lit] = STATE(1794), - [sym_read_cond_lit] = STATE(2093), - [sym_splicing_read_cond_lit] = STATE(2093), - [sym_var_quoting_lit] = STATE(2093), - [sym_quoting_lit] = STATE(2093), - [sym_syn_quoting_lit] = STATE(2093), - [sym_unquote_splicing_lit] = STATE(2093), - [sym_unquoting_lit] = STATE(2093), - [sym_defun] = STATE(1793), - [sym_for_clause_word] = STATE(382), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(2093), - [sym_package_lit] = STATE(2093), - [sym_include_reader_macro] = STATE(2093), - [sym_complex_num_lit] = STATE(2093), - [aux_sym_dis_expr_repeat1] = STATE(940), - [aux_sym_list_lit_repeat1] = STATE(2158), + [sym__gap] = STATE(941), + [sym_dis_expr] = STATE(941), + [sym__form] = STATE(2110), + [sym_num_lit] = STATE(2110), + [sym_kwd_lit] = STATE(2110), + [sym_str_lit] = STATE(2110), + [sym_char_lit] = STATE(2110), + [sym_sym_lit] = STATE(2137), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(2110), + [sym__bare_list_lit] = STATE(1800), + [sym_vec_lit] = STATE(2110), + [sym_set_lit] = STATE(2110), + [sym__bare_set_lit] = STATE(1801), + [sym_read_cond_lit] = STATE(2110), + [sym_splicing_read_cond_lit] = STATE(2110), + [sym_var_quoting_lit] = STATE(2110), + [sym_quoting_lit] = STATE(2110), + [sym_syn_quoting_lit] = STATE(2110), + [sym_unquote_splicing_lit] = STATE(2110), + [sym_unquoting_lit] = STATE(2110), + [sym_defun] = STATE(1800), + [sym_for_clause_word] = STATE(383), + [sym_loop_macro] = STATE(1800), + [sym_path_lit] = STATE(2110), + [sym_package_lit] = STATE(2110), + [sym_include_reader_macro] = STATE(2110), + [sym_complex_num_lit] = STATE(2110), + [aux_sym_dis_expr_repeat1] = STATE(941), + [aux_sym_list_lit_repeat1] = STATE(2165), [sym__ws] = ACTIONS(350), [sym_comment] = ACTIONS(350), [anon_sym_POUND_] = ACTIONS(272), @@ -11273,38 +11267,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(318), }, [16] = { - [sym__gap] = STATE(940), - [sym_dis_expr] = STATE(940), - [sym__form] = STATE(2091), - [sym_num_lit] = STATE(2091), - [sym_kwd_lit] = STATE(2091), - [sym_str_lit] = STATE(2091), - [sym_char_lit] = STATE(2091), - [sym_sym_lit] = STATE(2118), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(2091), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(2091), - [sym_set_lit] = STATE(2091), - [sym__bare_set_lit] = STATE(1794), - [sym_read_cond_lit] = STATE(2091), - [sym_splicing_read_cond_lit] = STATE(2091), - [sym_var_quoting_lit] = STATE(2091), - [sym_quoting_lit] = STATE(2091), - [sym_syn_quoting_lit] = STATE(2091), - [sym_unquote_splicing_lit] = STATE(2091), - [sym_unquoting_lit] = STATE(2091), - [sym_defun] = STATE(1793), - [sym_for_clause_word] = STATE(382), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(2091), - [sym_package_lit] = STATE(2091), - [sym_include_reader_macro] = STATE(2091), - [sym_complex_num_lit] = STATE(2091), - [aux_sym_dis_expr_repeat1] = STATE(940), - [aux_sym_list_lit_repeat1] = STATE(2158), + [sym__gap] = STATE(941), + [sym_dis_expr] = STATE(941), + [sym__form] = STATE(2116), + [sym_num_lit] = STATE(2116), + [sym_kwd_lit] = STATE(2116), + [sym_str_lit] = STATE(2116), + [sym_char_lit] = STATE(2116), + [sym_sym_lit] = STATE(2137), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(2116), + [sym__bare_list_lit] = STATE(1800), + [sym_vec_lit] = STATE(2116), + [sym_set_lit] = STATE(2116), + [sym__bare_set_lit] = STATE(1801), + [sym_read_cond_lit] = STATE(2116), + [sym_splicing_read_cond_lit] = STATE(2116), + [sym_var_quoting_lit] = STATE(2116), + [sym_quoting_lit] = STATE(2116), + [sym_syn_quoting_lit] = STATE(2116), + [sym_unquote_splicing_lit] = STATE(2116), + [sym_unquoting_lit] = STATE(2116), + [sym_defun] = STATE(1800), + [sym_for_clause_word] = STATE(383), + [sym_loop_macro] = STATE(1800), + [sym_path_lit] = STATE(2116), + [sym_package_lit] = STATE(2116), + [sym_include_reader_macro] = STATE(2116), + [sym_complex_num_lit] = STATE(2116), + [aux_sym_dis_expr_repeat1] = STATE(941), + [aux_sym_list_lit_repeat1] = STATE(2165), [sym__ws] = ACTIONS(350), [sym_comment] = ACTIONS(350), [anon_sym_POUND_] = ACTIONS(272), @@ -11356,38 +11350,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(318), }, [17] = { - [sym__gap] = STATE(940), - [sym_dis_expr] = STATE(940), - [sym__form] = STATE(2096), - [sym_num_lit] = STATE(2096), - [sym_kwd_lit] = STATE(2096), - [sym_str_lit] = STATE(2096), - [sym_char_lit] = STATE(2096), - [sym_sym_lit] = STATE(2118), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(2096), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(2096), - [sym_set_lit] = STATE(2096), - [sym__bare_set_lit] = STATE(1794), - [sym_read_cond_lit] = STATE(2096), - [sym_splicing_read_cond_lit] = STATE(2096), - [sym_var_quoting_lit] = STATE(2096), - [sym_quoting_lit] = STATE(2096), - [sym_syn_quoting_lit] = STATE(2096), - [sym_unquote_splicing_lit] = STATE(2096), - [sym_unquoting_lit] = STATE(2096), - [sym_defun] = STATE(1793), - [sym_for_clause_word] = STATE(382), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(2096), - [sym_package_lit] = STATE(2096), - [sym_include_reader_macro] = STATE(2096), - [sym_complex_num_lit] = STATE(2096), - [aux_sym_dis_expr_repeat1] = STATE(940), - [aux_sym_list_lit_repeat1] = STATE(2158), + [sym__gap] = STATE(941), + [sym_dis_expr] = STATE(941), + [sym__form] = STATE(2108), + [sym_num_lit] = STATE(2108), + [sym_kwd_lit] = STATE(2108), + [sym_str_lit] = STATE(2108), + [sym_char_lit] = STATE(2108), + [sym_sym_lit] = STATE(2137), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(2108), + [sym__bare_list_lit] = STATE(1800), + [sym_vec_lit] = STATE(2108), + [sym_set_lit] = STATE(2108), + [sym__bare_set_lit] = STATE(1801), + [sym_read_cond_lit] = STATE(2108), + [sym_splicing_read_cond_lit] = STATE(2108), + [sym_var_quoting_lit] = STATE(2108), + [sym_quoting_lit] = STATE(2108), + [sym_syn_quoting_lit] = STATE(2108), + [sym_unquote_splicing_lit] = STATE(2108), + [sym_unquoting_lit] = STATE(2108), + [sym_defun] = STATE(1800), + [sym_for_clause_word] = STATE(383), + [sym_loop_macro] = STATE(1800), + [sym_path_lit] = STATE(2108), + [sym_package_lit] = STATE(2108), + [sym_include_reader_macro] = STATE(2108), + [sym_complex_num_lit] = STATE(2108), + [aux_sym_dis_expr_repeat1] = STATE(941), + [aux_sym_list_lit_repeat1] = STATE(2165), [sym__ws] = ACTIONS(350), [sym_comment] = ACTIONS(350), [anon_sym_POUND_] = ACTIONS(272), @@ -11439,38 +11433,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(318), }, [18] = { - [sym__gap] = STATE(940), - [sym_dis_expr] = STATE(940), - [sym__form] = STATE(2094), - [sym_num_lit] = STATE(2094), - [sym_kwd_lit] = STATE(2094), - [sym_str_lit] = STATE(2094), - [sym_char_lit] = STATE(2094), - [sym_sym_lit] = STATE(2118), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(2094), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(2094), - [sym_set_lit] = STATE(2094), - [sym__bare_set_lit] = STATE(1794), - [sym_read_cond_lit] = STATE(2094), - [sym_splicing_read_cond_lit] = STATE(2094), - [sym_var_quoting_lit] = STATE(2094), - [sym_quoting_lit] = STATE(2094), - [sym_syn_quoting_lit] = STATE(2094), - [sym_unquote_splicing_lit] = STATE(2094), - [sym_unquoting_lit] = STATE(2094), - [sym_defun] = STATE(1793), - [sym_for_clause_word] = STATE(382), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(2094), - [sym_package_lit] = STATE(2094), - [sym_include_reader_macro] = STATE(2094), - [sym_complex_num_lit] = STATE(2094), - [aux_sym_dis_expr_repeat1] = STATE(940), - [aux_sym_list_lit_repeat1] = STATE(2158), + [sym__gap] = STATE(941), + [sym_dis_expr] = STATE(941), + [sym__form] = STATE(2117), + [sym_num_lit] = STATE(2117), + [sym_kwd_lit] = STATE(2117), + [sym_str_lit] = STATE(2117), + [sym_char_lit] = STATE(2117), + [sym_sym_lit] = STATE(2137), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(2117), + [sym__bare_list_lit] = STATE(1800), + [sym_vec_lit] = STATE(2117), + [sym_set_lit] = STATE(2117), + [sym__bare_set_lit] = STATE(1801), + [sym_read_cond_lit] = STATE(2117), + [sym_splicing_read_cond_lit] = STATE(2117), + [sym_var_quoting_lit] = STATE(2117), + [sym_quoting_lit] = STATE(2117), + [sym_syn_quoting_lit] = STATE(2117), + [sym_unquote_splicing_lit] = STATE(2117), + [sym_unquoting_lit] = STATE(2117), + [sym_defun] = STATE(1800), + [sym_for_clause_word] = STATE(383), + [sym_loop_macro] = STATE(1800), + [sym_path_lit] = STATE(2117), + [sym_package_lit] = STATE(2117), + [sym_include_reader_macro] = STATE(2117), + [sym_complex_num_lit] = STATE(2117), + [aux_sym_dis_expr_repeat1] = STATE(941), + [aux_sym_list_lit_repeat1] = STATE(2165), [sym__ws] = ACTIONS(350), [sym_comment] = ACTIONS(350), [anon_sym_POUND_] = ACTIONS(272), @@ -11522,39 +11516,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(318), }, [19] = { - [sym__gap] = STATE(1294), - [sym_dis_expr] = STATE(1294), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_defun_keyword] = STATE(554), - [sym_defun_header] = STATE(141), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(142), + [sym__gap] = STATE(1291), + [sym_dis_expr] = STATE(1291), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_defun_keyword] = STATE(568), + [sym_defun_header] = STATE(66), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(67), [sym__ws] = ACTIONS(376), [sym_comment] = ACTIONS(376), [anon_sym_POUND_] = ACTIONS(378), @@ -11597,39 +11591,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [20] = { - [sym__gap] = STATE(1296), - [sym_dis_expr] = STATE(1296), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_defun_keyword] = STATE(554), - [sym_defun_header] = STATE(130), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(129), + [sym__gap] = STATE(1292), + [sym_dis_expr] = STATE(1292), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_defun_keyword] = STATE(568), + [sym_defun_header] = STATE(53), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(51), [sym__ws] = ACTIONS(394), [sym_comment] = ACTIONS(394), [anon_sym_POUND_] = ACTIONS(378), @@ -11672,39 +11666,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [21] = { - [sym__gap] = STATE(1290), - [sym_dis_expr] = STATE(1290), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_defun_keyword] = STATE(554), - [sym_defun_header] = STATE(73), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(74), + [sym__gap] = STATE(1297), + [sym_dis_expr] = STATE(1297), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_defun_keyword] = STATE(568), + [sym_defun_header] = STATE(83), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(87), [sym__ws] = ACTIONS(402), [sym_comment] = ACTIONS(402), [anon_sym_POUND_] = ACTIONS(378), @@ -11747,39 +11741,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [22] = { - [sym__gap] = STATE(1297), - [sym_dis_expr] = STATE(1297), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_defun_keyword] = STATE(554), - [sym_defun_header] = STATE(164), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(159), + [sym__gap] = STATE(1300), + [sym_dis_expr] = STATE(1300), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_defun_keyword] = STATE(568), + [sym_defun_header] = STATE(158), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(160), [sym__ws] = ACTIONS(410), [sym_comment] = ACTIONS(410), [anon_sym_POUND_] = ACTIONS(378), @@ -11822,39 +11816,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [23] = { - [sym__gap] = STATE(1288), - [sym_dis_expr] = STATE(1288), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_defun_keyword] = STATE(554), - [sym_defun_header] = STATE(59), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(60), + [sym__gap] = STATE(1299), + [sym_dis_expr] = STATE(1299), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_defun_keyword] = STATE(568), + [sym_defun_header] = STATE(122), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(124), [sym__ws] = ACTIONS(418), [sym_comment] = ACTIONS(418), [anon_sym_POUND_] = ACTIONS(378), @@ -11897,39 +11891,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [24] = { - [sym__gap] = STATE(1292), - [sym_dis_expr] = STATE(1292), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_defun_keyword] = STATE(554), - [sym_defun_header] = STATE(46), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(47), + [sym__gap] = STATE(1296), + [sym_dis_expr] = STATE(1296), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_defun_keyword] = STATE(568), + [sym_defun_header] = STATE(69), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(70), [sym__ws] = ACTIONS(426), [sym_comment] = ACTIONS(426), [anon_sym_POUND_] = ACTIONS(378), @@ -11972,39 +11966,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [25] = { - [sym__gap] = STATE(1289), - [sym_dis_expr] = STATE(1289), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_defun_keyword] = STATE(554), - [sym_defun_header] = STATE(70), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(71), + [sym__gap] = STATE(1294), + [sym_dis_expr] = STATE(1294), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_defun_keyword] = STATE(568), + [sym_defun_header] = STATE(155), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(82), [sym__ws] = ACTIONS(434), [sym_comment] = ACTIONS(434), [anon_sym_POUND_] = ACTIONS(378), @@ -12047,39 +12041,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [26] = { - [sym__gap] = STATE(1293), - [sym_dis_expr] = STATE(1293), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_defun_keyword] = STATE(554), - [sym_defun_header] = STATE(109), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(110), + [sym__gap] = STATE(1295), + [sym_dis_expr] = STATE(1295), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_defun_keyword] = STATE(568), + [sym_defun_header] = STATE(52), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(56), [sym__ws] = ACTIONS(442), [sym_comment] = ACTIONS(442), [anon_sym_POUND_] = ACTIONS(378), @@ -12122,39 +12116,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [27] = { - [sym__gap] = STATE(1295), - [sym_dis_expr] = STATE(1295), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_defun_keyword] = STATE(554), - [sym_defun_header] = STATE(146), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(158), + [sym__gap] = STATE(1293), + [sym_dis_expr] = STATE(1293), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_defun_keyword] = STATE(568), + [sym_defun_header] = STATE(109), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(119), [sym__ws] = ACTIONS(450), [sym_comment] = ACTIONS(450), [anon_sym_POUND_] = ACTIONS(378), @@ -12197,39 +12191,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [28] = { - [sym__gap] = STATE(1291), - [sym_dis_expr] = STATE(1291), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_defun_keyword] = STATE(554), - [sym_defun_header] = STATE(87), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(88), + [sym__gap] = STATE(1298), + [sym_dis_expr] = STATE(1298), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_defun_keyword] = STATE(568), + [sym_defun_header] = STATE(102), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(103), [sym__ws] = ACTIONS(458), [sym_comment] = ACTIONS(458), [anon_sym_POUND_] = ACTIONS(378), @@ -12272,34 +12266,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [29] = { - [sym_num_lit] = STATE(1306), - [sym_kwd_lit] = STATE(1306), - [sym_str_lit] = STATE(1306), - [sym_char_lit] = STATE(1306), - [sym_sym_lit] = STATE(1308), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1309), - [sym__bare_list_lit] = STATE(1303), - [sym_vec_lit] = STATE(1306), - [sym_set_lit] = STATE(1306), - [sym__bare_set_lit] = STATE(1304), - [sym_read_cond_lit] = STATE(1306), - [sym_splicing_read_cond_lit] = STATE(1306), - [sym_var_quoting_lit] = STATE(1306), - [sym_quoting_lit] = STATE(1306), - [sym_syn_quoting_lit] = STATE(1306), - [sym_unquote_splicing_lit] = STATE(1306), - [sym_unquoting_lit] = STATE(1306), - [sym_defun] = STATE(1303), - [sym_loop_macro] = STATE(1303), - [sym_array_dimension] = STATE(2376), - [sym_path_lit] = STATE(1306), - [sym_package_lit] = STATE(1306), - [sym_include_reader_macro] = STATE(1306), - [sym_complex_num_lit] = STATE(1306), - [aux_sym_list_lit_repeat1] = STATE(2160), + [sym_num_lit] = STATE(2286), + [sym_kwd_lit] = STATE(2286), + [sym_str_lit] = STATE(2286), + [sym_char_lit] = STATE(2286), + [sym_sym_lit] = STATE(2452), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(2293), + [sym__bare_list_lit] = STATE(2282), + [sym_vec_lit] = STATE(2286), + [sym_set_lit] = STATE(2286), + [sym__bare_set_lit] = STATE(2337), + [sym_read_cond_lit] = STATE(2286), + [sym_splicing_read_cond_lit] = STATE(2286), + [sym_var_quoting_lit] = STATE(2286), + [sym_quoting_lit] = STATE(2286), + [sym_syn_quoting_lit] = STATE(2286), + [sym_unquote_splicing_lit] = STATE(2286), + [sym_unquoting_lit] = STATE(2286), + [sym_defun] = STATE(2282), + [sym_loop_macro] = STATE(2282), + [sym_array_dimension] = STATE(2372), + [sym_path_lit] = STATE(2286), + [sym_package_lit] = STATE(2286), + [sym_include_reader_macro] = STATE(2286), + [sym_complex_num_lit] = STATE(2286), + [aux_sym_list_lit_repeat1] = STATE(2168), [anon_sym_POUND] = ACTIONS(466), [aux_sym__form_token1] = ACTIONS(468), [anon_sym_DOT] = ACTIONS(470), @@ -12340,121 +12334,461 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(514), }, [30] = { - [sym_num_lit] = STATE(1891), - [sym_kwd_lit] = STATE(1891), - [sym_str_lit] = STATE(1891), - [sym_char_lit] = STATE(1891), - [sym_sym_lit] = STATE(1826), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1893), - [sym__bare_list_lit] = STATE(1886), - [sym_vec_lit] = STATE(1891), - [sym_set_lit] = STATE(1891), - [sym__bare_set_lit] = STATE(1887), - [sym_read_cond_lit] = STATE(1891), - [sym_splicing_read_cond_lit] = STATE(1891), - [sym_var_quoting_lit] = STATE(1891), - [sym_quoting_lit] = STATE(1891), - [sym_syn_quoting_lit] = STATE(1891), - [sym_unquote_splicing_lit] = STATE(1891), - [sym_unquoting_lit] = STATE(1891), - [sym_defun] = STATE(1886), - [sym_loop_macro] = STATE(1886), - [sym_array_dimension] = STATE(2365), - [sym_path_lit] = STATE(1891), - [sym_package_lit] = STATE(1891), - [sym_include_reader_macro] = STATE(1891), - [sym_complex_num_lit] = STATE(1891), - [aux_sym_list_lit_repeat1] = STATE(2151), + [sym_num_lit] = STATE(1070), + [sym_kwd_lit] = STATE(1070), + [sym_str_lit] = STATE(1070), + [sym_char_lit] = STATE(1070), + [sym_sym_lit] = STATE(1068), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1067), + [sym__bare_list_lit] = STATE(1073), + [sym_vec_lit] = STATE(1070), + [sym_set_lit] = STATE(1070), + [sym__bare_set_lit] = STATE(1072), + [sym_read_cond_lit] = STATE(1070), + [sym_splicing_read_cond_lit] = STATE(1070), + [sym_var_quoting_lit] = STATE(1070), + [sym_quoting_lit] = STATE(1070), + [sym_syn_quoting_lit] = STATE(1070), + [sym_unquote_splicing_lit] = STATE(1070), + [sym_unquoting_lit] = STATE(1070), + [sym_defun] = STATE(1073), + [sym_loop_macro] = STATE(1073), + [sym_array_dimension] = STATE(2407), + [sym_path_lit] = STATE(1070), + [sym_package_lit] = STATE(1070), + [sym_include_reader_macro] = STATE(1070), + [sym_complex_num_lit] = STATE(1070), + [aux_sym_list_lit_repeat1] = STATE(2177), [anon_sym_POUND] = ACTIONS(516), [aux_sym__form_token1] = ACTIONS(518), [anon_sym_DOT] = ACTIONS(520), - [aux_sym_num_lit_token1] = ACTIONS(522), - [anon_sym_COLON] = ACTIONS(524), - [anon_sym_COLON_COLON] = ACTIONS(526), - [anon_sym_DQUOTE] = ACTIONS(528), - [aux_sym_char_lit_token1] = ACTIONS(530), - [aux_sym_char_lit_token2] = ACTIONS(530), - [aux_sym_char_lit_token3] = ACTIONS(532), - [aux_sym_char_lit_token4] = ACTIONS(530), - [aux_sym_char_lit_token5] = ACTIONS(532), - [aux_sym_char_lit_token6] = ACTIONS(532), + [aux_sym_num_lit_token1] = ACTIONS(194), + [anon_sym_COLON] = ACTIONS(196), + [anon_sym_COLON_COLON] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [aux_sym_char_lit_token1] = ACTIONS(522), + [aux_sym_char_lit_token2] = ACTIONS(522), + [aux_sym_char_lit_token3] = ACTIONS(524), + [aux_sym_char_lit_token4] = ACTIONS(522), + [aux_sym_char_lit_token5] = ACTIONS(524), + [aux_sym_char_lit_token6] = ACTIONS(524), [sym_nil_lit] = ACTIONS(520), - [aux_sym_sym_lit_token1] = ACTIONS(534), + [aux_sym_sym_lit_token1] = ACTIONS(202), [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_POUND0A] = ACTIONS(540), - [anon_sym_POUND0a] = ACTIONS(540), - [anon_sym_POUND_QMARK] = ACTIONS(542), - [anon_sym_POUND_QMARK_AT] = ACTIONS(544), - [anon_sym_POUND_SQUOTE] = ACTIONS(546), - [anon_sym_SQUOTE] = ACTIONS(548), - [anon_sym_BQUOTE] = ACTIONS(550), - [anon_sym_COMMA_AT] = ACTIONS(552), - [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_LPAREN] = ACTIONS(526), + [anon_sym_LBRACE] = ACTIONS(528), + [anon_sym_POUND0A] = ACTIONS(215), + [anon_sym_POUND0a] = ACTIONS(215), + [anon_sym_POUND_QMARK] = ACTIONS(217), + [anon_sym_POUND_QMARK_AT] = ACTIONS(219), + [anon_sym_POUND_SQUOTE] = ACTIONS(221), + [anon_sym_SQUOTE] = ACTIONS(223), + [anon_sym_BQUOTE] = ACTIONS(225), + [anon_sym_COMMA_AT] = ACTIONS(227), + [anon_sym_COMMA] = ACTIONS(229), [sym_block_comment] = ACTIONS(47), [sym_fancy_literal] = ACTIONS(520), - [anon_sym_cl] = ACTIONS(556), - [anon_sym_POUNDP] = ACTIONS(558), - [anon_sym_POUNDp] = ACTIONS(558), - [sym_self_referential_reader_macro] = ACTIONS(560), - [anon_sym_POUND_PLUS] = ACTIONS(562), - [anon_sym_POUND_DASH] = ACTIONS(562), - [anon_sym_POUNDC] = ACTIONS(564), - [anon_sym_POUNDc] = ACTIONS(564), + [anon_sym_cl] = ACTIONS(530), + [anon_sym_POUNDP] = ACTIONS(236), + [anon_sym_POUNDp] = ACTIONS(236), + [sym_self_referential_reader_macro] = ACTIONS(532), + [anon_sym_POUND_PLUS] = ACTIONS(240), + [anon_sym_POUND_DASH] = ACTIONS(240), + [anon_sym_POUNDC] = ACTIONS(242), + [anon_sym_POUNDc] = ACTIONS(242), }, [31] = { - [sym_num_lit] = STATE(1498), - [sym_kwd_lit] = STATE(1498), - [sym_str_lit] = STATE(1498), - [sym_char_lit] = STATE(1498), - [sym_sym_lit] = STATE(1519), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1520), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1498), - [sym_set_lit] = STATE(1498), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1498), - [sym_splicing_read_cond_lit] = STATE(1498), - [sym_var_quoting_lit] = STATE(1498), - [sym_quoting_lit] = STATE(1498), - [sym_syn_quoting_lit] = STATE(1498), - [sym_unquote_splicing_lit] = STATE(1498), - [sym_unquoting_lit] = STATE(1498), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_array_dimension] = STATE(2363), - [sym_path_lit] = STATE(1498), - [sym_package_lit] = STATE(1498), - [sym_include_reader_macro] = STATE(1498), - [sym_complex_num_lit] = STATE(1498), - [aux_sym_list_lit_repeat1] = STATE(2137), - [anon_sym_POUND] = ACTIONS(566), - [aux_sym__form_token1] = ACTIONS(568), - [anon_sym_DOT] = ACTIONS(570), + [sym_num_lit] = STATE(1804), + [sym_kwd_lit] = STATE(1804), + [sym_str_lit] = STATE(1804), + [sym_char_lit] = STATE(1804), + [sym_sym_lit] = STATE(2135), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1807), + [sym__bare_list_lit] = STATE(1800), + [sym_vec_lit] = STATE(1804), + [sym_set_lit] = STATE(1804), + [sym__bare_set_lit] = STATE(1801), + [sym_read_cond_lit] = STATE(1804), + [sym_splicing_read_cond_lit] = STATE(1804), + [sym_var_quoting_lit] = STATE(1804), + [sym_quoting_lit] = STATE(1804), + [sym_syn_quoting_lit] = STATE(1804), + [sym_unquote_splicing_lit] = STATE(1804), + [sym_unquoting_lit] = STATE(1804), + [sym_defun] = STATE(1800), + [sym_loop_macro] = STATE(1800), + [sym_array_dimension] = STATE(2412), + [sym_path_lit] = STATE(1804), + [sym_package_lit] = STATE(1804), + [sym_include_reader_macro] = STATE(1804), + [sym_complex_num_lit] = STATE(1804), + [aux_sym_list_lit_repeat1] = STATE(2165), + [anon_sym_POUND] = ACTIONS(534), + [aux_sym__form_token1] = ACTIONS(536), + [anon_sym_DOT] = ACTIONS(538), + [aux_sym_num_lit_token1] = ACTIONS(278), + [anon_sym_COLON] = ACTIONS(280), + [anon_sym_COLON_COLON] = ACTIONS(282), + [anon_sym_DQUOTE] = ACTIONS(284), + [aux_sym_char_lit_token1] = ACTIONS(540), + [aux_sym_char_lit_token2] = ACTIONS(540), + [aux_sym_char_lit_token3] = ACTIONS(542), + [aux_sym_char_lit_token4] = ACTIONS(540), + [aux_sym_char_lit_token5] = ACTIONS(542), + [aux_sym_char_lit_token6] = ACTIONS(542), + [sym_nil_lit] = ACTIONS(538), + [aux_sym_sym_lit_token1] = ACTIONS(286), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(288), + [anon_sym_LBRACE] = ACTIONS(544), + [anon_sym_POUND0A] = ACTIONS(290), + [anon_sym_POUND0a] = ACTIONS(290), + [anon_sym_POUND_QMARK] = ACTIONS(292), + [anon_sym_POUND_QMARK_AT] = ACTIONS(294), + [anon_sym_POUND_SQUOTE] = ACTIONS(296), + [anon_sym_SQUOTE] = ACTIONS(298), + [anon_sym_BQUOTE] = ACTIONS(300), + [anon_sym_COMMA_AT] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(304), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(538), + [anon_sym_cl] = ACTIONS(546), + [anon_sym_POUNDP] = ACTIONS(312), + [anon_sym_POUNDp] = ACTIONS(312), + [sym_self_referential_reader_macro] = ACTIONS(548), + [anon_sym_POUND_PLUS] = ACTIONS(316), + [anon_sym_POUND_DASH] = ACTIONS(316), + [anon_sym_POUNDC] = ACTIONS(318), + [anon_sym_POUNDc] = ACTIONS(318), + }, + [32] = { + [sym_num_lit] = STATE(1383), + [sym_kwd_lit] = STATE(1383), + [sym_str_lit] = STATE(1383), + [sym_char_lit] = STATE(1383), + [sym_sym_lit] = STATE(1381), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1380), + [sym__bare_list_lit] = STATE(1387), + [sym_vec_lit] = STATE(1383), + [sym_set_lit] = STATE(1383), + [sym__bare_set_lit] = STATE(1386), + [sym_read_cond_lit] = STATE(1383), + [sym_splicing_read_cond_lit] = STATE(1383), + [sym_var_quoting_lit] = STATE(1383), + [sym_quoting_lit] = STATE(1383), + [sym_syn_quoting_lit] = STATE(1383), + [sym_unquote_splicing_lit] = STATE(1383), + [sym_unquoting_lit] = STATE(1383), + [sym_defun] = STATE(1387), + [sym_loop_macro] = STATE(1387), + [sym_array_dimension] = STATE(2384), + [sym_path_lit] = STATE(1383), + [sym_package_lit] = STATE(1383), + [sym_include_reader_macro] = STATE(1383), + [sym_complex_num_lit] = STATE(1383), + [aux_sym_list_lit_repeat1] = STATE(2172), + [anon_sym_POUND] = ACTIONS(550), + [aux_sym__form_token1] = ACTIONS(552), + [anon_sym_DOT] = ACTIONS(554), + [aux_sym_num_lit_token1] = ACTIONS(556), + [anon_sym_COLON] = ACTIONS(558), + [anon_sym_COLON_COLON] = ACTIONS(560), + [anon_sym_DQUOTE] = ACTIONS(562), + [aux_sym_char_lit_token1] = ACTIONS(564), + [aux_sym_char_lit_token2] = ACTIONS(564), + [aux_sym_char_lit_token3] = ACTIONS(566), + [aux_sym_char_lit_token4] = ACTIONS(564), + [aux_sym_char_lit_token5] = ACTIONS(566), + [aux_sym_char_lit_token6] = ACTIONS(566), + [sym_nil_lit] = ACTIONS(554), + [aux_sym_sym_lit_token1] = ACTIONS(568), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(570), + [anon_sym_LBRACE] = ACTIONS(572), + [anon_sym_POUND0A] = ACTIONS(574), + [anon_sym_POUND0a] = ACTIONS(574), + [anon_sym_POUND_QMARK] = ACTIONS(576), + [anon_sym_POUND_QMARK_AT] = ACTIONS(578), + [anon_sym_POUND_SQUOTE] = ACTIONS(580), + [anon_sym_SQUOTE] = ACTIONS(582), + [anon_sym_BQUOTE] = ACTIONS(584), + [anon_sym_COMMA_AT] = ACTIONS(586), + [anon_sym_COMMA] = ACTIONS(588), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(554), + [anon_sym_cl] = ACTIONS(590), + [anon_sym_POUNDP] = ACTIONS(592), + [anon_sym_POUNDp] = ACTIONS(592), + [sym_self_referential_reader_macro] = ACTIONS(594), + [anon_sym_POUND_PLUS] = ACTIONS(596), + [anon_sym_POUND_DASH] = ACTIONS(596), + [anon_sym_POUNDC] = ACTIONS(598), + [anon_sym_POUNDc] = ACTIONS(598), + }, + [33] = { + [sym_num_lit] = STATE(2286), + [sym_kwd_lit] = STATE(2286), + [sym_str_lit] = STATE(2286), + [sym_char_lit] = STATE(2286), + [sym_sym_lit] = STATE(2387), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(2293), + [sym__bare_list_lit] = STATE(2282), + [sym_vec_lit] = STATE(2286), + [sym_set_lit] = STATE(2286), + [sym__bare_set_lit] = STATE(2337), + [sym_read_cond_lit] = STATE(2286), + [sym_splicing_read_cond_lit] = STATE(2286), + [sym_var_quoting_lit] = STATE(2286), + [sym_quoting_lit] = STATE(2286), + [sym_syn_quoting_lit] = STATE(2286), + [sym_unquote_splicing_lit] = STATE(2286), + [sym_unquoting_lit] = STATE(2286), + [sym_defun] = STATE(2282), + [sym_loop_macro] = STATE(2282), + [sym_array_dimension] = STATE(2409), + [sym_path_lit] = STATE(2286), + [sym_package_lit] = STATE(2286), + [sym_include_reader_macro] = STATE(2286), + [sym_complex_num_lit] = STATE(2286), + [aux_sym_list_lit_repeat1] = STATE(2151), + [anon_sym_POUND] = ACTIONS(600), + [aux_sym__form_token1] = ACTIONS(602), + [anon_sym_DOT] = ACTIONS(470), + [aux_sym_num_lit_token1] = ACTIONS(604), + [anon_sym_COLON] = ACTIONS(606), + [anon_sym_COLON_COLON] = ACTIONS(608), + [anon_sym_DQUOTE] = ACTIONS(610), + [aux_sym_char_lit_token1] = ACTIONS(480), + [aux_sym_char_lit_token2] = ACTIONS(480), + [aux_sym_char_lit_token3] = ACTIONS(482), + [aux_sym_char_lit_token4] = ACTIONS(480), + [aux_sym_char_lit_token5] = ACTIONS(482), + [aux_sym_char_lit_token6] = ACTIONS(482), + [sym_nil_lit] = ACTIONS(470), + [aux_sym_sym_lit_token1] = ACTIONS(612), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(614), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_POUND0A] = ACTIONS(616), + [anon_sym_POUND0a] = ACTIONS(616), + [anon_sym_POUND_QMARK] = ACTIONS(618), + [anon_sym_POUND_QMARK_AT] = ACTIONS(620), + [anon_sym_POUND_SQUOTE] = ACTIONS(622), + [anon_sym_SQUOTE] = ACTIONS(624), + [anon_sym_BQUOTE] = ACTIONS(626), + [anon_sym_COMMA_AT] = ACTIONS(628), + [anon_sym_COMMA] = ACTIONS(630), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(470), + [anon_sym_cl] = ACTIONS(632), + [anon_sym_POUNDP] = ACTIONS(508), + [anon_sym_POUNDp] = ACTIONS(508), + [sym_self_referential_reader_macro] = ACTIONS(510), + [anon_sym_POUND_PLUS] = ACTIONS(634), + [anon_sym_POUND_DASH] = ACTIONS(634), + [anon_sym_POUNDC] = ACTIONS(514), + [anon_sym_POUNDc] = ACTIONS(514), + }, + [34] = { + [sym_num_lit] = STATE(2286), + [sym_kwd_lit] = STATE(2286), + [sym_str_lit] = STATE(2286), + [sym_char_lit] = STATE(2286), + [sym_sym_lit] = STATE(2452), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(2293), + [sym__bare_list_lit] = STATE(2282), + [sym_vec_lit] = STATE(2286), + [sym_set_lit] = STATE(2286), + [sym__bare_set_lit] = STATE(2337), + [sym_read_cond_lit] = STATE(2286), + [sym_splicing_read_cond_lit] = STATE(2286), + [sym_var_quoting_lit] = STATE(2286), + [sym_quoting_lit] = STATE(2286), + [sym_syn_quoting_lit] = STATE(2286), + [sym_unquote_splicing_lit] = STATE(2286), + [sym_unquoting_lit] = STATE(2286), + [sym_defun] = STATE(2282), + [sym_loop_macro] = STATE(2282), + [sym_array_dimension] = STATE(2375), + [sym_path_lit] = STATE(2286), + [sym_package_lit] = STATE(2286), + [sym_include_reader_macro] = STATE(2286), + [sym_complex_num_lit] = STATE(2286), + [aux_sym_list_lit_repeat1] = STATE(2142), + [anon_sym_POUND] = ACTIONS(636), + [aux_sym__form_token1] = ACTIONS(638), + [anon_sym_DOT] = ACTIONS(470), + [aux_sym_num_lit_token1] = ACTIONS(604), + [anon_sym_COLON] = ACTIONS(474), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DQUOTE] = ACTIONS(478), + [aux_sym_char_lit_token1] = ACTIONS(480), + [aux_sym_char_lit_token2] = ACTIONS(480), + [aux_sym_char_lit_token3] = ACTIONS(482), + [aux_sym_char_lit_token4] = ACTIONS(480), + [aux_sym_char_lit_token5] = ACTIONS(482), + [aux_sym_char_lit_token6] = ACTIONS(482), + [sym_nil_lit] = ACTIONS(470), + [aux_sym_sym_lit_token1] = ACTIONS(484), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(640), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_POUND0A] = ACTIONS(616), + [anon_sym_POUND0a] = ACTIONS(616), + [anon_sym_POUND_QMARK] = ACTIONS(642), + [anon_sym_POUND_QMARK_AT] = ACTIONS(644), + [anon_sym_POUND_SQUOTE] = ACTIONS(646), + [anon_sym_SQUOTE] = ACTIONS(648), + [anon_sym_BQUOTE] = ACTIONS(650), + [anon_sym_COMMA_AT] = ACTIONS(652), + [anon_sym_COMMA] = ACTIONS(654), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(470), + [anon_sym_cl] = ACTIONS(506), + [anon_sym_POUNDP] = ACTIONS(508), + [anon_sym_POUNDp] = ACTIONS(508), + [sym_self_referential_reader_macro] = ACTIONS(510), + [anon_sym_POUND_PLUS] = ACTIONS(656), + [anon_sym_POUND_DASH] = ACTIONS(656), + [anon_sym_POUNDC] = ACTIONS(514), + [anon_sym_POUNDc] = ACTIONS(514), + }, + [35] = { + [sym_num_lit] = STATE(1177), + [sym_kwd_lit] = STATE(1177), + [sym_str_lit] = STATE(1177), + [sym_char_lit] = STATE(1177), + [sym_sym_lit] = STATE(1166), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1179), + [sym__bare_list_lit] = STATE(1174), + [sym_vec_lit] = STATE(1177), + [sym_set_lit] = STATE(1177), + [sym__bare_set_lit] = STATE(1175), + [sym_read_cond_lit] = STATE(1177), + [sym_splicing_read_cond_lit] = STATE(1177), + [sym_var_quoting_lit] = STATE(1177), + [sym_quoting_lit] = STATE(1177), + [sym_syn_quoting_lit] = STATE(1177), + [sym_unquote_splicing_lit] = STATE(1177), + [sym_unquoting_lit] = STATE(1177), + [sym_defun] = STATE(1174), + [sym_loop_macro] = STATE(1174), + [sym_array_dimension] = STATE(2402), + [sym_path_lit] = STATE(1177), + [sym_package_lit] = STATE(1177), + [sym_include_reader_macro] = STATE(1177), + [sym_complex_num_lit] = STATE(1177), + [aux_sym_list_lit_repeat1] = STATE(2160), + [anon_sym_POUND] = ACTIONS(658), + [aux_sym__form_token1] = ACTIONS(660), + [anon_sym_DOT] = ACTIONS(662), + [aux_sym_num_lit_token1] = ACTIONS(664), + [anon_sym_COLON] = ACTIONS(666), + [anon_sym_COLON_COLON] = ACTIONS(668), + [anon_sym_DQUOTE] = ACTIONS(670), + [aux_sym_char_lit_token1] = ACTIONS(672), + [aux_sym_char_lit_token2] = ACTIONS(672), + [aux_sym_char_lit_token3] = ACTIONS(674), + [aux_sym_char_lit_token4] = ACTIONS(672), + [aux_sym_char_lit_token5] = ACTIONS(674), + [aux_sym_char_lit_token6] = ACTIONS(674), + [sym_nil_lit] = ACTIONS(662), + [aux_sym_sym_lit_token1] = ACTIONS(676), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_POUND0A] = ACTIONS(682), + [anon_sym_POUND0a] = ACTIONS(682), + [anon_sym_POUND_QMARK] = ACTIONS(684), + [anon_sym_POUND_QMARK_AT] = ACTIONS(686), + [anon_sym_POUND_SQUOTE] = ACTIONS(688), + [anon_sym_SQUOTE] = ACTIONS(690), + [anon_sym_BQUOTE] = ACTIONS(692), + [anon_sym_COMMA_AT] = ACTIONS(694), + [anon_sym_COMMA] = ACTIONS(696), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(662), + [anon_sym_cl] = ACTIONS(698), + [anon_sym_POUNDP] = ACTIONS(700), + [anon_sym_POUNDp] = ACTIONS(700), + [sym_self_referential_reader_macro] = ACTIONS(702), + [anon_sym_POUND_PLUS] = ACTIONS(704), + [anon_sym_POUND_DASH] = ACTIONS(704), + [anon_sym_POUNDC] = ACTIONS(706), + [anon_sym_POUNDc] = ACTIONS(706), + }, + [36] = { + [sym_num_lit] = STATE(1454), + [sym_kwd_lit] = STATE(1454), + [sym_str_lit] = STATE(1454), + [sym_char_lit] = STATE(1454), + [sym_sym_lit] = STATE(1456), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1457), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1454), + [sym_set_lit] = STATE(1454), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1454), + [sym_splicing_read_cond_lit] = STATE(1454), + [sym_var_quoting_lit] = STATE(1454), + [sym_quoting_lit] = STATE(1454), + [sym_syn_quoting_lit] = STATE(1454), + [sym_unquote_splicing_lit] = STATE(1454), + [sym_unquoting_lit] = STATE(1454), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_array_dimension] = STATE(2411), + [sym_path_lit] = STATE(1454), + [sym_package_lit] = STATE(1454), + [sym_include_reader_macro] = STATE(1454), + [sym_complex_num_lit] = STATE(1454), + [aux_sym_list_lit_repeat1] = STATE(2178), + [anon_sym_POUND] = ACTIONS(708), + [aux_sym__form_token1] = ACTIONS(710), + [anon_sym_DOT] = ACTIONS(712), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [aux_sym_char_lit_token1] = ACTIONS(572), - [aux_sym_char_lit_token2] = ACTIONS(572), - [aux_sym_char_lit_token3] = ACTIONS(574), - [aux_sym_char_lit_token4] = ACTIONS(572), - [aux_sym_char_lit_token5] = ACTIONS(574), - [aux_sym_char_lit_token6] = ACTIONS(574), - [sym_nil_lit] = ACTIONS(570), + [aux_sym_char_lit_token1] = ACTIONS(714), + [aux_sym_char_lit_token2] = ACTIONS(714), + [aux_sym_char_lit_token3] = ACTIONS(716), + [aux_sym_char_lit_token4] = ACTIONS(714), + [aux_sym_char_lit_token5] = ACTIONS(716), + [aux_sym_char_lit_token6] = ACTIONS(716), + [sym_nil_lit] = ACTIONS(712), [aux_sym_sym_lit_token1] = ACTIONS(23), [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(576), + [anon_sym_LBRACE] = ACTIONS(718), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -12465,200 +12799,200 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA_AT] = ACTIONS(43), [anon_sym_COMMA] = ACTIONS(45), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(570), + [sym_fancy_literal] = ACTIONS(712), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(578), + [sym_self_referential_reader_macro] = ACTIONS(720), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [32] = { - [sym_num_lit] = STATE(2276), - [sym_kwd_lit] = STATE(2276), - [sym_str_lit] = STATE(2276), - [sym_char_lit] = STATE(2276), - [sym_sym_lit] = STATE(2427), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(2287), - [sym__bare_list_lit] = STATE(2269), - [sym_vec_lit] = STATE(2276), - [sym_set_lit] = STATE(2276), - [sym__bare_set_lit] = STATE(2274), - [sym_read_cond_lit] = STATE(2276), - [sym_splicing_read_cond_lit] = STATE(2276), - [sym_var_quoting_lit] = STATE(2276), - [sym_quoting_lit] = STATE(2276), - [sym_syn_quoting_lit] = STATE(2276), - [sym_unquote_splicing_lit] = STATE(2276), - [sym_unquoting_lit] = STATE(2276), - [sym_defun] = STATE(2269), - [sym_loop_macro] = STATE(2269), - [sym_array_dimension] = STATE(2346), - [sym_path_lit] = STATE(2276), - [sym_package_lit] = STATE(2276), - [sym_include_reader_macro] = STATE(2276), - [sym_complex_num_lit] = STATE(2276), - [aux_sym_list_lit_repeat1] = STATE(2125), - [anon_sym_POUND] = ACTIONS(580), - [aux_sym__form_token1] = ACTIONS(582), - [anon_sym_DOT] = ACTIONS(584), - [aux_sym_num_lit_token1] = ACTIONS(586), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(590), - [anon_sym_DQUOTE] = ACTIONS(592), - [aux_sym_char_lit_token1] = ACTIONS(594), - [aux_sym_char_lit_token2] = ACTIONS(594), - [aux_sym_char_lit_token3] = ACTIONS(596), - [aux_sym_char_lit_token4] = ACTIONS(594), - [aux_sym_char_lit_token5] = ACTIONS(596), - [aux_sym_char_lit_token6] = ACTIONS(596), - [sym_nil_lit] = ACTIONS(584), - [aux_sym_sym_lit_token1] = ACTIONS(598), + [37] = { + [sym_num_lit] = STATE(1927), + [sym_kwd_lit] = STATE(1927), + [sym_str_lit] = STATE(1927), + [sym_char_lit] = STATE(1927), + [sym_sym_lit] = STATE(1850), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1930), + [sym__bare_list_lit] = STATE(1924), + [sym_vec_lit] = STATE(1927), + [sym_set_lit] = STATE(1927), + [sym__bare_set_lit] = STATE(1925), + [sym_read_cond_lit] = STATE(1927), + [sym_splicing_read_cond_lit] = STATE(1927), + [sym_var_quoting_lit] = STATE(1927), + [sym_quoting_lit] = STATE(1927), + [sym_syn_quoting_lit] = STATE(1927), + [sym_unquote_splicing_lit] = STATE(1927), + [sym_unquoting_lit] = STATE(1927), + [sym_defun] = STATE(1924), + [sym_loop_macro] = STATE(1924), + [sym_array_dimension] = STATE(2397), + [sym_path_lit] = STATE(1927), + [sym_package_lit] = STATE(1927), + [sym_include_reader_macro] = STATE(1927), + [sym_complex_num_lit] = STATE(1927), + [aux_sym_list_lit_repeat1] = STATE(2167), + [anon_sym_POUND] = ACTIONS(722), + [aux_sym__form_token1] = ACTIONS(724), + [anon_sym_DOT] = ACTIONS(726), + [aux_sym_num_lit_token1] = ACTIONS(728), + [anon_sym_COLON] = ACTIONS(730), + [anon_sym_COLON_COLON] = ACTIONS(732), + [anon_sym_DQUOTE] = ACTIONS(734), + [aux_sym_char_lit_token1] = ACTIONS(736), + [aux_sym_char_lit_token2] = ACTIONS(736), + [aux_sym_char_lit_token3] = ACTIONS(738), + [aux_sym_char_lit_token4] = ACTIONS(736), + [aux_sym_char_lit_token5] = ACTIONS(738), + [aux_sym_char_lit_token6] = ACTIONS(738), + [sym_nil_lit] = ACTIONS(726), + [aux_sym_sym_lit_token1] = ACTIONS(740), [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(600), - [anon_sym_LBRACE] = ACTIONS(602), - [anon_sym_POUND0A] = ACTIONS(604), - [anon_sym_POUND0a] = ACTIONS(604), - [anon_sym_POUND_QMARK] = ACTIONS(606), - [anon_sym_POUND_QMARK_AT] = ACTIONS(608), - [anon_sym_POUND_SQUOTE] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(612), - [anon_sym_BQUOTE] = ACTIONS(614), - [anon_sym_COMMA_AT] = ACTIONS(616), - [anon_sym_COMMA] = ACTIONS(618), + [anon_sym_LPAREN] = ACTIONS(486), + [anon_sym_LBRACE] = ACTIONS(742), + [anon_sym_POUND0A] = ACTIONS(744), + [anon_sym_POUND0a] = ACTIONS(744), + [anon_sym_POUND_QMARK] = ACTIONS(746), + [anon_sym_POUND_QMARK_AT] = ACTIONS(748), + [anon_sym_POUND_SQUOTE] = ACTIONS(750), + [anon_sym_SQUOTE] = ACTIONS(752), + [anon_sym_BQUOTE] = ACTIONS(754), + [anon_sym_COMMA_AT] = ACTIONS(756), + [anon_sym_COMMA] = ACTIONS(758), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(584), - [anon_sym_cl] = ACTIONS(620), - [anon_sym_POUNDP] = ACTIONS(622), - [anon_sym_POUNDp] = ACTIONS(622), - [sym_self_referential_reader_macro] = ACTIONS(624), - [anon_sym_POUND_PLUS] = ACTIONS(626), - [anon_sym_POUND_DASH] = ACTIONS(626), - [anon_sym_POUNDC] = ACTIONS(628), - [anon_sym_POUNDc] = ACTIONS(628), + [sym_fancy_literal] = ACTIONS(726), + [anon_sym_cl] = ACTIONS(760), + [anon_sym_POUNDP] = ACTIONS(762), + [anon_sym_POUNDp] = ACTIONS(762), + [sym_self_referential_reader_macro] = ACTIONS(764), + [anon_sym_POUND_PLUS] = ACTIONS(766), + [anon_sym_POUND_DASH] = ACTIONS(766), + [anon_sym_POUNDC] = ACTIONS(768), + [anon_sym_POUNDc] = ACTIONS(768), }, - [33] = { - [sym_num_lit] = STATE(1022), - [sym_kwd_lit] = STATE(1022), - [sym_str_lit] = STATE(1022), - [sym_char_lit] = STATE(1022), - [sym_sym_lit] = STATE(1024), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1030), - [sym__bare_list_lit] = STATE(1015), - [sym_vec_lit] = STATE(1022), - [sym_set_lit] = STATE(1022), - [sym__bare_set_lit] = STATE(1017), - [sym_read_cond_lit] = STATE(1022), - [sym_splicing_read_cond_lit] = STATE(1022), - [sym_var_quoting_lit] = STATE(1022), - [sym_quoting_lit] = STATE(1022), - [sym_syn_quoting_lit] = STATE(1022), - [sym_unquote_splicing_lit] = STATE(1022), - [sym_unquoting_lit] = STATE(1022), - [sym_defun] = STATE(1015), - [sym_loop_macro] = STATE(1015), - [sym_array_dimension] = STATE(2375), - [sym_path_lit] = STATE(1022), - [sym_package_lit] = STATE(1022), - [sym_include_reader_macro] = STATE(1022), - [sym_complex_num_lit] = STATE(1022), - [aux_sym_list_lit_repeat1] = STATE(2139), - [anon_sym_POUND] = ACTIONS(630), - [aux_sym__form_token1] = ACTIONS(632), - [anon_sym_DOT] = ACTIONS(634), - [aux_sym_num_lit_token1] = ACTIONS(194), - [anon_sym_COLON] = ACTIONS(196), - [anon_sym_COLON_COLON] = ACTIONS(198), - [anon_sym_DQUOTE] = ACTIONS(200), - [aux_sym_char_lit_token1] = ACTIONS(636), - [aux_sym_char_lit_token2] = ACTIONS(636), - [aux_sym_char_lit_token3] = ACTIONS(638), - [aux_sym_char_lit_token4] = ACTIONS(636), - [aux_sym_char_lit_token5] = ACTIONS(638), - [aux_sym_char_lit_token6] = ACTIONS(638), - [sym_nil_lit] = ACTIONS(634), - [aux_sym_sym_lit_token1] = ACTIONS(202), + [38] = { + [sym_num_lit] = STATE(1750), + [sym_kwd_lit] = STATE(1750), + [sym_str_lit] = STATE(1750), + [sym_char_lit] = STATE(1750), + [sym_sym_lit] = STATE(1752), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1753), + [sym__bare_list_lit] = STATE(1746), + [sym_vec_lit] = STATE(1750), + [sym_set_lit] = STATE(1750), + [sym__bare_set_lit] = STATE(1747), + [sym_read_cond_lit] = STATE(1750), + [sym_splicing_read_cond_lit] = STATE(1750), + [sym_var_quoting_lit] = STATE(1750), + [sym_quoting_lit] = STATE(1750), + [sym_syn_quoting_lit] = STATE(1750), + [sym_unquote_splicing_lit] = STATE(1750), + [sym_unquoting_lit] = STATE(1750), + [sym_defun] = STATE(1746), + [sym_loop_macro] = STATE(1746), + [sym_array_dimension] = STATE(2391), + [sym_path_lit] = STATE(1750), + [sym_package_lit] = STATE(1750), + [sym_include_reader_macro] = STATE(1750), + [sym_complex_num_lit] = STATE(1750), + [aux_sym_list_lit_repeat1] = STATE(2171), + [anon_sym_POUND] = ACTIONS(770), + [aux_sym__form_token1] = ACTIONS(772), + [anon_sym_DOT] = ACTIONS(774), + [aux_sym_num_lit_token1] = ACTIONS(776), + [anon_sym_COLON] = ACTIONS(778), + [anon_sym_COLON_COLON] = ACTIONS(780), + [anon_sym_DQUOTE] = ACTIONS(782), + [aux_sym_char_lit_token1] = ACTIONS(784), + [aux_sym_char_lit_token2] = ACTIONS(784), + [aux_sym_char_lit_token3] = ACTIONS(786), + [aux_sym_char_lit_token4] = ACTIONS(784), + [aux_sym_char_lit_token5] = ACTIONS(786), + [aux_sym_char_lit_token6] = ACTIONS(786), + [sym_nil_lit] = ACTIONS(774), + [aux_sym_sym_lit_token1] = ACTIONS(788), [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(642), - [anon_sym_POUND0A] = ACTIONS(215), - [anon_sym_POUND0a] = ACTIONS(215), - [anon_sym_POUND_QMARK] = ACTIONS(217), - [anon_sym_POUND_QMARK_AT] = ACTIONS(219), - [anon_sym_POUND_SQUOTE] = ACTIONS(221), - [anon_sym_SQUOTE] = ACTIONS(223), - [anon_sym_BQUOTE] = ACTIONS(225), - [anon_sym_COMMA_AT] = ACTIONS(227), - [anon_sym_COMMA] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(790), + [anon_sym_LBRACE] = ACTIONS(792), + [anon_sym_POUND0A] = ACTIONS(794), + [anon_sym_POUND0a] = ACTIONS(794), + [anon_sym_POUND_QMARK] = ACTIONS(796), + [anon_sym_POUND_QMARK_AT] = ACTIONS(798), + [anon_sym_POUND_SQUOTE] = ACTIONS(800), + [anon_sym_SQUOTE] = ACTIONS(802), + [anon_sym_BQUOTE] = ACTIONS(804), + [anon_sym_COMMA_AT] = ACTIONS(806), + [anon_sym_COMMA] = ACTIONS(808), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(634), - [anon_sym_cl] = ACTIONS(644), - [anon_sym_POUNDP] = ACTIONS(236), - [anon_sym_POUNDp] = ACTIONS(236), - [sym_self_referential_reader_macro] = ACTIONS(646), - [anon_sym_POUND_PLUS] = ACTIONS(240), - [anon_sym_POUND_DASH] = ACTIONS(240), - [anon_sym_POUNDC] = ACTIONS(242), - [anon_sym_POUNDc] = ACTIONS(242), + [sym_fancy_literal] = ACTIONS(774), + [anon_sym_cl] = ACTIONS(810), + [anon_sym_POUNDP] = ACTIONS(812), + [anon_sym_POUNDp] = ACTIONS(812), + [sym_self_referential_reader_macro] = ACTIONS(814), + [anon_sym_POUND_PLUS] = ACTIONS(816), + [anon_sym_POUND_DASH] = ACTIONS(816), + [anon_sym_POUNDC] = ACTIONS(818), + [anon_sym_POUNDc] = ACTIONS(818), }, - [34] = { - [sym_num_lit] = STATE(868), - [sym_kwd_lit] = STATE(868), - [sym_str_lit] = STATE(868), - [sym_char_lit] = STATE(868), - [sym_sym_lit] = STATE(827), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(828), - [sym__bare_list_lit] = STATE(823), - [sym_vec_lit] = STATE(868), - [sym_set_lit] = STATE(868), - [sym__bare_set_lit] = STATE(824), - [sym_read_cond_lit] = STATE(868), - [sym_splicing_read_cond_lit] = STATE(868), - [sym_var_quoting_lit] = STATE(868), - [sym_quoting_lit] = STATE(868), - [sym_syn_quoting_lit] = STATE(868), - [sym_unquote_splicing_lit] = STATE(868), - [sym_unquoting_lit] = STATE(868), - [sym_defun] = STATE(823), - [sym_loop_macro] = STATE(823), + [39] = { + [sym_num_lit] = STATE(919), + [sym_kwd_lit] = STATE(919), + [sym_str_lit] = STATE(919), + [sym_char_lit] = STATE(919), + [sym_sym_lit] = STATE(914), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(912), + [sym__bare_list_lit] = STATE(928), + [sym_vec_lit] = STATE(919), + [sym_set_lit] = STATE(919), + [sym__bare_set_lit] = STATE(927), + [sym_read_cond_lit] = STATE(919), + [sym_splicing_read_cond_lit] = STATE(919), + [sym_var_quoting_lit] = STATE(919), + [sym_quoting_lit] = STATE(919), + [sym_syn_quoting_lit] = STATE(919), + [sym_unquote_splicing_lit] = STATE(919), + [sym_unquoting_lit] = STATE(919), + [sym_defun] = STATE(928), + [sym_loop_macro] = STATE(928), [sym_array_dimension] = STATE(2364), - [sym_path_lit] = STATE(868), - [sym_package_lit] = STATE(868), - [sym_include_reader_macro] = STATE(868), - [sym_complex_num_lit] = STATE(868), - [aux_sym_list_lit_repeat1] = STATE(2149), - [anon_sym_POUND] = ACTIONS(648), - [aux_sym__form_token1] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(652), + [sym_path_lit] = STATE(919), + [sym_package_lit] = STATE(919), + [sym_include_reader_macro] = STATE(919), + [sym_complex_num_lit] = STATE(919), + [aux_sym_list_lit_repeat1] = STATE(2169), + [anon_sym_POUND] = ACTIONS(820), + [aux_sym__form_token1] = ACTIONS(822), + [anon_sym_DOT] = ACTIONS(824), [aux_sym_num_lit_token1] = ACTIONS(65), [anon_sym_COLON] = ACTIONS(67), [anon_sym_COLON_COLON] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), - [aux_sym_char_lit_token1] = ACTIONS(654), - [aux_sym_char_lit_token2] = ACTIONS(654), - [aux_sym_char_lit_token3] = ACTIONS(656), - [aux_sym_char_lit_token4] = ACTIONS(654), - [aux_sym_char_lit_token5] = ACTIONS(656), - [aux_sym_char_lit_token6] = ACTIONS(656), - [sym_nil_lit] = ACTIONS(652), + [aux_sym_char_lit_token1] = ACTIONS(826), + [aux_sym_char_lit_token2] = ACTIONS(826), + [aux_sym_char_lit_token3] = ACTIONS(828), + [aux_sym_char_lit_token4] = ACTIONS(826), + [aux_sym_char_lit_token5] = ACTIONS(828), + [aux_sym_char_lit_token6] = ACTIONS(828), + [sym_nil_lit] = ACTIONS(824), [aux_sym_sym_lit_token1] = ACTIONS(73), [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(658), - [anon_sym_LBRACE] = ACTIONS(660), + [anon_sym_LPAREN] = ACTIONS(830), + [anon_sym_LBRACE] = ACTIONS(832), [anon_sym_POUND0A] = ACTIONS(75), [anon_sym_POUND0a] = ACTIONS(75), [anon_sym_POUND_QMARK] = ACTIONS(77), @@ -12669,662 +13003,389 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA_AT] = ACTIONS(87), [anon_sym_COMMA] = ACTIONS(89), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(652), - [anon_sym_cl] = ACTIONS(662), + [sym_fancy_literal] = ACTIONS(824), + [anon_sym_cl] = ACTIONS(834), [anon_sym_POUNDP] = ACTIONS(93), [anon_sym_POUNDp] = ACTIONS(93), - [sym_self_referential_reader_macro] = ACTIONS(664), + [sym_self_referential_reader_macro] = ACTIONS(836), [anon_sym_POUND_PLUS] = ACTIONS(97), [anon_sym_POUND_DASH] = ACTIONS(97), [anon_sym_POUNDC] = ACTIONS(99), [anon_sym_POUNDc] = ACTIONS(99), }, - [35] = { - [sym_num_lit] = STATE(2276), - [sym_kwd_lit] = STATE(2276), - [sym_str_lit] = STATE(2276), - [sym_char_lit] = STATE(2276), - [sym_sym_lit] = STATE(2427), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(2287), - [sym__bare_list_lit] = STATE(2269), - [sym_vec_lit] = STATE(2276), - [sym_set_lit] = STATE(2276), - [sym__bare_set_lit] = STATE(2274), - [sym_read_cond_lit] = STATE(2276), - [sym_splicing_read_cond_lit] = STATE(2276), - [sym_var_quoting_lit] = STATE(2276), - [sym_quoting_lit] = STATE(2276), - [sym_syn_quoting_lit] = STATE(2276), - [sym_unquote_splicing_lit] = STATE(2276), - [sym_unquoting_lit] = STATE(2276), - [sym_defun] = STATE(2269), - [sym_loop_macro] = STATE(2269), - [sym_array_dimension] = STATE(2349), - [sym_path_lit] = STATE(2276), - [sym_package_lit] = STATE(2276), - [sym_include_reader_macro] = STATE(2276), - [sym_complex_num_lit] = STATE(2276), - [aux_sym_list_lit_repeat1] = STATE(2150), - [anon_sym_POUND] = ACTIONS(666), - [aux_sym__form_token1] = ACTIONS(668), - [anon_sym_DOT] = ACTIONS(584), - [aux_sym_num_lit_token1] = ACTIONS(670), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(590), - [anon_sym_DQUOTE] = ACTIONS(592), - [aux_sym_char_lit_token1] = ACTIONS(594), - [aux_sym_char_lit_token2] = ACTIONS(594), - [aux_sym_char_lit_token3] = ACTIONS(596), - [aux_sym_char_lit_token4] = ACTIONS(594), - [aux_sym_char_lit_token5] = ACTIONS(596), - [aux_sym_char_lit_token6] = ACTIONS(596), - [sym_nil_lit] = ACTIONS(584), - [aux_sym_sym_lit_token1] = ACTIONS(598), + [40] = { + [sym_num_lit] = STATE(1927), + [sym_kwd_lit] = STATE(1927), + [sym_str_lit] = STATE(1927), + [sym_char_lit] = STATE(1927), + [sym_sym_lit] = STATE(1850), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1930), + [sym__bare_list_lit] = STATE(1924), + [sym_vec_lit] = STATE(1927), + [sym_set_lit] = STATE(1927), + [sym__bare_set_lit] = STATE(1925), + [sym_read_cond_lit] = STATE(1927), + [sym_splicing_read_cond_lit] = STATE(1927), + [sym_var_quoting_lit] = STATE(1927), + [sym_quoting_lit] = STATE(1927), + [sym_syn_quoting_lit] = STATE(1927), + [sym_unquote_splicing_lit] = STATE(1927), + [sym_unquoting_lit] = STATE(1927), + [sym_defun] = STATE(1924), + [sym_loop_macro] = STATE(1924), + [sym_array_dimension] = STATE(2397), + [sym_path_lit] = STATE(1927), + [sym_package_lit] = STATE(1927), + [sym_include_reader_macro] = STATE(1927), + [sym_complex_num_lit] = STATE(1927), + [aux_sym_list_lit_repeat1] = STATE(2154), + [anon_sym_POUND] = ACTIONS(722), + [aux_sym__form_token1] = ACTIONS(724), + [anon_sym_DOT] = ACTIONS(726), + [aux_sym_num_lit_token1] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(730), + [anon_sym_COLON_COLON] = ACTIONS(732), + [anon_sym_DQUOTE] = ACTIONS(734), + [aux_sym_char_lit_token1] = ACTIONS(736), + [aux_sym_char_lit_token2] = ACTIONS(736), + [aux_sym_char_lit_token3] = ACTIONS(738), + [aux_sym_char_lit_token4] = ACTIONS(736), + [aux_sym_char_lit_token5] = ACTIONS(738), + [aux_sym_char_lit_token6] = ACTIONS(738), + [sym_nil_lit] = ACTIONS(726), + [aux_sym_sym_lit_token1] = ACTIONS(740), [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(602), - [anon_sym_POUND0A] = ACTIONS(672), - [anon_sym_POUND0a] = ACTIONS(672), - [anon_sym_POUND_QMARK] = ACTIONS(674), - [anon_sym_POUND_QMARK_AT] = ACTIONS(676), - [anon_sym_POUND_SQUOTE] = ACTIONS(678), - [anon_sym_SQUOTE] = ACTIONS(680), - [anon_sym_BQUOTE] = ACTIONS(682), - [anon_sym_COMMA_AT] = ACTIONS(684), - [anon_sym_COMMA] = ACTIONS(686), + [anon_sym_LPAREN] = ACTIONS(486), + [anon_sym_LBRACE] = ACTIONS(742), + [anon_sym_POUND0A] = ACTIONS(840), + [anon_sym_POUND0a] = ACTIONS(840), + [anon_sym_POUND_QMARK] = ACTIONS(746), + [anon_sym_POUND_QMARK_AT] = ACTIONS(748), + [anon_sym_POUND_SQUOTE] = ACTIONS(842), + [anon_sym_SQUOTE] = ACTIONS(844), + [anon_sym_BQUOTE] = ACTIONS(846), + [anon_sym_COMMA_AT] = ACTIONS(848), + [anon_sym_COMMA] = ACTIONS(850), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(584), - [anon_sym_cl] = ACTIONS(620), - [anon_sym_POUNDP] = ACTIONS(622), - [anon_sym_POUNDp] = ACTIONS(622), - [sym_self_referential_reader_macro] = ACTIONS(624), - [anon_sym_POUND_PLUS] = ACTIONS(688), - [anon_sym_POUND_DASH] = ACTIONS(688), - [anon_sym_POUNDC] = ACTIONS(628), - [anon_sym_POUNDc] = ACTIONS(628), + [sym_fancy_literal] = ACTIONS(726), + [anon_sym_cl] = ACTIONS(760), + [anon_sym_POUNDP] = ACTIONS(762), + [anon_sym_POUNDp] = ACTIONS(762), + [sym_self_referential_reader_macro] = ACTIONS(764), + [anon_sym_POUND_PLUS] = ACTIONS(852), + [anon_sym_POUND_DASH] = ACTIONS(852), + [anon_sym_POUNDC] = ACTIONS(768), + [anon_sym_POUNDc] = ACTIONS(768), }, - [36] = { - [sym_num_lit] = STATE(1498), - [sym_kwd_lit] = STATE(1498), - [sym_str_lit] = STATE(1498), - [sym_char_lit] = STATE(1498), - [sym_sym_lit] = STATE(1519), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1520), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1498), - [sym_set_lit] = STATE(1498), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1498), - [sym_splicing_read_cond_lit] = STATE(1498), - [sym_var_quoting_lit] = STATE(1498), - [sym_quoting_lit] = STATE(1498), - [sym_syn_quoting_lit] = STATE(1498), - [sym_unquote_splicing_lit] = STATE(1498), - [sym_unquoting_lit] = STATE(1498), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_array_dimension] = STATE(2363), - [sym_path_lit] = STATE(1498), - [sym_package_lit] = STATE(1498), - [sym_include_reader_macro] = STATE(1498), - [sym_complex_num_lit] = STATE(1498), - [aux_sym_list_lit_repeat1] = STATE(2126), - [anon_sym_POUND] = ACTIONS(566), - [aux_sym__form_token1] = ACTIONS(568), - [anon_sym_DOT] = ACTIONS(570), - [aux_sym_num_lit_token1] = ACTIONS(690), + [41] = { + [sym_num_lit] = STATE(1454), + [sym_kwd_lit] = STATE(1454), + [sym_str_lit] = STATE(1454), + [sym_char_lit] = STATE(1454), + [sym_sym_lit] = STATE(1456), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1457), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1454), + [sym_set_lit] = STATE(1454), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1454), + [sym_splicing_read_cond_lit] = STATE(1454), + [sym_var_quoting_lit] = STATE(1454), + [sym_quoting_lit] = STATE(1454), + [sym_syn_quoting_lit] = STATE(1454), + [sym_unquote_splicing_lit] = STATE(1454), + [sym_unquoting_lit] = STATE(1454), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_array_dimension] = STATE(2411), + [sym_path_lit] = STATE(1454), + [sym_package_lit] = STATE(1454), + [sym_include_reader_macro] = STATE(1454), + [sym_complex_num_lit] = STATE(1454), + [aux_sym_list_lit_repeat1] = STATE(2146), + [anon_sym_POUND] = ACTIONS(708), + [aux_sym__form_token1] = ACTIONS(710), + [anon_sym_DOT] = ACTIONS(712), + [aux_sym_num_lit_token1] = ACTIONS(854), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [aux_sym_char_lit_token1] = ACTIONS(572), - [aux_sym_char_lit_token2] = ACTIONS(572), - [aux_sym_char_lit_token3] = ACTIONS(574), - [aux_sym_char_lit_token4] = ACTIONS(572), - [aux_sym_char_lit_token5] = ACTIONS(574), - [aux_sym_char_lit_token6] = ACTIONS(574), - [sym_nil_lit] = ACTIONS(570), + [aux_sym_char_lit_token1] = ACTIONS(714), + [aux_sym_char_lit_token2] = ACTIONS(714), + [aux_sym_char_lit_token3] = ACTIONS(716), + [aux_sym_char_lit_token4] = ACTIONS(714), + [aux_sym_char_lit_token5] = ACTIONS(716), + [aux_sym_char_lit_token6] = ACTIONS(716), + [sym_nil_lit] = ACTIONS(712), [aux_sym_sym_lit_token1] = ACTIONS(23), [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(576), - [anon_sym_POUND0A] = ACTIONS(692), - [anon_sym_POUND0a] = ACTIONS(692), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_POUND0A] = ACTIONS(856), + [anon_sym_POUND0a] = ACTIONS(856), [anon_sym_POUND_QMARK] = ACTIONS(33), [anon_sym_POUND_QMARK_AT] = ACTIONS(35), - [anon_sym_POUND_SQUOTE] = ACTIONS(694), - [anon_sym_SQUOTE] = ACTIONS(696), - [anon_sym_BQUOTE] = ACTIONS(698), - [anon_sym_COMMA_AT] = ACTIONS(700), - [anon_sym_COMMA] = ACTIONS(702), + [anon_sym_POUND_SQUOTE] = ACTIONS(858), + [anon_sym_SQUOTE] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_COMMA_AT] = ACTIONS(864), + [anon_sym_COMMA] = ACTIONS(866), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(570), + [sym_fancy_literal] = ACTIONS(712), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(578), - [anon_sym_POUND_PLUS] = ACTIONS(704), - [anon_sym_POUND_DASH] = ACTIONS(704), + [sym_self_referential_reader_macro] = ACTIONS(720), + [anon_sym_POUND_PLUS] = ACTIONS(868), + [anon_sym_POUND_DASH] = ACTIONS(868), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [37] = { - [sym__gap] = STATE(37), - [sym_dis_expr] = STATE(37), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(37), - [sym__ws] = ACTIONS(706), - [sym_comment] = ACTIONS(706), - [anon_sym_POUND_] = ACTIONS(709), - [anon_sym_POUND] = ACTIONS(712), - [anon_sym_DOT] = ACTIONS(715), - [aux_sym_num_lit_token1] = ACTIONS(718), - [anon_sym_COLON] = ACTIONS(721), - [anon_sym_COLON_COLON] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(727), - [sym_nil_lit] = ACTIONS(715), - [aux_sym_sym_lit_token1] = ACTIONS(730), - [anon_sym_CARET] = ACTIONS(733), - [anon_sym_POUND_CARET] = ACTIONS(736), - [anon_sym_LPAREN] = ACTIONS(739), - [anon_sym_RPAREN] = ACTIONS(742), - [anon_sym_RBRACE] = ACTIONS(742), - [anon_sym_POUND0A] = ACTIONS(744), - [anon_sym_POUND0a] = ACTIONS(744), - [anon_sym_POUND_QMARK] = ACTIONS(747), - [anon_sym_POUND_QMARK_AT] = ACTIONS(750), - [anon_sym_POUND_SQUOTE] = ACTIONS(753), - [anon_sym_SQUOTE] = ACTIONS(756), - [anon_sym_BQUOTE] = ACTIONS(759), - [anon_sym_COMMA_AT] = ACTIONS(762), - [anon_sym_COMMA] = ACTIONS(765), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(715), - [anon_sym_cl] = ACTIONS(768), - [anon_sym_POUNDP] = ACTIONS(771), - [anon_sym_POUNDp] = ACTIONS(771), - [sym_self_referential_reader_macro] = ACTIONS(774), - [anon_sym_POUND_PLUS] = ACTIONS(777), - [anon_sym_POUND_DASH] = ACTIONS(777), - [anon_sym_POUNDC] = ACTIONS(780), - [anon_sym_POUNDc] = ACTIONS(780), - }, - [38] = { - [sym_num_lit] = STATE(1891), - [sym_kwd_lit] = STATE(1891), - [sym_str_lit] = STATE(1891), - [sym_char_lit] = STATE(1891), - [sym_sym_lit] = STATE(1826), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1893), - [sym__bare_list_lit] = STATE(1886), - [sym_vec_lit] = STATE(1891), - [sym_set_lit] = STATE(1891), - [sym__bare_set_lit] = STATE(1887), - [sym_read_cond_lit] = STATE(1891), - [sym_splicing_read_cond_lit] = STATE(1891), - [sym_var_quoting_lit] = STATE(1891), - [sym_quoting_lit] = STATE(1891), - [sym_syn_quoting_lit] = STATE(1891), - [sym_unquote_splicing_lit] = STATE(1891), - [sym_unquoting_lit] = STATE(1891), - [sym_defun] = STATE(1886), - [sym_loop_macro] = STATE(1886), - [sym_array_dimension] = STATE(2365), - [sym_path_lit] = STATE(1891), - [sym_package_lit] = STATE(1891), - [sym_include_reader_macro] = STATE(1891), - [sym_complex_num_lit] = STATE(1891), - [aux_sym_list_lit_repeat1] = STATE(2138), - [anon_sym_POUND] = ACTIONS(516), - [aux_sym__form_token1] = ACTIONS(518), - [anon_sym_DOT] = ACTIONS(520), - [aux_sym_num_lit_token1] = ACTIONS(783), - [anon_sym_COLON] = ACTIONS(524), - [anon_sym_COLON_COLON] = ACTIONS(526), - [anon_sym_DQUOTE] = ACTIONS(528), - [aux_sym_char_lit_token1] = ACTIONS(530), - [aux_sym_char_lit_token2] = ACTIONS(530), - [aux_sym_char_lit_token3] = ACTIONS(532), - [aux_sym_char_lit_token4] = ACTIONS(530), - [aux_sym_char_lit_token5] = ACTIONS(532), - [aux_sym_char_lit_token6] = ACTIONS(532), - [sym_nil_lit] = ACTIONS(520), - [aux_sym_sym_lit_token1] = ACTIONS(534), - [anon_sym_CARET] = ACTIONS(25), - [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_POUND0A] = ACTIONS(785), - [anon_sym_POUND0a] = ACTIONS(785), - [anon_sym_POUND_QMARK] = ACTIONS(542), - [anon_sym_POUND_QMARK_AT] = ACTIONS(544), - [anon_sym_POUND_SQUOTE] = ACTIONS(787), - [anon_sym_SQUOTE] = ACTIONS(789), - [anon_sym_BQUOTE] = ACTIONS(791), - [anon_sym_COMMA_AT] = ACTIONS(793), - [anon_sym_COMMA] = ACTIONS(795), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(520), - [anon_sym_cl] = ACTIONS(556), - [anon_sym_POUNDP] = ACTIONS(558), - [anon_sym_POUNDp] = ACTIONS(558), - [sym_self_referential_reader_macro] = ACTIONS(560), - [anon_sym_POUND_PLUS] = ACTIONS(797), - [anon_sym_POUND_DASH] = ACTIONS(797), - [anon_sym_POUNDC] = ACTIONS(564), - [anon_sym_POUNDc] = ACTIONS(564), - }, - [39] = { - [sym_num_lit] = STATE(2276), - [sym_kwd_lit] = STATE(2276), - [sym_str_lit] = STATE(2276), - [sym_char_lit] = STATE(2276), - [sym_sym_lit] = STATE(2393), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(2287), - [sym__bare_list_lit] = STATE(2269), - [sym_vec_lit] = STATE(2276), - [sym_set_lit] = STATE(2276), - [sym__bare_set_lit] = STATE(2274), - [sym_read_cond_lit] = STATE(2276), - [sym_splicing_read_cond_lit] = STATE(2276), - [sym_var_quoting_lit] = STATE(2276), - [sym_quoting_lit] = STATE(2276), - [sym_syn_quoting_lit] = STATE(2276), - [sym_unquote_splicing_lit] = STATE(2276), - [sym_unquoting_lit] = STATE(2276), - [sym_defun] = STATE(2269), - [sym_loop_macro] = STATE(2269), - [sym_array_dimension] = STATE(2383), - [sym_path_lit] = STATE(2276), - [sym_package_lit] = STATE(2276), - [sym_include_reader_macro] = STATE(2276), - [sym_complex_num_lit] = STATE(2276), - [aux_sym_list_lit_repeat1] = STATE(2135), - [anon_sym_POUND] = ACTIONS(799), - [aux_sym__form_token1] = ACTIONS(801), - [anon_sym_DOT] = ACTIONS(584), - [aux_sym_num_lit_token1] = ACTIONS(586), - [anon_sym_COLON] = ACTIONS(803), - [anon_sym_COLON_COLON] = ACTIONS(805), - [anon_sym_DQUOTE] = ACTIONS(807), - [aux_sym_char_lit_token1] = ACTIONS(594), - [aux_sym_char_lit_token2] = ACTIONS(594), - [aux_sym_char_lit_token3] = ACTIONS(596), - [aux_sym_char_lit_token4] = ACTIONS(594), - [aux_sym_char_lit_token5] = ACTIONS(596), - [aux_sym_char_lit_token6] = ACTIONS(596), - [sym_nil_lit] = ACTIONS(584), - [aux_sym_sym_lit_token1] = ACTIONS(809), - [anon_sym_CARET] = ACTIONS(25), - [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(602), - [anon_sym_POUND0A] = ACTIONS(604), - [anon_sym_POUND0a] = ACTIONS(604), - [anon_sym_POUND_QMARK] = ACTIONS(813), - [anon_sym_POUND_QMARK_AT] = ACTIONS(815), - [anon_sym_POUND_SQUOTE] = ACTIONS(817), - [anon_sym_SQUOTE] = ACTIONS(819), - [anon_sym_BQUOTE] = ACTIONS(821), - [anon_sym_COMMA_AT] = ACTIONS(823), - [anon_sym_COMMA] = ACTIONS(825), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(584), - [anon_sym_cl] = ACTIONS(827), - [anon_sym_POUNDP] = ACTIONS(622), - [anon_sym_POUNDp] = ACTIONS(622), - [sym_self_referential_reader_macro] = ACTIONS(624), - [anon_sym_POUND_PLUS] = ACTIONS(829), - [anon_sym_POUND_DASH] = ACTIONS(829), - [anon_sym_POUNDC] = ACTIONS(628), - [anon_sym_POUNDc] = ACTIONS(628), - }, - [40] = { - [sym_num_lit] = STATE(1797), - [sym_kwd_lit] = STATE(1797), - [sym_str_lit] = STATE(1797), - [sym_char_lit] = STATE(1797), - [sym_sym_lit] = STATE(2224), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1800), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1797), - [sym_set_lit] = STATE(1797), - [sym__bare_set_lit] = STATE(1794), - [sym_read_cond_lit] = STATE(1797), - [sym_splicing_read_cond_lit] = STATE(1797), - [sym_var_quoting_lit] = STATE(1797), - [sym_quoting_lit] = STATE(1797), - [sym_syn_quoting_lit] = STATE(1797), - [sym_unquote_splicing_lit] = STATE(1797), - [sym_unquoting_lit] = STATE(1797), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_array_dimension] = STATE(2357), - [sym_path_lit] = STATE(1797), - [sym_package_lit] = STATE(1797), - [sym_include_reader_macro] = STATE(1797), - [sym_complex_num_lit] = STATE(1797), - [aux_sym_list_lit_repeat1] = STATE(2152), - [anon_sym_POUND] = ACTIONS(831), - [aux_sym__form_token1] = ACTIONS(833), - [anon_sym_DOT] = ACTIONS(835), - [aux_sym_num_lit_token1] = ACTIONS(837), - [anon_sym_COLON] = ACTIONS(803), - [anon_sym_COLON_COLON] = ACTIONS(805), - [anon_sym_DQUOTE] = ACTIONS(807), - [aux_sym_char_lit_token1] = ACTIONS(839), - [aux_sym_char_lit_token2] = ACTIONS(839), - [aux_sym_char_lit_token3] = ACTIONS(841), - [aux_sym_char_lit_token4] = ACTIONS(839), - [aux_sym_char_lit_token5] = ACTIONS(841), - [aux_sym_char_lit_token6] = ACTIONS(841), - [sym_nil_lit] = ACTIONS(835), - [aux_sym_sym_lit_token1] = ACTIONS(809), - [anon_sym_CARET] = ACTIONS(25), - [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(843), - [anon_sym_POUND0A] = ACTIONS(845), - [anon_sym_POUND0a] = ACTIONS(845), - [anon_sym_POUND_QMARK] = ACTIONS(813), - [anon_sym_POUND_QMARK_AT] = ACTIONS(847), - [anon_sym_POUND_SQUOTE] = ACTIONS(849), - [anon_sym_SQUOTE] = ACTIONS(851), - [anon_sym_BQUOTE] = ACTIONS(853), - [anon_sym_COMMA_AT] = ACTIONS(855), - [anon_sym_COMMA] = ACTIONS(857), + [42] = { + [sym__gap] = STATE(42), + [sym_dis_expr] = STATE(42), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(42), + [sym__ws] = ACTIONS(870), + [sym_comment] = ACTIONS(870), + [anon_sym_POUND_] = ACTIONS(873), + [anon_sym_POUND] = ACTIONS(876), + [anon_sym_DOT] = ACTIONS(879), + [aux_sym_num_lit_token1] = ACTIONS(882), + [anon_sym_COLON] = ACTIONS(885), + [anon_sym_COLON_COLON] = ACTIONS(888), + [anon_sym_DQUOTE] = ACTIONS(891), + [sym_nil_lit] = ACTIONS(879), + [aux_sym_sym_lit_token1] = ACTIONS(894), + [anon_sym_CARET] = ACTIONS(897), + [anon_sym_POUND_CARET] = ACTIONS(900), + [anon_sym_LPAREN] = ACTIONS(903), + [anon_sym_RPAREN] = ACTIONS(906), + [anon_sym_RBRACE] = ACTIONS(906), + [anon_sym_POUND0A] = ACTIONS(908), + [anon_sym_POUND0a] = ACTIONS(908), + [anon_sym_POUND_QMARK] = ACTIONS(911), + [anon_sym_POUND_QMARK_AT] = ACTIONS(914), + [anon_sym_POUND_SQUOTE] = ACTIONS(917), + [anon_sym_SQUOTE] = ACTIONS(920), + [anon_sym_BQUOTE] = ACTIONS(923), + [anon_sym_COMMA_AT] = ACTIONS(926), + [anon_sym_COMMA] = ACTIONS(929), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(835), - [anon_sym_cl] = ACTIONS(859), - [anon_sym_POUNDP] = ACTIONS(312), - [anon_sym_POUNDp] = ACTIONS(312), - [sym_self_referential_reader_macro] = ACTIONS(861), - [anon_sym_POUND_PLUS] = ACTIONS(863), - [anon_sym_POUND_DASH] = ACTIONS(863), - [anon_sym_POUNDC] = ACTIONS(318), - [anon_sym_POUNDc] = ACTIONS(318), + [sym_fancy_literal] = ACTIONS(879), + [anon_sym_cl] = ACTIONS(932), + [anon_sym_POUNDP] = ACTIONS(935), + [anon_sym_POUNDp] = ACTIONS(935), + [sym_self_referential_reader_macro] = ACTIONS(938), + [anon_sym_POUND_PLUS] = ACTIONS(941), + [anon_sym_POUND_DASH] = ACTIONS(941), + [anon_sym_POUNDC] = ACTIONS(944), + [anon_sym_POUNDc] = ACTIONS(944), }, - [41] = { - [sym_num_lit] = STATE(1797), - [sym_kwd_lit] = STATE(1797), - [sym_str_lit] = STATE(1797), - [sym_char_lit] = STATE(1797), - [sym_sym_lit] = STATE(2117), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1800), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1797), - [sym_set_lit] = STATE(1797), - [sym__bare_set_lit] = STATE(1794), - [sym_read_cond_lit] = STATE(1797), - [sym_splicing_read_cond_lit] = STATE(1797), - [sym_var_quoting_lit] = STATE(1797), - [sym_quoting_lit] = STATE(1797), - [sym_syn_quoting_lit] = STATE(1797), - [sym_unquote_splicing_lit] = STATE(1797), - [sym_unquoting_lit] = STATE(1797), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_array_dimension] = STATE(2355), - [sym_path_lit] = STATE(1797), - [sym_package_lit] = STATE(1797), - [sym_include_reader_macro] = STATE(1797), - [sym_complex_num_lit] = STATE(1797), - [aux_sym_list_lit_repeat1] = STATE(2158), - [anon_sym_POUND] = ACTIONS(865), - [aux_sym__form_token1] = ACTIONS(867), - [anon_sym_DOT] = ACTIONS(835), - [aux_sym_num_lit_token1] = ACTIONS(278), - [anon_sym_COLON] = ACTIONS(280), - [anon_sym_COLON_COLON] = ACTIONS(282), - [anon_sym_DQUOTE] = ACTIONS(284), - [aux_sym_char_lit_token1] = ACTIONS(839), - [aux_sym_char_lit_token2] = ACTIONS(839), - [aux_sym_char_lit_token3] = ACTIONS(841), - [aux_sym_char_lit_token4] = ACTIONS(839), - [aux_sym_char_lit_token5] = ACTIONS(841), - [aux_sym_char_lit_token6] = ACTIONS(841), - [sym_nil_lit] = ACTIONS(835), - [aux_sym_sym_lit_token1] = ACTIONS(286), + [43] = { + [sym_num_lit] = STATE(1804), + [sym_kwd_lit] = STATE(1804), + [sym_str_lit] = STATE(1804), + [sym_char_lit] = STATE(1804), + [sym_sym_lit] = STATE(2241), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1807), + [sym__bare_list_lit] = STATE(1800), + [sym_vec_lit] = STATE(1804), + [sym_set_lit] = STATE(1804), + [sym__bare_set_lit] = STATE(1801), + [sym_read_cond_lit] = STATE(1804), + [sym_splicing_read_cond_lit] = STATE(1804), + [sym_var_quoting_lit] = STATE(1804), + [sym_quoting_lit] = STATE(1804), + [sym_syn_quoting_lit] = STATE(1804), + [sym_unquote_splicing_lit] = STATE(1804), + [sym_unquoting_lit] = STATE(1804), + [sym_defun] = STATE(1800), + [sym_loop_macro] = STATE(1800), + [sym_array_dimension] = STATE(2405), + [sym_path_lit] = STATE(1804), + [sym_package_lit] = STATE(1804), + [sym_include_reader_macro] = STATE(1804), + [sym_complex_num_lit] = STATE(1804), + [aux_sym_list_lit_repeat1] = STATE(2149), + [anon_sym_POUND] = ACTIONS(947), + [aux_sym__form_token1] = ACTIONS(949), + [anon_sym_DOT] = ACTIONS(538), + [aux_sym_num_lit_token1] = ACTIONS(951), + [anon_sym_COLON] = ACTIONS(606), + [anon_sym_COLON_COLON] = ACTIONS(608), + [anon_sym_DQUOTE] = ACTIONS(610), + [aux_sym_char_lit_token1] = ACTIONS(540), + [aux_sym_char_lit_token2] = ACTIONS(540), + [aux_sym_char_lit_token3] = ACTIONS(542), + [aux_sym_char_lit_token4] = ACTIONS(540), + [aux_sym_char_lit_token5] = ACTIONS(542), + [aux_sym_char_lit_token6] = ACTIONS(542), + [sym_nil_lit] = ACTIONS(538), + [aux_sym_sym_lit_token1] = ACTIONS(612), [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(288), - [anon_sym_LBRACE] = ACTIONS(843), - [anon_sym_POUND0A] = ACTIONS(290), - [anon_sym_POUND0a] = ACTIONS(290), - [anon_sym_POUND_QMARK] = ACTIONS(292), - [anon_sym_POUND_QMARK_AT] = ACTIONS(294), - [anon_sym_POUND_SQUOTE] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [anon_sym_BQUOTE] = ACTIONS(300), - [anon_sym_COMMA_AT] = ACTIONS(302), - [anon_sym_COMMA] = ACTIONS(304), + [anon_sym_LPAREN] = ACTIONS(614), + [anon_sym_LBRACE] = ACTIONS(544), + [anon_sym_POUND0A] = ACTIONS(953), + [anon_sym_POUND0a] = ACTIONS(953), + [anon_sym_POUND_QMARK] = ACTIONS(618), + [anon_sym_POUND_QMARK_AT] = ACTIONS(955), + [anon_sym_POUND_SQUOTE] = ACTIONS(957), + [anon_sym_SQUOTE] = ACTIONS(959), + [anon_sym_BQUOTE] = ACTIONS(961), + [anon_sym_COMMA_AT] = ACTIONS(963), + [anon_sym_COMMA] = ACTIONS(965), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(835), - [anon_sym_cl] = ACTIONS(869), + [sym_fancy_literal] = ACTIONS(538), + [anon_sym_cl] = ACTIONS(967), [anon_sym_POUNDP] = ACTIONS(312), [anon_sym_POUNDp] = ACTIONS(312), - [sym_self_referential_reader_macro] = ACTIONS(861), - [anon_sym_POUND_PLUS] = ACTIONS(316), - [anon_sym_POUND_DASH] = ACTIONS(316), + [sym_self_referential_reader_macro] = ACTIONS(548), + [anon_sym_POUND_PLUS] = ACTIONS(969), + [anon_sym_POUND_DASH] = ACTIONS(969), [anon_sym_POUNDC] = ACTIONS(318), [anon_sym_POUNDc] = ACTIONS(318), }, - [42] = { - [sym_num_lit] = STATE(1273), - [sym_kwd_lit] = STATE(1273), - [sym_str_lit] = STATE(1273), - [sym_char_lit] = STATE(1273), - [sym_sym_lit] = STATE(1164), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1270), - [sym__bare_list_lit] = STATE(1275), - [sym_vec_lit] = STATE(1273), - [sym_set_lit] = STATE(1273), - [sym__bare_set_lit] = STATE(1233), - [sym_read_cond_lit] = STATE(1273), - [sym_splicing_read_cond_lit] = STATE(1273), - [sym_var_quoting_lit] = STATE(1273), - [sym_quoting_lit] = STATE(1273), - [sym_syn_quoting_lit] = STATE(1273), - [sym_unquote_splicing_lit] = STATE(1273), - [sym_unquoting_lit] = STATE(1273), - [sym_defun] = STATE(1275), - [sym_loop_macro] = STATE(1275), - [sym_array_dimension] = STATE(2382), - [sym_path_lit] = STATE(1273), - [sym_package_lit] = STATE(1273), - [sym_include_reader_macro] = STATE(1273), - [sym_complex_num_lit] = STATE(1273), - [aux_sym_list_lit_repeat1] = STATE(2140), - [anon_sym_POUND] = ACTIONS(871), - [aux_sym__form_token1] = ACTIONS(873), - [anon_sym_DOT] = ACTIONS(875), - [aux_sym_num_lit_token1] = ACTIONS(877), - [anon_sym_COLON] = ACTIONS(879), - [anon_sym_COLON_COLON] = ACTIONS(881), - [anon_sym_DQUOTE] = ACTIONS(883), - [aux_sym_char_lit_token1] = ACTIONS(885), - [aux_sym_char_lit_token2] = ACTIONS(885), - [aux_sym_char_lit_token3] = ACTIONS(887), - [aux_sym_char_lit_token4] = ACTIONS(885), - [aux_sym_char_lit_token5] = ACTIONS(887), - [aux_sym_char_lit_token6] = ACTIONS(887), - [sym_nil_lit] = ACTIONS(875), - [aux_sym_sym_lit_token1] = ACTIONS(889), - [anon_sym_CARET] = ACTIONS(25), - [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(891), - [anon_sym_LBRACE] = ACTIONS(893), - [anon_sym_POUND0A] = ACTIONS(895), - [anon_sym_POUND0a] = ACTIONS(895), - [anon_sym_POUND_QMARK] = ACTIONS(897), - [anon_sym_POUND_QMARK_AT] = ACTIONS(899), - [anon_sym_POUND_SQUOTE] = ACTIONS(901), - [anon_sym_SQUOTE] = ACTIONS(903), - [anon_sym_BQUOTE] = ACTIONS(905), - [anon_sym_COMMA_AT] = ACTIONS(907), - [anon_sym_COMMA] = ACTIONS(909), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(875), - [anon_sym_cl] = ACTIONS(911), - [anon_sym_POUNDP] = ACTIONS(913), - [anon_sym_POUNDp] = ACTIONS(913), - [sym_self_referential_reader_macro] = ACTIONS(915), - [anon_sym_POUND_PLUS] = ACTIONS(917), - [anon_sym_POUND_DASH] = ACTIONS(917), - [anon_sym_POUNDC] = ACTIONS(919), - [anon_sym_POUNDc] = ACTIONS(919), - }, - [43] = { - [sym_num_lit] = STATE(1685), - [sym_kwd_lit] = STATE(1685), - [sym_str_lit] = STATE(1685), - [sym_char_lit] = STATE(1685), - [sym_sym_lit] = STATE(1683), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1682), - [sym__bare_list_lit] = STATE(1688), - [sym_vec_lit] = STATE(1685), - [sym_set_lit] = STATE(1685), - [sym__bare_set_lit] = STATE(1687), - [sym_read_cond_lit] = STATE(1685), - [sym_splicing_read_cond_lit] = STATE(1685), - [sym_var_quoting_lit] = STATE(1685), - [sym_quoting_lit] = STATE(1685), - [sym_syn_quoting_lit] = STATE(1685), - [sym_unquote_splicing_lit] = STATE(1685), - [sym_unquoting_lit] = STATE(1685), - [sym_defun] = STATE(1688), - [sym_loop_macro] = STATE(1688), - [sym_array_dimension] = STATE(2367), - [sym_path_lit] = STATE(1685), - [sym_package_lit] = STATE(1685), - [sym_include_reader_macro] = STATE(1685), - [sym_complex_num_lit] = STATE(1685), - [aux_sym_list_lit_repeat1] = STATE(2148), - [anon_sym_POUND] = ACTIONS(921), - [aux_sym__form_token1] = ACTIONS(923), - [anon_sym_DOT] = ACTIONS(925), - [aux_sym_num_lit_token1] = ACTIONS(927), - [anon_sym_COLON] = ACTIONS(929), - [anon_sym_COLON_COLON] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(933), - [aux_sym_char_lit_token1] = ACTIONS(935), - [aux_sym_char_lit_token2] = ACTIONS(935), - [aux_sym_char_lit_token3] = ACTIONS(937), - [aux_sym_char_lit_token4] = ACTIONS(935), - [aux_sym_char_lit_token5] = ACTIONS(937), - [aux_sym_char_lit_token6] = ACTIONS(937), - [sym_nil_lit] = ACTIONS(925), - [aux_sym_sym_lit_token1] = ACTIONS(939), + [44] = { + [sym__gap] = STATE(1447), + [sym_dis_expr] = STATE(1447), + [sym__form] = STATE(2615), + [sym_num_lit] = STATE(2615), + [sym_kwd_lit] = STATE(2615), + [sym_str_lit] = STATE(2615), + [sym_char_lit] = STATE(2615), + [sym_sym_lit] = STATE(1848), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(2615), + [sym__bare_list_lit] = STATE(1924), + [sym_vec_lit] = STATE(2615), + [sym_set_lit] = STATE(2615), + [sym__bare_set_lit] = STATE(1925), + [sym_read_cond_lit] = STATE(2615), + [sym_splicing_read_cond_lit] = STATE(2615), + [sym_var_quoting_lit] = STATE(2615), + [sym_quoting_lit] = STATE(2615), + [sym_syn_quoting_lit] = STATE(2615), + [sym_unquote_splicing_lit] = STATE(2615), + [sym_unquoting_lit] = STATE(2615), + [sym_defun] = STATE(1924), + [sym_loop_macro] = STATE(1924), + [sym_path_lit] = STATE(2615), + [sym_package_lit] = STATE(2615), + [sym_include_reader_macro] = STATE(2615), + [sym_complex_num_lit] = STATE(2615), + [aux_sym_dis_expr_repeat1] = STATE(1447), + [aux_sym_list_lit_repeat1] = STATE(2167), + [sym__ws] = ACTIONS(971), + [sym_comment] = ACTIONS(971), + [anon_sym_POUND_] = ACTIONS(973), + [anon_sym_POUND] = ACTIONS(975), + [anon_sym_DOT] = ACTIONS(977), + [aux_sym_num_lit_token1] = ACTIONS(728), + [anon_sym_COLON] = ACTIONS(730), + [anon_sym_COLON_COLON] = ACTIONS(732), + [anon_sym_DQUOTE] = ACTIONS(734), + [sym_nil_lit] = ACTIONS(977), + [aux_sym_sym_lit_token1] = ACTIONS(740), [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(941), - [anon_sym_LBRACE] = ACTIONS(943), - [anon_sym_POUND0A] = ACTIONS(945), - [anon_sym_POUND0a] = ACTIONS(945), - [anon_sym_POUND_QMARK] = ACTIONS(947), - [anon_sym_POUND_QMARK_AT] = ACTIONS(949), - [anon_sym_POUND_SQUOTE] = ACTIONS(951), - [anon_sym_SQUOTE] = ACTIONS(953), - [anon_sym_BQUOTE] = ACTIONS(955), - [anon_sym_COMMA_AT] = ACTIONS(957), - [anon_sym_COMMA] = ACTIONS(959), + [anon_sym_LPAREN] = ACTIONS(486), + [anon_sym_POUND0A] = ACTIONS(744), + [anon_sym_POUND0a] = ACTIONS(744), + [anon_sym_POUND_QMARK] = ACTIONS(746), + [anon_sym_POUND_QMARK_AT] = ACTIONS(748), + [anon_sym_POUND_SQUOTE] = ACTIONS(750), + [anon_sym_SQUOTE] = ACTIONS(752), + [anon_sym_BQUOTE] = ACTIONS(754), + [anon_sym_COMMA_AT] = ACTIONS(756), + [anon_sym_COMMA] = ACTIONS(758), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(925), - [anon_sym_cl] = ACTIONS(961), - [anon_sym_POUNDP] = ACTIONS(963), - [anon_sym_POUNDp] = ACTIONS(963), - [sym_self_referential_reader_macro] = ACTIONS(965), - [anon_sym_POUND_PLUS] = ACTIONS(967), - [anon_sym_POUND_DASH] = ACTIONS(967), - [anon_sym_POUNDC] = ACTIONS(969), - [anon_sym_POUNDc] = ACTIONS(969), + [sym_fancy_literal] = ACTIONS(977), + [anon_sym_cl] = ACTIONS(979), + [anon_sym_EQ] = ACTIONS(981), + [anon_sym_POUNDP] = ACTIONS(762), + [anon_sym_POUNDp] = ACTIONS(762), + [sym_self_referential_reader_macro] = ACTIONS(983), + [anon_sym_POUND_PLUS] = ACTIONS(766), + [anon_sym_POUND_DASH] = ACTIONS(766), + [anon_sym_POUNDC] = ACTIONS(768), + [anon_sym_POUNDc] = ACTIONS(768), }, - [44] = { - [sym__gap] = STATE(55), - [sym_dis_expr] = STATE(55), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(55), - [sym__ws] = ACTIONS(971), - [sym_comment] = ACTIONS(971), + [45] = { + [sym__gap] = STATE(42), + [sym_dis_expr] = STATE(42), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(42), + [sym__ws] = ACTIONS(985), + [sym_comment] = ACTIONS(985), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -13337,74 +13398,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(973), - [anon_sym_POUND0A] = ACTIONS(31), - [anon_sym_POUND0a] = ACTIONS(31), - [anon_sym_POUND_QMARK] = ACTIONS(33), - [anon_sym_POUND_QMARK_AT] = ACTIONS(35), - [anon_sym_POUND_SQUOTE] = ACTIONS(37), - [anon_sym_SQUOTE] = ACTIONS(39), - [anon_sym_BQUOTE] = ACTIONS(41), - [anon_sym_COMMA_AT] = ACTIONS(43), - [anon_sym_COMMA] = ACTIONS(45), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(380), - [anon_sym_cl] = ACTIONS(49), - [anon_sym_POUNDP] = ACTIONS(51), - [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(392), - [anon_sym_POUND_PLUS] = ACTIONS(55), - [anon_sym_POUND_DASH] = ACTIONS(55), - [anon_sym_POUNDC] = ACTIONS(57), - [anon_sym_POUNDc] = ACTIONS(57), - }, - [45] = { - [sym__gap] = STATE(37), - [sym_dis_expr] = STATE(37), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(37), - [sym__ws] = ACTIONS(975), - [sym_comment] = ACTIONS(975), - [anon_sym_POUND_] = ACTIONS(9), - [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), - [aux_sym_num_lit_token1] = ACTIONS(15), - [anon_sym_COLON] = ACTIONS(17), - [anon_sym_COLON_COLON] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(380), - [aux_sym_sym_lit_token1] = ACTIONS(23), - [anon_sym_CARET] = ACTIONS(25), - [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(977), + [anon_sym_RPAREN] = ACTIONS(987), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -13426,39 +13420,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [46] = { - [sym__gap] = STATE(44), - [sym_dis_expr] = STATE(44), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(52), - [sym__ws] = ACTIONS(979), - [sym_comment] = ACTIONS(979), + [sym__gap] = STATE(85), + [sym_dis_expr] = STATE(85), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(93), + [sym__ws] = ACTIONS(989), + [sym_comment] = ACTIONS(989), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -13471,7 +13465,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(981), + [anon_sym_RPAREN] = ACTIONS(991), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -13493,39 +13487,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [47] = { - [sym__gap] = STATE(37), - [sym_dis_expr] = STATE(37), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(37), - [sym__ws] = ACTIONS(975), - [sym_comment] = ACTIONS(975), + [sym__gap] = STATE(42), + [sym_dis_expr] = STATE(42), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(42), + [sym__ws] = ACTIONS(985), + [sym_comment] = ACTIONS(985), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -13538,7 +13532,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(983), + [anon_sym_RBRACE] = ACTIONS(993), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -13560,39 +13554,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [48] = { - [sym__gap] = STATE(37), - [sym_dis_expr] = STATE(37), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(37), - [sym__ws] = ACTIONS(975), - [sym_comment] = ACTIONS(975), + [sym__gap] = STATE(111), + [sym_dis_expr] = STATE(111), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(111), + [sym__ws] = ACTIONS(995), + [sym_comment] = ACTIONS(995), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -13605,7 +13599,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(985), + [anon_sym_RBRACE] = ACTIONS(997), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -13627,39 +13621,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [49] = { - [sym__gap] = STATE(53), - [sym_dis_expr] = STATE(53), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(54), - [sym__ws] = ACTIONS(987), - [sym_comment] = ACTIONS(987), + [sym__gap] = STATE(42), + [sym_dis_expr] = STATE(42), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(42), + [sym__ws] = ACTIONS(985), + [sym_comment] = ACTIONS(985), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -13672,7 +13666,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(973), + [anon_sym_RPAREN] = ACTIONS(999), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -13694,39 +13688,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [50] = { - [sym__gap] = STATE(111), - [sym_dis_expr] = STATE(111), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(111), - [sym__ws] = ACTIONS(989), - [sym_comment] = ACTIONS(989), + [sym__gap] = STATE(57), + [sym_dis_expr] = STATE(57), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(57), + [sym__ws] = ACTIONS(1001), + [sym_comment] = ACTIONS(1001), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -13739,7 +13733,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(991), + [anon_sym_RBRACE] = ACTIONS(1003), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -13761,39 +13755,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [51] = { - [sym__gap] = STATE(37), - [sym_dis_expr] = STATE(37), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(37), - [sym__ws] = ACTIONS(975), - [sym_comment] = ACTIONS(975), + [sym__gap] = STATE(42), + [sym_dis_expr] = STATE(42), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(42), + [sym__ws] = ACTIONS(985), + [sym_comment] = ACTIONS(985), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -13806,7 +13800,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(993), + [anon_sym_RPAREN] = ACTIONS(1005), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -13828,39 +13822,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [52] = { - [sym__gap] = STATE(37), - [sym_dis_expr] = STATE(37), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(37), - [sym__ws] = ACTIONS(975), - [sym_comment] = ACTIONS(975), + [sym__gap] = STATE(59), + [sym_dis_expr] = STATE(59), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(60), + [sym__ws] = ACTIONS(1007), + [sym_comment] = ACTIONS(1007), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -13873,7 +13867,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(995), + [anon_sym_RPAREN] = ACTIONS(1009), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -13895,39 +13889,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [53] = { - [sym__gap] = STATE(56), - [sym_dis_expr] = STATE(56), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(56), - [sym__ws] = ACTIONS(997), - [sym_comment] = ACTIONS(997), + [sym__gap] = STATE(105), + [sym_dis_expr] = STATE(105), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(84), + [sym__ws] = ACTIONS(1011), + [sym_comment] = ACTIONS(1011), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -13940,7 +13934,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(999), + [anon_sym_RPAREN] = ACTIONS(1013), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -13962,39 +13956,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [54] = { - [sym__gap] = STATE(37), - [sym_dis_expr] = STATE(37), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(37), - [sym__ws] = ACTIONS(975), - [sym_comment] = ACTIONS(975), + [sym__gap] = STATE(47), + [sym_dis_expr] = STATE(47), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(47), + [sym__ws] = ACTIONS(1015), + [sym_comment] = ACTIONS(1015), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -14007,7 +14001,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(1001), + [anon_sym_RBRACE] = ACTIONS(1017), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -14029,39 +14023,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [55] = { - [sym__gap] = STATE(37), - [sym_dis_expr] = STATE(37), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(37), - [sym__ws] = ACTIONS(975), - [sym_comment] = ACTIONS(975), + [sym__gap] = STATE(128), + [sym_dis_expr] = STATE(128), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(128), + [sym__ws] = ACTIONS(1019), + [sym_comment] = ACTIONS(1019), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -14074,7 +14068,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(1003), + [anon_sym_RBRACE] = ACTIONS(1021), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -14096,39 +14090,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [56] = { - [sym__gap] = STATE(37), - [sym_dis_expr] = STATE(37), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(37), - [sym__ws] = ACTIONS(975), - [sym_comment] = ACTIONS(975), + [sym__gap] = STATE(42), + [sym_dis_expr] = STATE(42), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(42), + [sym__ws] = ACTIONS(985), + [sym_comment] = ACTIONS(985), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -14141,7 +14135,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(1005), + [anon_sym_RPAREN] = ACTIONS(1023), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -14163,39 +14157,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [57] = { - [sym__gap] = STATE(128), - [sym_dis_expr] = STATE(128), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(128), - [sym__ws] = ACTIONS(1007), - [sym_comment] = ACTIONS(1007), + [sym__gap] = STATE(42), + [sym_dis_expr] = STATE(42), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(42), + [sym__ws] = ACTIONS(985), + [sym_comment] = ACTIONS(985), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -14208,7 +14202,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(1009), + [anon_sym_RBRACE] = ACTIONS(1025), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -14232,37 +14226,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [58] = { [sym__gap] = STATE(61), [sym_dis_expr] = STATE(61), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(61), - [sym__ws] = ACTIONS(1011), - [sym_comment] = ACTIONS(1011), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(62), + [sym__ws] = ACTIONS(1027), + [sym_comment] = ACTIONS(1027), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -14275,7 +14269,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(1013), + [anon_sym_RPAREN] = ACTIONS(1029), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -14297,39 +14291,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [59] = { - [sym__gap] = STATE(64), - [sym_dis_expr] = STATE(64), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(65), - [sym__ws] = ACTIONS(1015), - [sym_comment] = ACTIONS(1015), + [sym__gap] = STATE(63), + [sym_dis_expr] = STATE(63), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(63), + [sym__ws] = ACTIONS(1031), + [sym_comment] = ACTIONS(1031), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -14342,7 +14336,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(1017), + [anon_sym_RPAREN] = ACTIONS(1029), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -14364,39 +14358,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [60] = { - [sym__gap] = STATE(37), - [sym_dis_expr] = STATE(37), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(37), - [sym__ws] = ACTIONS(975), - [sym_comment] = ACTIONS(975), + [sym__gap] = STATE(42), + [sym_dis_expr] = STATE(42), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(42), + [sym__ws] = ACTIONS(985), + [sym_comment] = ACTIONS(985), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -14409,7 +14403,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(1019), + [anon_sym_RPAREN] = ACTIONS(1033), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -14431,39 +14425,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [61] = { - [sym__gap] = STATE(37), - [sym_dis_expr] = STATE(37), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(37), - [sym__ws] = ACTIONS(975), - [sym_comment] = ACTIONS(975), + [sym__gap] = STATE(65), + [sym_dis_expr] = STATE(65), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(65), + [sym__ws] = ACTIONS(1035), + [sym_comment] = ACTIONS(1035), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -14476,7 +14470,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(1021), + [anon_sym_RPAREN] = ACTIONS(1037), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -14498,106 +14492,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [62] = { - [sym__gap] = STATE(1444), - [sym_dis_expr] = STATE(1444), - [sym__form] = STATE(2493), - [sym_num_lit] = STATE(2493), - [sym_kwd_lit] = STATE(2493), - [sym_str_lit] = STATE(2493), - [sym_char_lit] = STATE(2493), - [sym_sym_lit] = STATE(1825), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(2493), - [sym__bare_list_lit] = STATE(1886), - [sym_vec_lit] = STATE(2493), - [sym_set_lit] = STATE(2493), - [sym__bare_set_lit] = STATE(1887), - [sym_read_cond_lit] = STATE(2493), - [sym_splicing_read_cond_lit] = STATE(2493), - [sym_var_quoting_lit] = STATE(2493), - [sym_quoting_lit] = STATE(2493), - [sym_syn_quoting_lit] = STATE(2493), - [sym_unquote_splicing_lit] = STATE(2493), - [sym_unquoting_lit] = STATE(2493), - [sym_defun] = STATE(1886), - [sym_loop_macro] = STATE(1886), - [sym_path_lit] = STATE(2493), - [sym_package_lit] = STATE(2493), - [sym_include_reader_macro] = STATE(2493), - [sym_complex_num_lit] = STATE(2493), - [aux_sym_dis_expr_repeat1] = STATE(1444), - [aux_sym_list_lit_repeat1] = STATE(2151), - [sym__ws] = ACTIONS(1023), - [sym_comment] = ACTIONS(1023), - [anon_sym_POUND_] = ACTIONS(1025), - [anon_sym_POUND] = ACTIONS(1027), - [anon_sym_DOT] = ACTIONS(1029), - [aux_sym_num_lit_token1] = ACTIONS(522), - [anon_sym_COLON] = ACTIONS(524), - [anon_sym_COLON_COLON] = ACTIONS(526), - [anon_sym_DQUOTE] = ACTIONS(528), - [sym_nil_lit] = ACTIONS(1029), - [aux_sym_sym_lit_token1] = ACTIONS(534), - [anon_sym_CARET] = ACTIONS(25), - [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_POUND0A] = ACTIONS(540), - [anon_sym_POUND0a] = ACTIONS(540), - [anon_sym_POUND_QMARK] = ACTIONS(542), - [anon_sym_POUND_QMARK_AT] = ACTIONS(544), - [anon_sym_POUND_SQUOTE] = ACTIONS(546), - [anon_sym_SQUOTE] = ACTIONS(548), - [anon_sym_BQUOTE] = ACTIONS(550), - [anon_sym_COMMA_AT] = ACTIONS(552), - [anon_sym_COMMA] = ACTIONS(554), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1029), - [anon_sym_cl] = ACTIONS(1031), - [anon_sym_EQ] = ACTIONS(1033), - [anon_sym_POUNDP] = ACTIONS(558), - [anon_sym_POUNDp] = ACTIONS(558), - [sym_self_referential_reader_macro] = ACTIONS(1035), - [anon_sym_POUND_PLUS] = ACTIONS(562), - [anon_sym_POUND_DASH] = ACTIONS(562), - [anon_sym_POUNDC] = ACTIONS(564), - [anon_sym_POUNDc] = ACTIONS(564), - }, - [63] = { - [sym__gap] = STATE(66), - [sym_dis_expr] = STATE(66), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(67), - [sym__ws] = ACTIONS(1037), - [sym_comment] = ACTIONS(1037), + [sym__gap] = STATE(42), + [sym_dis_expr] = STATE(42), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(42), + [sym__ws] = ACTIONS(985), + [sym_comment] = ACTIONS(985), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -14631,40 +14558,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [64] = { - [sym__gap] = STATE(68), - [sym_dis_expr] = STATE(68), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(68), - [sym__ws] = ACTIONS(1041), - [sym_comment] = ACTIONS(1041), + [63] = { + [sym__gap] = STATE(42), + [sym_dis_expr] = STATE(42), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(42), + [sym__ws] = ACTIONS(985), + [sym_comment] = ACTIONS(985), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -14677,7 +14604,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(1039), + [anon_sym_RPAREN] = ACTIONS(1041), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -14698,40 +14625,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, + [64] = { + [sym__gap] = STATE(1447), + [sym_dis_expr] = STATE(1447), + [sym__form] = STATE(2520), + [sym_num_lit] = STATE(2520), + [sym_kwd_lit] = STATE(2520), + [sym_str_lit] = STATE(2520), + [sym_char_lit] = STATE(2520), + [sym_sym_lit] = STATE(1848), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(2520), + [sym__bare_list_lit] = STATE(1924), + [sym_vec_lit] = STATE(2520), + [sym_set_lit] = STATE(2520), + [sym__bare_set_lit] = STATE(1925), + [sym_read_cond_lit] = STATE(2520), + [sym_splicing_read_cond_lit] = STATE(2520), + [sym_var_quoting_lit] = STATE(2520), + [sym_quoting_lit] = STATE(2520), + [sym_syn_quoting_lit] = STATE(2520), + [sym_unquote_splicing_lit] = STATE(2520), + [sym_unquoting_lit] = STATE(2520), + [sym_defun] = STATE(1924), + [sym_loop_macro] = STATE(1924), + [sym_path_lit] = STATE(2520), + [sym_package_lit] = STATE(2520), + [sym_include_reader_macro] = STATE(2520), + [sym_complex_num_lit] = STATE(2520), + [aux_sym_dis_expr_repeat1] = STATE(1447), + [aux_sym_list_lit_repeat1] = STATE(2167), + [sym__ws] = ACTIONS(971), + [sym_comment] = ACTIONS(971), + [anon_sym_POUND_] = ACTIONS(973), + [anon_sym_POUND] = ACTIONS(975), + [anon_sym_DOT] = ACTIONS(1043), + [aux_sym_num_lit_token1] = ACTIONS(728), + [anon_sym_COLON] = ACTIONS(730), + [anon_sym_COLON_COLON] = ACTIONS(732), + [anon_sym_DQUOTE] = ACTIONS(734), + [sym_nil_lit] = ACTIONS(1043), + [aux_sym_sym_lit_token1] = ACTIONS(740), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(486), + [anon_sym_POUND0A] = ACTIONS(744), + [anon_sym_POUND0a] = ACTIONS(744), + [anon_sym_POUND_QMARK] = ACTIONS(746), + [anon_sym_POUND_QMARK_AT] = ACTIONS(748), + [anon_sym_POUND_SQUOTE] = ACTIONS(750), + [anon_sym_SQUOTE] = ACTIONS(752), + [anon_sym_BQUOTE] = ACTIONS(754), + [anon_sym_COMMA_AT] = ACTIONS(756), + [anon_sym_COMMA] = ACTIONS(758), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(1043), + [anon_sym_cl] = ACTIONS(1045), + [anon_sym_EQ] = ACTIONS(1047), + [anon_sym_POUNDP] = ACTIONS(762), + [anon_sym_POUNDp] = ACTIONS(762), + [sym_self_referential_reader_macro] = ACTIONS(1049), + [anon_sym_POUND_PLUS] = ACTIONS(766), + [anon_sym_POUND_DASH] = ACTIONS(766), + [anon_sym_POUNDC] = ACTIONS(768), + [anon_sym_POUNDc] = ACTIONS(768), + }, [65] = { - [sym__gap] = STATE(37), - [sym_dis_expr] = STATE(37), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(37), - [sym__ws] = ACTIONS(975), - [sym_comment] = ACTIONS(975), + [sym__gap] = STATE(42), + [sym_dis_expr] = STATE(42), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(42), + [sym__ws] = ACTIONS(985), + [sym_comment] = ACTIONS(985), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -14744,7 +14738,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(1043), + [anon_sym_RPAREN] = ACTIONS(1051), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -14766,39 +14760,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [66] = { - [sym__gap] = STATE(69), - [sym_dis_expr] = STATE(69), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(69), - [sym__ws] = ACTIONS(1045), - [sym_comment] = ACTIONS(1045), + [sym__gap] = STATE(156), + [sym_dis_expr] = STATE(156), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(157), + [sym__ws] = ACTIONS(1053), + [sym_comment] = ACTIONS(1053), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -14811,7 +14805,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(1047), + [anon_sym_RPAREN] = ACTIONS(1055), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -14833,39 +14827,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [67] = { - [sym__gap] = STATE(37), - [sym_dis_expr] = STATE(37), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(37), - [sym__ws] = ACTIONS(975), - [sym_comment] = ACTIONS(975), + [sym__gap] = STATE(42), + [sym_dis_expr] = STATE(42), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(42), + [sym__ws] = ACTIONS(985), + [sym_comment] = ACTIONS(985), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -14878,7 +14872,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(1049), + [anon_sym_RPAREN] = ACTIONS(1057), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -14900,39 +14894,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [68] = { - [sym__gap] = STATE(37), - [sym_dis_expr] = STATE(37), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(37), - [sym__ws] = ACTIONS(975), - [sym_comment] = ACTIONS(975), + [sym__gap] = STATE(71), + [sym_dis_expr] = STATE(71), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(71), + [sym__ws] = ACTIONS(1059), + [sym_comment] = ACTIONS(1059), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -14945,7 +14939,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(1051), + [anon_sym_RBRACE] = ACTIONS(1061), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -14967,39 +14961,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [69] = { - [sym__gap] = STATE(37), - [sym_dis_expr] = STATE(37), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(37), - [sym__ws] = ACTIONS(975), - [sym_comment] = ACTIONS(975), + [sym__gap] = STATE(73), + [sym_dis_expr] = STATE(73), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(74), + [sym__ws] = ACTIONS(1063), + [sym_comment] = ACTIONS(1063), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -15012,7 +15006,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(1053), + [anon_sym_RPAREN] = ACTIONS(1065), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -15034,39 +15028,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [70] = { - [sym__gap] = STATE(156), - [sym_dis_expr] = STATE(156), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(157), - [sym__ws] = ACTIONS(1055), - [sym_comment] = ACTIONS(1055), + [sym__gap] = STATE(42), + [sym_dis_expr] = STATE(42), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(42), + [sym__ws] = ACTIONS(985), + [sym_comment] = ACTIONS(985), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -15079,7 +15073,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(1057), + [anon_sym_RPAREN] = ACTIONS(1067), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -15101,39 +15095,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [71] = { - [sym__gap] = STATE(37), - [sym_dis_expr] = STATE(37), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(37), - [sym__ws] = ACTIONS(975), - [sym_comment] = ACTIONS(975), + [sym__gap] = STATE(42), + [sym_dis_expr] = STATE(42), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(42), + [sym__ws] = ACTIONS(985), + [sym_comment] = ACTIONS(985), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -15146,7 +15140,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(1059), + [anon_sym_RBRACE] = ACTIONS(1069), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -15170,37 +15164,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [72] = { [sym__gap] = STATE(75), [sym_dis_expr] = STATE(75), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(75), - [sym__ws] = ACTIONS(1061), - [sym_comment] = ACTIONS(1061), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(76), + [sym__ws] = ACTIONS(1071), + [sym_comment] = ACTIONS(1071), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -15213,7 +15207,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(1063), + [anon_sym_RPAREN] = ACTIONS(1073), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -15237,37 +15231,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [73] = { [sym__gap] = STATE(77), [sym_dis_expr] = STATE(77), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(78), - [sym__ws] = ACTIONS(1065), - [sym_comment] = ACTIONS(1065), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(77), + [sym__ws] = ACTIONS(1075), + [sym_comment] = ACTIONS(1075), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -15280,7 +15274,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(1067), + [anon_sym_RPAREN] = ACTIONS(1073), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -15302,39 +15296,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [74] = { - [sym__gap] = STATE(37), - [sym_dis_expr] = STATE(37), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(37), - [sym__ws] = ACTIONS(975), - [sym_comment] = ACTIONS(975), + [sym__gap] = STATE(42), + [sym_dis_expr] = STATE(42), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(42), + [sym__ws] = ACTIONS(985), + [sym_comment] = ACTIONS(985), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -15347,7 +15341,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(1069), + [anon_sym_RPAREN] = ACTIONS(1077), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -15369,39 +15363,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [75] = { - [sym__gap] = STATE(37), - [sym_dis_expr] = STATE(37), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(37), - [sym__ws] = ACTIONS(975), - [sym_comment] = ACTIONS(975), + [sym__gap] = STATE(78), + [sym_dis_expr] = STATE(78), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(78), + [sym__ws] = ACTIONS(1079), + [sym_comment] = ACTIONS(1079), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -15414,7 +15408,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(1071), + [anon_sym_RPAREN] = ACTIONS(1081), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -15436,39 +15430,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [76] = { - [sym__gap] = STATE(79), - [sym_dis_expr] = STATE(79), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(82), - [sym__ws] = ACTIONS(1073), - [sym_comment] = ACTIONS(1073), + [sym__gap] = STATE(42), + [sym_dis_expr] = STATE(42), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(42), + [sym__ws] = ACTIONS(985), + [sym_comment] = ACTIONS(985), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -15481,7 +15475,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(1075), + [anon_sym_RPAREN] = ACTIONS(1083), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -15503,39 +15497,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [77] = { - [sym__gap] = STATE(83), - [sym_dis_expr] = STATE(83), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(83), - [sym__ws] = ACTIONS(1077), - [sym_comment] = ACTIONS(1077), + [sym__gap] = STATE(42), + [sym_dis_expr] = STATE(42), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(42), + [sym__ws] = ACTIONS(985), + [sym_comment] = ACTIONS(985), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -15548,7 +15542,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(1075), + [anon_sym_RPAREN] = ACTIONS(1085), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -15570,39 +15564,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [78] = { - [sym__gap] = STATE(37), - [sym_dis_expr] = STATE(37), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(37), - [sym__ws] = ACTIONS(975), - [sym_comment] = ACTIONS(975), + [sym__gap] = STATE(42), + [sym_dis_expr] = STATE(42), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(42), + [sym__ws] = ACTIONS(985), + [sym_comment] = ACTIONS(985), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -15615,7 +15609,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(1079), + [anon_sym_RPAREN] = ACTIONS(1087), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -15637,39 +15631,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [79] = { - [sym__gap] = STATE(84), - [sym_dis_expr] = STATE(84), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(84), - [sym__ws] = ACTIONS(1081), - [sym_comment] = ACTIONS(1081), + [sym__gap] = STATE(88), + [sym_dis_expr] = STATE(88), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(88), + [sym__ws] = ACTIONS(1089), + [sym_comment] = ACTIONS(1089), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -15682,7 +15676,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(1083), + [anon_sym_RBRACE] = ACTIONS(1091), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -15704,173 +15698,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [80] = { - [sym__gap] = STATE(62), - [sym_dis_expr] = STATE(62), - [sym__form] = STATE(2587), - [sym_num_lit] = STATE(2587), - [sym_kwd_lit] = STATE(2587), - [sym_str_lit] = STATE(2587), - [sym_char_lit] = STATE(2587), - [sym_sym_lit] = STATE(1825), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(2587), - [sym__bare_list_lit] = STATE(1886), - [sym_vec_lit] = STATE(2587), - [sym_set_lit] = STATE(2587), - [sym__bare_set_lit] = STATE(1887), - [sym_read_cond_lit] = STATE(2587), - [sym_splicing_read_cond_lit] = STATE(2587), - [sym_var_quoting_lit] = STATE(2587), - [sym_quoting_lit] = STATE(2587), - [sym_syn_quoting_lit] = STATE(2587), - [sym_unquote_splicing_lit] = STATE(2587), - [sym_unquoting_lit] = STATE(2587), - [sym_defun] = STATE(1886), - [sym_loop_macro] = STATE(1886), - [sym_path_lit] = STATE(2587), - [sym_package_lit] = STATE(2587), - [sym_include_reader_macro] = STATE(2587), - [sym_complex_num_lit] = STATE(2587), - [aux_sym_dis_expr_repeat1] = STATE(62), - [aux_sym_list_lit_repeat1] = STATE(2151), - [sym__ws] = ACTIONS(1085), - [sym_comment] = ACTIONS(1085), - [anon_sym_POUND_] = ACTIONS(1025), - [anon_sym_POUND] = ACTIONS(1027), - [anon_sym_DOT] = ACTIONS(1087), - [aux_sym_num_lit_token1] = ACTIONS(522), - [anon_sym_COLON] = ACTIONS(524), - [anon_sym_COLON_COLON] = ACTIONS(526), - [anon_sym_DQUOTE] = ACTIONS(528), - [sym_nil_lit] = ACTIONS(1087), - [aux_sym_sym_lit_token1] = ACTIONS(534), - [anon_sym_CARET] = ACTIONS(25), - [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_POUND0A] = ACTIONS(540), - [anon_sym_POUND0a] = ACTIONS(540), - [anon_sym_POUND_QMARK] = ACTIONS(542), - [anon_sym_POUND_QMARK_AT] = ACTIONS(544), - [anon_sym_POUND_SQUOTE] = ACTIONS(546), - [anon_sym_SQUOTE] = ACTIONS(548), - [anon_sym_BQUOTE] = ACTIONS(550), - [anon_sym_COMMA_AT] = ACTIONS(552), - [anon_sym_COMMA] = ACTIONS(554), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1087), - [anon_sym_cl] = ACTIONS(1089), - [anon_sym_EQ] = ACTIONS(1091), - [anon_sym_POUNDP] = ACTIONS(558), - [anon_sym_POUNDp] = ACTIONS(558), - [sym_self_referential_reader_macro] = ACTIONS(1093), - [anon_sym_POUND_PLUS] = ACTIONS(562), - [anon_sym_POUND_DASH] = ACTIONS(562), - [anon_sym_POUNDC] = ACTIONS(564), - [anon_sym_POUNDc] = ACTIONS(564), - }, - [81] = { - [sym__gap] = STATE(1444), - [sym_dis_expr] = STATE(1444), - [sym__form] = STATE(2589), - [sym_num_lit] = STATE(2589), - [sym_kwd_lit] = STATE(2589), - [sym_str_lit] = STATE(2589), - [sym_char_lit] = STATE(2589), - [sym_sym_lit] = STATE(1825), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(2589), - [sym__bare_list_lit] = STATE(1886), - [sym_vec_lit] = STATE(2589), - [sym_set_lit] = STATE(2589), - [sym__bare_set_lit] = STATE(1887), - [sym_read_cond_lit] = STATE(2589), - [sym_splicing_read_cond_lit] = STATE(2589), - [sym_var_quoting_lit] = STATE(2589), - [sym_quoting_lit] = STATE(2589), - [sym_syn_quoting_lit] = STATE(2589), - [sym_unquote_splicing_lit] = STATE(2589), - [sym_unquoting_lit] = STATE(2589), - [sym_defun] = STATE(1886), - [sym_loop_macro] = STATE(1886), - [sym_path_lit] = STATE(2589), - [sym_package_lit] = STATE(2589), - [sym_include_reader_macro] = STATE(2589), - [sym_complex_num_lit] = STATE(2589), - [aux_sym_dis_expr_repeat1] = STATE(1444), - [aux_sym_list_lit_repeat1] = STATE(2151), - [sym__ws] = ACTIONS(1023), - [sym_comment] = ACTIONS(1023), - [anon_sym_POUND_] = ACTIONS(1025), - [anon_sym_POUND] = ACTIONS(1027), + [sym__gap] = STATE(64), + [sym_dis_expr] = STATE(64), + [sym__form] = STATE(2608), + [sym_num_lit] = STATE(2608), + [sym_kwd_lit] = STATE(2608), + [sym_str_lit] = STATE(2608), + [sym_char_lit] = STATE(2608), + [sym_sym_lit] = STATE(1848), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(2608), + [sym__bare_list_lit] = STATE(1924), + [sym_vec_lit] = STATE(2608), + [sym_set_lit] = STATE(2608), + [sym__bare_set_lit] = STATE(1925), + [sym_read_cond_lit] = STATE(2608), + [sym_splicing_read_cond_lit] = STATE(2608), + [sym_var_quoting_lit] = STATE(2608), + [sym_quoting_lit] = STATE(2608), + [sym_syn_quoting_lit] = STATE(2608), + [sym_unquote_splicing_lit] = STATE(2608), + [sym_unquoting_lit] = STATE(2608), + [sym_defun] = STATE(1924), + [sym_loop_macro] = STATE(1924), + [sym_path_lit] = STATE(2608), + [sym_package_lit] = STATE(2608), + [sym_include_reader_macro] = STATE(2608), + [sym_complex_num_lit] = STATE(2608), + [aux_sym_dis_expr_repeat1] = STATE(64), + [aux_sym_list_lit_repeat1] = STATE(2167), + [sym__ws] = ACTIONS(1093), + [sym_comment] = ACTIONS(1093), + [anon_sym_POUND_] = ACTIONS(973), + [anon_sym_POUND] = ACTIONS(975), [anon_sym_DOT] = ACTIONS(1095), - [aux_sym_num_lit_token1] = ACTIONS(522), - [anon_sym_COLON] = ACTIONS(524), - [anon_sym_COLON_COLON] = ACTIONS(526), - [anon_sym_DQUOTE] = ACTIONS(528), + [aux_sym_num_lit_token1] = ACTIONS(728), + [anon_sym_COLON] = ACTIONS(730), + [anon_sym_COLON_COLON] = ACTIONS(732), + [anon_sym_DQUOTE] = ACTIONS(734), [sym_nil_lit] = ACTIONS(1095), - [aux_sym_sym_lit_token1] = ACTIONS(534), + [aux_sym_sym_lit_token1] = ACTIONS(740), [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_POUND0A] = ACTIONS(540), - [anon_sym_POUND0a] = ACTIONS(540), - [anon_sym_POUND_QMARK] = ACTIONS(542), - [anon_sym_POUND_QMARK_AT] = ACTIONS(544), - [anon_sym_POUND_SQUOTE] = ACTIONS(546), - [anon_sym_SQUOTE] = ACTIONS(548), - [anon_sym_BQUOTE] = ACTIONS(550), - [anon_sym_COMMA_AT] = ACTIONS(552), - [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_LPAREN] = ACTIONS(486), + [anon_sym_POUND0A] = ACTIONS(744), + [anon_sym_POUND0a] = ACTIONS(744), + [anon_sym_POUND_QMARK] = ACTIONS(746), + [anon_sym_POUND_QMARK_AT] = ACTIONS(748), + [anon_sym_POUND_SQUOTE] = ACTIONS(750), + [anon_sym_SQUOTE] = ACTIONS(752), + [anon_sym_BQUOTE] = ACTIONS(754), + [anon_sym_COMMA_AT] = ACTIONS(756), + [anon_sym_COMMA] = ACTIONS(758), [sym_block_comment] = ACTIONS(47), [sym_fancy_literal] = ACTIONS(1095), [anon_sym_cl] = ACTIONS(1097), [anon_sym_EQ] = ACTIONS(1099), - [anon_sym_POUNDP] = ACTIONS(558), - [anon_sym_POUNDp] = ACTIONS(558), + [anon_sym_POUNDP] = ACTIONS(762), + [anon_sym_POUNDp] = ACTIONS(762), [sym_self_referential_reader_macro] = ACTIONS(1101), - [anon_sym_POUND_PLUS] = ACTIONS(562), - [anon_sym_POUND_DASH] = ACTIONS(562), - [anon_sym_POUNDC] = ACTIONS(564), - [anon_sym_POUNDc] = ACTIONS(564), + [anon_sym_POUND_PLUS] = ACTIONS(766), + [anon_sym_POUND_DASH] = ACTIONS(766), + [anon_sym_POUNDC] = ACTIONS(768), + [anon_sym_POUNDc] = ACTIONS(768), }, - [82] = { - [sym__gap] = STATE(37), - [sym_dis_expr] = STATE(37), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(37), - [sym__ws] = ACTIONS(975), - [sym_comment] = ACTIONS(975), + [81] = { + [sym__gap] = STATE(42), + [sym_dis_expr] = STATE(42), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(42), + [sym__ws] = ACTIONS(985), + [sym_comment] = ACTIONS(985), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -15904,40 +15831,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [83] = { - [sym__gap] = STATE(37), - [sym_dis_expr] = STATE(37), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(37), - [sym__ws] = ACTIONS(975), - [sym_comment] = ACTIONS(975), + [82] = { + [sym__gap] = STATE(42), + [sym_dis_expr] = STATE(42), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(42), + [sym__ws] = ACTIONS(985), + [sym_comment] = ACTIONS(985), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -15971,40 +15898,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, + [83] = { + [sym__gap] = STATE(91), + [sym_dis_expr] = STATE(91), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(92), + [sym__ws] = ACTIONS(1107), + [sym_comment] = ACTIONS(1107), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [aux_sym_num_lit_token1] = ACTIONS(15), + [anon_sym_COLON] = ACTIONS(17), + [anon_sym_COLON_COLON] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [sym_nil_lit] = ACTIONS(380), + [aux_sym_sym_lit_token1] = ACTIONS(23), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_RPAREN] = ACTIONS(1109), + [anon_sym_POUND0A] = ACTIONS(31), + [anon_sym_POUND0a] = ACTIONS(31), + [anon_sym_POUND_QMARK] = ACTIONS(33), + [anon_sym_POUND_QMARK_AT] = ACTIONS(35), + [anon_sym_POUND_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_BQUOTE] = ACTIONS(41), + [anon_sym_COMMA_AT] = ACTIONS(43), + [anon_sym_COMMA] = ACTIONS(45), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, [84] = { - [sym__gap] = STATE(37), - [sym_dis_expr] = STATE(37), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(37), - [sym__ws] = ACTIONS(975), - [sym_comment] = ACTIONS(975), + [sym__gap] = STATE(42), + [sym_dis_expr] = STATE(42), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(42), + [sym__ws] = ACTIONS(985), + [sym_comment] = ACTIONS(985), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -16017,7 +16011,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(1107), + [anon_sym_RPAREN] = ACTIONS(1111), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -16039,39 +16033,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [85] = { - [sym__gap] = STATE(155), - [sym_dis_expr] = STATE(155), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(155), - [sym__ws] = ACTIONS(1109), - [sym_comment] = ACTIONS(1109), + [sym__gap] = STATE(106), + [sym_dis_expr] = STATE(106), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(106), + [sym__ws] = ACTIONS(1113), + [sym_comment] = ACTIONS(1113), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -16084,7 +16078,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(1111), + [anon_sym_RPAREN] = ACTIONS(1115), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -16106,39 +16100,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [86] = { - [sym__gap] = STATE(91), - [sym_dis_expr] = STATE(91), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(91), - [sym__ws] = ACTIONS(1113), - [sym_comment] = ACTIONS(1113), + [sym__gap] = STATE(42), + [sym_dis_expr] = STATE(42), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(42), + [sym__ws] = ACTIONS(985), + [sym_comment] = ACTIONS(985), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -16151,7 +16145,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(1115), + [anon_sym_RPAREN] = ACTIONS(1117), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -16173,39 +16167,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [87] = { - [sym__gap] = STATE(93), - [sym_dis_expr] = STATE(93), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(94), - [sym__ws] = ACTIONS(1117), - [sym_comment] = ACTIONS(1117), + [sym__gap] = STATE(42), + [sym_dis_expr] = STATE(42), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(42), + [sym__ws] = ACTIONS(985), + [sym_comment] = ACTIONS(985), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -16240,39 +16234,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [88] = { - [sym__gap] = STATE(37), - [sym_dis_expr] = STATE(37), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(37), - [sym__ws] = ACTIONS(975), - [sym_comment] = ACTIONS(975), + [sym__gap] = STATE(42), + [sym_dis_expr] = STATE(42), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(42), + [sym__ws] = ACTIONS(985), + [sym_comment] = ACTIONS(985), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -16285,7 +16279,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(1121), + [anon_sym_RBRACE] = ACTIONS(1121), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -16307,52 +16301,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [89] = { - [sym__gap] = STATE(90), - [sym_dis_expr] = STATE(90), - [sym__form] = STATE(1633), - [sym_num_lit] = STATE(1633), - [sym_kwd_lit] = STATE(1633), - [sym_str_lit] = STATE(1633), - [sym_char_lit] = STATE(1633), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1633), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1633), - [sym_set_lit] = STATE(1633), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1633), - [sym_splicing_read_cond_lit] = STATE(1633), - [sym_var_quoting_lit] = STATE(1633), - [sym_quoting_lit] = STATE(1633), - [sym_syn_quoting_lit] = STATE(1633), - [sym_unquote_splicing_lit] = STATE(1633), - [sym_unquoting_lit] = STATE(1633), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1633), - [sym_package_lit] = STATE(1633), - [sym_include_reader_macro] = STATE(1633), - [sym_complex_num_lit] = STATE(1633), - [aux_sym_source_repeat1] = STATE(90), - [aux_sym_list_lit_repeat1] = STATE(2137), - [ts_builtin_sym_end] = ACTIONS(1123), - [sym__ws] = ACTIONS(1125), - [sym_comment] = ACTIONS(1125), + [sym__gap] = STATE(94), + [sym_dis_expr] = STATE(94), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(95), + [sym__ws] = ACTIONS(1123), + [sym_comment] = ACTIONS(1123), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(13), + [anon_sym_DOT] = ACTIONS(380), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(13), + [sym_nil_lit] = ACTIONS(380), [aux_sym_sym_lit_token1] = ACTIONS(23), [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_RPAREN] = ACTIONS(1125), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -16363,11 +16357,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA_AT] = ACTIONS(43), [anon_sym_COMMA] = ACTIONS(45), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(13), + [sym_fancy_literal] = ACTIONS(380), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(53), + [sym_self_referential_reader_macro] = ACTIONS(392), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), @@ -16376,35 +16370,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [90] = { [sym__gap] = STATE(90), [sym_dis_expr] = STATE(90), - [sym__form] = STATE(1633), - [sym_num_lit] = STATE(1633), - [sym_kwd_lit] = STATE(1633), - [sym_str_lit] = STATE(1633), - [sym_char_lit] = STATE(1633), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1633), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1633), - [sym_set_lit] = STATE(1633), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1633), - [sym_splicing_read_cond_lit] = STATE(1633), - [sym_var_quoting_lit] = STATE(1633), - [sym_quoting_lit] = STATE(1633), - [sym_syn_quoting_lit] = STATE(1633), - [sym_unquote_splicing_lit] = STATE(1633), - [sym_unquoting_lit] = STATE(1633), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1633), - [sym_package_lit] = STATE(1633), - [sym_include_reader_macro] = STATE(1633), - [sym_complex_num_lit] = STATE(1633), + [sym__form] = STATE(1692), + [sym_num_lit] = STATE(1692), + [sym_kwd_lit] = STATE(1692), + [sym_str_lit] = STATE(1692), + [sym_char_lit] = STATE(1692), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1692), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1692), + [sym_set_lit] = STATE(1692), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1692), + [sym_splicing_read_cond_lit] = STATE(1692), + [sym_var_quoting_lit] = STATE(1692), + [sym_quoting_lit] = STATE(1692), + [sym_syn_quoting_lit] = STATE(1692), + [sym_unquote_splicing_lit] = STATE(1692), + [sym_unquoting_lit] = STATE(1692), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1692), + [sym_package_lit] = STATE(1692), + [sym_include_reader_macro] = STATE(1692), + [sym_complex_num_lit] = STATE(1692), [aux_sym_source_repeat1] = STATE(90), - [aux_sym_list_lit_repeat1] = STATE(2137), + [aux_sym_list_lit_repeat1] = STATE(2178), [ts_builtin_sym_end] = ACTIONS(1127), [sym__ws] = ACTIONS(1129), [sym_comment] = ACTIONS(1129), @@ -16441,39 +16435,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(1201), }, [91] = { - [sym__gap] = STATE(37), - [sym_dis_expr] = STATE(37), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(37), - [sym__ws] = ACTIONS(975), - [sym_comment] = ACTIONS(975), + [sym__gap] = STATE(96), + [sym_dis_expr] = STATE(96), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(96), + [sym__ws] = ACTIONS(1204), + [sym_comment] = ACTIONS(1204), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -16486,7 +16480,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(1204), + [anon_sym_RPAREN] = ACTIONS(1125), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -16508,39 +16502,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [92] = { - [sym__gap] = STATE(95), - [sym_dis_expr] = STATE(95), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(96), - [sym__ws] = ACTIONS(1206), - [sym_comment] = ACTIONS(1206), + [sym__gap] = STATE(42), + [sym_dis_expr] = STATE(42), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(42), + [sym__ws] = ACTIONS(985), + [sym_comment] = ACTIONS(985), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -16553,7 +16547,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(1208), + [anon_sym_RPAREN] = ACTIONS(1206), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -16575,39 +16569,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [93] = { - [sym__gap] = STATE(98), - [sym_dis_expr] = STATE(98), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(98), - [sym__ws] = ACTIONS(1210), - [sym_comment] = ACTIONS(1210), + [sym__gap] = STATE(42), + [sym_dis_expr] = STATE(42), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(42), + [sym__ws] = ACTIONS(985), + [sym_comment] = ACTIONS(985), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -16642,39 +16636,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [94] = { - [sym__gap] = STATE(37), - [sym_dis_expr] = STATE(37), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(37), - [sym__ws] = ACTIONS(975), - [sym_comment] = ACTIONS(975), + [sym__gap] = STATE(97), + [sym_dis_expr] = STATE(97), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(97), + [sym__ws] = ACTIONS(1210), + [sym_comment] = ACTIONS(1210), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -16709,39 +16703,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [95] = { - [sym__gap] = STATE(99), - [sym_dis_expr] = STATE(99), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(99), - [sym__ws] = ACTIONS(1214), - [sym_comment] = ACTIONS(1214), + [sym__gap] = STATE(42), + [sym_dis_expr] = STATE(42), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(42), + [sym__ws] = ACTIONS(985), + [sym_comment] = ACTIONS(985), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -16754,7 +16748,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(1216), + [anon_sym_RPAREN] = ACTIONS(1214), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -16776,39 +16770,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [96] = { - [sym__gap] = STATE(37), - [sym_dis_expr] = STATE(37), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(37), - [sym__ws] = ACTIONS(975), - [sym_comment] = ACTIONS(975), + [sym__gap] = STATE(42), + [sym_dis_expr] = STATE(42), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(42), + [sym__ws] = ACTIONS(985), + [sym_comment] = ACTIONS(985), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -16821,7 +16815,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(1218), + [anon_sym_RPAREN] = ACTIONS(1216), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -16843,119 +16837,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [97] = { - [sym__gap] = STATE(1444), - [sym_dis_expr] = STATE(1444), - [sym__form] = STATE(2682), - [sym_num_lit] = STATE(2682), - [sym_kwd_lit] = STATE(2682), - [sym_str_lit] = STATE(2682), - [sym_char_lit] = STATE(2682), - [sym_sym_lit] = STATE(1825), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(2682), - [sym__bare_list_lit] = STATE(1886), - [sym_vec_lit] = STATE(2682), - [sym_set_lit] = STATE(2682), - [sym__bare_set_lit] = STATE(1887), - [sym_read_cond_lit] = STATE(2682), - [sym_splicing_read_cond_lit] = STATE(2682), - [sym_var_quoting_lit] = STATE(2682), - [sym_quoting_lit] = STATE(2682), - [sym_syn_quoting_lit] = STATE(2682), - [sym_unquote_splicing_lit] = STATE(2682), - [sym_unquoting_lit] = STATE(2682), - [sym_defun] = STATE(1886), - [sym_loop_macro] = STATE(1886), - [sym_path_lit] = STATE(2682), - [sym_package_lit] = STATE(2682), - [sym_include_reader_macro] = STATE(2682), - [sym_complex_num_lit] = STATE(2682), - [aux_sym_dis_expr_repeat1] = STATE(1444), - [aux_sym_list_lit_repeat1] = STATE(2151), - [sym__ws] = ACTIONS(1023), - [sym_comment] = ACTIONS(1023), - [anon_sym_POUND_] = ACTIONS(1025), - [anon_sym_POUND] = ACTIONS(1027), - [anon_sym_DOT] = ACTIONS(1220), - [aux_sym_num_lit_token1] = ACTIONS(522), - [anon_sym_COLON] = ACTIONS(524), - [anon_sym_COLON_COLON] = ACTIONS(526), - [anon_sym_DQUOTE] = ACTIONS(528), - [sym_nil_lit] = ACTIONS(1220), - [aux_sym_sym_lit_token1] = ACTIONS(534), + [sym__gap] = STATE(42), + [sym_dis_expr] = STATE(42), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(42), + [sym__ws] = ACTIONS(985), + [sym_comment] = ACTIONS(985), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [aux_sym_num_lit_token1] = ACTIONS(15), + [anon_sym_COLON] = ACTIONS(17), + [anon_sym_COLON_COLON] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [sym_nil_lit] = ACTIONS(380), + [aux_sym_sym_lit_token1] = ACTIONS(23), [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_POUND0A] = ACTIONS(540), - [anon_sym_POUND0a] = ACTIONS(540), - [anon_sym_POUND_QMARK] = ACTIONS(542), - [anon_sym_POUND_QMARK_AT] = ACTIONS(544), - [anon_sym_POUND_SQUOTE] = ACTIONS(546), - [anon_sym_SQUOTE] = ACTIONS(548), - [anon_sym_BQUOTE] = ACTIONS(550), - [anon_sym_COMMA_AT] = ACTIONS(552), - [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_RPAREN] = ACTIONS(1218), + [anon_sym_POUND0A] = ACTIONS(31), + [anon_sym_POUND0a] = ACTIONS(31), + [anon_sym_POUND_QMARK] = ACTIONS(33), + [anon_sym_POUND_QMARK_AT] = ACTIONS(35), + [anon_sym_POUND_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_BQUOTE] = ACTIONS(41), + [anon_sym_COMMA_AT] = ACTIONS(43), + [anon_sym_COMMA] = ACTIONS(45), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1220), - [anon_sym_cl] = ACTIONS(1222), - [anon_sym_EQ] = ACTIONS(1224), - [anon_sym_POUNDP] = ACTIONS(558), - [anon_sym_POUNDp] = ACTIONS(558), - [sym_self_referential_reader_macro] = ACTIONS(1226), - [anon_sym_POUND_PLUS] = ACTIONS(562), - [anon_sym_POUND_DASH] = ACTIONS(562), - [anon_sym_POUNDC] = ACTIONS(564), - [anon_sym_POUNDc] = ACTIONS(564), + [sym_fancy_literal] = ACTIONS(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), }, [98] = { - [sym__gap] = STATE(37), - [sym_dis_expr] = STATE(37), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(37), - [sym__ws] = ACTIONS(975), - [sym_comment] = ACTIONS(975), + [sym__gap] = STATE(90), + [sym_dis_expr] = STATE(90), + [sym__form] = STATE(1692), + [sym_num_lit] = STATE(1692), + [sym_kwd_lit] = STATE(1692), + [sym_str_lit] = STATE(1692), + [sym_char_lit] = STATE(1692), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1692), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1692), + [sym_set_lit] = STATE(1692), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1692), + [sym_splicing_read_cond_lit] = STATE(1692), + [sym_var_quoting_lit] = STATE(1692), + [sym_quoting_lit] = STATE(1692), + [sym_syn_quoting_lit] = STATE(1692), + [sym_unquote_splicing_lit] = STATE(1692), + [sym_unquoting_lit] = STATE(1692), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1692), + [sym_package_lit] = STATE(1692), + [sym_include_reader_macro] = STATE(1692), + [sym_complex_num_lit] = STATE(1692), + [aux_sym_source_repeat1] = STATE(90), + [aux_sym_list_lit_repeat1] = STATE(2178), + [ts_builtin_sym_end] = ACTIONS(1220), + [sym__ws] = ACTIONS(1222), + [sym_comment] = ACTIONS(1222), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(13), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(380), + [sym_nil_lit] = ACTIONS(13), [aux_sym_sym_lit_token1] = ACTIONS(23), [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(1228), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -16966,50 +16960,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA_AT] = ACTIONS(43), [anon_sym_COMMA] = ACTIONS(45), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(380), + [sym_fancy_literal] = ACTIONS(13), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(392), + [sym_self_referential_reader_macro] = ACTIONS(53), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, [99] = { - [sym__gap] = STATE(37), - [sym_dis_expr] = STATE(37), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(37), - [sym__ws] = ACTIONS(975), - [sym_comment] = ACTIONS(975), + [sym__gap] = STATE(42), + [sym_dis_expr] = STATE(42), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(42), + [sym__ws] = ACTIONS(985), + [sym_comment] = ACTIONS(985), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -17022,7 +17016,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(1230), + [anon_sym_RPAREN] = ACTIONS(1224), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -17044,39 +17038,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [100] = { - [sym__gap] = STATE(37), - [sym_dis_expr] = STATE(37), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(37), - [sym__ws] = ACTIONS(975), - [sym_comment] = ACTIONS(975), + [sym__gap] = STATE(104), + [sym_dis_expr] = STATE(104), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(104), + [sym__ws] = ACTIONS(1226), + [sym_comment] = ACTIONS(1226), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -17089,7 +17083,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(1232), + [anon_sym_RBRACE] = ACTIONS(1228), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -17111,39 +17105,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [101] = { - [sym__gap] = STATE(37), - [sym_dis_expr] = STATE(37), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(37), - [sym__ws] = ACTIONS(975), - [sym_comment] = ACTIONS(975), + [sym__gap] = STATE(1447), + [sym_dis_expr] = STATE(1447), + [sym__form] = STATE(2702), + [sym_num_lit] = STATE(2702), + [sym_kwd_lit] = STATE(2702), + [sym_str_lit] = STATE(2702), + [sym_char_lit] = STATE(2702), + [sym_sym_lit] = STATE(1848), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(2702), + [sym__bare_list_lit] = STATE(1924), + [sym_vec_lit] = STATE(2702), + [sym_set_lit] = STATE(2702), + [sym__bare_set_lit] = STATE(1925), + [sym_read_cond_lit] = STATE(2702), + [sym_splicing_read_cond_lit] = STATE(2702), + [sym_var_quoting_lit] = STATE(2702), + [sym_quoting_lit] = STATE(2702), + [sym_syn_quoting_lit] = STATE(2702), + [sym_unquote_splicing_lit] = STATE(2702), + [sym_unquoting_lit] = STATE(2702), + [sym_defun] = STATE(1924), + [sym_loop_macro] = STATE(1924), + [sym_path_lit] = STATE(2702), + [sym_package_lit] = STATE(2702), + [sym_include_reader_macro] = STATE(2702), + [sym_complex_num_lit] = STATE(2702), + [aux_sym_dis_expr_repeat1] = STATE(1447), + [aux_sym_list_lit_repeat1] = STATE(2167), + [sym__ws] = ACTIONS(971), + [sym_comment] = ACTIONS(971), + [anon_sym_POUND_] = ACTIONS(973), + [anon_sym_POUND] = ACTIONS(975), + [anon_sym_DOT] = ACTIONS(1230), + [aux_sym_num_lit_token1] = ACTIONS(728), + [anon_sym_COLON] = ACTIONS(730), + [anon_sym_COLON_COLON] = ACTIONS(732), + [anon_sym_DQUOTE] = ACTIONS(734), + [sym_nil_lit] = ACTIONS(1230), + [aux_sym_sym_lit_token1] = ACTIONS(740), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(486), + [anon_sym_POUND0A] = ACTIONS(744), + [anon_sym_POUND0a] = ACTIONS(744), + [anon_sym_POUND_QMARK] = ACTIONS(746), + [anon_sym_POUND_QMARK_AT] = ACTIONS(748), + [anon_sym_POUND_SQUOTE] = ACTIONS(750), + [anon_sym_SQUOTE] = ACTIONS(752), + [anon_sym_BQUOTE] = ACTIONS(754), + [anon_sym_COMMA_AT] = ACTIONS(756), + [anon_sym_COMMA] = ACTIONS(758), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(1230), + [anon_sym_cl] = ACTIONS(1232), + [anon_sym_EQ] = ACTIONS(1234), + [anon_sym_POUNDP] = ACTIONS(762), + [anon_sym_POUNDp] = ACTIONS(762), + [sym_self_referential_reader_macro] = ACTIONS(1236), + [anon_sym_POUND_PLUS] = ACTIONS(766), + [anon_sym_POUND_DASH] = ACTIONS(766), + [anon_sym_POUNDC] = ACTIONS(768), + [anon_sym_POUNDc] = ACTIONS(768), + }, + [102] = { + [sym__gap] = STATE(112), + [sym_dis_expr] = STATE(112), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(113), + [sym__ws] = ACTIONS(1238), + [sym_comment] = ACTIONS(1238), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -17156,7 +17217,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(1234), + [anon_sym_RPAREN] = ACTIONS(1240), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -17177,40 +17238,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [102] = { - [sym__gap] = STATE(37), - [sym_dis_expr] = STATE(37), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(37), - [sym__ws] = ACTIONS(975), - [sym_comment] = ACTIONS(975), + [103] = { + [sym__gap] = STATE(42), + [sym_dis_expr] = STATE(42), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(42), + [sym__ws] = ACTIONS(985), + [sym_comment] = ACTIONS(985), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -17223,7 +17284,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(1236), + [anon_sym_RPAREN] = ACTIONS(1242), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -17244,40 +17305,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [103] = { - [sym__gap] = STATE(100), - [sym_dis_expr] = STATE(100), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(100), - [sym__ws] = ACTIONS(1238), - [sym_comment] = ACTIONS(1238), + [104] = { + [sym__gap] = STATE(42), + [sym_dis_expr] = STATE(42), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(42), + [sym__ws] = ACTIONS(985), + [sym_comment] = ACTIONS(985), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -17290,7 +17351,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(1240), + [anon_sym_RBRACE] = ACTIONS(1244), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -17311,107 +17372,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [104] = { - [sym__gap] = STATE(81), - [sym_dis_expr] = STATE(81), - [sym__form] = STATE(2695), - [sym_num_lit] = STATE(2695), - [sym_kwd_lit] = STATE(2695), - [sym_str_lit] = STATE(2695), - [sym_char_lit] = STATE(2695), - [sym_sym_lit] = STATE(1825), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(2695), - [sym__bare_list_lit] = STATE(1886), - [sym_vec_lit] = STATE(2695), - [sym_set_lit] = STATE(2695), - [sym__bare_set_lit] = STATE(1887), - [sym_read_cond_lit] = STATE(2695), - [sym_splicing_read_cond_lit] = STATE(2695), - [sym_var_quoting_lit] = STATE(2695), - [sym_quoting_lit] = STATE(2695), - [sym_syn_quoting_lit] = STATE(2695), - [sym_unquote_splicing_lit] = STATE(2695), - [sym_unquoting_lit] = STATE(2695), - [sym_defun] = STATE(1886), - [sym_loop_macro] = STATE(1886), - [sym_path_lit] = STATE(2695), - [sym_package_lit] = STATE(2695), - [sym_include_reader_macro] = STATE(2695), - [sym_complex_num_lit] = STATE(2695), - [aux_sym_dis_expr_repeat1] = STATE(81), - [aux_sym_list_lit_repeat1] = STATE(2151), - [sym__ws] = ACTIONS(1242), - [sym_comment] = ACTIONS(1242), - [anon_sym_POUND_] = ACTIONS(1025), - [anon_sym_POUND] = ACTIONS(1027), - [anon_sym_DOT] = ACTIONS(1244), - [aux_sym_num_lit_token1] = ACTIONS(522), - [anon_sym_COLON] = ACTIONS(524), - [anon_sym_COLON_COLON] = ACTIONS(526), - [anon_sym_DQUOTE] = ACTIONS(528), - [sym_nil_lit] = ACTIONS(1244), - [aux_sym_sym_lit_token1] = ACTIONS(534), - [anon_sym_CARET] = ACTIONS(25), - [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_POUND0A] = ACTIONS(540), - [anon_sym_POUND0a] = ACTIONS(540), - [anon_sym_POUND_QMARK] = ACTIONS(542), - [anon_sym_POUND_QMARK_AT] = ACTIONS(544), - [anon_sym_POUND_SQUOTE] = ACTIONS(546), - [anon_sym_SQUOTE] = ACTIONS(548), - [anon_sym_BQUOTE] = ACTIONS(550), - [anon_sym_COMMA_AT] = ACTIONS(552), - [anon_sym_COMMA] = ACTIONS(554), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1244), - [anon_sym_cl] = ACTIONS(1246), - [anon_sym_EQ] = ACTIONS(1248), - [anon_sym_POUNDP] = ACTIONS(558), - [anon_sym_POUNDp] = ACTIONS(558), - [sym_self_referential_reader_macro] = ACTIONS(1250), - [anon_sym_POUND_PLUS] = ACTIONS(562), - [anon_sym_POUND_DASH] = ACTIONS(562), - [anon_sym_POUNDC] = ACTIONS(564), - [anon_sym_POUNDc] = ACTIONS(564), - }, [105] = { - [sym__gap] = STATE(48), - [sym_dis_expr] = STATE(48), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(48), - [sym__ws] = ACTIONS(1252), - [sym_comment] = ACTIONS(1252), + [sym__gap] = STATE(45), + [sym_dis_expr] = STATE(45), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(45), + [sym__ws] = ACTIONS(1246), + [sym_comment] = ACTIONS(1246), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -17424,7 +17418,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(1254), + [anon_sym_RPAREN] = ACTIONS(991), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -17446,39 +17440,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [106] = { - [sym__gap] = STATE(101), - [sym_dis_expr] = STATE(101), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(101), - [sym__ws] = ACTIONS(1256), - [sym_comment] = ACTIONS(1256), + [sym__gap] = STATE(42), + [sym_dis_expr] = STATE(42), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(42), + [sym__ws] = ACTIONS(985), + [sym_comment] = ACTIONS(985), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -17491,7 +17485,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(1258), + [anon_sym_RPAREN] = ACTIONS(1248), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -17513,37 +17507,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [107] = { - [sym__gap] = STATE(112), - [sym_dis_expr] = STATE(112), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(112), + [sym__gap] = STATE(44), + [sym_dis_expr] = STATE(44), + [sym__form] = STATE(2767), + [sym_num_lit] = STATE(2767), + [sym_kwd_lit] = STATE(2767), + [sym_str_lit] = STATE(2767), + [sym_char_lit] = STATE(2767), + [sym_sym_lit] = STATE(1848), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(2767), + [sym__bare_list_lit] = STATE(1924), + [sym_vec_lit] = STATE(2767), + [sym_set_lit] = STATE(2767), + [sym__bare_set_lit] = STATE(1925), + [sym_read_cond_lit] = STATE(2767), + [sym_splicing_read_cond_lit] = STATE(2767), + [sym_var_quoting_lit] = STATE(2767), + [sym_quoting_lit] = STATE(2767), + [sym_syn_quoting_lit] = STATE(2767), + [sym_unquote_splicing_lit] = STATE(2767), + [sym_unquoting_lit] = STATE(2767), + [sym_defun] = STATE(1924), + [sym_loop_macro] = STATE(1924), + [sym_path_lit] = STATE(2767), + [sym_package_lit] = STATE(2767), + [sym_include_reader_macro] = STATE(2767), + [sym_complex_num_lit] = STATE(2767), + [aux_sym_dis_expr_repeat1] = STATE(44), + [aux_sym_list_lit_repeat1] = STATE(2167), + [sym__ws] = ACTIONS(1250), + [sym_comment] = ACTIONS(1250), + [anon_sym_POUND_] = ACTIONS(973), + [anon_sym_POUND] = ACTIONS(975), + [anon_sym_DOT] = ACTIONS(1252), + [aux_sym_num_lit_token1] = ACTIONS(728), + [anon_sym_COLON] = ACTIONS(730), + [anon_sym_COLON_COLON] = ACTIONS(732), + [anon_sym_DQUOTE] = ACTIONS(734), + [sym_nil_lit] = ACTIONS(1252), + [aux_sym_sym_lit_token1] = ACTIONS(740), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(486), + [anon_sym_POUND0A] = ACTIONS(744), + [anon_sym_POUND0a] = ACTIONS(744), + [anon_sym_POUND_QMARK] = ACTIONS(746), + [anon_sym_POUND_QMARK_AT] = ACTIONS(748), + [anon_sym_POUND_SQUOTE] = ACTIONS(750), + [anon_sym_SQUOTE] = ACTIONS(752), + [anon_sym_BQUOTE] = ACTIONS(754), + [anon_sym_COMMA_AT] = ACTIONS(756), + [anon_sym_COMMA] = ACTIONS(758), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(1252), + [anon_sym_cl] = ACTIONS(1254), + [anon_sym_EQ] = ACTIONS(1256), + [anon_sym_POUNDP] = ACTIONS(762), + [anon_sym_POUNDp] = ACTIONS(762), + [sym_self_referential_reader_macro] = ACTIONS(1258), + [anon_sym_POUND_PLUS] = ACTIONS(766), + [anon_sym_POUND_DASH] = ACTIONS(766), + [anon_sym_POUNDC] = ACTIONS(768), + [anon_sym_POUNDc] = ACTIONS(768), + }, + [108] = { + [sym__gap] = STATE(120), + [sym_dis_expr] = STATE(120), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(120), [sym__ws] = ACTIONS(1260), [sym_comment] = ACTIONS(1260), [anon_sym_POUND_] = ACTIONS(9), @@ -17579,38 +17640,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [108] = { - [sym__gap] = STATE(103), - [sym_dis_expr] = STATE(103), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(102), + [109] = { + [sym__gap] = STATE(132), + [sym_dis_expr] = STATE(132), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(135), [sym__ws] = ACTIONS(1264), [sym_comment] = ACTIONS(1264), [anon_sym_POUND_] = ACTIONS(9), @@ -17625,7 +17686,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(1258), + [anon_sym_RPAREN] = ACTIONS(1266), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -17646,107 +17707,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [109] = { + [110] = { [sym__gap] = STATE(114), [sym_dis_expr] = STATE(114), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), [aux_sym__bare_list_lit_repeat1] = STATE(115), - [sym__ws] = ACTIONS(1266), - [sym_comment] = ACTIONS(1266), - [anon_sym_POUND_] = ACTIONS(9), - [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), - [aux_sym_num_lit_token1] = ACTIONS(15), - [anon_sym_COLON] = ACTIONS(17), - [anon_sym_COLON_COLON] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(380), - [aux_sym_sym_lit_token1] = ACTIONS(23), - [anon_sym_CARET] = ACTIONS(25), - [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(1268), - [anon_sym_POUND0A] = ACTIONS(31), - [anon_sym_POUND0a] = ACTIONS(31), - [anon_sym_POUND_QMARK] = ACTIONS(33), - [anon_sym_POUND_QMARK_AT] = ACTIONS(35), - [anon_sym_POUND_SQUOTE] = ACTIONS(37), - [anon_sym_SQUOTE] = ACTIONS(39), - [anon_sym_BQUOTE] = ACTIONS(41), - [anon_sym_COMMA_AT] = ACTIONS(43), - [anon_sym_COMMA] = ACTIONS(45), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(380), - [anon_sym_cl] = ACTIONS(49), - [anon_sym_POUNDP] = ACTIONS(51), - [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(392), - [anon_sym_POUND_PLUS] = ACTIONS(55), - [anon_sym_POUND_DASH] = ACTIONS(55), - [anon_sym_POUNDC] = ACTIONS(57), - [anon_sym_POUNDc] = ACTIONS(57), - }, - [110] = { - [sym__gap] = STATE(37), - [sym_dis_expr] = STATE(37), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(37), - [sym__ws] = ACTIONS(975), - [sym_comment] = ACTIONS(975), + [sym__ws] = ACTIONS(1268), + [sym_comment] = ACTIONS(1268), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -17781,39 +17775,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [111] = { - [sym__gap] = STATE(37), - [sym_dis_expr] = STATE(37), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(37), - [sym__ws] = ACTIONS(975), - [sym_comment] = ACTIONS(975), + [sym__gap] = STATE(42), + [sym_dis_expr] = STATE(42), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(42), + [sym__ws] = ACTIONS(985), + [sym_comment] = ACTIONS(985), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -17848,39 +17842,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [112] = { - [sym__gap] = STATE(37), - [sym_dis_expr] = STATE(37), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(37), - [sym__ws] = ACTIONS(975), - [sym_comment] = ACTIONS(975), + [sym__gap] = STATE(116), + [sym_dis_expr] = STATE(116), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(116), + [sym__ws] = ACTIONS(1274), + [sym_comment] = ACTIONS(1274), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -17893,7 +17887,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(1274), + [anon_sym_RPAREN] = ACTIONS(1270), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -17915,39 +17909,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [113] = { - [sym__gap] = STATE(116), - [sym_dis_expr] = STATE(116), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(117), - [sym__ws] = ACTIONS(1276), - [sym_comment] = ACTIONS(1276), + [sym__gap] = STATE(42), + [sym_dis_expr] = STATE(42), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(42), + [sym__ws] = ACTIONS(985), + [sym_comment] = ACTIONS(985), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -17960,7 +17954,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(1278), + [anon_sym_RPAREN] = ACTIONS(1276), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -17982,39 +17976,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [114] = { - [sym__gap] = STATE(119), - [sym_dis_expr] = STATE(119), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(119), - [sym__ws] = ACTIONS(1280), - [sym_comment] = ACTIONS(1280), + [sym__gap] = STATE(117), + [sym_dis_expr] = STATE(117), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(117), + [sym__ws] = ACTIONS(1278), + [sym_comment] = ACTIONS(1278), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -18027,7 +18021,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(1278), + [anon_sym_RPAREN] = ACTIONS(1280), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -18049,39 +18043,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [115] = { - [sym__gap] = STATE(37), - [sym_dis_expr] = STATE(37), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(37), - [sym__ws] = ACTIONS(975), - [sym_comment] = ACTIONS(975), + [sym__gap] = STATE(42), + [sym_dis_expr] = STATE(42), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(42), + [sym__ws] = ACTIONS(985), + [sym_comment] = ACTIONS(985), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -18116,39 +18110,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [116] = { - [sym__gap] = STATE(127), - [sym_dis_expr] = STATE(127), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(127), - [sym__ws] = ACTIONS(1284), - [sym_comment] = ACTIONS(1284), + [sym__gap] = STATE(42), + [sym_dis_expr] = STATE(42), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(42), + [sym__ws] = ACTIONS(985), + [sym_comment] = ACTIONS(985), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -18161,7 +18155,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(1286), + [anon_sym_RPAREN] = ACTIONS(1284), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -18183,39 +18177,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [117] = { - [sym__gap] = STATE(37), - [sym_dis_expr] = STATE(37), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(37), - [sym__ws] = ACTIONS(975), - [sym_comment] = ACTIONS(975), + [sym__gap] = STATE(42), + [sym_dis_expr] = STATE(42), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(42), + [sym__ws] = ACTIONS(985), + [sym_comment] = ACTIONS(985), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -18228,7 +18222,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(1288), + [anon_sym_RPAREN] = ACTIONS(1286), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -18250,39 +18244,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [118] = { - [sym__gap] = STATE(37), - [sym_dis_expr] = STATE(37), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(37), - [sym__ws] = ACTIONS(975), - [sym_comment] = ACTIONS(975), + [sym__gap] = STATE(49), + [sym_dis_expr] = STATE(49), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(49), + [sym__ws] = ACTIONS(1288), + [sym_comment] = ACTIONS(1288), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -18317,39 +18311,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [119] = { - [sym__gap] = STATE(37), - [sym_dis_expr] = STATE(37), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(37), - [sym__ws] = ACTIONS(975), - [sym_comment] = ACTIONS(975), + [sym__gap] = STATE(42), + [sym_dis_expr] = STATE(42), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(42), + [sym__ws] = ACTIONS(985), + [sym_comment] = ACTIONS(985), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -18384,39 +18378,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [120] = { - [sym__gap] = STATE(37), - [sym_dis_expr] = STATE(37), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(37), - [sym__ws] = ACTIONS(975), - [sym_comment] = ACTIONS(975), + [sym__gap] = STATE(42), + [sym_dis_expr] = STATE(42), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(42), + [sym__ws] = ACTIONS(985), + [sym_comment] = ACTIONS(985), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -18429,7 +18423,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(1294), + [anon_sym_RBRACE] = ACTIONS(1294), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -18451,39 +18445,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [121] = { - [sym__gap] = STATE(37), - [sym_dis_expr] = STATE(37), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(37), - [sym__ws] = ACTIONS(975), - [sym_comment] = ACTIONS(975), + [sym__gap] = STATE(136), + [sym_dis_expr] = STATE(136), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(136), + [sym__ws] = ACTIONS(1296), + [sym_comment] = ACTIONS(1296), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -18496,7 +18490,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(1296), + [anon_sym_RBRACE] = ACTIONS(1298), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -18518,106 +18512,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [122] = { - [sym__gap] = STATE(97), - [sym_dis_expr] = STATE(97), - [sym__form] = STATE(2770), - [sym_num_lit] = STATE(2770), - [sym_kwd_lit] = STATE(2770), - [sym_str_lit] = STATE(2770), - [sym_char_lit] = STATE(2770), - [sym_sym_lit] = STATE(1825), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(2770), - [sym__bare_list_lit] = STATE(1886), - [sym_vec_lit] = STATE(2770), - [sym_set_lit] = STATE(2770), - [sym__bare_set_lit] = STATE(1887), - [sym_read_cond_lit] = STATE(2770), - [sym_splicing_read_cond_lit] = STATE(2770), - [sym_var_quoting_lit] = STATE(2770), - [sym_quoting_lit] = STATE(2770), - [sym_syn_quoting_lit] = STATE(2770), - [sym_unquote_splicing_lit] = STATE(2770), - [sym_unquoting_lit] = STATE(2770), - [sym_defun] = STATE(1886), - [sym_loop_macro] = STATE(1886), - [sym_path_lit] = STATE(2770), - [sym_package_lit] = STATE(2770), - [sym_include_reader_macro] = STATE(2770), - [sym_complex_num_lit] = STATE(2770), - [aux_sym_dis_expr_repeat1] = STATE(97), - [aux_sym_list_lit_repeat1] = STATE(2151), - [sym__ws] = ACTIONS(1298), - [sym_comment] = ACTIONS(1298), - [anon_sym_POUND_] = ACTIONS(1025), - [anon_sym_POUND] = ACTIONS(1027), - [anon_sym_DOT] = ACTIONS(1300), - [aux_sym_num_lit_token1] = ACTIONS(522), - [anon_sym_COLON] = ACTIONS(524), - [anon_sym_COLON_COLON] = ACTIONS(526), - [anon_sym_DQUOTE] = ACTIONS(528), - [sym_nil_lit] = ACTIONS(1300), - [aux_sym_sym_lit_token1] = ACTIONS(534), - [anon_sym_CARET] = ACTIONS(25), - [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_POUND0A] = ACTIONS(540), - [anon_sym_POUND0a] = ACTIONS(540), - [anon_sym_POUND_QMARK] = ACTIONS(542), - [anon_sym_POUND_QMARK_AT] = ACTIONS(544), - [anon_sym_POUND_SQUOTE] = ACTIONS(546), - [anon_sym_SQUOTE] = ACTIONS(548), - [anon_sym_BQUOTE] = ACTIONS(550), - [anon_sym_COMMA_AT] = ACTIONS(552), - [anon_sym_COMMA] = ACTIONS(554), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1300), - [anon_sym_cl] = ACTIONS(1302), - [anon_sym_EQ] = ACTIONS(1304), - [anon_sym_POUNDP] = ACTIONS(558), - [anon_sym_POUNDp] = ACTIONS(558), - [sym_self_referential_reader_macro] = ACTIONS(1306), - [anon_sym_POUND_PLUS] = ACTIONS(562), - [anon_sym_POUND_DASH] = ACTIONS(562), - [anon_sym_POUNDC] = ACTIONS(564), - [anon_sym_POUNDc] = ACTIONS(564), - }, - [123] = { - [sym__gap] = STATE(37), - [sym_dis_expr] = STATE(37), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(37), - [sym__ws] = ACTIONS(975), - [sym_comment] = ACTIONS(975), + [sym__gap] = STATE(140), + [sym_dis_expr] = STATE(140), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(141), + [sym__ws] = ACTIONS(1300), + [sym_comment] = ACTIONS(1300), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -18630,7 +18557,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(1308), + [anon_sym_RPAREN] = ACTIONS(1302), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -18651,40 +18578,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [124] = { - [sym__gap] = STATE(37), - [sym_dis_expr] = STATE(37), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(37), - [sym__ws] = ACTIONS(975), - [sym_comment] = ACTIONS(975), + [123] = { + [sym__gap] = STATE(42), + [sym_dis_expr] = STATE(42), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(42), + [sym__ws] = ACTIONS(985), + [sym_comment] = ACTIONS(985), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -18697,7 +18624,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(1310), + [anon_sym_RPAREN] = ACTIONS(1304), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -18718,107 +18645,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [125] = { - [sym__gap] = STATE(1444), - [sym_dis_expr] = STATE(1444), - [sym__form] = STATE(2771), - [sym_num_lit] = STATE(2771), - [sym_kwd_lit] = STATE(2771), - [sym_str_lit] = STATE(2771), - [sym_char_lit] = STATE(2771), - [sym_sym_lit] = STATE(1825), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(2771), - [sym__bare_list_lit] = STATE(1886), - [sym_vec_lit] = STATE(2771), - [sym_set_lit] = STATE(2771), - [sym__bare_set_lit] = STATE(1887), - [sym_read_cond_lit] = STATE(2771), - [sym_splicing_read_cond_lit] = STATE(2771), - [sym_var_quoting_lit] = STATE(2771), - [sym_quoting_lit] = STATE(2771), - [sym_syn_quoting_lit] = STATE(2771), - [sym_unquote_splicing_lit] = STATE(2771), - [sym_unquoting_lit] = STATE(2771), - [sym_defun] = STATE(1886), - [sym_loop_macro] = STATE(1886), - [sym_path_lit] = STATE(2771), - [sym_package_lit] = STATE(2771), - [sym_include_reader_macro] = STATE(2771), - [sym_complex_num_lit] = STATE(2771), - [aux_sym_dis_expr_repeat1] = STATE(1444), - [aux_sym_list_lit_repeat1] = STATE(2151), - [sym__ws] = ACTIONS(1023), - [sym_comment] = ACTIONS(1023), - [anon_sym_POUND_] = ACTIONS(1025), - [anon_sym_POUND] = ACTIONS(1027), - [anon_sym_DOT] = ACTIONS(1312), - [aux_sym_num_lit_token1] = ACTIONS(522), - [anon_sym_COLON] = ACTIONS(524), - [anon_sym_COLON_COLON] = ACTIONS(526), - [anon_sym_DQUOTE] = ACTIONS(528), - [sym_nil_lit] = ACTIONS(1312), - [aux_sym_sym_lit_token1] = ACTIONS(534), - [anon_sym_CARET] = ACTIONS(25), - [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_POUND0A] = ACTIONS(540), - [anon_sym_POUND0a] = ACTIONS(540), - [anon_sym_POUND_QMARK] = ACTIONS(542), - [anon_sym_POUND_QMARK_AT] = ACTIONS(544), - [anon_sym_POUND_SQUOTE] = ACTIONS(546), - [anon_sym_SQUOTE] = ACTIONS(548), - [anon_sym_BQUOTE] = ACTIONS(550), - [anon_sym_COMMA_AT] = ACTIONS(552), - [anon_sym_COMMA] = ACTIONS(554), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1312), - [anon_sym_cl] = ACTIONS(1314), - [anon_sym_EQ] = ACTIONS(1316), - [anon_sym_POUNDP] = ACTIONS(558), - [anon_sym_POUNDp] = ACTIONS(558), - [sym_self_referential_reader_macro] = ACTIONS(1318), - [anon_sym_POUND_PLUS] = ACTIONS(562), - [anon_sym_POUND_DASH] = ACTIONS(562), - [anon_sym_POUNDC] = ACTIONS(564), - [anon_sym_POUNDc] = ACTIONS(564), - }, - [126] = { - [sym__gap] = STATE(118), - [sym_dis_expr] = STATE(118), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(118), - [sym__ws] = ACTIONS(1320), - [sym_comment] = ACTIONS(1320), + [124] = { + [sym__gap] = STATE(42), + [sym_dis_expr] = STATE(42), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(42), + [sym__ws] = ACTIONS(985), + [sym_comment] = ACTIONS(985), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -18831,7 +18691,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(1322), + [anon_sym_RPAREN] = ACTIONS(1306), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -18852,40 +18712,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [127] = { - [sym__gap] = STATE(37), - [sym_dis_expr] = STATE(37), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(37), - [sym__ws] = ACTIONS(975), - [sym_comment] = ACTIONS(975), + [125] = { + [sym__gap] = STATE(42), + [sym_dis_expr] = STATE(42), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(42), + [sym__ws] = ACTIONS(985), + [sym_comment] = ACTIONS(985), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -18898,7 +18758,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(1324), + [anon_sym_RPAREN] = ACTIONS(1308), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -18919,40 +18779,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, + [126] = { + [sym__gap] = STATE(101), + [sym_dis_expr] = STATE(101), + [sym__form] = STATE(2796), + [sym_num_lit] = STATE(2796), + [sym_kwd_lit] = STATE(2796), + [sym_str_lit] = STATE(2796), + [sym_char_lit] = STATE(2796), + [sym_sym_lit] = STATE(1848), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(2796), + [sym__bare_list_lit] = STATE(1924), + [sym_vec_lit] = STATE(2796), + [sym_set_lit] = STATE(2796), + [sym__bare_set_lit] = STATE(1925), + [sym_read_cond_lit] = STATE(2796), + [sym_splicing_read_cond_lit] = STATE(2796), + [sym_var_quoting_lit] = STATE(2796), + [sym_quoting_lit] = STATE(2796), + [sym_syn_quoting_lit] = STATE(2796), + [sym_unquote_splicing_lit] = STATE(2796), + [sym_unquoting_lit] = STATE(2796), + [sym_defun] = STATE(1924), + [sym_loop_macro] = STATE(1924), + [sym_path_lit] = STATE(2796), + [sym_package_lit] = STATE(2796), + [sym_include_reader_macro] = STATE(2796), + [sym_complex_num_lit] = STATE(2796), + [aux_sym_dis_expr_repeat1] = STATE(101), + [aux_sym_list_lit_repeat1] = STATE(2167), + [sym__ws] = ACTIONS(1310), + [sym_comment] = ACTIONS(1310), + [anon_sym_POUND_] = ACTIONS(973), + [anon_sym_POUND] = ACTIONS(975), + [anon_sym_DOT] = ACTIONS(1312), + [aux_sym_num_lit_token1] = ACTIONS(728), + [anon_sym_COLON] = ACTIONS(730), + [anon_sym_COLON_COLON] = ACTIONS(732), + [anon_sym_DQUOTE] = ACTIONS(734), + [sym_nil_lit] = ACTIONS(1312), + [aux_sym_sym_lit_token1] = ACTIONS(740), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(486), + [anon_sym_POUND0A] = ACTIONS(744), + [anon_sym_POUND0a] = ACTIONS(744), + [anon_sym_POUND_QMARK] = ACTIONS(746), + [anon_sym_POUND_QMARK_AT] = ACTIONS(748), + [anon_sym_POUND_SQUOTE] = ACTIONS(750), + [anon_sym_SQUOTE] = ACTIONS(752), + [anon_sym_BQUOTE] = ACTIONS(754), + [anon_sym_COMMA_AT] = ACTIONS(756), + [anon_sym_COMMA] = ACTIONS(758), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(1312), + [anon_sym_cl] = ACTIONS(1314), + [anon_sym_EQ] = ACTIONS(1316), + [anon_sym_POUNDP] = ACTIONS(762), + [anon_sym_POUNDp] = ACTIONS(762), + [sym_self_referential_reader_macro] = ACTIONS(1318), + [anon_sym_POUND_PLUS] = ACTIONS(766), + [anon_sym_POUND_DASH] = ACTIONS(766), + [anon_sym_POUNDC] = ACTIONS(768), + [anon_sym_POUNDc] = ACTIONS(768), + }, + [127] = { + [sym__gap] = STATE(1447), + [sym_dis_expr] = STATE(1447), + [sym__form] = STATE(2795), + [sym_num_lit] = STATE(2795), + [sym_kwd_lit] = STATE(2795), + [sym_str_lit] = STATE(2795), + [sym_char_lit] = STATE(2795), + [sym_sym_lit] = STATE(1848), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(2795), + [sym__bare_list_lit] = STATE(1924), + [sym_vec_lit] = STATE(2795), + [sym_set_lit] = STATE(2795), + [sym__bare_set_lit] = STATE(1925), + [sym_read_cond_lit] = STATE(2795), + [sym_splicing_read_cond_lit] = STATE(2795), + [sym_var_quoting_lit] = STATE(2795), + [sym_quoting_lit] = STATE(2795), + [sym_syn_quoting_lit] = STATE(2795), + [sym_unquote_splicing_lit] = STATE(2795), + [sym_unquoting_lit] = STATE(2795), + [sym_defun] = STATE(1924), + [sym_loop_macro] = STATE(1924), + [sym_path_lit] = STATE(2795), + [sym_package_lit] = STATE(2795), + [sym_include_reader_macro] = STATE(2795), + [sym_complex_num_lit] = STATE(2795), + [aux_sym_dis_expr_repeat1] = STATE(1447), + [aux_sym_list_lit_repeat1] = STATE(2167), + [sym__ws] = ACTIONS(971), + [sym_comment] = ACTIONS(971), + [anon_sym_POUND_] = ACTIONS(973), + [anon_sym_POUND] = ACTIONS(975), + [anon_sym_DOT] = ACTIONS(1320), + [aux_sym_num_lit_token1] = ACTIONS(728), + [anon_sym_COLON] = ACTIONS(730), + [anon_sym_COLON_COLON] = ACTIONS(732), + [anon_sym_DQUOTE] = ACTIONS(734), + [sym_nil_lit] = ACTIONS(1320), + [aux_sym_sym_lit_token1] = ACTIONS(740), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(486), + [anon_sym_POUND0A] = ACTIONS(744), + [anon_sym_POUND0a] = ACTIONS(744), + [anon_sym_POUND_QMARK] = ACTIONS(746), + [anon_sym_POUND_QMARK_AT] = ACTIONS(748), + [anon_sym_POUND_SQUOTE] = ACTIONS(750), + [anon_sym_SQUOTE] = ACTIONS(752), + [anon_sym_BQUOTE] = ACTIONS(754), + [anon_sym_COMMA_AT] = ACTIONS(756), + [anon_sym_COMMA] = ACTIONS(758), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(1320), + [anon_sym_cl] = ACTIONS(1322), + [anon_sym_EQ] = ACTIONS(1324), + [anon_sym_POUNDP] = ACTIONS(762), + [anon_sym_POUNDp] = ACTIONS(762), + [sym_self_referential_reader_macro] = ACTIONS(1326), + [anon_sym_POUND_PLUS] = ACTIONS(766), + [anon_sym_POUND_DASH] = ACTIONS(766), + [anon_sym_POUNDC] = ACTIONS(768), + [anon_sym_POUNDc] = ACTIONS(768), + }, [128] = { - [sym__gap] = STATE(37), - [sym_dis_expr] = STATE(37), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(37), - [sym__ws] = ACTIONS(975), - [sym_comment] = ACTIONS(975), + [sym__gap] = STATE(42), + [sym_dis_expr] = STATE(42), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(42), + [sym__ws] = ACTIONS(985), + [sym_comment] = ACTIONS(985), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -18965,7 +18959,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(1326), + [anon_sym_RBRACE] = ACTIONS(1328), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -18987,39 +18981,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [129] = { - [sym__gap] = STATE(37), - [sym_dis_expr] = STATE(37), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(37), - [sym__ws] = ACTIONS(975), - [sym_comment] = ACTIONS(975), + [sym__gap] = STATE(137), + [sym_dis_expr] = STATE(137), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(149), + [sym__ws] = ACTIONS(1330), + [sym_comment] = ACTIONS(1330), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -19032,7 +19026,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(1328), + [anon_sym_RPAREN] = ACTIONS(1332), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -19054,39 +19048,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [130] = { - [sym__gap] = STATE(106), - [sym_dis_expr] = STATE(106), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(45), - [sym__ws] = ACTIONS(1330), - [sym_comment] = ACTIONS(1330), + [sym__gap] = STATE(86), + [sym_dis_expr] = STATE(86), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(86), + [sym__ws] = ACTIONS(1334), + [sym_comment] = ACTIONS(1334), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -19099,7 +19093,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(1332), + [anon_sym_RPAREN] = ACTIONS(1336), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -19121,39 +19115,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [131] = { - [sym__gap] = STATE(121), - [sym_dis_expr] = STATE(121), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(121), - [sym__ws] = ACTIONS(1334), - [sym_comment] = ACTIONS(1334), + [sym__gap] = STATE(118), + [sym_dis_expr] = STATE(118), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(99), + [sym__ws] = ACTIONS(1338), + [sym_comment] = ACTIONS(1338), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -19166,7 +19160,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(1336), + [anon_sym_RPAREN] = ACTIONS(1336), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -19188,39 +19182,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [132] = { - [sym__gap] = STATE(37), - [sym_dis_expr] = STATE(37), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(37), - [sym__ws] = ACTIONS(975), - [sym_comment] = ACTIONS(975), + [sym__gap] = STATE(151), + [sym_dis_expr] = STATE(151), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(151), + [sym__ws] = ACTIONS(1340), + [sym_comment] = ACTIONS(1340), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -19233,7 +19227,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(1338), + [anon_sym_RPAREN] = ACTIONS(1332), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -19255,40 +19249,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [133] = { - [sym__gap] = STATE(227), - [sym_dis_expr] = STATE(227), - [sym__form] = STATE(816), - [sym_num_lit] = STATE(816), - [sym_kwd_lit] = STATE(816), - [sym_str_lit] = STATE(816), - [sym_char_lit] = STATE(816), - [sym_sym_lit] = STATE(822), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(816), - [sym__bare_list_lit] = STATE(823), - [sym_vec_lit] = STATE(816), - [sym_set_lit] = STATE(816), - [sym__bare_set_lit] = STATE(824), - [sym_read_cond_lit] = STATE(816), - [sym_splicing_read_cond_lit] = STATE(816), - [sym_var_quoting_lit] = STATE(816), - [sym_quoting_lit] = STATE(816), - [sym_syn_quoting_lit] = STATE(816), - [sym_unquote_splicing_lit] = STATE(816), - [sym_unquoting_lit] = STATE(816), - [sym_defun] = STATE(823), - [sym_loop_macro] = STATE(823), - [sym_path_lit] = STATE(816), - [sym_package_lit] = STATE(816), - [sym_include_reader_macro] = STATE(816), - [sym_complex_num_lit] = STATE(816), - [aux_sym_dis_expr_repeat1] = STATE(227), - [aux_sym_list_lit_repeat1] = STATE(2149), - [aux_sym_do_clause_repeat1] = STATE(3), - [sym__ws] = ACTIONS(1340), - [sym_comment] = ACTIONS(1340), + [sym__gap] = STATE(221), + [sym_dis_expr] = STATE(221), + [sym__form] = STATE(817), + [sym_num_lit] = STATE(817), + [sym_kwd_lit] = STATE(817), + [sym_str_lit] = STATE(817), + [sym_char_lit] = STATE(817), + [sym_sym_lit] = STATE(929), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(817), + [sym__bare_list_lit] = STATE(928), + [sym_vec_lit] = STATE(817), + [sym_set_lit] = STATE(817), + [sym__bare_set_lit] = STATE(927), + [sym_read_cond_lit] = STATE(817), + [sym_splicing_read_cond_lit] = STATE(817), + [sym_var_quoting_lit] = STATE(817), + [sym_quoting_lit] = STATE(817), + [sym_syn_quoting_lit] = STATE(817), + [sym_unquote_splicing_lit] = STATE(817), + [sym_unquoting_lit] = STATE(817), + [sym_defun] = STATE(928), + [sym_loop_macro] = STATE(928), + [sym_path_lit] = STATE(817), + [sym_package_lit] = STATE(817), + [sym_include_reader_macro] = STATE(817), + [sym_complex_num_lit] = STATE(817), + [aux_sym_dis_expr_repeat1] = STATE(221), + [aux_sym_list_lit_repeat1] = STATE(2169), + [aux_sym_do_clause_repeat1] = STATE(2), + [sym__ws] = ACTIONS(1342), + [sym_comment] = ACTIONS(1342), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(61), [anon_sym_DOT] = ACTIONS(63), @@ -19300,7 +19294,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sym_lit_token1] = ACTIONS(73), [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(658), + [anon_sym_LPAREN] = ACTIONS(830), [anon_sym_POUND0A] = ACTIONS(75), [anon_sym_POUND0a] = ACTIONS(75), [anon_sym_POUND_QMARK] = ACTIONS(77), @@ -19312,7 +19306,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA] = ACTIONS(89), [sym_block_comment] = ACTIONS(47), [sym_fancy_literal] = ACTIONS(63), - [anon_sym_cl] = ACTIONS(662), + [anon_sym_cl] = ACTIONS(834), [anon_sym_POUNDP] = ACTIONS(93), [anon_sym_POUNDp] = ACTIONS(93), [sym_self_referential_reader_macro] = ACTIONS(95), @@ -19322,39 +19316,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(99), }, [134] = { - [sym__gap] = STATE(123), - [sym_dis_expr] = STATE(123), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(123), - [sym__ws] = ACTIONS(1342), - [sym_comment] = ACTIONS(1342), + [sym__gap] = STATE(42), + [sym_dis_expr] = STATE(42), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(42), + [sym__ws] = ACTIONS(985), + [sym_comment] = ACTIONS(985), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -19389,39 +19383,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [135] = { - [sym__gap] = STATE(37), - [sym_dis_expr] = STATE(37), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(37), - [sym__ws] = ACTIONS(975), - [sym_comment] = ACTIONS(975), + [sym__gap] = STATE(42), + [sym_dis_expr] = STATE(42), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(42), + [sym__ws] = ACTIONS(985), + [sym_comment] = ACTIONS(985), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -19456,39 +19450,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [136] = { - [sym__gap] = STATE(37), - [sym_dis_expr] = STATE(37), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(37), - [sym__ws] = ACTIONS(975), - [sym_comment] = ACTIONS(975), + [sym__gap] = STATE(42), + [sym_dis_expr] = STATE(42), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(42), + [sym__ws] = ACTIONS(985), + [sym_comment] = ACTIONS(985), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -19501,7 +19495,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(1348), + [anon_sym_RBRACE] = ACTIONS(1348), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -19523,39 +19517,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [137] = { - [sym__gap] = STATE(37), - [sym_dis_expr] = STATE(37), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(37), - [sym__ws] = ACTIONS(975), - [sym_comment] = ACTIONS(975), + [sym__gap] = STATE(153), + [sym_dis_expr] = STATE(153), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(153), + [sym__ws] = ACTIONS(1350), + [sym_comment] = ACTIONS(1350), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -19568,7 +19562,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(1350), + [anon_sym_RPAREN] = ACTIONS(1352), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -19590,39 +19584,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [138] = { - [sym__gap] = STATE(135), - [sym_dis_expr] = STATE(135), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(135), - [sym__ws] = ACTIONS(1352), - [sym_comment] = ACTIONS(1352), + [sym__gap] = STATE(142), + [sym_dis_expr] = STATE(142), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(143), + [sym__ws] = ACTIONS(1354), + [sym_comment] = ACTIONS(1354), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -19635,7 +19629,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(1354), + [anon_sym_RPAREN] = ACTIONS(1356), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -19657,40 +19651,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [139] = { - [sym__gap] = STATE(227), - [sym_dis_expr] = STATE(227), - [sym__form] = STATE(816), - [sym_num_lit] = STATE(816), - [sym_kwd_lit] = STATE(816), - [sym_str_lit] = STATE(816), - [sym_char_lit] = STATE(816), - [sym_sym_lit] = STATE(822), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(816), - [sym__bare_list_lit] = STATE(823), - [sym_vec_lit] = STATE(816), - [sym_set_lit] = STATE(816), - [sym__bare_set_lit] = STATE(824), - [sym_read_cond_lit] = STATE(816), - [sym_splicing_read_cond_lit] = STATE(816), - [sym_var_quoting_lit] = STATE(816), - [sym_quoting_lit] = STATE(816), - [sym_syn_quoting_lit] = STATE(816), - [sym_unquote_splicing_lit] = STATE(816), - [sym_unquoting_lit] = STATE(816), - [sym_defun] = STATE(823), - [sym_loop_macro] = STATE(823), - [sym_path_lit] = STATE(816), - [sym_package_lit] = STATE(816), - [sym_include_reader_macro] = STATE(816), - [sym_complex_num_lit] = STATE(816), - [aux_sym_dis_expr_repeat1] = STATE(227), - [aux_sym_list_lit_repeat1] = STATE(2149), - [aux_sym_do_clause_repeat1] = STATE(2), - [sym__ws] = ACTIONS(1340), - [sym_comment] = ACTIONS(1340), + [sym__gap] = STATE(221), + [sym_dis_expr] = STATE(221), + [sym__form] = STATE(817), + [sym_num_lit] = STATE(817), + [sym_kwd_lit] = STATE(817), + [sym_str_lit] = STATE(817), + [sym_char_lit] = STATE(817), + [sym_sym_lit] = STATE(929), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(817), + [sym__bare_list_lit] = STATE(928), + [sym_vec_lit] = STATE(817), + [sym_set_lit] = STATE(817), + [sym__bare_set_lit] = STATE(927), + [sym_read_cond_lit] = STATE(817), + [sym_splicing_read_cond_lit] = STATE(817), + [sym_var_quoting_lit] = STATE(817), + [sym_quoting_lit] = STATE(817), + [sym_syn_quoting_lit] = STATE(817), + [sym_unquote_splicing_lit] = STATE(817), + [sym_unquoting_lit] = STATE(817), + [sym_defun] = STATE(928), + [sym_loop_macro] = STATE(928), + [sym_path_lit] = STATE(817), + [sym_package_lit] = STATE(817), + [sym_include_reader_macro] = STATE(817), + [sym_complex_num_lit] = STATE(817), + [aux_sym_dis_expr_repeat1] = STATE(221), + [aux_sym_list_lit_repeat1] = STATE(2169), + [aux_sym_do_clause_repeat1] = STATE(4), + [sym__ws] = ACTIONS(1342), + [sym_comment] = ACTIONS(1342), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(61), [anon_sym_DOT] = ACTIONS(63), @@ -19702,7 +19696,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sym_lit_token1] = ACTIONS(73), [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(658), + [anon_sym_LPAREN] = ACTIONS(830), [anon_sym_POUND0A] = ACTIONS(75), [anon_sym_POUND0a] = ACTIONS(75), [anon_sym_POUND_QMARK] = ACTIONS(77), @@ -19714,7 +19708,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA] = ACTIONS(89), [sym_block_comment] = ACTIONS(47), [sym_fancy_literal] = ACTIONS(63), - [anon_sym_cl] = ACTIONS(662), + [anon_sym_cl] = ACTIONS(834), [anon_sym_POUNDP] = ACTIONS(93), [anon_sym_POUNDp] = ACTIONS(93), [sym_self_referential_reader_macro] = ACTIONS(95), @@ -19724,39 +19718,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(99), }, [140] = { - [sym__gap] = STATE(161), - [sym_dis_expr] = STATE(161), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(161), - [sym__ws] = ACTIONS(1356), - [sym_comment] = ACTIONS(1356), + [sym__gap] = STATE(144), + [sym_dis_expr] = STATE(144), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(144), + [sym__ws] = ACTIONS(1358), + [sym_comment] = ACTIONS(1358), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -19769,7 +19763,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(1358), + [anon_sym_RPAREN] = ACTIONS(1356), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -19791,39 +19785,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [141] = { - [sym__gap] = STATE(148), - [sym_dis_expr] = STATE(148), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(151), - [sym__ws] = ACTIONS(1360), - [sym_comment] = ACTIONS(1360), + [sym__gap] = STATE(42), + [sym_dis_expr] = STATE(42), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(42), + [sym__ws] = ACTIONS(985), + [sym_comment] = ACTIONS(985), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -19836,7 +19830,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(1362), + [anon_sym_RPAREN] = ACTIONS(1360), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -19858,39 +19852,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [142] = { - [sym__gap] = STATE(37), - [sym_dis_expr] = STATE(37), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(37), - [sym__ws] = ACTIONS(975), - [sym_comment] = ACTIONS(975), + [sym__gap] = STATE(146), + [sym_dis_expr] = STATE(146), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(146), + [sym__ws] = ACTIONS(1362), + [sym_comment] = ACTIONS(1362), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -19925,39 +19919,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [143] = { - [sym__gap] = STATE(37), - [sym_dis_expr] = STATE(37), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(37), - [sym__ws] = ACTIONS(975), - [sym_comment] = ACTIONS(975), + [sym__gap] = STATE(42), + [sym_dis_expr] = STATE(42), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(42), + [sym__ws] = ACTIONS(985), + [sym_comment] = ACTIONS(985), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -19992,39 +19986,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [144] = { - [sym__gap] = STATE(162), - [sym_dis_expr] = STATE(162), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(162), - [sym__ws] = ACTIONS(1368), - [sym_comment] = ACTIONS(1368), + [sym__gap] = STATE(42), + [sym_dis_expr] = STATE(42), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(42), + [sym__ws] = ACTIONS(985), + [sym_comment] = ACTIONS(985), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -20037,7 +20031,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(1370), + [anon_sym_RPAREN] = ACTIONS(1368), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -20059,39 +20053,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [145] = { - [sym__gap] = STATE(37), - [sym_dis_expr] = STATE(37), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(37), - [sym__ws] = ACTIONS(975), - [sym_comment] = ACTIONS(975), + [sym__gap] = STATE(42), + [sym_dis_expr] = STATE(42), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(42), + [sym__ws] = ACTIONS(985), + [sym_comment] = ACTIONS(985), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -20104,7 +20098,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(1372), + [anon_sym_RPAREN] = ACTIONS(1370), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -20126,39 +20120,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [146] = { - [sym__gap] = STATE(134), - [sym_dis_expr] = STATE(134), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(132), - [sym__ws] = ACTIONS(1374), - [sym_comment] = ACTIONS(1374), + [sym__gap] = STATE(42), + [sym_dis_expr] = STATE(42), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(42), + [sym__ws] = ACTIONS(985), + [sym_comment] = ACTIONS(985), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -20171,7 +20165,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(1376), + [anon_sym_RPAREN] = ACTIONS(1372), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -20193,106 +20187,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [147] = { - [sym__gap] = STATE(125), - [sym_dis_expr] = STATE(125), - [sym__form] = STATE(2727), - [sym_num_lit] = STATE(2727), - [sym_kwd_lit] = STATE(2727), - [sym_str_lit] = STATE(2727), - [sym_char_lit] = STATE(2727), - [sym_sym_lit] = STATE(1825), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(2727), - [sym__bare_list_lit] = STATE(1886), - [sym_vec_lit] = STATE(2727), - [sym_set_lit] = STATE(2727), - [sym__bare_set_lit] = STATE(1887), - [sym_read_cond_lit] = STATE(2727), - [sym_splicing_read_cond_lit] = STATE(2727), - [sym_var_quoting_lit] = STATE(2727), - [sym_quoting_lit] = STATE(2727), - [sym_syn_quoting_lit] = STATE(2727), - [sym_unquote_splicing_lit] = STATE(2727), - [sym_unquoting_lit] = STATE(2727), - [sym_defun] = STATE(1886), - [sym_loop_macro] = STATE(1886), - [sym_path_lit] = STATE(2727), - [sym_package_lit] = STATE(2727), - [sym_include_reader_macro] = STATE(2727), - [sym_complex_num_lit] = STATE(2727), - [aux_sym_dis_expr_repeat1] = STATE(125), - [aux_sym_list_lit_repeat1] = STATE(2151), - [sym__ws] = ACTIONS(1378), - [sym_comment] = ACTIONS(1378), - [anon_sym_POUND_] = ACTIONS(1025), - [anon_sym_POUND] = ACTIONS(1027), - [anon_sym_DOT] = ACTIONS(1380), - [aux_sym_num_lit_token1] = ACTIONS(522), - [anon_sym_COLON] = ACTIONS(524), - [anon_sym_COLON_COLON] = ACTIONS(526), - [anon_sym_DQUOTE] = ACTIONS(528), - [sym_nil_lit] = ACTIONS(1380), - [aux_sym_sym_lit_token1] = ACTIONS(534), + [sym__gap] = STATE(42), + [sym_dis_expr] = STATE(42), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(42), + [sym__ws] = ACTIONS(985), + [sym_comment] = ACTIONS(985), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [aux_sym_num_lit_token1] = ACTIONS(15), + [anon_sym_COLON] = ACTIONS(17), + [anon_sym_COLON_COLON] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [sym_nil_lit] = ACTIONS(380), + [aux_sym_sym_lit_token1] = ACTIONS(23), [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_POUND0A] = ACTIONS(540), - [anon_sym_POUND0a] = ACTIONS(540), - [anon_sym_POUND_QMARK] = ACTIONS(542), - [anon_sym_POUND_QMARK_AT] = ACTIONS(544), - [anon_sym_POUND_SQUOTE] = ACTIONS(546), - [anon_sym_SQUOTE] = ACTIONS(548), - [anon_sym_BQUOTE] = ACTIONS(550), - [anon_sym_COMMA_AT] = ACTIONS(552), - [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_RPAREN] = ACTIONS(1374), + [anon_sym_POUND0A] = ACTIONS(31), + [anon_sym_POUND0a] = ACTIONS(31), + [anon_sym_POUND_QMARK] = ACTIONS(33), + [anon_sym_POUND_QMARK_AT] = ACTIONS(35), + [anon_sym_POUND_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE] = ACTIONS(39), + [anon_sym_BQUOTE] = ACTIONS(41), + [anon_sym_COMMA_AT] = ACTIONS(43), + [anon_sym_COMMA] = ACTIONS(45), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1380), - [anon_sym_cl] = ACTIONS(1382), - [anon_sym_EQ] = ACTIONS(1384), - [anon_sym_POUNDP] = ACTIONS(558), - [anon_sym_POUNDp] = ACTIONS(558), - [sym_self_referential_reader_macro] = ACTIONS(1386), - [anon_sym_POUND_PLUS] = ACTIONS(562), - [anon_sym_POUND_DASH] = ACTIONS(562), - [anon_sym_POUNDC] = ACTIONS(564), - [anon_sym_POUNDc] = ACTIONS(564), + [sym_fancy_literal] = ACTIONS(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), }, [148] = { - [sym__gap] = STATE(165), - [sym_dis_expr] = STATE(165), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(165), - [sym__ws] = ACTIONS(1388), - [sym_comment] = ACTIONS(1388), + [sym__gap] = STATE(123), + [sym_dis_expr] = STATE(123), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(123), + [sym__ws] = ACTIONS(1376), + [sym_comment] = ACTIONS(1376), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -20305,7 +20299,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(1390), + [anon_sym_RPAREN] = ACTIONS(1378), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -20327,39 +20321,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [149] = { - [sym__gap] = STATE(126), - [sym_dis_expr] = STATE(126), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(124), - [sym__ws] = ACTIONS(1392), - [sym_comment] = ACTIONS(1392), + [sym__gap] = STATE(42), + [sym_dis_expr] = STATE(42), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(42), + [sym__ws] = ACTIONS(985), + [sym_comment] = ACTIONS(985), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -20372,7 +20366,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(1344), + [anon_sym_RPAREN] = ACTIONS(1380), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -20394,39 +20388,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [150] = { - [sym__gap] = STATE(144), - [sym_dis_expr] = STATE(144), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(143), - [sym__ws] = ACTIONS(1394), - [sym_comment] = ACTIONS(1394), + [sym__gap] = STATE(127), + [sym_dis_expr] = STATE(127), + [sym__form] = STATE(2776), + [sym_num_lit] = STATE(2776), + [sym_kwd_lit] = STATE(2776), + [sym_str_lit] = STATE(2776), + [sym_char_lit] = STATE(2776), + [sym_sym_lit] = STATE(1848), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(2776), + [sym__bare_list_lit] = STATE(1924), + [sym_vec_lit] = STATE(2776), + [sym_set_lit] = STATE(2776), + [sym__bare_set_lit] = STATE(1925), + [sym_read_cond_lit] = STATE(2776), + [sym_splicing_read_cond_lit] = STATE(2776), + [sym_var_quoting_lit] = STATE(2776), + [sym_quoting_lit] = STATE(2776), + [sym_syn_quoting_lit] = STATE(2776), + [sym_unquote_splicing_lit] = STATE(2776), + [sym_unquoting_lit] = STATE(2776), + [sym_defun] = STATE(1924), + [sym_loop_macro] = STATE(1924), + [sym_path_lit] = STATE(2776), + [sym_package_lit] = STATE(2776), + [sym_include_reader_macro] = STATE(2776), + [sym_complex_num_lit] = STATE(2776), + [aux_sym_dis_expr_repeat1] = STATE(127), + [aux_sym_list_lit_repeat1] = STATE(2167), + [sym__ws] = ACTIONS(1382), + [sym_comment] = ACTIONS(1382), + [anon_sym_POUND_] = ACTIONS(973), + [anon_sym_POUND] = ACTIONS(975), + [anon_sym_DOT] = ACTIONS(1384), + [aux_sym_num_lit_token1] = ACTIONS(728), + [anon_sym_COLON] = ACTIONS(730), + [anon_sym_COLON_COLON] = ACTIONS(732), + [anon_sym_DQUOTE] = ACTIONS(734), + [sym_nil_lit] = ACTIONS(1384), + [aux_sym_sym_lit_token1] = ACTIONS(740), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(486), + [anon_sym_POUND0A] = ACTIONS(744), + [anon_sym_POUND0a] = ACTIONS(744), + [anon_sym_POUND_QMARK] = ACTIONS(746), + [anon_sym_POUND_QMARK_AT] = ACTIONS(748), + [anon_sym_POUND_SQUOTE] = ACTIONS(750), + [anon_sym_SQUOTE] = ACTIONS(752), + [anon_sym_BQUOTE] = ACTIONS(754), + [anon_sym_COMMA_AT] = ACTIONS(756), + [anon_sym_COMMA] = ACTIONS(758), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(1384), + [anon_sym_cl] = ACTIONS(1386), + [anon_sym_EQ] = ACTIONS(1388), + [anon_sym_POUNDP] = ACTIONS(762), + [anon_sym_POUNDp] = ACTIONS(762), + [sym_self_referential_reader_macro] = ACTIONS(1390), + [anon_sym_POUND_PLUS] = ACTIONS(766), + [anon_sym_POUND_DASH] = ACTIONS(766), + [anon_sym_POUNDC] = ACTIONS(768), + [anon_sym_POUNDc] = ACTIONS(768), + }, + [151] = { + [sym__gap] = STATE(42), + [sym_dis_expr] = STATE(42), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(42), + [sym__ws] = ACTIONS(985), + [sym_comment] = ACTIONS(985), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -20439,7 +20500,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(1390), + [anon_sym_RPAREN] = ACTIONS(1392), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -20460,40 +20521,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [151] = { - [sym__gap] = STATE(37), - [sym_dis_expr] = STATE(37), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(37), - [sym__ws] = ACTIONS(975), - [sym_comment] = ACTIONS(975), + [152] = { + [sym__gap] = STATE(148), + [sym_dis_expr] = STATE(148), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(147), + [sym__ws] = ACTIONS(1394), + [sym_comment] = ACTIONS(1394), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -20527,40 +20588,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [152] = { - [sym__gap] = STATE(163), - [sym_dis_expr] = STATE(163), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(51), - [sym__ws] = ACTIONS(1398), - [sym_comment] = ACTIONS(1398), + [153] = { + [sym__gap] = STATE(42), + [sym_dis_expr] = STATE(42), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(42), + [sym__ws] = ACTIONS(985), + [sym_comment] = ACTIONS(985), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -20573,74 +20634,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(1400), - [anon_sym_POUND0A] = ACTIONS(31), - [anon_sym_POUND0a] = ACTIONS(31), - [anon_sym_POUND_QMARK] = ACTIONS(33), - [anon_sym_POUND_QMARK_AT] = ACTIONS(35), - [anon_sym_POUND_SQUOTE] = ACTIONS(37), - [anon_sym_SQUOTE] = ACTIONS(39), - [anon_sym_BQUOTE] = ACTIONS(41), - [anon_sym_COMMA_AT] = ACTIONS(43), - [anon_sym_COMMA] = ACTIONS(45), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(380), - [anon_sym_cl] = ACTIONS(49), - [anon_sym_POUNDP] = ACTIONS(51), - [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(392), - [anon_sym_POUND_PLUS] = ACTIONS(55), - [anon_sym_POUND_DASH] = ACTIONS(55), - [anon_sym_POUNDC] = ACTIONS(57), - [anon_sym_POUNDc] = ACTIONS(57), - }, - [153] = { - [sym__gap] = STATE(136), - [sym_dis_expr] = STATE(136), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(136), - [sym__ws] = ACTIONS(1402), - [sym_comment] = ACTIONS(1402), - [anon_sym_POUND_] = ACTIONS(9), - [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), - [aux_sym_num_lit_token1] = ACTIONS(15), - [anon_sym_COLON] = ACTIONS(17), - [anon_sym_COLON_COLON] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(21), - [sym_nil_lit] = ACTIONS(380), - [aux_sym_sym_lit_token1] = ACTIONS(23), - [anon_sym_CARET] = ACTIONS(25), - [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(1404), + [anon_sym_RPAREN] = ACTIONS(1398), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -20662,39 +20656,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [154] = { - [sym__gap] = STATE(138), - [sym_dis_expr] = STATE(138), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(137), - [sym__ws] = ACTIONS(1406), - [sym_comment] = ACTIONS(1406), + [sym__gap] = STATE(159), + [sym_dis_expr] = STATE(159), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(159), + [sym__ws] = ACTIONS(1400), + [sym_comment] = ACTIONS(1400), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -20707,7 +20701,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(1404), + [anon_sym_RBRACE] = ACTIONS(1402), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -20729,39 +20723,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [155] = { - [sym__gap] = STATE(37), - [sym_dis_expr] = STATE(37), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(37), - [sym__ws] = ACTIONS(975), - [sym_comment] = ACTIONS(975), + [sym__gap] = STATE(130), + [sym_dis_expr] = STATE(130), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(125), + [sym__ws] = ACTIONS(1404), + [sym_comment] = ACTIONS(1404), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -20774,7 +20768,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(1408), + [anon_sym_RPAREN] = ACTIONS(1406), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -20796,39 +20790,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [156] = { - [sym__gap] = STATE(160), - [sym_dis_expr] = STATE(160), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(160), - [sym__ws] = ACTIONS(1410), - [sym_comment] = ACTIONS(1410), + [sym__gap] = STATE(145), + [sym_dis_expr] = STATE(145), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(145), + [sym__ws] = ACTIONS(1408), + [sym_comment] = ACTIONS(1408), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -20841,7 +20835,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(1400), + [anon_sym_RPAREN] = ACTIONS(1396), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -20863,39 +20857,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [157] = { - [sym__gap] = STATE(37), - [sym_dis_expr] = STATE(37), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(37), - [sym__ws] = ACTIONS(975), - [sym_comment] = ACTIONS(975), + [sym__gap] = STATE(42), + [sym_dis_expr] = STATE(42), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(42), + [sym__ws] = ACTIONS(985), + [sym_comment] = ACTIONS(985), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -20908,7 +20902,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(1412), + [anon_sym_RPAREN] = ACTIONS(1410), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -20930,39 +20924,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [158] = { - [sym__gap] = STATE(37), - [sym_dis_expr] = STATE(37), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(37), - [sym__ws] = ACTIONS(975), - [sym_comment] = ACTIONS(975), + [sym__gap] = STATE(163), + [sym_dis_expr] = STATE(163), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(164), + [sym__ws] = ACTIONS(1412), + [sym_comment] = ACTIONS(1412), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -20997,39 +20991,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [159] = { - [sym__gap] = STATE(37), - [sym_dis_expr] = STATE(37), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(37), - [sym__ws] = ACTIONS(975), - [sym_comment] = ACTIONS(975), + [sym__gap] = STATE(42), + [sym_dis_expr] = STATE(42), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(42), + [sym__ws] = ACTIONS(985), + [sym_comment] = ACTIONS(985), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -21042,7 +21036,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(1416), + [anon_sym_RBRACE] = ACTIONS(1416), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -21064,39 +21058,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [160] = { - [sym__gap] = STATE(37), - [sym_dis_expr] = STATE(37), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(37), - [sym__ws] = ACTIONS(975), - [sym_comment] = ACTIONS(975), + [sym__gap] = STATE(42), + [sym_dis_expr] = STATE(42), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(42), + [sym__ws] = ACTIONS(985), + [sym_comment] = ACTIONS(985), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -21131,39 +21125,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [161] = { - [sym__gap] = STATE(37), - [sym_dis_expr] = STATE(37), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(37), - [sym__ws] = ACTIONS(975), - [sym_comment] = ACTIONS(975), + [sym__gap] = STATE(42), + [sym_dis_expr] = STATE(42), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(42), + [sym__ws] = ACTIONS(985), + [sym_comment] = ACTIONS(985), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -21176,7 +21170,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(1420), + [anon_sym_RPAREN] = ACTIONS(1420), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -21198,39 +21192,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [162] = { - [sym__gap] = STATE(37), - [sym_dis_expr] = STATE(37), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(37), - [sym__ws] = ACTIONS(975), - [sym_comment] = ACTIONS(975), + [sym__gap] = STATE(165), + [sym_dis_expr] = STATE(165), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(81), + [sym__ws] = ACTIONS(1422), + [sym_comment] = ACTIONS(1422), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -21243,7 +21237,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(1424), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -21265,39 +21259,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [163] = { - [sym__gap] = STATE(120), - [sym_dis_expr] = STATE(120), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(120), - [sym__ws] = ACTIONS(1424), - [sym_comment] = ACTIONS(1424), + [sym__gap] = STATE(161), + [sym_dis_expr] = STATE(161), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(161), + [sym__ws] = ACTIONS(1426), + [sym_comment] = ACTIONS(1426), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -21310,7 +21304,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(1426), + [anon_sym_RPAREN] = ACTIONS(1424), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -21332,39 +21326,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [164] = { - [sym__gap] = STATE(153), - [sym_dis_expr] = STATE(153), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(145), - [sym__ws] = ACTIONS(1428), - [sym_comment] = ACTIONS(1428), + [sym__gap] = STATE(42), + [sym_dis_expr] = STATE(42), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(42), + [sym__ws] = ACTIONS(985), + [sym_comment] = ACTIONS(985), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -21377,7 +21371,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(1430), + [anon_sym_RPAREN] = ACTIONS(1428), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -21399,39 +21393,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [165] = { - [sym__gap] = STATE(37), - [sym_dis_expr] = STATE(37), - [sym__form] = STATE(1566), - [sym_num_lit] = STATE(1566), - [sym_kwd_lit] = STATE(1566), - [sym_str_lit] = STATE(1566), - [sym_char_lit] = STATE(1566), - [sym_sym_lit] = STATE(1506), - [sym__metadata_lit] = STATE(2239), - [sym_meta_lit] = STATE(2215), - [sym_old_meta_lit] = STATE(2217), - [sym_list_lit] = STATE(1566), - [sym__bare_list_lit] = STATE(1493), - [sym_vec_lit] = STATE(1566), - [sym_set_lit] = STATE(1566), - [sym__bare_set_lit] = STATE(1511), - [sym_read_cond_lit] = STATE(1566), - [sym_splicing_read_cond_lit] = STATE(1566), - [sym_var_quoting_lit] = STATE(1566), - [sym_quoting_lit] = STATE(1566), - [sym_syn_quoting_lit] = STATE(1566), - [sym_unquote_splicing_lit] = STATE(1566), - [sym_unquoting_lit] = STATE(1566), - [sym_defun] = STATE(1493), - [sym_loop_macro] = STATE(1493), - [sym_path_lit] = STATE(1566), - [sym_package_lit] = STATE(1566), - [sym_include_reader_macro] = STATE(1566), - [sym_complex_num_lit] = STATE(1566), - [aux_sym_list_lit_repeat1] = STATE(2137), - [aux_sym__bare_list_lit_repeat1] = STATE(37), - [sym__ws] = ACTIONS(975), - [sym_comment] = ACTIONS(975), + [sym__gap] = STATE(134), + [sym_dis_expr] = STATE(134), + [sym__form] = STATE(1571), + [sym_num_lit] = STATE(1571), + [sym_kwd_lit] = STATE(1571), + [sym_str_lit] = STATE(1571), + [sym_char_lit] = STATE(1571), + [sym_sym_lit] = STATE(1450), + [sym__metadata_lit] = STATE(2258), + [sym_meta_lit] = STATE(2234), + [sym_old_meta_lit] = STATE(2221), + [sym_list_lit] = STATE(1571), + [sym__bare_list_lit] = STATE(1451), + [sym_vec_lit] = STATE(1571), + [sym_set_lit] = STATE(1571), + [sym__bare_set_lit] = STATE(1452), + [sym_read_cond_lit] = STATE(1571), + [sym_splicing_read_cond_lit] = STATE(1571), + [sym_var_quoting_lit] = STATE(1571), + [sym_quoting_lit] = STATE(1571), + [sym_syn_quoting_lit] = STATE(1571), + [sym_unquote_splicing_lit] = STATE(1571), + [sym_unquoting_lit] = STATE(1571), + [sym_defun] = STATE(1451), + [sym_loop_macro] = STATE(1451), + [sym_path_lit] = STATE(1571), + [sym_package_lit] = STATE(1571), + [sym_include_reader_macro] = STATE(1571), + [sym_complex_num_lit] = STATE(1571), + [aux_sym_list_lit_repeat1] = STATE(2178), + [aux_sym__bare_list_lit_repeat1] = STATE(134), + [sym__ws] = ACTIONS(1430), + [sym_comment] = ACTIONS(1430), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(380), @@ -21477,62 +21471,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(556), 1, + aux_sym_num_lit_token1, + ACTIONS(558), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(560), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(562), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(568), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(570), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(576), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(578), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, - anon_sym_cl, - ACTIONS(783), 1, - aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(580), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(582), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(584), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(586), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(588), 1, anon_sym_COMMA, + ACTIONS(590), 1, + anon_sym_cl, ACTIONS(1436), 1, anon_sym_POUND, ACTIONS(1440), 1, sym_self_referential_reader_macro, - STATE(1825), 1, - sym_sym_lit, - STATE(1887), 1, + STATE(1386), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(1388), 1, + sym_sym_lit, + STATE(2172), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(564), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(574), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(592), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(596), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, + ACTIONS(598), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, ACTIONS(1434), 2, sym__ws, sym_comment, @@ -21540,15 +21534,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(387), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1387), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2054), 19, + STATE(1371), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -21577,78 +21571,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(664), 1, + aux_sym_num_lit_token1, + ACTIONS(666), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(668), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(670), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(676), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(678), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(684), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(686), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, - anon_sym_cl, - ACTIONS(783), 1, - aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(688), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(690), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(692), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(694), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(696), 1, anon_sym_COMMA, - ACTIONS(1436), 1, - anon_sym_POUND, + ACTIONS(698), 1, + anon_sym_cl, ACTIONS(1444), 1, + anon_sym_POUND, + ACTIONS(1448), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1167), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1175), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2160), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(564), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(682), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(700), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(704), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(706), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1442), 2, sym__ws, sym_comment, - ACTIONS(1442), 3, + ACTIONS(1446), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(508), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1174), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2015), 19, + STATE(1205), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -21677,78 +21671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(606), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(608), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(610), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(612), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(618), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, - anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(951), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(955), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(957), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(959), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(961), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(963), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(965), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(967), 1, + anon_sym_cl, + ACTIONS(1452), 1, anon_sym_POUND, - ACTIONS(1450), 1, + ACTIONS(1456), 1, sym_self_referential_reader_macro, - STATE(1825), 1, - sym_sym_lit, - STATE(1887), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2149), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2244), 1, + sym_sym_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(953), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(969), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1446), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1448), 3, + ACTIONS(1454), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(235), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1800), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2066), 19, + STATE(1764), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -21777,78 +21771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(61), 1, - anon_sym_POUND, - ACTIONS(65), 1, - aux_sym_num_lit_token1, - ACTIONS(67), 1, + ACTIONS(606), 1, anon_sym_COLON, - ACTIONS(69), 1, + ACTIONS(608), 1, anon_sym_COLON_COLON, - ACTIONS(71), 1, + ACTIONS(610), 1, anon_sym_DQUOTE, - ACTIONS(73), 1, + ACTIONS(612), 1, aux_sym_sym_lit_token1, - ACTIONS(77), 1, + ACTIONS(614), 1, + anon_sym_LPAREN, + ACTIONS(618), 1, anon_sym_POUND_QMARK, - ACTIONS(79), 1, + ACTIONS(951), 1, + aux_sym_num_lit_token1, + ACTIONS(955), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(81), 1, + ACTIONS(957), 1, anon_sym_POUND_SQUOTE, - ACTIONS(83), 1, + ACTIONS(959), 1, anon_sym_SQUOTE, - ACTIONS(85), 1, + ACTIONS(961), 1, anon_sym_BQUOTE, - ACTIONS(87), 1, + ACTIONS(963), 1, anon_sym_COMMA_AT, - ACTIONS(89), 1, + ACTIONS(965), 1, anon_sym_COMMA, - ACTIONS(658), 1, - anon_sym_LPAREN, - ACTIONS(662), 1, + ACTIONS(967), 1, anon_sym_cl, - ACTIONS(1456), 1, + ACTIONS(1452), 1, + anon_sym_POUND, + ACTIONS(1462), 1, sym_self_referential_reader_macro, - STATE(822), 1, - sym_sym_lit, - STATE(824), 1, + STATE(1801), 1, sym__bare_set_lit, STATE(2149), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2244), 1, + sym_sym_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(75), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(93), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(97), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(99), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1452), 2, + ACTIONS(953), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(969), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1458), 2, sym__ws, sym_comment, - ACTIONS(1454), 3, + ACTIONS(1460), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(579), 3, + STATE(193), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(823), 3, + STATE(1800), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(869), 19, + STATE(1759), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -21877,78 +21871,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(606), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(608), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(610), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(612), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(618), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, - anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(951), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(955), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(957), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(959), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(961), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(963), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(965), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(967), 1, + anon_sym_cl, + ACTIONS(1452), 1, anon_sym_POUND, - ACTIONS(1462), 1, + ACTIONS(1466), 1, sym_self_referential_reader_macro, - STATE(1825), 1, - sym_sym_lit, - STATE(1887), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2149), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2244), 1, + sym_sym_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(953), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(969), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1458), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1460), 3, + ACTIONS(1464), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(237), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1800), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1848), 19, + STATE(1749), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -21977,78 +21971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(803), 1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(805), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(807), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(811), 1, + ACTIONS(506), 1, + anon_sym_cl, + ACTIONS(604), 1, + aux_sym_num_lit_token1, + ACTIONS(640), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(642), 1, anon_sym_POUND_QMARK, - ACTIONS(837), 1, - aux_sym_num_lit_token1, - ACTIONS(847), 1, + ACTIONS(644), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(849), 1, + ACTIONS(646), 1, anon_sym_POUND_SQUOTE, - ACTIONS(851), 1, + ACTIONS(648), 1, anon_sym_SQUOTE, - ACTIONS(853), 1, + ACTIONS(650), 1, anon_sym_BQUOTE, - ACTIONS(855), 1, + ACTIONS(652), 1, anon_sym_COMMA_AT, - ACTIONS(857), 1, + ACTIONS(654), 1, anon_sym_COMMA, - ACTIONS(859), 1, - anon_sym_cl, - ACTIONS(1466), 1, - anon_sym_POUND, ACTIONS(1470), 1, + anon_sym_POUND, + ACTIONS(1474), 1, sym_self_referential_reader_macro, - STATE(1794), 1, - sym__bare_set_lit, - STATE(2152), 1, + STATE(2142), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2223), 1, - sym_sym_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(312), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2454), 1, + sym_sym_lit, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(318), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(845), 2, + ACTIONS(616), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(863), 2, + ACTIONS(656), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1464), 2, + ACTIONS(1468), 2, sym__ws, sym_comment, - ACTIONS(1468), 3, + ACTIONS(1472), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(174), 3, + STATE(218), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1816), 19, + STATE(2262), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -22071,84 +22065,84 @@ static const uint16_t ts_small_parse_table[] = { [810] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(61), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(65), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(67), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(69), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(71), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(73), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(77), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(79), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(81), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(83), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(85), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(87), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(89), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(658), 1, - anon_sym_LPAREN, - ACTIONS(662), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1476), 1, + ACTIONS(1478), 1, sym_self_referential_reader_macro, - STATE(822), 1, + STATE(1450), 1, sym_sym_lit, - STATE(824), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2149), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(75), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(93), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(97), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(99), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1472), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1474), 3, + ACTIONS(1476), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(563), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(823), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(867), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1505), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -22171,84 +22165,84 @@ static const uint16_t ts_small_parse_table[] = { [945] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(803), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(805), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(807), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(811), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(837), 1, - aux_sym_num_lit_token1, - ACTIONS(847), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(849), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(851), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(853), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(855), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(857), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(859), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1466), 1, - anon_sym_POUND, - ACTIONS(1480), 1, + ACTIONS(1484), 1, sym_self_referential_reader_macro, - STATE(1794), 1, + STATE(1450), 1, + sym_sym_lit, + STATE(1452), 1, sym__bare_set_lit, - STATE(2152), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2223), 1, - sym_sym_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(312), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(318), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(845), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(863), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1480), 2, sym__ws, sym_comment, - ACTIONS(1478), 3, + ACTIONS(1482), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(251), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1820), 19, + STATE(1506), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -22277,78 +22271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(803), 1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(805), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(807), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(811), 1, + ACTIONS(506), 1, + anon_sym_cl, + ACTIONS(604), 1, + aux_sym_num_lit_token1, + ACTIONS(640), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(642), 1, anon_sym_POUND_QMARK, - ACTIONS(837), 1, - aux_sym_num_lit_token1, - ACTIONS(847), 1, + ACTIONS(644), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(849), 1, + ACTIONS(646), 1, anon_sym_POUND_SQUOTE, - ACTIONS(851), 1, + ACTIONS(648), 1, anon_sym_SQUOTE, - ACTIONS(853), 1, + ACTIONS(650), 1, anon_sym_BQUOTE, - ACTIONS(855), 1, + ACTIONS(652), 1, anon_sym_COMMA_AT, - ACTIONS(857), 1, + ACTIONS(654), 1, anon_sym_COMMA, - ACTIONS(859), 1, - anon_sym_cl, - ACTIONS(1466), 1, + ACTIONS(1470), 1, anon_sym_POUND, - ACTIONS(1484), 1, + ACTIONS(1488), 1, sym_self_referential_reader_macro, - STATE(1794), 1, - sym__bare_set_lit, - STATE(2152), 1, + STATE(2142), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2223), 1, - sym_sym_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(312), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2454), 1, + sym_sym_lit, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(318), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(845), 2, + ACTIONS(616), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(863), 2, + ACTIONS(656), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1482), 3, + ACTIONS(1486), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1804), 19, + STATE(2263), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -22377,78 +22371,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(61), 1, - anon_sym_POUND, - ACTIONS(65), 1, - aux_sym_num_lit_token1, - ACTIONS(67), 1, + ACTIONS(606), 1, anon_sym_COLON, - ACTIONS(69), 1, + ACTIONS(608), 1, anon_sym_COLON_COLON, - ACTIONS(71), 1, + ACTIONS(610), 1, anon_sym_DQUOTE, - ACTIONS(73), 1, + ACTIONS(612), 1, aux_sym_sym_lit_token1, - ACTIONS(77), 1, + ACTIONS(614), 1, + anon_sym_LPAREN, + ACTIONS(618), 1, anon_sym_POUND_QMARK, - ACTIONS(79), 1, + ACTIONS(951), 1, + aux_sym_num_lit_token1, + ACTIONS(955), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(81), 1, + ACTIONS(957), 1, anon_sym_POUND_SQUOTE, - ACTIONS(83), 1, + ACTIONS(959), 1, anon_sym_SQUOTE, - ACTIONS(85), 1, + ACTIONS(961), 1, anon_sym_BQUOTE, - ACTIONS(87), 1, + ACTIONS(963), 1, anon_sym_COMMA_AT, - ACTIONS(89), 1, + ACTIONS(965), 1, anon_sym_COMMA, - ACTIONS(658), 1, - anon_sym_LPAREN, - ACTIONS(662), 1, + ACTIONS(967), 1, anon_sym_cl, - ACTIONS(1490), 1, + ACTIONS(1452), 1, + anon_sym_POUND, + ACTIONS(1492), 1, sym_self_referential_reader_macro, - STATE(822), 1, - sym_sym_lit, - STATE(824), 1, + STATE(1801), 1, sym__bare_set_lit, STATE(2149), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2244), 1, + sym_sym_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(75), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(93), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(97), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(99), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1486), 2, + ACTIONS(953), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(969), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1488), 3, + ACTIONS(1490), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(318), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(823), 3, + STATE(1800), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(864), 19, + STATE(1743), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -22477,78 +22471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(586), 1, - aux_sym_num_lit_token1, - ACTIONS(588), 1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(590), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(592), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(598), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(600), 1, + ACTIONS(506), 1, + anon_sym_cl, + ACTIONS(604), 1, + aux_sym_num_lit_token1, + ACTIONS(640), 1, anon_sym_LPAREN, - ACTIONS(606), 1, + ACTIONS(642), 1, anon_sym_POUND_QMARK, - ACTIONS(608), 1, + ACTIONS(644), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(610), 1, + ACTIONS(646), 1, anon_sym_POUND_SQUOTE, - ACTIONS(612), 1, + ACTIONS(648), 1, anon_sym_SQUOTE, - ACTIONS(614), 1, + ACTIONS(650), 1, anon_sym_BQUOTE, - ACTIONS(616), 1, + ACTIONS(652), 1, anon_sym_COMMA_AT, - ACTIONS(618), 1, + ACTIONS(654), 1, anon_sym_COMMA, - ACTIONS(620), 1, - anon_sym_cl, - ACTIONS(1492), 1, + ACTIONS(1470), 1, anon_sym_POUND, - ACTIONS(1496), 1, + ACTIONS(1498), 1, sym_self_referential_reader_macro, - STATE(2125), 1, + STATE(2142), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, + STATE(2337), 1, sym__bare_set_lit, - STATE(2428), 1, + STATE(2454), 1, sym_sym_lit, - ACTIONS(604), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(622), 2, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(626), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(628), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(616), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(656), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1494), 2, sym__ws, sym_comment, - ACTIONS(1494), 3, + ACTIONS(1496), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(208), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2113), 19, + STATE(2264), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -22577,78 +22571,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(803), 1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(805), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(807), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(811), 1, + ACTIONS(506), 1, + anon_sym_cl, + ACTIONS(604), 1, + aux_sym_num_lit_token1, + ACTIONS(640), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(642), 1, anon_sym_POUND_QMARK, - ACTIONS(837), 1, - aux_sym_num_lit_token1, - ACTIONS(847), 1, + ACTIONS(644), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(849), 1, + ACTIONS(646), 1, anon_sym_POUND_SQUOTE, - ACTIONS(851), 1, + ACTIONS(648), 1, anon_sym_SQUOTE, - ACTIONS(853), 1, + ACTIONS(650), 1, anon_sym_BQUOTE, - ACTIONS(855), 1, + ACTIONS(652), 1, anon_sym_COMMA_AT, - ACTIONS(857), 1, + ACTIONS(654), 1, anon_sym_COMMA, - ACTIONS(859), 1, - anon_sym_cl, - ACTIONS(1466), 1, + ACTIONS(1470), 1, anon_sym_POUND, ACTIONS(1502), 1, sym_self_referential_reader_macro, - STATE(1794), 1, - sym__bare_set_lit, - STATE(2152), 1, + STATE(2142), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2223), 1, - sym_sym_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(312), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2454), 1, + sym_sym_lit, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(318), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(845), 2, + ACTIONS(616), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(863), 2, + ACTIONS(656), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1498), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, ACTIONS(1500), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(781), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1821), 19, + STATE(2265), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -22671,84 +22665,84 @@ static const uint16_t ts_small_parse_table[] = { [1620] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(803), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(805), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(807), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(811), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(837), 1, - aux_sym_num_lit_token1, - ACTIONS(847), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(849), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(851), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(853), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(855), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(857), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(859), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1466), 1, - anon_sym_POUND, ACTIONS(1506), 1, sym_self_referential_reader_macro, - STATE(1794), 1, + STATE(1450), 1, + sym_sym_lit, + STATE(1452), 1, sym__bare_set_lit, - STATE(2152), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2223), 1, - sym_sym_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(312), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(318), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(845), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(863), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1450), 2, sym__ws, sym_comment, ACTIONS(1504), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1822), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(761), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -22777,49 +22771,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(803), 1, + ACTIONS(606), 1, anon_sym_COLON, - ACTIONS(805), 1, + ACTIONS(608), 1, anon_sym_COLON_COLON, - ACTIONS(807), 1, + ACTIONS(610), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(612), 1, aux_sym_sym_lit_token1, - ACTIONS(811), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(618), 1, anon_sym_POUND_QMARK, - ACTIONS(837), 1, + ACTIONS(951), 1, aux_sym_num_lit_token1, - ACTIONS(847), 1, + ACTIONS(955), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(849), 1, + ACTIONS(957), 1, anon_sym_POUND_SQUOTE, - ACTIONS(851), 1, + ACTIONS(959), 1, anon_sym_SQUOTE, - ACTIONS(853), 1, + ACTIONS(961), 1, anon_sym_BQUOTE, - ACTIONS(855), 1, + ACTIONS(963), 1, anon_sym_COMMA_AT, - ACTIONS(857), 1, + ACTIONS(965), 1, anon_sym_COMMA, - ACTIONS(859), 1, + ACTIONS(967), 1, anon_sym_cl, - ACTIONS(1466), 1, + ACTIONS(1452), 1, anon_sym_POUND, ACTIONS(1510), 1, sym_self_referential_reader_macro, - STATE(1794), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2152), 1, + STATE(2149), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2223), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2244), 1, sym_sym_lit, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, ACTIONS(312), 2, anon_sym_POUNDP, @@ -22827,28 +22821,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(845), 2, + ACTIONS(953), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(863), 2, + ACTIONS(969), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, ACTIONS(1508), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1800), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1812), 19, + STATE(1742), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -22871,84 +22865,84 @@ static const uint16_t ts_small_parse_table[] = { [1890] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(524), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, - anon_sym_cl, - ACTIONS(783), 1, - aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(1436), 1, - anon_sym_POUND, - ACTIONS(1516), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(1514), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(564), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1512), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1514), 3, + ACTIONS(1512), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(201), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1904), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1509), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -22977,78 +22971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(606), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(608), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(610), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(612), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(618), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, - anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(951), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(955), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(957), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(959), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(961), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(963), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(965), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(967), 1, + anon_sym_cl, + ACTIONS(1452), 1, anon_sym_POUND, - ACTIONS(1522), 1, + ACTIONS(1520), 1, sym_self_referential_reader_macro, - STATE(1825), 1, - sym_sym_lit, - STATE(1887), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2149), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2244), 1, + sym_sym_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(953), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(969), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1518), 2, + ACTIONS(1516), 2, sym__ws, sym_comment, - ACTIONS(1520), 3, + ACTIONS(1518), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(207), 3, + STATE(194), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1800), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1905), 19, + STATE(1741), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -23071,84 +23065,84 @@ static const uint16_t ts_small_parse_table[] = { [2160] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(524), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, - anon_sym_cl, - ACTIONS(783), 1, - aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(1436), 1, - anon_sym_POUND, - ACTIONS(1528), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(1524), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(564), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1524), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1526), 3, + ACTIONS(1522), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(208), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1906), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1510), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -23177,78 +23171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(606), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(608), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(610), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(612), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(618), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, - anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(951), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(955), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(957), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(959), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(961), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(963), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(965), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(967), 1, + anon_sym_cl, + ACTIONS(1452), 1, anon_sym_POUND, - ACTIONS(1534), 1, + ACTIONS(1530), 1, sym_self_referential_reader_macro, - STATE(1825), 1, - sym_sym_lit, - STATE(1887), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2149), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2244), 1, + sym_sym_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(953), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(969), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1530), 2, + ACTIONS(1526), 2, sym__ws, sym_comment, - ACTIONS(1532), 3, + ACTIONS(1528), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(210), 3, + STATE(203), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1800), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1907), 19, + STATE(1739), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -23271,84 +23265,84 @@ static const uint16_t ts_small_parse_table[] = { [2430] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(524), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, - anon_sym_cl, - ACTIONS(783), 1, - aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(1436), 1, - anon_sym_POUND, - ACTIONS(1540), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(1534), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(564), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1536), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1538), 3, + ACTIONS(1532), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(212), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1908), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1517), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -23371,84 +23365,84 @@ static const uint16_t ts_small_parse_table[] = { [2565] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(803), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(805), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(807), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(811), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(837), 1, - aux_sym_num_lit_token1, - ACTIONS(847), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(849), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(851), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(853), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(855), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(857), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(859), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1466), 1, - anon_sym_POUND, - ACTIONS(1546), 1, + ACTIONS(1540), 1, sym_self_referential_reader_macro, - STATE(1794), 1, + STATE(1450), 1, + sym_sym_lit, + STATE(1452), 1, sym__bare_set_lit, - STATE(2152), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2223), 1, - sym_sym_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(312), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(318), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(845), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(863), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1542), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1536), 2, sym__ws, sym_comment, - ACTIONS(1544), 3, + ACTIONS(1538), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(173), 3, + STATE(262), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1796), 19, + STATE(1512), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -23471,84 +23465,84 @@ static const uint16_t ts_small_parse_table[] = { [2700] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(803), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(805), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(807), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(811), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(837), 1, - aux_sym_num_lit_token1, - ACTIONS(847), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(849), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(851), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(853), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(855), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(857), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(859), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1466), 1, - anon_sym_POUND, - ACTIONS(1552), 1, + ACTIONS(1544), 1, sym_self_referential_reader_macro, - STATE(1794), 1, + STATE(1450), 1, + sym_sym_lit, + STATE(1452), 1, sym__bare_set_lit, - STATE(2152), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2223), 1, - sym_sym_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(312), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(318), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(845), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(863), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1548), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1550), 3, + ACTIONS(1542), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(178), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1774), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(263), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -23571,84 +23565,84 @@ static const uint16_t ts_small_parse_table[] = { [2835] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(803), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(805), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(807), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(811), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(837), 1, - aux_sym_num_lit_token1, - ACTIONS(847), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(849), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(851), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(853), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(855), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(857), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(859), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1466), 1, - anon_sym_POUND, - ACTIONS(1556), 1, + ACTIONS(1550), 1, sym_self_referential_reader_macro, - STATE(1794), 1, + STATE(1450), 1, + sym_sym_lit, + STATE(1452), 1, sym__bare_set_lit, - STATE(2152), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2223), 1, - sym_sym_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(312), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(318), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(845), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(863), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1546), 2, sym__ws, sym_comment, - ACTIONS(1554), 3, + ACTIONS(1548), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(265), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1759), 19, + STATE(1513), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -23671,84 +23665,84 @@ static const uint16_t ts_small_parse_table[] = { [2970] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(803), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(805), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(807), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(811), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(837), 1, - aux_sym_num_lit_token1, - ACTIONS(847), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(849), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(851), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(853), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(855), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(857), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(859), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1466), 1, - anon_sym_POUND, - ACTIONS(1560), 1, + ACTIONS(1554), 1, sym_self_referential_reader_macro, - STATE(1794), 1, + STATE(1450), 1, + sym_sym_lit, + STATE(1452), 1, sym__bare_set_lit, - STATE(2152), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2223), 1, - sym_sym_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(312), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(318), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(845), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(863), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1558), 3, + ACTIONS(1552), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1758), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(266), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -23807,19 +23801,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1564), 1, + ACTIONS(1558), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -23833,22 +23827,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1562), 3, + ACTIONS(1556), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1491), 19, + STATE(752), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -23871,84 +23865,84 @@ static const uint16_t ts_small_parse_table[] = { [3240] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(776), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(778), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(780), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(782), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(788), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(790), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(796), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(798), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(800), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(802), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(804), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(806), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(808), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(810), 1, anon_sym_cl, - ACTIONS(1570), 1, + ACTIONS(1562), 1, + anon_sym_POUND, + ACTIONS(1566), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1745), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1747), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2171), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(794), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(812), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(816), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(818), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1566), 2, + ACTIONS(1560), 2, sym__ws, sym_comment, - ACTIONS(1568), 3, + ACTIONS(1564), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(250), 3, + STATE(322), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(1746), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1486), 19, + STATE(1748), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -23977,49 +23971,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(803), 1, + ACTIONS(606), 1, anon_sym_COLON, - ACTIONS(805), 1, + ACTIONS(608), 1, anon_sym_COLON_COLON, - ACTIONS(807), 1, + ACTIONS(610), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(612), 1, aux_sym_sym_lit_token1, - ACTIONS(811), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(618), 1, anon_sym_POUND_QMARK, - ACTIONS(837), 1, + ACTIONS(951), 1, aux_sym_num_lit_token1, - ACTIONS(847), 1, + ACTIONS(955), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(849), 1, + ACTIONS(957), 1, anon_sym_POUND_SQUOTE, - ACTIONS(851), 1, + ACTIONS(959), 1, anon_sym_SQUOTE, - ACTIONS(853), 1, + ACTIONS(961), 1, anon_sym_BQUOTE, - ACTIONS(855), 1, + ACTIONS(963), 1, anon_sym_COMMA_AT, - ACTIONS(857), 1, + ACTIONS(965), 1, anon_sym_COMMA, - ACTIONS(859), 1, + ACTIONS(967), 1, anon_sym_cl, - ACTIONS(1466), 1, + ACTIONS(1452), 1, anon_sym_POUND, - ACTIONS(1574), 1, + ACTIONS(1572), 1, sym_self_referential_reader_macro, - STATE(1794), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2152), 1, + STATE(2149), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2223), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2244), 1, sym_sym_lit, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, ACTIONS(312), 2, anon_sym_POUNDP, @@ -24027,28 +24021,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(845), 2, + ACTIONS(953), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(863), 2, + ACTIONS(969), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(1568), 2, sym__ws, sym_comment, - ACTIONS(1572), 3, + ACTIONS(1570), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(179), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1800), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1757), 19, + STATE(1787), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -24071,84 +24065,84 @@ static const uint16_t ts_small_parse_table[] = { [3510] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, - aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(606), 1, + anon_sym_COLON, + ACTIONS(608), 1, + anon_sym_COLON_COLON, + ACTIONS(610), 1, + anon_sym_DQUOTE, + ACTIONS(612), 1, + aux_sym_sym_lit_token1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(618), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(951), 1, + aux_sym_num_lit_token1, + ACTIONS(955), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(957), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(959), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(961), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(963), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(965), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(967), 1, anon_sym_cl, - ACTIONS(1580), 1, + ACTIONS(1452), 1, + anon_sym_POUND, + ACTIONS(1578), 1, sym_self_referential_reader_macro, - STATE(1506), 1, - sym_sym_lit, - STATE(1511), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2149), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2244), 1, + sym_sym_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1576), 2, + ACTIONS(953), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(969), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1574), 2, sym__ws, sym_comment, - ACTIONS(1578), 3, + ACTIONS(1576), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(293), 3, + STATE(175), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(1800), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(646), 19, + STATE(1788), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -24171,84 +24165,84 @@ static const uint16_t ts_small_parse_table[] = { [3645] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, - aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(606), 1, + anon_sym_COLON, + ACTIONS(608), 1, + anon_sym_COLON_COLON, + ACTIONS(610), 1, + anon_sym_DQUOTE, + ACTIONS(612), 1, + aux_sym_sym_lit_token1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(618), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(951), 1, + aux_sym_num_lit_token1, + ACTIONS(955), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(957), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(959), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(961), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(963), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(965), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(967), 1, anon_sym_cl, - ACTIONS(1586), 1, + ACTIONS(1452), 1, + anon_sym_POUND, + ACTIONS(1582), 1, sym_self_referential_reader_macro, - STATE(1506), 1, - sym_sym_lit, - STATE(1511), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2149), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2244), 1, + sym_sym_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1582), 2, + ACTIONS(953), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(969), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1584), 3, + ACTIONS(1580), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(295), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(1800), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(696), 19, + STATE(1727), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -24277,78 +24271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(588), 1, + ACTIONS(606), 1, anon_sym_COLON, - ACTIONS(590), 1, + ACTIONS(608), 1, anon_sym_COLON_COLON, - ACTIONS(592), 1, + ACTIONS(610), 1, anon_sym_DQUOTE, - ACTIONS(598), 1, + ACTIONS(612), 1, aux_sym_sym_lit_token1, - ACTIONS(620), 1, - anon_sym_cl, - ACTIONS(670), 1, - aux_sym_num_lit_token1, - ACTIONS(674), 1, - anon_sym_POUND_QMARK, - ACTIONS(676), 1, + ACTIONS(614), 1, + anon_sym_LPAREN, + ACTIONS(618), 1, + anon_sym_POUND_QMARK, + ACTIONS(951), 1, + aux_sym_num_lit_token1, + ACTIONS(955), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(678), 1, + ACTIONS(957), 1, anon_sym_POUND_SQUOTE, - ACTIONS(680), 1, + ACTIONS(959), 1, anon_sym_SQUOTE, - ACTIONS(682), 1, + ACTIONS(961), 1, anon_sym_BQUOTE, - ACTIONS(684), 1, + ACTIONS(963), 1, anon_sym_COMMA_AT, - ACTIONS(686), 1, + ACTIONS(965), 1, anon_sym_COMMA, - ACTIONS(1588), 1, + ACTIONS(967), 1, + anon_sym_cl, + ACTIONS(1452), 1, anon_sym_POUND, - ACTIONS(1592), 1, + ACTIONS(1586), 1, sym_self_referential_reader_macro, - STATE(2150), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2149), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, - sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2428), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2244), 1, sym_sym_lit, - ACTIONS(622), 2, + STATE(2258), 1, + sym__metadata_lit, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(628), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(672), 2, + ACTIONS(953), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(688), 2, + ACTIONS(969), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1590), 3, + ACTIONS(1584), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1800), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1851), 19, + STATE(1725), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -24371,84 +24365,84 @@ static const uint16_t ts_small_parse_table[] = { [3915] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, - aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(728), 1, + aux_sym_num_lit_token1, + ACTIONS(730), 1, + anon_sym_COLON, + ACTIONS(732), 1, + anon_sym_COLON_COLON, + ACTIONS(734), 1, + anon_sym_DQUOTE, + ACTIONS(740), 1, + aux_sym_sym_lit_token1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(750), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(752), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(754), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(756), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(758), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(1596), 1, + ACTIONS(975), 1, + anon_sym_POUND, + ACTIONS(1590), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2167), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(744), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(766), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1594), 3, + ACTIONS(1588), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(340), 19, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1956), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -24471,84 +24465,84 @@ static const uint16_t ts_small_parse_table[] = { [4050] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, - aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(474), 1, + anon_sym_COLON, + ACTIONS(476), 1, + anon_sym_COLON_COLON, + ACTIONS(478), 1, + anon_sym_DQUOTE, + ACTIONS(484), 1, + aux_sym_sym_lit_token1, + ACTIONS(506), 1, + anon_sym_cl, + ACTIONS(604), 1, + aux_sym_num_lit_token1, + ACTIONS(640), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(642), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(644), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(646), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(648), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(650), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(652), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(654), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(1600), 1, + ACTIONS(1470), 1, + anon_sym_POUND, + ACTIONS(1594), 1, sym_self_referential_reader_macro, - STATE(1506), 1, - sym_sym_lit, - STATE(1511), 1, - sym__bare_set_lit, - STATE(2137), 1, + STATE(2142), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2454), 1, + sym_sym_lit, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(616), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(656), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1598), 3, + ACTIONS(1592), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(624), 19, + STATE(2282), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2267), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -24577,49 +24571,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(803), 1, + ACTIONS(606), 1, anon_sym_COLON, - ACTIONS(805), 1, + ACTIONS(608), 1, anon_sym_COLON_COLON, - ACTIONS(807), 1, + ACTIONS(610), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(612), 1, aux_sym_sym_lit_token1, - ACTIONS(811), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(618), 1, anon_sym_POUND_QMARK, - ACTIONS(837), 1, + ACTIONS(951), 1, aux_sym_num_lit_token1, - ACTIONS(847), 1, + ACTIONS(955), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(849), 1, + ACTIONS(957), 1, anon_sym_POUND_SQUOTE, - ACTIONS(851), 1, + ACTIONS(959), 1, anon_sym_SQUOTE, - ACTIONS(853), 1, + ACTIONS(961), 1, anon_sym_BQUOTE, - ACTIONS(855), 1, + ACTIONS(963), 1, anon_sym_COMMA_AT, - ACTIONS(857), 1, + ACTIONS(965), 1, anon_sym_COMMA, - ACTIONS(859), 1, + ACTIONS(967), 1, anon_sym_cl, - ACTIONS(1466), 1, + ACTIONS(1452), 1, anon_sym_POUND, - ACTIONS(1606), 1, + ACTIONS(1600), 1, sym_self_referential_reader_macro, - STATE(1794), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2152), 1, + STATE(2149), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2223), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2244), 1, sym_sym_lit, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, ACTIONS(312), 2, anon_sym_POUNDP, @@ -24627,28 +24621,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(845), 2, + ACTIONS(953), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(863), 2, + ACTIONS(969), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1602), 2, + ACTIONS(1596), 2, sym__ws, sym_comment, - ACTIONS(1604), 3, + ACTIONS(1598), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(179), 3, + STATE(205), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1800), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1710), 19, + STATE(1724), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -24707,19 +24701,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1610), 1, + ACTIONS(1606), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -24733,22 +24727,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1602), 2, sym__ws, sym_comment, - ACTIONS(1608), 3, + ACTIONS(1604), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(178), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1504), 19, + STATE(1451), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(714), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -24771,84 +24765,84 @@ static const uint16_t ts_small_parse_table[] = { [4455] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(803), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(805), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(807), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(811), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(837), 1, - aux_sym_num_lit_token1, - ACTIONS(847), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(849), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(851), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(853), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(855), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(857), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(859), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1466), 1, - anon_sym_POUND, - ACTIONS(1614), 1, + ACTIONS(1612), 1, sym_self_referential_reader_macro, - STATE(1794), 1, + STATE(1450), 1, + sym_sym_lit, + STATE(1452), 1, sym__bare_set_lit, - STATE(2152), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2223), 1, - sym_sym_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(312), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(318), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(845), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(863), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1608), 2, sym__ws, sym_comment, - ACTIONS(1612), 3, + ACTIONS(1610), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(189), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1700), 19, + STATE(711), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -24907,19 +24901,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1618), 1, + ACTIONS(1616), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -24933,22 +24927,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1616), 3, + ACTIONS(1614), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1510), 19, + STATE(695), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -24977,78 +24971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(606), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(608), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(610), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(612), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(618), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, - anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(951), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(955), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(957), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(959), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(961), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(963), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(965), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(967), 1, + anon_sym_cl, + ACTIONS(1452), 1, anon_sym_POUND, ACTIONS(1622), 1, sym_self_referential_reader_macro, - STATE(1825), 1, - sym_sym_lit, - STATE(1887), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2149), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2244), 1, + sym_sym_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(953), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(969), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(1618), 2, sym__ws, sym_comment, ACTIONS(1620), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(170), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1800), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1917), 19, + STATE(1792), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -25071,84 +25065,84 @@ static const uint16_t ts_small_parse_table[] = { [4860] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, - aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(606), 1, + anon_sym_COLON, + ACTIONS(608), 1, + anon_sym_COLON_COLON, + ACTIONS(610), 1, + anon_sym_DQUOTE, + ACTIONS(612), 1, + aux_sym_sym_lit_token1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(618), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(951), 1, + aux_sym_num_lit_token1, + ACTIONS(955), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(957), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(959), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(961), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(963), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(965), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(967), 1, anon_sym_cl, - ACTIONS(1626), 1, + ACTIONS(1452), 1, + anon_sym_POUND, + ACTIONS(1628), 1, sym_self_referential_reader_macro, - STATE(1506), 1, - sym_sym_lit, - STATE(1511), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2149), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2244), 1, + sym_sym_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(953), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(969), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1624), 2, sym__ws, sym_comment, - ACTIONS(1624), 3, + ACTIONS(1626), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(168), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1515), 19, + STATE(1800), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1795), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -25171,84 +25165,84 @@ static const uint16_t ts_small_parse_table[] = { [4995] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, - aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(606), 1, + anon_sym_COLON, + ACTIONS(608), 1, + anon_sym_COLON_COLON, + ACTIONS(610), 1, + anon_sym_DQUOTE, + ACTIONS(612), 1, + aux_sym_sym_lit_token1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(618), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(951), 1, + aux_sym_num_lit_token1, + ACTIONS(955), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(957), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(959), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(961), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(963), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(965), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(967), 1, anon_sym_cl, + ACTIONS(1452), 1, + anon_sym_POUND, ACTIONS(1632), 1, sym_self_referential_reader_macro, - STATE(1506), 1, - sym_sym_lit, - STATE(1511), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2149), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2244), 1, + sym_sym_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1628), 2, + ACTIONS(953), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(969), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1450), 2, sym__ws, sym_comment, ACTIONS(1630), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(260), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(1800), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1503), 19, + STATE(1722), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -25271,84 +25265,84 @@ static const uint16_t ts_small_parse_table[] = { [5130] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, - aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(606), 1, + anon_sym_COLON, + ACTIONS(608), 1, + anon_sym_COLON_COLON, + ACTIONS(610), 1, + anon_sym_DQUOTE, + ACTIONS(612), 1, + aux_sym_sym_lit_token1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(618), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(951), 1, + aux_sym_num_lit_token1, + ACTIONS(955), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(957), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(959), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(961), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(963), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(965), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(967), 1, anon_sym_cl, - ACTIONS(1636), 1, + ACTIONS(1452), 1, + anon_sym_POUND, + ACTIONS(1638), 1, sym_self_referential_reader_macro, - STATE(1506), 1, - sym_sym_lit, - STATE(1511), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2149), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2244), 1, + sym_sym_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(953), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(969), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1634), 2, sym__ws, sym_comment, - ACTIONS(1634), 3, + ACTIONS(1636), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(206), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(261), 19, + STATE(1800), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1721), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -25371,84 +25365,84 @@ static const uint16_t ts_small_parse_table[] = { [5265] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, - aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(606), 1, + anon_sym_COLON, + ACTIONS(608), 1, + anon_sym_COLON_COLON, + ACTIONS(610), 1, + anon_sym_DQUOTE, + ACTIONS(612), 1, + aux_sym_sym_lit_token1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(618), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(951), 1, + aux_sym_num_lit_token1, + ACTIONS(955), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(957), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(959), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(961), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(963), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(965), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(967), 1, anon_sym_cl, + ACTIONS(1452), 1, + anon_sym_POUND, ACTIONS(1642), 1, sym_self_referential_reader_macro, - STATE(1506), 1, - sym_sym_lit, - STATE(1511), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2149), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2244), 1, + sym_sym_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1638), 2, + ACTIONS(953), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(969), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1450), 2, sym__ws, sym_comment, ACTIONS(1640), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(263), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(1800), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1548), 19, + STATE(1714), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -25471,84 +25465,84 @@ static const uint16_t ts_small_parse_table[] = { [5400] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, - aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(606), 1, + anon_sym_COLON, + ACTIONS(608), 1, + anon_sym_COLON_COLON, + ACTIONS(610), 1, + anon_sym_DQUOTE, + ACTIONS(612), 1, + aux_sym_sym_lit_token1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(618), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(951), 1, + aux_sym_num_lit_token1, + ACTIONS(955), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(957), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(959), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(961), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(963), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(965), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(967), 1, anon_sym_cl, + ACTIONS(1452), 1, + anon_sym_POUND, ACTIONS(1646), 1, sym_self_referential_reader_macro, - STATE(1506), 1, - sym_sym_lit, - STATE(1511), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2149), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2244), 1, + sym_sym_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(953), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(969), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1450), 2, sym__ws, sym_comment, ACTIONS(1644), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(701), 19, + STATE(1800), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1713), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -25571,84 +25565,84 @@ static const uint16_t ts_small_parse_table[] = { [5535] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(524), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, - anon_sym_cl, - ACTIONS(783), 1, - aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(1436), 1, - anon_sym_POUND, - ACTIONS(1650), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(1652), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(564), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1648), 2, sym__ws, sym_comment, - ACTIONS(1648), 3, + ACTIONS(1650), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(200), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1918), 19, + STATE(654), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -25677,78 +25671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(506), 1, + anon_sym_cl, + ACTIONS(604), 1, + aux_sym_num_lit_token1, + ACTIONS(640), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(642), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(644), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, - anon_sym_cl, - ACTIONS(783), 1, - aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(646), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(648), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(650), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(652), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(654), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1470), 1, anon_sym_POUND, - ACTIONS(1654), 1, + ACTIONS(1656), 1, sym_self_referential_reader_macro, - STATE(1825), 1, - sym_sym_lit, - STATE(1887), 1, - sym__bare_set_lit, - STATE(2138), 1, + STATE(2142), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2454), 1, + sym_sym_lit, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(616), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(656), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1652), 3, + ACTIONS(1654), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1919), 19, + STATE(2279), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -25771,84 +25765,84 @@ static const uint16_t ts_small_parse_table[] = { [5805] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, - aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(728), 1, + aux_sym_num_lit_token1, + ACTIONS(730), 1, + anon_sym_COLON, + ACTIONS(732), 1, + anon_sym_COLON_COLON, + ACTIONS(734), 1, + anon_sym_DQUOTE, + ACTIONS(740), 1, + aux_sym_sym_lit_token1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(750), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(752), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(754), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(756), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(758), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(760), 1, anon_sym_cl, + ACTIONS(975), 1, + anon_sym_POUND, ACTIONS(1660), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2167), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(744), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(766), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1656), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, ACTIONS(1658), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(195), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(175), 19, + STATE(1957), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -25877,78 +25871,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, - anon_sym_POUND, ACTIONS(1664), 1, + anon_sym_POUND, + ACTIONS(1668), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(1662), 2, sym__ws, sym_comment, - ACTIONS(1662), 3, + ACTIONS(1666), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(257), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1920), 19, + STATE(1935), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -25977,78 +25971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(190), 1, - anon_sym_POUND, - ACTIONS(194), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(728), 1, aux_sym_num_lit_token1, - ACTIONS(196), 1, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(198), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(200), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(202), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(217), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(219), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(221), 1, + ACTIONS(750), 1, anon_sym_POUND_SQUOTE, - ACTIONS(223), 1, + ACTIONS(752), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, + ACTIONS(754), 1, anon_sym_BQUOTE, - ACTIONS(227), 1, + ACTIONS(756), 1, anon_sym_COMMA_AT, - ACTIONS(229), 1, + ACTIONS(758), 1, anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_LPAREN, - ACTIONS(644), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(1670), 1, + ACTIONS(975), 1, + anon_sym_POUND, + ACTIONS(1674), 1, sym_self_referential_reader_macro, - STATE(1012), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1017), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2139), 1, + STATE(2167), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(215), 2, + ACTIONS(744), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(236), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(240), 2, + ACTIONS(766), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(242), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1666), 2, + ACTIONS(1670), 2, sym__ws, sym_comment, - ACTIONS(1668), 3, + ACTIONS(1672), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(243), 3, + STATE(195), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1015), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1020), 19, + STATE(1938), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -26077,78 +26071,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(506), 1, + anon_sym_cl, + ACTIONS(604), 1, + aux_sym_num_lit_token1, + ACTIONS(640), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(642), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(644), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, - anon_sym_cl, - ACTIONS(783), 1, - aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(646), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(648), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(650), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(652), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(654), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1470), 1, anon_sym_POUND, - ACTIONS(1674), 1, + ACTIONS(1680), 1, sym_self_referential_reader_macro, - STATE(1825), 1, - sym_sym_lit, - STATE(1887), 1, - sym__bare_set_lit, - STATE(2138), 1, + STATE(2142), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2454), 1, + sym_sym_lit, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(616), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(656), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(1676), 2, sym__ws, sym_comment, - ACTIONS(1672), 3, + ACTIONS(1678), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(174), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1921), 19, + STATE(2268), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -26177,78 +26171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(803), 1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(805), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(807), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(811), 1, + ACTIONS(506), 1, + anon_sym_cl, + ACTIONS(604), 1, + aux_sym_num_lit_token1, + ACTIONS(640), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(642), 1, anon_sym_POUND_QMARK, - ACTIONS(837), 1, - aux_sym_num_lit_token1, - ACTIONS(847), 1, + ACTIONS(644), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(849), 1, + ACTIONS(646), 1, anon_sym_POUND_SQUOTE, - ACTIONS(851), 1, + ACTIONS(648), 1, anon_sym_SQUOTE, - ACTIONS(853), 1, + ACTIONS(650), 1, anon_sym_BQUOTE, - ACTIONS(855), 1, + ACTIONS(652), 1, anon_sym_COMMA_AT, - ACTIONS(857), 1, + ACTIONS(654), 1, anon_sym_COMMA, - ACTIONS(859), 1, - anon_sym_cl, - ACTIONS(1466), 1, + ACTIONS(1470), 1, anon_sym_POUND, - ACTIONS(1680), 1, + ACTIONS(1686), 1, sym_self_referential_reader_macro, - STATE(1794), 1, - sym__bare_set_lit, - STATE(2152), 1, + STATE(2142), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2223), 1, - sym_sym_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(312), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2454), 1, + sym_sym_lit, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(318), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(845), 2, + ACTIONS(616), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(863), 2, + ACTIONS(656), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1676), 2, + ACTIONS(1682), 2, sym__ws, sym_comment, - ACTIONS(1678), 3, + ACTIONS(1684), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(187), 3, + STATE(177), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1699), 19, + STATE(2269), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -26277,78 +26271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(803), 1, + ACTIONS(190), 1, + anon_sym_POUND, + ACTIONS(194), 1, + aux_sym_num_lit_token1, + ACTIONS(196), 1, anon_sym_COLON, - ACTIONS(805), 1, + ACTIONS(198), 1, anon_sym_COLON_COLON, - ACTIONS(807), 1, + ACTIONS(200), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(202), 1, aux_sym_sym_lit_token1, - ACTIONS(811), 1, - anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(217), 1, anon_sym_POUND_QMARK, - ACTIONS(837), 1, - aux_sym_num_lit_token1, - ACTIONS(847), 1, + ACTIONS(219), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(849), 1, + ACTIONS(221), 1, anon_sym_POUND_SQUOTE, - ACTIONS(851), 1, + ACTIONS(223), 1, anon_sym_SQUOTE, - ACTIONS(853), 1, + ACTIONS(225), 1, anon_sym_BQUOTE, - ACTIONS(855), 1, + ACTIONS(227), 1, anon_sym_COMMA_AT, - ACTIONS(857), 1, + ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(859), 1, + ACTIONS(526), 1, + anon_sym_LPAREN, + ACTIONS(530), 1, anon_sym_cl, - ACTIONS(1466), 1, - anon_sym_POUND, - ACTIONS(1686), 1, + ACTIONS(1692), 1, sym_self_referential_reader_macro, - STATE(1794), 1, + STATE(1072), 1, sym__bare_set_lit, - STATE(2152), 1, + STATE(1074), 1, + sym_sym_lit, + STATE(2177), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2223), 1, - sym_sym_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(312), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(318), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(845), 2, + ACTIONS(215), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(863), 2, + ACTIONS(236), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(240), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1682), 2, + ACTIONS(242), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1688), 2, sym__ws, sym_comment, - ACTIONS(1684), 3, + ACTIONS(1690), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(188), 3, + STATE(547), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1073), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1690), 19, + STATE(1071), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -26377,78 +26371,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(61), 1, - anon_sym_POUND, - ACTIONS(65), 1, - aux_sym_num_lit_token1, - ACTIONS(67), 1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(69), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(71), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(73), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(77), 1, + ACTIONS(506), 1, + anon_sym_cl, + ACTIONS(604), 1, + aux_sym_num_lit_token1, + ACTIONS(640), 1, + anon_sym_LPAREN, + ACTIONS(642), 1, anon_sym_POUND_QMARK, - ACTIONS(79), 1, + ACTIONS(644), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(81), 1, + ACTIONS(646), 1, anon_sym_POUND_SQUOTE, - ACTIONS(83), 1, + ACTIONS(648), 1, anon_sym_SQUOTE, - ACTIONS(85), 1, + ACTIONS(650), 1, anon_sym_BQUOTE, - ACTIONS(87), 1, + ACTIONS(652), 1, anon_sym_COMMA_AT, - ACTIONS(89), 1, + ACTIONS(654), 1, anon_sym_COMMA, - ACTIONS(658), 1, - anon_sym_LPAREN, - ACTIONS(662), 1, - anon_sym_cl, - ACTIONS(1690), 1, + ACTIONS(1470), 1, + anon_sym_POUND, + ACTIONS(1696), 1, sym_self_referential_reader_macro, - STATE(822), 1, - sym_sym_lit, - STATE(824), 1, - sym__bare_set_lit, - STATE(2149), 1, + STATE(2142), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(75), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(93), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2454), 1, + sym_sym_lit, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(97), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(99), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(616), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(656), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1688), 3, + ACTIONS(1694), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(823), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(862), 19, + STATE(2282), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2121), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -26477,78 +26471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(61), 1, + ACTIONS(190), 1, anon_sym_POUND, - ACTIONS(65), 1, + ACTIONS(194), 1, aux_sym_num_lit_token1, - ACTIONS(67), 1, + ACTIONS(196), 1, anon_sym_COLON, - ACTIONS(69), 1, + ACTIONS(198), 1, anon_sym_COLON_COLON, - ACTIONS(71), 1, + ACTIONS(200), 1, anon_sym_DQUOTE, - ACTIONS(73), 1, + ACTIONS(202), 1, aux_sym_sym_lit_token1, - ACTIONS(77), 1, + ACTIONS(217), 1, anon_sym_POUND_QMARK, - ACTIONS(79), 1, + ACTIONS(219), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(81), 1, + ACTIONS(221), 1, anon_sym_POUND_SQUOTE, - ACTIONS(83), 1, + ACTIONS(223), 1, anon_sym_SQUOTE, - ACTIONS(85), 1, + ACTIONS(225), 1, anon_sym_BQUOTE, - ACTIONS(87), 1, + ACTIONS(227), 1, anon_sym_COMMA_AT, - ACTIONS(89), 1, + ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(658), 1, + ACTIONS(526), 1, anon_sym_LPAREN, - ACTIONS(662), 1, + ACTIONS(530), 1, anon_sym_cl, - ACTIONS(1694), 1, + ACTIONS(1700), 1, sym_self_referential_reader_macro, - STATE(822), 1, - sym_sym_lit, - STATE(824), 1, + STATE(1072), 1, sym__bare_set_lit, - STATE(2149), 1, + STATE(1074), 1, + sym_sym_lit, + STATE(2177), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(75), 2, + ACTIONS(215), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(93), 2, + ACTIONS(236), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(97), 2, + ACTIONS(240), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(99), 2, + ACTIONS(242), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1692), 3, + ACTIONS(1698), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(823), 3, + STATE(1073), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(860), 19, + STATE(8), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -26577,49 +26571,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(803), 1, + ACTIONS(606), 1, anon_sym_COLON, - ACTIONS(805), 1, + ACTIONS(608), 1, anon_sym_COLON_COLON, - ACTIONS(807), 1, + ACTIONS(610), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(612), 1, aux_sym_sym_lit_token1, - ACTIONS(811), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(618), 1, anon_sym_POUND_QMARK, - ACTIONS(837), 1, + ACTIONS(951), 1, aux_sym_num_lit_token1, - ACTIONS(847), 1, + ACTIONS(955), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(849), 1, + ACTIONS(957), 1, anon_sym_POUND_SQUOTE, - ACTIONS(851), 1, + ACTIONS(959), 1, anon_sym_SQUOTE, - ACTIONS(853), 1, + ACTIONS(961), 1, anon_sym_BQUOTE, - ACTIONS(855), 1, + ACTIONS(963), 1, anon_sym_COMMA_AT, - ACTIONS(857), 1, + ACTIONS(965), 1, anon_sym_COMMA, - ACTIONS(859), 1, + ACTIONS(967), 1, anon_sym_cl, - ACTIONS(1466), 1, + ACTIONS(1452), 1, anon_sym_POUND, - ACTIONS(1700), 1, + ACTIONS(1704), 1, sym_self_referential_reader_macro, - STATE(1794), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2152), 1, + STATE(2149), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2223), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2244), 1, sym_sym_lit, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, ACTIONS(312), 2, anon_sym_POUNDP, @@ -26627,28 +26621,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(845), 2, + ACTIONS(953), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(863), 2, + ACTIONS(969), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1696), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1698), 3, + ACTIONS(1702), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(191), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1800), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1694), 19, + STATE(1802), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -26677,78 +26671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(803), 1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(805), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(807), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(811), 1, + ACTIONS(506), 1, + anon_sym_cl, + ACTIONS(604), 1, + aux_sym_num_lit_token1, + ACTIONS(640), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(642), 1, anon_sym_POUND_QMARK, - ACTIONS(837), 1, - aux_sym_num_lit_token1, - ACTIONS(847), 1, + ACTIONS(644), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(849), 1, + ACTIONS(646), 1, anon_sym_POUND_SQUOTE, - ACTIONS(851), 1, + ACTIONS(648), 1, anon_sym_SQUOTE, - ACTIONS(853), 1, + ACTIONS(650), 1, anon_sym_BQUOTE, - ACTIONS(855), 1, + ACTIONS(652), 1, anon_sym_COMMA_AT, - ACTIONS(857), 1, + ACTIONS(654), 1, anon_sym_COMMA, - ACTIONS(859), 1, - anon_sym_cl, - ACTIONS(1466), 1, + ACTIONS(1470), 1, anon_sym_POUND, - ACTIONS(1706), 1, + ACTIONS(1708), 1, sym_self_referential_reader_macro, - STATE(1794), 1, - sym__bare_set_lit, - STATE(2152), 1, + STATE(2142), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2223), 1, - sym_sym_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(312), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2454), 1, + sym_sym_lit, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(318), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(845), 2, + ACTIONS(616), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(863), 2, + ACTIONS(656), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1702), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1704), 3, + ACTIONS(1706), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(199), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1725), 19, + STATE(2280), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -26777,78 +26771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(588), 1, + ACTIONS(776), 1, + aux_sym_num_lit_token1, + ACTIONS(778), 1, anon_sym_COLON, - ACTIONS(590), 1, + ACTIONS(780), 1, anon_sym_COLON_COLON, - ACTIONS(592), 1, + ACTIONS(782), 1, anon_sym_DQUOTE, - ACTIONS(598), 1, + ACTIONS(788), 1, aux_sym_sym_lit_token1, - ACTIONS(620), 1, - anon_sym_cl, - ACTIONS(670), 1, - aux_sym_num_lit_token1, - ACTIONS(674), 1, + ACTIONS(790), 1, + anon_sym_LPAREN, + ACTIONS(796), 1, anon_sym_POUND_QMARK, - ACTIONS(676), 1, + ACTIONS(798), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(678), 1, + ACTIONS(800), 1, anon_sym_POUND_SQUOTE, - ACTIONS(680), 1, + ACTIONS(802), 1, anon_sym_SQUOTE, - ACTIONS(682), 1, + ACTIONS(804), 1, anon_sym_BQUOTE, - ACTIONS(684), 1, + ACTIONS(806), 1, anon_sym_COMMA_AT, - ACTIONS(686), 1, + ACTIONS(808), 1, anon_sym_COMMA, - ACTIONS(1588), 1, + ACTIONS(810), 1, + anon_sym_cl, + ACTIONS(1562), 1, anon_sym_POUND, ACTIONS(1712), 1, sym_self_referential_reader_macro, - STATE(2150), 1, + STATE(1745), 1, + sym_sym_lit, + STATE(1747), 1, + sym__bare_set_lit, + STATE(2171), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2428), 1, - sym_sym_lit, - ACTIONS(622), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(628), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(672), 2, + ACTIONS(794), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(688), 2, + ACTIONS(812), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(816), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1708), 2, + ACTIONS(818), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1450), 2, sym__ws, sym_comment, ACTIONS(1710), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(320), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1746), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2248), 19, + STATE(126), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -26877,78 +26871,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(803), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(805), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(807), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(811), 1, - anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(837), 1, - aux_sym_num_lit_token1, - ACTIONS(847), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(849), 1, + ACTIONS(760), 1, + anon_sym_cl, + ACTIONS(838), 1, + aux_sym_num_lit_token1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(851), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(853), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(855), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(857), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(859), 1, - anon_sym_cl, - ACTIONS(1466), 1, + ACTIONS(1664), 1, anon_sym_POUND, ACTIONS(1716), 1, sym_self_referential_reader_macro, - STATE(1794), 1, + STATE(1848), 1, + sym_sym_lit, + STATE(1925), 1, sym__bare_set_lit, - STATE(2152), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2223), 1, - sym_sym_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(312), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(318), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(845), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(863), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, ACTIONS(1714), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1736), 19, + STATE(1887), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -26971,84 +26965,84 @@ static const uint16_t ts_small_parse_table[] = { [7425] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(61), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(65), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(67), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(69), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(73), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(77), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(79), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(81), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(87), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(89), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(830), 1, + anon_sym_LPAREN, + ACTIONS(834), 1, anon_sym_cl, ACTIONS(1720), 1, sym_self_referential_reader_macro, - STATE(1506), 1, - sym_sym_lit, - STATE(1511), 1, + STATE(927), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(929), 1, + sym_sym_lit, + STATE(2169), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(75), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(93), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(97), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(99), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, ACTIONS(1718), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, + STATE(928), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(523), 19, + STATE(815), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -27077,78 +27071,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(606), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(608), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(610), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(612), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(618), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, - anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(951), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(955), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(957), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(959), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(961), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(963), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(965), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(967), 1, + anon_sym_cl, + ACTIONS(1452), 1, anon_sym_POUND, - ACTIONS(1726), 1, + ACTIONS(1724), 1, sym_self_referential_reader_macro, - STATE(1825), 1, - sym_sym_lit, - STATE(1887), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2149), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2244), 1, + sym_sym_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(953), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(969), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1722), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1724), 3, + ACTIONS(1722), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(322), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1800), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1923), 19, + STATE(1809), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -27177,78 +27171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(61), 1, - anon_sym_POUND, - ACTIONS(65), 1, - aux_sym_num_lit_token1, - ACTIONS(67), 1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(69), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(71), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(73), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(77), 1, + ACTIONS(506), 1, + anon_sym_cl, + ACTIONS(604), 1, + aux_sym_num_lit_token1, + ACTIONS(640), 1, + anon_sym_LPAREN, + ACTIONS(642), 1, anon_sym_POUND_QMARK, - ACTIONS(79), 1, + ACTIONS(644), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(81), 1, + ACTIONS(646), 1, anon_sym_POUND_SQUOTE, - ACTIONS(83), 1, + ACTIONS(648), 1, anon_sym_SQUOTE, - ACTIONS(85), 1, + ACTIONS(650), 1, anon_sym_BQUOTE, - ACTIONS(87), 1, + ACTIONS(652), 1, anon_sym_COMMA_AT, - ACTIONS(89), 1, + ACTIONS(654), 1, anon_sym_COMMA, - ACTIONS(658), 1, - anon_sym_LPAREN, - ACTIONS(662), 1, - anon_sym_cl, - ACTIONS(1730), 1, + ACTIONS(1470), 1, + anon_sym_POUND, + ACTIONS(1728), 1, sym_self_referential_reader_macro, - STATE(822), 1, - sym_sym_lit, - STATE(824), 1, - sym__bare_set_lit, - STATE(2149), 1, + STATE(2142), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(75), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(93), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2454), 1, + sym_sym_lit, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(97), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(99), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(616), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(656), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1728), 3, + ACTIONS(1726), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(823), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(859), 19, + STATE(2282), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2270), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -27271,84 +27265,84 @@ static const uint16_t ts_small_parse_table[] = { [7830] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, - aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(730), 1, + anon_sym_COLON, + ACTIONS(732), 1, + anon_sym_COLON_COLON, + ACTIONS(734), 1, + anon_sym_DQUOTE, + ACTIONS(740), 1, + aux_sym_sym_lit_token1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(760), 1, + anon_sym_cl, + ACTIONS(838), 1, + aux_sym_num_lit_token1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(1734), 1, + ACTIONS(1664), 1, + anon_sym_POUND, + ACTIONS(1732), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(840), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(852), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1732), 3, + ACTIONS(1730), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(526), 19, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2027), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -27377,78 +27371,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(190), 1, - anon_sym_POUND, - ACTIONS(194), 1, - aux_sym_num_lit_token1, - ACTIONS(196), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(198), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(200), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(202), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(217), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(219), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(221), 1, + ACTIONS(760), 1, + anon_sym_cl, + ACTIONS(838), 1, + aux_sym_num_lit_token1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(223), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(227), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(229), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_LPAREN, - ACTIONS(644), 1, - anon_sym_cl, + ACTIONS(1664), 1, + anon_sym_POUND, ACTIONS(1738), 1, sym_self_referential_reader_macro, - STATE(1012), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1017), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2139), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(215), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(236), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(240), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(242), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(840), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(852), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1734), 2, sym__ws, sym_comment, ACTIONS(1736), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1015), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(260), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(12), 19, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1936), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -27477,78 +27471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(927), 1, - aux_sym_num_lit_token1, - ACTIONS(929), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(931), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(933), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(939), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(941), 1, - anon_sym_LPAREN, - ACTIONS(947), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(949), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(951), 1, + ACTIONS(760), 1, + anon_sym_cl, + ACTIONS(838), 1, + aux_sym_num_lit_token1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(953), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(955), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(957), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(959), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(961), 1, - anon_sym_cl, - ACTIONS(1740), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(1744), 1, + ACTIONS(1742), 1, sym_self_referential_reader_macro, - STATE(1687), 1, - sym__bare_set_lit, - STATE(1689), 1, + STATE(1848), 1, sym_sym_lit, - STATE(2148), 1, + STATE(1925), 1, + sym__bare_set_lit, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(945), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(963), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(967), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(969), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(840), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(852), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1742), 3, + ACTIONS(1740), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(122), 19, + STATE(2026), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -27577,78 +27571,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(61), 1, - anon_sym_POUND, - ACTIONS(65), 1, - aux_sym_num_lit_token1, - ACTIONS(67), 1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(69), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(71), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(73), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(77), 1, + ACTIONS(506), 1, + anon_sym_cl, + ACTIONS(604), 1, + aux_sym_num_lit_token1, + ACTIONS(640), 1, + anon_sym_LPAREN, + ACTIONS(642), 1, anon_sym_POUND_QMARK, - ACTIONS(79), 1, + ACTIONS(644), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(81), 1, + ACTIONS(646), 1, anon_sym_POUND_SQUOTE, - ACTIONS(83), 1, + ACTIONS(648), 1, anon_sym_SQUOTE, - ACTIONS(85), 1, + ACTIONS(650), 1, anon_sym_BQUOTE, - ACTIONS(87), 1, + ACTIONS(652), 1, anon_sym_COMMA_AT, - ACTIONS(89), 1, + ACTIONS(654), 1, anon_sym_COMMA, - ACTIONS(658), 1, - anon_sym_LPAREN, - ACTIONS(662), 1, - anon_sym_cl, - ACTIONS(1748), 1, + ACTIONS(1470), 1, + anon_sym_POUND, + ACTIONS(1746), 1, sym_self_referential_reader_macro, - STATE(822), 1, - sym_sym_lit, - STATE(824), 1, - sym__bare_set_lit, - STATE(2149), 1, + STATE(2142), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(75), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(93), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2454), 1, + sym_sym_lit, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(97), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(99), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(616), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(656), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1746), 3, + ACTIONS(1744), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(823), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(814), 19, + STATE(2282), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2271), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -27677,78 +27671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(61), 1, - anon_sym_POUND, - ACTIONS(65), 1, - aux_sym_num_lit_token1, - ACTIONS(67), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(69), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(71), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(73), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(77), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(79), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(81), 1, + ACTIONS(760), 1, + anon_sym_cl, + ACTIONS(838), 1, + aux_sym_num_lit_token1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(83), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(85), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(87), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(89), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(658), 1, - anon_sym_LPAREN, - ACTIONS(662), 1, - anon_sym_cl, - ACTIONS(1752), 1, + ACTIONS(1664), 1, + anon_sym_POUND, + ACTIONS(1750), 1, sym_self_referential_reader_macro, - STATE(822), 1, + STATE(1848), 1, sym_sym_lit, - STATE(824), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2149), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(75), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(93), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(97), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(99), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(840), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(852), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1750), 3, + ACTIONS(1748), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(823), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(858), 19, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2025), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -27777,78 +27771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, ACTIONS(1756), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(1752), 2, sym__ws, sym_comment, ACTIONS(1754), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(274), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2087), 19, + STATE(1937), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -27877,78 +27871,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(61), 1, - anon_sym_POUND, - ACTIONS(65), 1, - aux_sym_num_lit_token1, - ACTIONS(67), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(69), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(71), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(73), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(77), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(79), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(81), 1, + ACTIONS(760), 1, + anon_sym_cl, + ACTIONS(838), 1, + aux_sym_num_lit_token1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(83), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(85), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(87), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(89), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(658), 1, - anon_sym_LPAREN, - ACTIONS(662), 1, - anon_sym_cl, + ACTIONS(1664), 1, + anon_sym_POUND, ACTIONS(1760), 1, sym_self_referential_reader_macro, - STATE(822), 1, + STATE(1848), 1, sym_sym_lit, - STATE(824), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2149), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(75), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(93), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(97), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(99), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(840), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(852), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1450), 2, sym__ws, sym_comment, ACTIONS(1758), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(823), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(857), 19, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2024), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -27977,78 +27971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(506), 1, + anon_sym_cl, + ACTIONS(604), 1, + aux_sym_num_lit_token1, + ACTIONS(640), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(642), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(644), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, - anon_sym_cl, - ACTIONS(783), 1, - aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(646), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(648), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(650), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(652), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(654), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1470), 1, anon_sym_POUND, ACTIONS(1764), 1, sym_self_referential_reader_macro, - STATE(1825), 1, - sym_sym_lit, - STATE(1887), 1, - sym__bare_set_lit, - STATE(2138), 1, + STATE(2142), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2454), 1, + sym_sym_lit, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(616), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(656), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, ACTIONS(1762), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2086), 19, + STATE(2272), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -28077,78 +28071,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(803), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(805), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(807), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(811), 1, - anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(837), 1, - aux_sym_num_lit_token1, - ACTIONS(847), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(849), 1, + ACTIONS(760), 1, + anon_sym_cl, + ACTIONS(838), 1, + aux_sym_num_lit_token1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(851), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(853), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(855), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(857), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(859), 1, - anon_sym_cl, - ACTIONS(1466), 1, + ACTIONS(1664), 1, anon_sym_POUND, ACTIONS(1768), 1, sym_self_referential_reader_macro, - STATE(1794), 1, + STATE(1848), 1, + sym_sym_lit, + STATE(1925), 1, sym__bare_set_lit, - STATE(2152), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2223), 1, - sym_sym_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(312), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(318), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(845), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(863), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, ACTIONS(1766), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1737), 19, + STATE(1860), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -28177,78 +28171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(1772), 1, + ACTIONS(1674), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(1770), 2, sym__ws, sym_comment, - ACTIONS(1770), 3, + ACTIONS(1672), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(276), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2085), 19, + STATE(1938), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -28277,78 +28271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(1778), 1, + ACTIONS(1776), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1774), 2, + ACTIONS(1772), 2, sym__ws, sym_comment, - ACTIONS(1776), 3, + ACTIONS(1774), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(324), 3, + STATE(291), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1925), 19, + STATE(1939), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -28377,78 +28371,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(728), 1, + aux_sym_num_lit_token1, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, - anon_sym_cl, - ACTIONS(783), 1, - aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(750), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(752), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(754), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(756), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(758), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(760), 1, + anon_sym_cl, + ACTIONS(975), 1, anon_sym_POUND, ACTIONS(1782), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2167), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(564), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(744), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(762), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(766), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(768), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1778), 2, sym__ws, sym_comment, ACTIONS(1780), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(275), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2084), 19, + STATE(1959), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -28477,78 +28471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(803), 1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(805), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(807), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(811), 1, + ACTIONS(506), 1, + anon_sym_cl, + ACTIONS(604), 1, + aux_sym_num_lit_token1, + ACTIONS(640), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(642), 1, anon_sym_POUND_QMARK, - ACTIONS(837), 1, - aux_sym_num_lit_token1, - ACTIONS(847), 1, + ACTIONS(644), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(849), 1, + ACTIONS(646), 1, anon_sym_POUND_SQUOTE, - ACTIONS(851), 1, + ACTIONS(648), 1, anon_sym_SQUOTE, - ACTIONS(853), 1, + ACTIONS(650), 1, anon_sym_BQUOTE, - ACTIONS(855), 1, + ACTIONS(652), 1, anon_sym_COMMA_AT, - ACTIONS(857), 1, + ACTIONS(654), 1, anon_sym_COMMA, - ACTIONS(859), 1, - anon_sym_cl, - ACTIONS(1466), 1, + ACTIONS(1470), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1788), 1, sym_self_referential_reader_macro, - STATE(1794), 1, - sym__bare_set_lit, - STATE(2152), 1, + STATE(2142), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2223), 1, - sym_sym_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(312), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2454), 1, + sym_sym_lit, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(318), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(845), 2, + ACTIONS(616), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(863), 2, + ACTIONS(656), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(1784), 2, sym__ws, sym_comment, - ACTIONS(1784), 3, + ACTIONS(1786), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(196), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1738), 19, + STATE(2283), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -28577,78 +28571,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(506), 1, + anon_sym_cl, + ACTIONS(604), 1, + aux_sym_num_lit_token1, + ACTIONS(640), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(642), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(644), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, - anon_sym_cl, - ACTIONS(783), 1, - aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(646), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(648), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(650), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(652), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(654), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1470), 1, anon_sym_POUND, - ACTIONS(1790), 1, + ACTIONS(1792), 1, sym_self_referential_reader_macro, - STATE(1825), 1, - sym_sym_lit, - STATE(1887), 1, - sym__bare_set_lit, - STATE(2138), 1, + STATE(2142), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2454), 1, + sym_sym_lit, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(616), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(656), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1788), 3, + ACTIONS(1790), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1846), 19, + STATE(2285), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -28677,78 +28671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(472), 1, + aux_sym_num_lit_token1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(492), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(494), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, - anon_sym_cl, - ACTIONS(783), 1, - aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(496), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(498), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(500), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(502), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(504), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(506), 1, + anon_sym_cl, + ACTIONS(1794), 1, anon_sym_POUND, - ACTIONS(1796), 1, + ACTIONS(1798), 1, sym_self_referential_reader_macro, - STATE(1825), 1, - sym_sym_lit, - STATE(1887), 1, - sym__bare_set_lit, - STATE(2138), 1, + STATE(2168), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(564), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(785), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2454), 1, + sym_sym_lit, + ACTIONS(490), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(508), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(512), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1792), 2, + ACTIONS(514), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1794), 3, + ACTIONS(1796), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(325), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1926), 19, + STATE(1866), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -28777,49 +28771,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(803), 1, + ACTIONS(606), 1, anon_sym_COLON, - ACTIONS(805), 1, + ACTIONS(608), 1, anon_sym_COLON_COLON, - ACTIONS(807), 1, + ACTIONS(610), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(612), 1, aux_sym_sym_lit_token1, - ACTIONS(811), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(618), 1, anon_sym_POUND_QMARK, - ACTIONS(837), 1, + ACTIONS(951), 1, aux_sym_num_lit_token1, - ACTIONS(847), 1, + ACTIONS(955), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(849), 1, + ACTIONS(957), 1, anon_sym_POUND_SQUOTE, - ACTIONS(851), 1, + ACTIONS(959), 1, anon_sym_SQUOTE, - ACTIONS(853), 1, + ACTIONS(961), 1, anon_sym_BQUOTE, - ACTIONS(855), 1, + ACTIONS(963), 1, anon_sym_COMMA_AT, - ACTIONS(857), 1, + ACTIONS(965), 1, anon_sym_COMMA, - ACTIONS(859), 1, + ACTIONS(967), 1, anon_sym_cl, - ACTIONS(1466), 1, + ACTIONS(1452), 1, anon_sym_POUND, - ACTIONS(1800), 1, + ACTIONS(1802), 1, sym_self_referential_reader_macro, - STATE(1794), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2152), 1, + STATE(2149), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2223), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2244), 1, sym_sym_lit, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, ACTIONS(312), 2, anon_sym_POUNDP, @@ -28827,28 +28821,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(845), 2, + ACTIONS(953), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(863), 2, + ACTIONS(969), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1798), 3, + ACTIONS(1800), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1800), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1745), 19, + STATE(1810), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -28877,78 +28871,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(606), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(608), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(610), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(612), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(618), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, - anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(951), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(955), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(957), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(959), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(961), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(963), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(965), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(967), 1, + anon_sym_cl, + ACTIONS(1452), 1, anon_sym_POUND, ACTIONS(1806), 1, sym_self_referential_reader_macro, - STATE(1825), 1, - sym_sym_lit, - STATE(1887), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2149), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2244), 1, + sym_sym_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(953), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(969), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1802), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, ACTIONS(1804), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(326), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1800), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1927), 19, + STATE(1811), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -28977,49 +28971,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(803), 1, + ACTIONS(606), 1, anon_sym_COLON, - ACTIONS(805), 1, + ACTIONS(608), 1, anon_sym_COLON_COLON, - ACTIONS(807), 1, + ACTIONS(610), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(612), 1, aux_sym_sym_lit_token1, - ACTIONS(811), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(618), 1, anon_sym_POUND_QMARK, - ACTIONS(837), 1, + ACTIONS(951), 1, aux_sym_num_lit_token1, - ACTIONS(847), 1, + ACTIONS(955), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(849), 1, + ACTIONS(957), 1, anon_sym_POUND_SQUOTE, - ACTIONS(851), 1, + ACTIONS(959), 1, anon_sym_SQUOTE, - ACTIONS(853), 1, + ACTIONS(961), 1, anon_sym_BQUOTE, - ACTIONS(855), 1, + ACTIONS(963), 1, anon_sym_COMMA_AT, - ACTIONS(857), 1, + ACTIONS(965), 1, anon_sym_COMMA, - ACTIONS(859), 1, + ACTIONS(967), 1, anon_sym_cl, - ACTIONS(1466), 1, + ACTIONS(1452), 1, anon_sym_POUND, ACTIONS(1810), 1, sym_self_referential_reader_macro, - STATE(1794), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2152), 1, + STATE(2149), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2223), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2244), 1, sym_sym_lit, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, ACTIONS(312), 2, anon_sym_POUNDP, @@ -29027,28 +29021,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(845), 2, + ACTIONS(953), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(863), 2, + ACTIONS(969), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, ACTIONS(1808), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1800), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1746), 19, + STATE(1812), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -29077,62 +29071,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(588), 1, + ACTIONS(728), 1, + aux_sym_num_lit_token1, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(590), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(592), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(598), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(620), 1, - anon_sym_cl, - ACTIONS(670), 1, - aux_sym_num_lit_token1, - ACTIONS(674), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(676), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(678), 1, + ACTIONS(750), 1, anon_sym_POUND_SQUOTE, - ACTIONS(680), 1, + ACTIONS(752), 1, anon_sym_SQUOTE, - ACTIONS(682), 1, + ACTIONS(754), 1, anon_sym_BQUOTE, - ACTIONS(684), 1, + ACTIONS(756), 1, anon_sym_COMMA_AT, - ACTIONS(686), 1, + ACTIONS(758), 1, anon_sym_COMMA, - ACTIONS(1588), 1, + ACTIONS(760), 1, + anon_sym_cl, + ACTIONS(975), 1, anon_sym_POUND, ACTIONS(1816), 1, sym_self_referential_reader_macro, - STATE(2150), 1, + STATE(1848), 1, + sym_sym_lit, + STATE(1925), 1, + sym__bare_set_lit, + STATE(2167), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2428), 1, - sym_sym_lit, - ACTIONS(622), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(628), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(672), 2, + ACTIONS(744), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(688), 2, + ACTIONS(762), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(766), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, + ACTIONS(768), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, ACTIONS(1812), 2, sym__ws, sym_comment, @@ -29140,15 +29134,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(255), 3, + STATE(279), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2249), 19, + STATE(1961), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -29177,78 +29171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(190), 1, - anon_sym_POUND, - ACTIONS(194), 1, + ACTIONS(776), 1, aux_sym_num_lit_token1, - ACTIONS(196), 1, + ACTIONS(778), 1, anon_sym_COLON, - ACTIONS(198), 1, + ACTIONS(780), 1, anon_sym_COLON_COLON, - ACTIONS(200), 1, + ACTIONS(782), 1, anon_sym_DQUOTE, - ACTIONS(202), 1, + ACTIONS(788), 1, aux_sym_sym_lit_token1, - ACTIONS(217), 1, + ACTIONS(790), 1, + anon_sym_LPAREN, + ACTIONS(796), 1, anon_sym_POUND_QMARK, - ACTIONS(219), 1, + ACTIONS(798), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(221), 1, + ACTIONS(800), 1, anon_sym_POUND_SQUOTE, - ACTIONS(223), 1, + ACTIONS(802), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, + ACTIONS(804), 1, anon_sym_BQUOTE, - ACTIONS(227), 1, + ACTIONS(806), 1, anon_sym_COMMA_AT, - ACTIONS(229), 1, + ACTIONS(808), 1, anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_LPAREN, - ACTIONS(644), 1, + ACTIONS(810), 1, anon_sym_cl, + ACTIONS(1562), 1, + anon_sym_POUND, ACTIONS(1820), 1, sym_self_referential_reader_macro, - STATE(1012), 1, + STATE(1745), 1, sym_sym_lit, - STATE(1017), 1, + STATE(1747), 1, sym__bare_set_lit, - STATE(2139), 1, + STATE(2171), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(215), 2, + ACTIONS(794), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(236), 2, + ACTIONS(812), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(240), 2, + ACTIONS(816), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(242), 2, + ACTIONS(818), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, ACTIONS(1818), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1015), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1162), 19, + STATE(1746), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1596), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -29277,60 +29271,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(61), 1, - anon_sym_POUND, - ACTIONS(65), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(728), 1, aux_sym_num_lit_token1, - ACTIONS(67), 1, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(69), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(71), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(73), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(77), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(79), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(81), 1, + ACTIONS(750), 1, anon_sym_POUND_SQUOTE, - ACTIONS(83), 1, + ACTIONS(752), 1, anon_sym_SQUOTE, - ACTIONS(85), 1, + ACTIONS(754), 1, anon_sym_BQUOTE, - ACTIONS(87), 1, + ACTIONS(756), 1, anon_sym_COMMA_AT, - ACTIONS(89), 1, + ACTIONS(758), 1, anon_sym_COMMA, - ACTIONS(658), 1, - anon_sym_LPAREN, - ACTIONS(662), 1, + ACTIONS(760), 1, anon_sym_cl, + ACTIONS(975), 1, + anon_sym_POUND, ACTIONS(1826), 1, sym_self_referential_reader_macro, - STATE(822), 1, + STATE(1848), 1, sym_sym_lit, - STATE(824), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2149), 1, + STATE(2167), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(75), 2, + ACTIONS(744), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(93), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(97), 2, + ACTIONS(766), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(99), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, ACTIONS(1822), 2, @@ -29340,15 +29334,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(215), 3, + STATE(290), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(823), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(841), 19, + STATE(1963), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -29377,62 +29371,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(61), 1, - anon_sym_POUND, - ACTIONS(65), 1, - aux_sym_num_lit_token1, - ACTIONS(67), 1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(69), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(71), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(73), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(77), 1, + ACTIONS(506), 1, + anon_sym_cl, + ACTIONS(604), 1, + aux_sym_num_lit_token1, + ACTIONS(640), 1, + anon_sym_LPAREN, + ACTIONS(642), 1, anon_sym_POUND_QMARK, - ACTIONS(79), 1, + ACTIONS(644), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(81), 1, + ACTIONS(646), 1, anon_sym_POUND_SQUOTE, - ACTIONS(83), 1, + ACTIONS(648), 1, anon_sym_SQUOTE, - ACTIONS(85), 1, + ACTIONS(650), 1, anon_sym_BQUOTE, - ACTIONS(87), 1, + ACTIONS(652), 1, anon_sym_COMMA_AT, - ACTIONS(89), 1, + ACTIONS(654), 1, anon_sym_COMMA, - ACTIONS(658), 1, - anon_sym_LPAREN, - ACTIONS(662), 1, - anon_sym_cl, + ACTIONS(1470), 1, + anon_sym_POUND, ACTIONS(1832), 1, sym_self_referential_reader_macro, - STATE(822), 1, - sym_sym_lit, - STATE(824), 1, - sym__bare_set_lit, - STATE(2149), 1, + STATE(2142), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(75), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(93), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2454), 1, + sym_sym_lit, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(97), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(99), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, + ACTIONS(616), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(656), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, ACTIONS(1828), 2, sym__ws, sym_comment, @@ -29440,15 +29434,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(216), 3, + STATE(223), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(823), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(840), 19, + STATE(2348), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -29477,78 +29471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(61), 1, - anon_sym_POUND, - ACTIONS(65), 1, + ACTIONS(776), 1, aux_sym_num_lit_token1, - ACTIONS(67), 1, + ACTIONS(778), 1, anon_sym_COLON, - ACTIONS(69), 1, + ACTIONS(780), 1, anon_sym_COLON_COLON, - ACTIONS(71), 1, + ACTIONS(782), 1, anon_sym_DQUOTE, - ACTIONS(73), 1, + ACTIONS(788), 1, aux_sym_sym_lit_token1, - ACTIONS(77), 1, + ACTIONS(790), 1, + anon_sym_LPAREN, + ACTIONS(796), 1, anon_sym_POUND_QMARK, - ACTIONS(79), 1, + ACTIONS(798), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(81), 1, + ACTIONS(800), 1, anon_sym_POUND_SQUOTE, - ACTIONS(83), 1, + ACTIONS(802), 1, anon_sym_SQUOTE, - ACTIONS(85), 1, + ACTIONS(804), 1, anon_sym_BQUOTE, - ACTIONS(87), 1, + ACTIONS(806), 1, anon_sym_COMMA_AT, - ACTIONS(89), 1, + ACTIONS(808), 1, anon_sym_COMMA, - ACTIONS(658), 1, - anon_sym_LPAREN, - ACTIONS(662), 1, + ACTIONS(810), 1, anon_sym_cl, - ACTIONS(1838), 1, + ACTIONS(1562), 1, + anon_sym_POUND, + ACTIONS(1836), 1, sym_self_referential_reader_macro, - STATE(822), 1, + STATE(1745), 1, sym_sym_lit, - STATE(824), 1, + STATE(1747), 1, sym__bare_set_lit, - STATE(2149), 1, + STATE(2171), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(75), 2, + ACTIONS(794), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(93), 2, + ACTIONS(812), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(97), 2, + ACTIONS(816), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(99), 2, + ACTIONS(818), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1834), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1836), 3, + ACTIONS(1834), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(223), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(823), 3, + STATE(1746), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(839), 19, + STATE(1595), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -29577,78 +29571,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(1592), 1, + ACTIONS(1842), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(1838), 2, sym__ws, sym_comment, - ACTIONS(1590), 3, + ACTIONS(1840), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(232), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1851), 19, + STATE(1863), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -29677,78 +29671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(803), 1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(805), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(807), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(811), 1, + ACTIONS(506), 1, + anon_sym_cl, + ACTIONS(604), 1, + aux_sym_num_lit_token1, + ACTIONS(640), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(642), 1, anon_sym_POUND_QMARK, - ACTIONS(837), 1, - aux_sym_num_lit_token1, - ACTIONS(847), 1, + ACTIONS(644), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(849), 1, + ACTIONS(646), 1, anon_sym_POUND_SQUOTE, - ACTIONS(851), 1, + ACTIONS(648), 1, anon_sym_SQUOTE, - ACTIONS(853), 1, + ACTIONS(650), 1, anon_sym_BQUOTE, - ACTIONS(855), 1, + ACTIONS(652), 1, anon_sym_COMMA_AT, - ACTIONS(857), 1, + ACTIONS(654), 1, anon_sym_COMMA, - ACTIONS(859), 1, - anon_sym_cl, - ACTIONS(1466), 1, + ACTIONS(1470), 1, anon_sym_POUND, - ACTIONS(1844), 1, + ACTIONS(1848), 1, sym_self_referential_reader_macro, - STATE(1794), 1, - sym__bare_set_lit, - STATE(2152), 1, + STATE(2142), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2223), 1, - sym_sym_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(312), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2454), 1, + sym_sym_lit, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(318), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(845), 2, + ACTIONS(616), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(863), 2, + ACTIONS(656), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1840), 2, + ACTIONS(1844), 2, sym__ws, sym_comment, - ACTIONS(1842), 3, + ACTIONS(1846), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(220), 3, + STATE(227), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1817), 19, + STATE(2302), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -29777,78 +29771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(803), 1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(805), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(807), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(811), 1, + ACTIONS(506), 1, + anon_sym_cl, + ACTIONS(604), 1, + aux_sym_num_lit_token1, + ACTIONS(640), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(642), 1, anon_sym_POUND_QMARK, - ACTIONS(837), 1, - aux_sym_num_lit_token1, - ACTIONS(847), 1, + ACTIONS(644), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(849), 1, + ACTIONS(646), 1, anon_sym_POUND_SQUOTE, - ACTIONS(851), 1, + ACTIONS(648), 1, anon_sym_SQUOTE, - ACTIONS(853), 1, + ACTIONS(650), 1, anon_sym_BQUOTE, - ACTIONS(855), 1, + ACTIONS(652), 1, anon_sym_COMMA_AT, - ACTIONS(857), 1, + ACTIONS(654), 1, anon_sym_COMMA, - ACTIONS(859), 1, - anon_sym_cl, - ACTIONS(1466), 1, + ACTIONS(1470), 1, anon_sym_POUND, - ACTIONS(1850), 1, + ACTIONS(1854), 1, sym_self_referential_reader_macro, - STATE(1794), 1, - sym__bare_set_lit, - STATE(2152), 1, + STATE(2142), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2223), 1, - sym_sym_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(312), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2454), 1, + sym_sym_lit, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(318), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(845), 2, + ACTIONS(616), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(863), 2, + ACTIONS(656), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1846), 2, + ACTIONS(1850), 2, sym__ws, sym_comment, - ACTIONS(1848), 3, + ACTIONS(1852), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(232), 3, + STATE(231), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1815), 19, + STATE(2303), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -29871,84 +29865,84 @@ static const uint16_t ts_small_parse_table[] = { [11340] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, - aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(474), 1, + anon_sym_COLON, + ACTIONS(476), 1, + anon_sym_COLON_COLON, + ACTIONS(478), 1, + anon_sym_DQUOTE, + ACTIONS(484), 1, + aux_sym_sym_lit_token1, + ACTIONS(506), 1, + anon_sym_cl, + ACTIONS(604), 1, + aux_sym_num_lit_token1, + ACTIONS(640), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(642), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(644), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(646), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(648), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(650), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(652), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(654), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(1854), 1, + ACTIONS(1470), 1, + anon_sym_POUND, + ACTIONS(1860), 1, sym_self_referential_reader_macro, - STATE(1506), 1, - sym_sym_lit, - STATE(1511), 1, - sym__bare_set_lit, - STATE(2137), 1, + STATE(2142), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2454), 1, + sym_sym_lit, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(616), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(656), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1856), 2, sym__ws, sym_comment, - ACTIONS(1852), 3, + ACTIONS(1858), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(237), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1522), 19, + STATE(2282), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2306), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -29971,84 +29965,84 @@ static const uint16_t ts_small_parse_table[] = { [11475] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(803), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(805), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(807), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(811), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(837), 1, - aux_sym_num_lit_token1, - ACTIONS(847), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(849), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(851), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(853), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(855), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(857), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(859), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1466), 1, - anon_sym_POUND, - ACTIONS(1860), 1, + ACTIONS(1864), 1, sym_self_referential_reader_macro, - STATE(1794), 1, + STATE(1450), 1, + sym_sym_lit, + STATE(1452), 1, sym__bare_set_lit, - STATE(2152), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2223), 1, - sym_sym_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(312), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(318), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(845), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(863), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1856), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1858), 3, + ACTIONS(1862), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(236), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1813), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1518), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -30077,78 +30071,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(803), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(728), 1, + aux_sym_num_lit_token1, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(805), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(807), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(811), 1, - anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(837), 1, - aux_sym_num_lit_token1, - ACTIONS(847), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(849), 1, + ACTIONS(750), 1, anon_sym_POUND_SQUOTE, - ACTIONS(851), 1, + ACTIONS(752), 1, anon_sym_SQUOTE, - ACTIONS(853), 1, + ACTIONS(754), 1, anon_sym_BQUOTE, - ACTIONS(855), 1, + ACTIONS(756), 1, anon_sym_COMMA_AT, - ACTIONS(857), 1, + ACTIONS(758), 1, anon_sym_COMMA, - ACTIONS(859), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(1466), 1, + ACTIONS(975), 1, anon_sym_POUND, - ACTIONS(1866), 1, + ACTIONS(1870), 1, sym_self_referential_reader_macro, - STATE(1794), 1, + STATE(1848), 1, + sym_sym_lit, + STATE(1925), 1, sym__bare_set_lit, - STATE(2152), 1, + STATE(2167), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2223), 1, - sym_sym_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(312), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(318), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(845), 2, + ACTIONS(744), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(863), 2, + ACTIONS(762), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(766), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1862), 2, + ACTIONS(768), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1866), 2, sym__ws, sym_comment, - ACTIONS(1864), 3, + ACTIONS(1868), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(239), 3, + STATE(321), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1811), 19, + STATE(1964), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -30177,78 +30171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(803), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(805), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(807), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(811), 1, - anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(837), 1, - aux_sym_num_lit_token1, - ACTIONS(847), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(849), 1, + ACTIONS(760), 1, + anon_sym_cl, + ACTIONS(838), 1, + aux_sym_num_lit_token1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(851), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(853), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(855), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(857), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(859), 1, - anon_sym_cl, - ACTIONS(1466), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(1872), 1, + ACTIONS(1798), 1, sym_self_referential_reader_macro, - STATE(1794), 1, + STATE(1848), 1, + sym_sym_lit, + STATE(1925), 1, sym__bare_set_lit, - STATE(2152), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2223), 1, - sym_sym_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(312), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(318), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(845), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(863), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1868), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1870), 3, + ACTIONS(1796), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(241), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1809), 19, + STATE(1866), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -30277,78 +30271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(588), 1, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(590), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(592), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(598), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(620), 1, - anon_sym_cl, - ACTIONS(670), 1, - aux_sym_num_lit_token1, - ACTIONS(674), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(676), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(678), 1, + ACTIONS(760), 1, + anon_sym_cl, + ACTIONS(838), 1, + aux_sym_num_lit_token1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(680), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(682), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(684), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(686), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1588), 1, + ACTIONS(1664), 1, anon_sym_POUND, ACTIONS(1876), 1, sym_self_referential_reader_macro, - STATE(2150), 1, + STATE(1848), 1, + sym_sym_lit, + STATE(1925), 1, + sym__bare_set_lit, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2428), 1, - sym_sym_lit, - ACTIONS(622), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(628), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(672), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(688), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(1872), 2, sym__ws, sym_comment, ACTIONS(1874), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(230), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2247), 19, + STATE(2053), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -30377,78 +30371,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(588), 1, + ACTIONS(606), 1, anon_sym_COLON, - ACTIONS(590), 1, + ACTIONS(608), 1, anon_sym_COLON_COLON, - ACTIONS(592), 1, + ACTIONS(610), 1, anon_sym_DQUOTE, - ACTIONS(598), 1, + ACTIONS(612), 1, aux_sym_sym_lit_token1, - ACTIONS(620), 1, - anon_sym_cl, - ACTIONS(670), 1, - aux_sym_num_lit_token1, - ACTIONS(674), 1, + ACTIONS(614), 1, + anon_sym_LPAREN, + ACTIONS(618), 1, anon_sym_POUND_QMARK, - ACTIONS(676), 1, + ACTIONS(951), 1, + aux_sym_num_lit_token1, + ACTIONS(955), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(678), 1, + ACTIONS(957), 1, anon_sym_POUND_SQUOTE, - ACTIONS(680), 1, + ACTIONS(959), 1, anon_sym_SQUOTE, - ACTIONS(682), 1, + ACTIONS(961), 1, anon_sym_BQUOTE, - ACTIONS(684), 1, + ACTIONS(963), 1, anon_sym_COMMA_AT, - ACTIONS(686), 1, + ACTIONS(965), 1, anon_sym_COMMA, - ACTIONS(1588), 1, + ACTIONS(967), 1, + anon_sym_cl, + ACTIONS(1452), 1, anon_sym_POUND, - ACTIONS(1880), 1, + ACTIONS(1882), 1, sym_self_referential_reader_macro, - STATE(2150), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2149), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, - sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2428), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2244), 1, sym_sym_lit, - ACTIONS(622), 2, + STATE(2258), 1, + sym__metadata_lit, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(628), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(672), 2, + ACTIONS(953), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(688), 2, + ACTIONS(969), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(1878), 2, sym__ws, sym_comment, - ACTIONS(1878), 3, + ACTIONS(1880), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(217), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1800), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2245), 19, + STATE(1824), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -30471,84 +30465,84 @@ static const uint16_t ts_small_parse_table[] = { [12150] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, - anon_sym_POUND_QMARK, - ACTIONS(35), 1, - anon_sym_POUND_QMARK_AT, ACTIONS(47), 1, sym_block_comment, - ACTIONS(49), 1, + ACTIONS(474), 1, + anon_sym_COLON, + ACTIONS(476), 1, + anon_sym_COLON_COLON, + ACTIONS(478), 1, + anon_sym_DQUOTE, + ACTIONS(484), 1, + aux_sym_sym_lit_token1, + ACTIONS(506), 1, anon_sym_cl, - ACTIONS(690), 1, + ACTIONS(604), 1, aux_sym_num_lit_token1, - ACTIONS(694), 1, + ACTIONS(640), 1, + anon_sym_LPAREN, + ACTIONS(642), 1, + anon_sym_POUND_QMARK, + ACTIONS(644), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(646), 1, anon_sym_POUND_SQUOTE, - ACTIONS(696), 1, + ACTIONS(648), 1, anon_sym_SQUOTE, - ACTIONS(698), 1, + ACTIONS(650), 1, anon_sym_BQUOTE, - ACTIONS(700), 1, + ACTIONS(652), 1, anon_sym_COMMA_AT, - ACTIONS(702), 1, + ACTIONS(654), 1, anon_sym_COMMA, - ACTIONS(1882), 1, + ACTIONS(1470), 1, anon_sym_POUND, ACTIONS(1886), 1, sym_self_referential_reader_macro, - STATE(1506), 1, - sym_sym_lit, - STATE(1511), 1, - sym__bare_set_lit, - STATE(2126), 1, + STATE(2142), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(51), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2454), 1, + sym_sym_lit, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(57), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(692), 2, + ACTIONS(616), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(704), 2, + ACTIONS(656), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, ACTIONS(1884), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1449), 19, + STATE(2282), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2310), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -30571,84 +30565,84 @@ static const uint16_t ts_small_parse_table[] = { [12285] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(730), 1, + anon_sym_COLON, + ACTIONS(732), 1, + anon_sym_COLON_COLON, + ACTIONS(734), 1, + anon_sym_DQUOTE, + ACTIONS(740), 1, + aux_sym_sym_lit_token1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(690), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(694), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(696), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(698), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(700), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(702), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1882), 1, + ACTIONS(1664), 1, anon_sym_POUND, ACTIONS(1890), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2126), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(51), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(57), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(692), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(704), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, ACTIONS(1888), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1443), 19, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1952), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -30671,84 +30665,84 @@ static const uint16_t ts_small_parse_table[] = { [12420] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, - aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(474), 1, + anon_sym_COLON, + ACTIONS(476), 1, + anon_sym_COLON_COLON, + ACTIONS(478), 1, + anon_sym_DQUOTE, + ACTIONS(484), 1, + aux_sym_sym_lit_token1, + ACTIONS(506), 1, + anon_sym_cl, + ACTIONS(604), 1, + aux_sym_num_lit_token1, + ACTIONS(640), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(642), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(644), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(646), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(648), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(650), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(652), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(654), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, + ACTIONS(1470), 1, + anon_sym_POUND, ACTIONS(1894), 1, sym_self_referential_reader_macro, - STATE(1506), 1, - sym_sym_lit, - STATE(1511), 1, - sym__bare_set_lit, - STATE(2137), 1, + STATE(2142), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2454), 1, + sym_sym_lit, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(616), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(656), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1450), 2, sym__ws, sym_comment, ACTIONS(1892), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(434), 19, + STATE(2282), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2311), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -30771,84 +30765,84 @@ static const uint16_t ts_small_parse_table[] = { [12555] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, - anon_sym_POUND_QMARK, - ACTIONS(35), 1, - anon_sym_POUND_QMARK_AT, ACTIONS(47), 1, sym_block_comment, - ACTIONS(49), 1, + ACTIONS(474), 1, + anon_sym_COLON, + ACTIONS(476), 1, + anon_sym_COLON_COLON, + ACTIONS(478), 1, + anon_sym_DQUOTE, + ACTIONS(484), 1, + aux_sym_sym_lit_token1, + ACTIONS(506), 1, anon_sym_cl, - ACTIONS(690), 1, + ACTIONS(604), 1, aux_sym_num_lit_token1, - ACTIONS(694), 1, + ACTIONS(640), 1, + anon_sym_LPAREN, + ACTIONS(642), 1, + anon_sym_POUND_QMARK, + ACTIONS(644), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(646), 1, anon_sym_POUND_SQUOTE, - ACTIONS(696), 1, + ACTIONS(648), 1, anon_sym_SQUOTE, - ACTIONS(698), 1, + ACTIONS(650), 1, anon_sym_BQUOTE, - ACTIONS(700), 1, + ACTIONS(652), 1, anon_sym_COMMA_AT, - ACTIONS(702), 1, + ACTIONS(654), 1, anon_sym_COMMA, - ACTIONS(1882), 1, + ACTIONS(1470), 1, anon_sym_POUND, - ACTIONS(1900), 1, + ACTIONS(1898), 1, sym_self_referential_reader_macro, - STATE(1506), 1, - sym_sym_lit, - STATE(1511), 1, - sym__bare_set_lit, - STATE(2126), 1, + STATE(2142), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(51), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2454), 1, + sym_sym_lit, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(57), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(692), 2, + ACTIONS(616), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(704), 2, + ACTIONS(656), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1896), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1898), 3, + ACTIONS(1896), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(256), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1479), 19, + STATE(2312), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -30871,84 +30865,84 @@ static const uint16_t ts_small_parse_table[] = { [12690] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, - aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(730), 1, + anon_sym_COLON, + ACTIONS(732), 1, + anon_sym_COLON_COLON, + ACTIONS(734), 1, + anon_sym_DQUOTE, + ACTIONS(740), 1, + aux_sym_sym_lit_token1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(760), 1, + anon_sym_cl, + ACTIONS(838), 1, + aux_sym_num_lit_token1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(1904), 1, + ACTIONS(1664), 1, + anon_sym_POUND, + ACTIONS(1902), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(840), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(852), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1902), 3, + ACTIONS(1900), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1495), 19, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1953), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -30971,84 +30965,84 @@ static const uint16_t ts_small_parse_table[] = { [12825] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(776), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(778), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(780), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(782), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(788), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(790), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(796), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(798), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(800), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(802), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(804), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(806), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(808), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(810), 1, anon_sym_cl, - ACTIONS(1910), 1, + ACTIONS(1562), 1, + anon_sym_POUND, + ACTIONS(1908), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1745), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1747), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2171), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(794), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(812), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(816), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(818), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1906), 2, + ACTIONS(1904), 2, sym__ws, sym_comment, - ACTIONS(1908), 3, + ACTIONS(1906), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(345), 3, + STATE(243), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(1746), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1494), 19, + STATE(1588), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -31071,6 +31065,10 @@ static const uint16_t ts_small_parse_table[] = { [12960] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, ACTIONS(17), 1, anon_sym_COLON, ACTIONS(19), 1, @@ -31089,66 +31087,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(690), 1, - aux_sym_num_lit_token1, - ACTIONS(694), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(696), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(698), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(700), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(702), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(1882), 1, - anon_sym_POUND, - ACTIONS(1914), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(1912), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2126), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, + ACTIONS(31), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, + ACTIONS(55), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(692), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(704), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1912), 3, + ACTIONS(1910), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1485), 19, + STATE(1520), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -31207,19 +31201,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1914), 1, + ACTIONS(1918), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -31233,22 +31227,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1914), 2, sym__ws, sym_comment, - ACTIONS(1912), 3, + ACTIONS(1916), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(346), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1485), 19, + STATE(1451), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1521), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -31271,84 +31265,84 @@ static const uint16_t ts_small_parse_table[] = { [13230] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(776), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(778), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(780), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(782), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(788), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(790), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(796), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(798), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(800), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(802), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(804), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(806), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(808), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(810), 1, anon_sym_cl, - ACTIONS(1918), 1, + ACTIONS(1562), 1, + anon_sym_POUND, + ACTIONS(1922), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1745), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1747), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2171), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(794), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(812), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(816), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(818), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1916), 3, + ACTIONS(1920), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(436), 19, + STATE(1746), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1587), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -31407,19 +31401,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1924), 1, + ACTIONS(1926), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -31433,22 +31427,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1920), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1922), 3, + ACTIONS(1924), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(221), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(616), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1522), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -31507,19 +31501,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1930), 1, + ACTIONS(1932), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -31533,22 +31527,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1926), 2, + ACTIONS(1928), 2, sym__ws, sym_comment, - ACTIONS(1928), 3, + ACTIONS(1930), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(224), 3, + STATE(349), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(618), 19, + STATE(1523), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -31569,6 +31563,206 @@ static const uint16_t ts_small_parse_table[] = { sym_include_reader_macro, sym_complex_num_lit, [13635] = 35, + ACTIONS(9), 1, + anon_sym_POUND_, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(474), 1, + anon_sym_COLON, + ACTIONS(476), 1, + anon_sym_COLON_COLON, + ACTIONS(478), 1, + anon_sym_DQUOTE, + ACTIONS(484), 1, + aux_sym_sym_lit_token1, + ACTIONS(506), 1, + anon_sym_cl, + ACTIONS(604), 1, + aux_sym_num_lit_token1, + ACTIONS(640), 1, + anon_sym_LPAREN, + ACTIONS(642), 1, + anon_sym_POUND_QMARK, + ACTIONS(644), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(646), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(648), 1, + anon_sym_SQUOTE, + ACTIONS(650), 1, + anon_sym_BQUOTE, + ACTIONS(652), 1, + anon_sym_COMMA_AT, + ACTIONS(654), 1, + anon_sym_COMMA, + ACTIONS(1470), 1, + anon_sym_POUND, + ACTIONS(1936), 1, + sym_self_referential_reader_macro, + STATE(2142), 1, + aux_sym_list_lit_repeat1, + STATE(2221), 1, + sym_old_meta_lit, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, + sym__metadata_lit, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2454), 1, + sym_sym_lit, + ACTIONS(508), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(514), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(616), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(656), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1450), 2, + sym__ws, + sym_comment, + ACTIONS(1934), 3, + anon_sym_DOT, + sym_nil_lit, + sym_fancy_literal, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(2282), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2313), 19, + sym__form, + sym_num_lit, + sym_kwd_lit, + sym_str_lit, + sym_char_lit, + sym_list_lit, + sym_vec_lit, + sym_set_lit, + sym_read_cond_lit, + sym_splicing_read_cond_lit, + sym_var_quoting_lit, + sym_quoting_lit, + sym_syn_quoting_lit, + sym_unquote_splicing_lit, + sym_unquoting_lit, + sym_path_lit, + sym_package_lit, + sym_include_reader_macro, + sym_complex_num_lit, + [13770] = 35, + ACTIONS(9), 1, + anon_sym_POUND_, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(474), 1, + anon_sym_COLON, + ACTIONS(476), 1, + anon_sym_COLON_COLON, + ACTIONS(478), 1, + anon_sym_DQUOTE, + ACTIONS(484), 1, + aux_sym_sym_lit_token1, + ACTIONS(506), 1, + anon_sym_cl, + ACTIONS(604), 1, + aux_sym_num_lit_token1, + ACTIONS(640), 1, + anon_sym_LPAREN, + ACTIONS(642), 1, + anon_sym_POUND_QMARK, + ACTIONS(644), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(646), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(648), 1, + anon_sym_SQUOTE, + ACTIONS(650), 1, + anon_sym_BQUOTE, + ACTIONS(652), 1, + anon_sym_COMMA_AT, + ACTIONS(654), 1, + anon_sym_COMMA, + ACTIONS(1470), 1, + anon_sym_POUND, + ACTIONS(1940), 1, + sym_self_referential_reader_macro, + STATE(2142), 1, + aux_sym_list_lit_repeat1, + STATE(2221), 1, + sym_old_meta_lit, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, + sym__metadata_lit, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2454), 1, + sym_sym_lit, + ACTIONS(508), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(514), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(616), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(656), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1450), 2, + sym__ws, + sym_comment, + ACTIONS(1938), 3, + anon_sym_DOT, + sym_nil_lit, + sym_fancy_literal, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(2282), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2314), 19, + sym__form, + sym_num_lit, + sym_kwd_lit, + sym_str_lit, + sym_char_lit, + sym_list_lit, + sym_vec_lit, + sym_set_lit, + sym_read_cond_lit, + sym_splicing_read_cond_lit, + sym_var_quoting_lit, + sym_quoting_lit, + sym_syn_quoting_lit, + sym_unquote_splicing_lit, + sym_unquoting_lit, + sym_path_lit, + sym_package_lit, + sym_include_reader_macro, + sym_complex_num_lit, + [13905] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -31607,19 +31801,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1934), 1, + ACTIONS(1944), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -31633,22 +31827,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1932), 3, + ACTIONS(1942), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(672), 19, + STATE(261), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -31668,9 +31862,13 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [13770] = 35, + [14040] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, ACTIONS(17), 1, anon_sym_COLON, ACTIONS(19), 1, @@ -31689,66 +31887,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(690), 1, - aux_sym_num_lit_token1, - ACTIONS(694), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(696), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(698), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(700), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(702), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(1882), 1, - anon_sym_POUND, - ACTIONS(1910), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(1948), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2126), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, + ACTIONS(31), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, + ACTIONS(55), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(692), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(704), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1936), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1908), 3, + ACTIONS(1946), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(257), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1494), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(280), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -31768,7 +31962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [13905] = 35, + [14175] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -31777,78 +31971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(1942), 1, + ACTIONS(1954), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1938), 2, + ACTIONS(1950), 2, sym__ws, sym_comment, - ACTIONS(1940), 3, + ACTIONS(1952), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(233), 3, + STATE(228), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2062), 19, + STATE(2054), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -31868,87 +32062,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [14040] = 35, + [14310] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(730), 1, + anon_sym_COLON, + ACTIONS(732), 1, + anon_sym_COLON_COLON, + ACTIONS(734), 1, + anon_sym_DQUOTE, + ACTIONS(740), 1, + aux_sym_sym_lit_token1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(690), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(694), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(696), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(698), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(700), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(702), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1882), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(1904), 1, + ACTIONS(1960), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2126), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(51), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(57), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(692), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(704), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(1956), 2, sym__ws, sym_comment, - ACTIONS(1902), 3, + ACTIONS(1958), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(226), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1495), 19, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2055), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -31968,87 +32162,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [14175] = 35, + [14445] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(730), 1, + anon_sym_COLON, + ACTIONS(732), 1, + anon_sym_COLON_COLON, + ACTIONS(734), 1, + anon_sym_DQUOTE, + ACTIONS(740), 1, + aux_sym_sym_lit_token1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(690), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(694), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(696), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(698), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(700), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(702), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1854), 1, - sym_self_referential_reader_macro, - ACTIONS(1882), 1, + ACTIONS(1664), 1, anon_sym_POUND, - STATE(1506), 1, + ACTIONS(1966), 1, + sym_self_referential_reader_macro, + STATE(1848), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2126), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(51), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(57), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(692), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(704), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(1962), 2, sym__ws, sym_comment, - ACTIONS(1852), 3, + ACTIONS(1964), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(224), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1522), 19, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1976), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -32068,7 +32262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [14310] = 35, + [14580] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -32077,78 +32271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(1948), 1, + ACTIONS(1970), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1944), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1946), 3, + ACTIONS(1968), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(231), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2061), 19, + STATE(1954), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -32168,87 +32362,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [14445] = 35, + [14715] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, - aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(728), 1, + aux_sym_num_lit_token1, + ACTIONS(730), 1, + anon_sym_COLON, + ACTIONS(732), 1, + anon_sym_COLON_COLON, + ACTIONS(734), 1, + anon_sym_DQUOTE, + ACTIONS(740), 1, + aux_sym_sym_lit_token1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(750), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(752), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(754), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(756), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(758), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(1954), 1, + ACTIONS(975), 1, + anon_sym_POUND, + ACTIONS(1716), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2167), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(744), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(766), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1950), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1952), 3, + ACTIONS(1714), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(267), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(747), 19, + STATE(1887), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -32268,7 +32462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [14580] = 35, + [14850] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -32277,78 +32471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, - anon_sym_POUND, - ACTIONS(1960), 1, + ACTIONS(1590), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + ACTIONS(1664), 1, + anon_sym_POUND, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1956), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1958), 3, + ACTIONS(1588), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(229), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2060), 19, + STATE(1956), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -32368,7 +32562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [14715] = 35, + [14985] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -32377,78 +32571,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(927), 1, + ACTIONS(776), 1, aux_sym_num_lit_token1, - ACTIONS(929), 1, + ACTIONS(778), 1, anon_sym_COLON, - ACTIONS(931), 1, + ACTIONS(780), 1, anon_sym_COLON_COLON, - ACTIONS(933), 1, + ACTIONS(782), 1, anon_sym_DQUOTE, - ACTIONS(939), 1, + ACTIONS(788), 1, aux_sym_sym_lit_token1, - ACTIONS(941), 1, + ACTIONS(790), 1, anon_sym_LPAREN, - ACTIONS(947), 1, + ACTIONS(796), 1, anon_sym_POUND_QMARK, - ACTIONS(949), 1, + ACTIONS(798), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(951), 1, + ACTIONS(800), 1, anon_sym_POUND_SQUOTE, - ACTIONS(953), 1, + ACTIONS(802), 1, anon_sym_SQUOTE, - ACTIONS(955), 1, + ACTIONS(804), 1, anon_sym_BQUOTE, - ACTIONS(957), 1, + ACTIONS(806), 1, anon_sym_COMMA_AT, - ACTIONS(959), 1, + ACTIONS(808), 1, anon_sym_COMMA, - ACTIONS(961), 1, + ACTIONS(810), 1, anon_sym_cl, - ACTIONS(1740), 1, + ACTIONS(1562), 1, anon_sym_POUND, - ACTIONS(1966), 1, + ACTIONS(1976), 1, sym_self_referential_reader_macro, - STATE(1687), 1, - sym__bare_set_lit, - STATE(1689), 1, + STATE(1745), 1, sym_sym_lit, - STATE(2148), 1, + STATE(1747), 1, + sym__bare_set_lit, + STATE(2171), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(945), 2, + ACTIONS(794), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(963), 2, + ACTIONS(812), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(967), 2, + ACTIONS(816), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(969), 2, + ACTIONS(818), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1962), 2, + ACTIONS(1972), 2, sym__ws, sym_comment, - ACTIONS(1964), 3, + ACTIONS(1974), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(226), 3, + STATE(219), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(1746), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(147), 19, + STATE(150), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -32468,87 +32662,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [14850] = 35, + [15120] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, - anon_sym_POUND_QMARK, - ACTIONS(35), 1, - anon_sym_POUND_QMARK_AT, ACTIONS(47), 1, sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(690), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(728), 1, aux_sym_num_lit_token1, - ACTIONS(694), 1, + ACTIONS(730), 1, + anon_sym_COLON, + ACTIONS(732), 1, + anon_sym_COLON_COLON, + ACTIONS(734), 1, + anon_sym_DQUOTE, + ACTIONS(740), 1, + aux_sym_sym_lit_token1, + ACTIONS(746), 1, + anon_sym_POUND_QMARK, + ACTIONS(748), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(750), 1, anon_sym_POUND_SQUOTE, - ACTIONS(696), 1, + ACTIONS(752), 1, anon_sym_SQUOTE, - ACTIONS(698), 1, + ACTIONS(754), 1, anon_sym_BQUOTE, - ACTIONS(700), 1, + ACTIONS(756), 1, anon_sym_COMMA_AT, - ACTIONS(702), 1, + ACTIONS(758), 1, anon_sym_COMMA, - ACTIONS(1642), 1, - sym_self_referential_reader_macro, - ACTIONS(1882), 1, + ACTIONS(760), 1, + anon_sym_cl, + ACTIONS(975), 1, anon_sym_POUND, - STATE(1506), 1, + ACTIONS(1982), 1, + sym_self_referential_reader_macro, + STATE(1848), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2126), 1, + STATE(2167), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(57), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(692), 2, + ACTIONS(744), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(704), 2, + ACTIONS(762), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(766), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1968), 2, + ACTIONS(768), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1978), 2, sym__ws, sym_comment, - ACTIONS(1640), 3, + ACTIONS(1980), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(262), 3, + STATE(372), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1548), 19, + STATE(1885), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -32568,87 +32762,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [14985] = 35, + [15255] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, - anon_sym_POUND_QMARK, - ACTIONS(35), 1, - anon_sym_POUND_QMARK_AT, ACTIONS(47), 1, sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(690), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(728), 1, aux_sym_num_lit_token1, - ACTIONS(694), 1, + ACTIONS(730), 1, + anon_sym_COLON, + ACTIONS(732), 1, + anon_sym_COLON_COLON, + ACTIONS(734), 1, + anon_sym_DQUOTE, + ACTIONS(740), 1, + aux_sym_sym_lit_token1, + ACTIONS(746), 1, + anon_sym_POUND_QMARK, + ACTIONS(748), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(750), 1, anon_sym_POUND_SQUOTE, - ACTIONS(696), 1, + ACTIONS(752), 1, anon_sym_SQUOTE, - ACTIONS(698), 1, + ACTIONS(754), 1, anon_sym_BQUOTE, - ACTIONS(700), 1, + ACTIONS(756), 1, anon_sym_COMMA_AT, - ACTIONS(702), 1, + ACTIONS(758), 1, anon_sym_COMMA, - ACTIONS(1632), 1, - sym_self_referential_reader_macro, - ACTIONS(1882), 1, + ACTIONS(760), 1, + anon_sym_cl, + ACTIONS(975), 1, anon_sym_POUND, - STATE(1506), 1, + ACTIONS(1986), 1, + sym_self_referential_reader_macro, + STATE(1848), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2126), 1, + STATE(2167), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(57), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(692), 2, + ACTIONS(744), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(704), 2, + ACTIONS(762), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(766), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1970), 2, + ACTIONS(768), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1630), 3, + ACTIONS(1984), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(270), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1503), 19, + STATE(1901), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -32668,7 +32862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [15120] = 35, + [15390] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -32677,78 +32871,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(61), 1, - anon_sym_POUND, - ACTIONS(65), 1, + ACTIONS(776), 1, aux_sym_num_lit_token1, - ACTIONS(67), 1, + ACTIONS(778), 1, anon_sym_COLON, - ACTIONS(69), 1, + ACTIONS(780), 1, anon_sym_COLON_COLON, - ACTIONS(71), 1, + ACTIONS(782), 1, anon_sym_DQUOTE, - ACTIONS(73), 1, + ACTIONS(788), 1, aux_sym_sym_lit_token1, - ACTIONS(77), 1, + ACTIONS(790), 1, + anon_sym_LPAREN, + ACTIONS(796), 1, anon_sym_POUND_QMARK, - ACTIONS(79), 1, + ACTIONS(798), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(81), 1, + ACTIONS(800), 1, anon_sym_POUND_SQUOTE, - ACTIONS(83), 1, + ACTIONS(802), 1, anon_sym_SQUOTE, - ACTIONS(85), 1, + ACTIONS(804), 1, anon_sym_BQUOTE, - ACTIONS(87), 1, + ACTIONS(806), 1, anon_sym_COMMA_AT, - ACTIONS(89), 1, + ACTIONS(808), 1, anon_sym_COMMA, - ACTIONS(658), 1, - anon_sym_LPAREN, - ACTIONS(662), 1, + ACTIONS(810), 1, anon_sym_cl, - ACTIONS(1976), 1, + ACTIONS(1562), 1, + anon_sym_POUND, + ACTIONS(1992), 1, sym_self_referential_reader_macro, - STATE(822), 1, + STATE(1745), 1, sym_sym_lit, - STATE(824), 1, + STATE(1747), 1, sym__bare_set_lit, - STATE(2149), 1, + STATE(2171), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(75), 2, + ACTIONS(794), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(93), 2, + ACTIONS(812), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(97), 2, + ACTIONS(816), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(99), 2, + ACTIONS(818), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1972), 2, + ACTIONS(1988), 2, sym__ws, sym_comment, - ACTIONS(1974), 3, + ACTIONS(1990), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(228), 3, + STATE(246), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(823), 3, + STATE(1746), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(838), 19, + STATE(1585), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -32768,7 +32962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [15255] = 35, + [15525] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -32803,23 +32997,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(640), 1, + ACTIONS(526), 1, anon_sym_LPAREN, - ACTIONS(644), 1, + ACTIONS(530), 1, anon_sym_cl, - ACTIONS(1982), 1, + ACTIONS(1998), 1, sym_self_referential_reader_macro, - STATE(1012), 1, - sym_sym_lit, - STATE(1017), 1, + STATE(1072), 1, sym__bare_set_lit, - STATE(2139), 1, + STATE(1074), 1, + sym_sym_lit, + STATE(2177), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, ACTIONS(215), 2, anon_sym_POUND0A, @@ -32833,22 +33027,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(242), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1978), 2, + ACTIONS(1994), 2, sym__ws, sym_comment, - ACTIONS(1980), 3, + ACTIONS(1996), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(362), 3, + STATE(363), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1015), 3, + STATE(1073), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(9), 19, + STATE(11), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -32868,7 +33062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [15390] = 35, + [15660] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -32903,23 +33097,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(640), 1, + ACTIONS(526), 1, anon_sym_LPAREN, - ACTIONS(644), 1, + ACTIONS(530), 1, anon_sym_cl, - ACTIONS(1988), 1, + ACTIONS(2004), 1, sym_self_referential_reader_macro, - STATE(1012), 1, - sym_sym_lit, - STATE(1017), 1, + STATE(1072), 1, sym__bare_set_lit, - STATE(2139), 1, + STATE(1074), 1, + sym_sym_lit, + STATE(2177), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, ACTIONS(215), 2, anon_sym_POUND0A, @@ -32933,22 +33127,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(242), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1984), 2, + ACTIONS(2000), 2, sym__ws, sym_comment, - ACTIONS(1986), 3, + ACTIONS(2002), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(225), 3, + STATE(216), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1015), 3, + STATE(1073), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(11), 19, + STATE(9), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -32968,7 +33162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [15525] = 35, + [15795] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -32977,78 +33171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(927), 1, + ACTIONS(776), 1, aux_sym_num_lit_token1, - ACTIONS(929), 1, + ACTIONS(778), 1, anon_sym_COLON, - ACTIONS(931), 1, + ACTIONS(780), 1, anon_sym_COLON_COLON, - ACTIONS(933), 1, + ACTIONS(782), 1, anon_sym_DQUOTE, - ACTIONS(939), 1, + ACTIONS(788), 1, aux_sym_sym_lit_token1, - ACTIONS(941), 1, + ACTIONS(790), 1, anon_sym_LPAREN, - ACTIONS(947), 1, + ACTIONS(796), 1, anon_sym_POUND_QMARK, - ACTIONS(949), 1, + ACTIONS(798), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(951), 1, + ACTIONS(800), 1, anon_sym_POUND_SQUOTE, - ACTIONS(953), 1, + ACTIONS(802), 1, anon_sym_SQUOTE, - ACTIONS(955), 1, + ACTIONS(804), 1, anon_sym_BQUOTE, - ACTIONS(957), 1, + ACTIONS(806), 1, anon_sym_COMMA_AT, - ACTIONS(959), 1, + ACTIONS(808), 1, anon_sym_COMMA, - ACTIONS(961), 1, + ACTIONS(810), 1, anon_sym_cl, - ACTIONS(1740), 1, + ACTIONS(1562), 1, anon_sym_POUND, - ACTIONS(1994), 1, + ACTIONS(2010), 1, sym_self_referential_reader_macro, - STATE(1687), 1, - sym__bare_set_lit, - STATE(1689), 1, + STATE(1745), 1, sym_sym_lit, - STATE(2148), 1, + STATE(1747), 1, + sym__bare_set_lit, + STATE(2171), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(945), 2, + ACTIONS(794), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(963), 2, + ACTIONS(812), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(967), 2, + ACTIONS(816), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(969), 2, + ACTIONS(818), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1990), 2, + ACTIONS(2006), 2, sym__ws, sym_comment, - ACTIONS(1992), 3, + ACTIONS(2008), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(365), 3, + STATE(366), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(1746), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(104), 19, + STATE(107), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -33068,87 +33262,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [15660] = 35, + [15930] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, - anon_sym_POUND_QMARK, - ACTIONS(35), 1, - anon_sym_POUND_QMARK_AT, ACTIONS(47), 1, sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(690), 1, + ACTIONS(606), 1, + anon_sym_COLON, + ACTIONS(608), 1, + anon_sym_COLON_COLON, + ACTIONS(610), 1, + anon_sym_DQUOTE, + ACTIONS(612), 1, + aux_sym_sym_lit_token1, + ACTIONS(614), 1, + anon_sym_LPAREN, + ACTIONS(618), 1, + anon_sym_POUND_QMARK, + ACTIONS(951), 1, aux_sym_num_lit_token1, - ACTIONS(694), 1, + ACTIONS(955), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(957), 1, anon_sym_POUND_SQUOTE, - ACTIONS(696), 1, + ACTIONS(959), 1, anon_sym_SQUOTE, - ACTIONS(698), 1, + ACTIONS(961), 1, anon_sym_BQUOTE, - ACTIONS(700), 1, + ACTIONS(963), 1, anon_sym_COMMA_AT, - ACTIONS(702), 1, + ACTIONS(965), 1, anon_sym_COMMA, - ACTIONS(1626), 1, - sym_self_referential_reader_macro, - ACTIONS(1882), 1, + ACTIONS(967), 1, + anon_sym_cl, + ACTIONS(1452), 1, anon_sym_POUND, - STATE(1506), 1, - sym_sym_lit, - STATE(1511), 1, + ACTIONS(2016), 1, + sym_self_referential_reader_macro, + STATE(1801), 1, sym__bare_set_lit, - STATE(2126), 1, + STATE(2149), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2244), 1, + sym_sym_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(51), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(57), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(692), 2, + ACTIONS(953), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(704), 2, + ACTIONS(969), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(2012), 2, sym__ws, sym_comment, - ACTIONS(1624), 3, + ACTIONS(2014), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(222), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1515), 19, + STATE(1800), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1822), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -33168,7 +33362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [15795] = 35, + [16065] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -33177,78 +33371,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(2000), 1, + ACTIONS(2022), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1996), 2, + ACTIONS(2018), 2, sym__ws, sym_comment, - ACTIONS(1998), 3, + ACTIONS(2020), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(368), 3, + STATE(369), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2073), 19, + STATE(2002), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -33268,7 +33462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [15930] = 35, + [16200] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -33277,78 +33471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(2006), 1, + ACTIONS(2028), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2002), 2, + ACTIONS(2024), 2, sym__ws, sym_comment, - ACTIONS(2004), 3, + ACTIONS(2026), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(370), 3, + STATE(371), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2072), 19, + STATE(2001), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -33368,7 +33562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [16065] = 35, + [16335] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -33377,78 +33571,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(2012), 1, + ACTIONS(2034), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2008), 2, + ACTIONS(2030), 2, sym__ws, sym_comment, - ACTIONS(2010), 3, + ACTIONS(2032), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(372), 3, + STATE(373), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2071), 19, + STATE(2000), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -33468,7 +33662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [16200] = 35, + [16470] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -33477,78 +33671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(61), 1, - anon_sym_POUND, - ACTIONS(65), 1, + ACTIONS(776), 1, aux_sym_num_lit_token1, - ACTIONS(67), 1, + ACTIONS(778), 1, anon_sym_COLON, - ACTIONS(69), 1, + ACTIONS(780), 1, anon_sym_COLON_COLON, - ACTIONS(71), 1, + ACTIONS(782), 1, anon_sym_DQUOTE, - ACTIONS(73), 1, + ACTIONS(788), 1, aux_sym_sym_lit_token1, - ACTIONS(77), 1, + ACTIONS(790), 1, + anon_sym_LPAREN, + ACTIONS(796), 1, anon_sym_POUND_QMARK, - ACTIONS(79), 1, + ACTIONS(798), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(81), 1, + ACTIONS(800), 1, anon_sym_POUND_SQUOTE, - ACTIONS(83), 1, + ACTIONS(802), 1, anon_sym_SQUOTE, - ACTIONS(85), 1, + ACTIONS(804), 1, anon_sym_BQUOTE, - ACTIONS(87), 1, + ACTIONS(806), 1, anon_sym_COMMA_AT, - ACTIONS(89), 1, + ACTIONS(808), 1, anon_sym_COMMA, - ACTIONS(658), 1, - anon_sym_LPAREN, - ACTIONS(662), 1, + ACTIONS(810), 1, anon_sym_cl, - ACTIONS(2018), 1, + ACTIONS(1562), 1, + anon_sym_POUND, + ACTIONS(2038), 1, sym_self_referential_reader_macro, - STATE(822), 1, + STATE(1745), 1, sym_sym_lit, - STATE(824), 1, + STATE(1747), 1, sym__bare_set_lit, - STATE(2149), 1, + STATE(2171), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(75), 2, + ACTIONS(794), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(93), 2, + ACTIONS(812), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(97), 2, + ACTIONS(816), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(99), 2, + ACTIONS(818), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2014), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2016), 3, + ACTIONS(2036), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(230), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(823), 3, + STATE(1746), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(837), 19, + STATE(1584), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -33568,7 +33762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [16335] = 35, + [16605] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -33577,78 +33771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(2024), 1, + ACTIONS(2044), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2020), 2, + ACTIONS(2040), 2, sym__ws, sym_comment, - ACTIONS(2022), 3, + ACTIONS(2042), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(374), 3, + STATE(375), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2070), 19, + STATE(1999), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -33668,7 +33862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [16470] = 35, + [16740] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -33677,78 +33871,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(586), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(728), 1, aux_sym_num_lit_token1, - ACTIONS(588), 1, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(590), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(592), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(598), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(600), 1, - anon_sym_LPAREN, - ACTIONS(606), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(608), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(610), 1, + ACTIONS(750), 1, anon_sym_POUND_SQUOTE, - ACTIONS(612), 1, + ACTIONS(752), 1, anon_sym_SQUOTE, - ACTIONS(614), 1, + ACTIONS(754), 1, anon_sym_BQUOTE, - ACTIONS(616), 1, + ACTIONS(756), 1, anon_sym_COMMA_AT, - ACTIONS(618), 1, + ACTIONS(758), 1, anon_sym_COMMA, - ACTIONS(620), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(1492), 1, + ACTIONS(975), 1, anon_sym_POUND, - ACTIONS(2030), 1, + ACTIONS(2048), 1, sym_self_referential_reader_macro, - STATE(2125), 1, + STATE(1848), 1, + sym_sym_lit, + STATE(1925), 1, + sym__bare_set_lit, + STATE(2167), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2428), 1, - sym_sym_lit, - ACTIONS(604), 2, + ACTIONS(744), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(622), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(626), 2, + ACTIONS(766), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(628), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2026), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2028), 3, + ACTIONS(2046), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(797), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2422), 19, + STATE(1875), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -33768,87 +33962,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [16605] = 35, + [16875] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(730), 1, + anon_sym_COLON, + ACTIONS(732), 1, + anon_sym_COLON_COLON, + ACTIONS(734), 1, + anon_sym_DQUOTE, + ACTIONS(740), 1, + aux_sym_sym_lit_token1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(690), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(694), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(696), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(698), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(700), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(702), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1618), 1, + ACTIONS(1660), 1, sym_self_referential_reader_macro, - ACTIONS(1882), 1, + ACTIONS(1664), 1, anon_sym_POUND, - STATE(1506), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2126), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(51), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(57), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(692), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(704), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1616), 3, + ACTIONS(1658), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1510), 19, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1957), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -33868,7 +34062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [16740] = 35, + [17010] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -33877,78 +34071,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(877), 1, - aux_sym_num_lit_token1, - ACTIONS(879), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(881), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(883), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(889), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(891), 1, - anon_sym_LPAREN, - ACTIONS(897), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(899), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(901), 1, + ACTIONS(760), 1, + anon_sym_cl, + ACTIONS(838), 1, + aux_sym_num_lit_token1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(903), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(905), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(907), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(909), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(911), 1, - anon_sym_cl, - ACTIONS(2034), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(2038), 1, + ACTIONS(1782), 1, sym_self_referential_reader_macro, - STATE(1165), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1233), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2140), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(895), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(913), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(917), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(919), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2032), 2, + ACTIONS(840), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(852), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(2050), 2, sym__ws, sym_comment, - ACTIONS(2036), 3, + ACTIONS(1780), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(380), 3, + STATE(220), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1275), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1206), 19, + STATE(1959), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -33968,87 +34162,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [16875] = 35, + [17145] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, - anon_sym_POUND_QMARK, - ACTIONS(35), 1, - anon_sym_POUND_QMARK_AT, ACTIONS(47), 1, sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(690), 1, + ACTIONS(664), 1, aux_sym_num_lit_token1, - ACTIONS(694), 1, + ACTIONS(666), 1, + anon_sym_COLON, + ACTIONS(668), 1, + anon_sym_COLON_COLON, + ACTIONS(670), 1, + anon_sym_DQUOTE, + ACTIONS(676), 1, + aux_sym_sym_lit_token1, + ACTIONS(678), 1, + anon_sym_LPAREN, + ACTIONS(684), 1, + anon_sym_POUND_QMARK, + ACTIONS(686), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(688), 1, anon_sym_POUND_SQUOTE, - ACTIONS(696), 1, + ACTIONS(690), 1, anon_sym_SQUOTE, - ACTIONS(698), 1, + ACTIONS(692), 1, anon_sym_BQUOTE, - ACTIONS(700), 1, + ACTIONS(694), 1, anon_sym_COMMA_AT, - ACTIONS(702), 1, + ACTIONS(696), 1, anon_sym_COMMA, - ACTIONS(1610), 1, - sym_self_referential_reader_macro, - ACTIONS(1882), 1, + ACTIONS(698), 1, + anon_sym_cl, + ACTIONS(1444), 1, anon_sym_POUND, - STATE(1506), 1, + ACTIONS(2056), 1, + sym_self_referential_reader_macro, + STATE(1167), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1175), 1, sym__bare_set_lit, - STATE(2126), 1, + STATE(2160), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(57), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(692), 2, + ACTIONS(682), 2, anon_sym_POUND0A, anon_sym_POUND0a, + ACTIONS(700), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, ACTIONS(704), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(706), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(2052), 2, sym__ws, sym_comment, - ACTIONS(1608), 3, + ACTIONS(2054), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(381), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1504), 19, + STATE(1174), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1256), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -34068,7 +34262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [17010] = 35, + [17280] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -34077,78 +34271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(190), 1, - anon_sym_POUND, - ACTIONS(194), 1, - aux_sym_num_lit_token1, - ACTIONS(196), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(198), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(200), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(202), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(217), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(219), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(221), 1, + ACTIONS(760), 1, + anon_sym_cl, + ACTIONS(838), 1, + aux_sym_num_lit_token1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(223), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(227), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(229), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_LPAREN, - ACTIONS(644), 1, - anon_sym_cl, - ACTIONS(2042), 1, + ACTIONS(1664), 1, + anon_sym_POUND, + ACTIONS(1816), 1, sym_self_referential_reader_macro, - STATE(1012), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1017), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2139), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(215), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(236), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(240), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(242), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(840), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(852), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(2058), 2, sym__ws, sym_comment, - ACTIONS(2040), 3, + ACTIONS(1814), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1015), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(409), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1102), 19, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1961), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -34168,87 +34362,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [17145] = 35, + [17415] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, - aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(606), 1, + anon_sym_COLON, + ACTIONS(608), 1, + anon_sym_COLON_COLON, + ACTIONS(610), 1, + anon_sym_DQUOTE, + ACTIONS(612), 1, + aux_sym_sym_lit_token1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(618), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(951), 1, + aux_sym_num_lit_token1, + ACTIONS(955), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(957), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(959), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(961), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(963), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(965), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(967), 1, anon_sym_cl, - ACTIONS(2046), 1, + ACTIONS(1452), 1, + anon_sym_POUND, + ACTIONS(2064), 1, sym_self_referential_reader_macro, - STATE(1506), 1, - sym_sym_lit, - STATE(1511), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2149), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2244), 1, + sym_sym_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(953), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(969), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(2060), 2, sym__ws, sym_comment, - ACTIONS(2044), 3, + ACTIONS(2062), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(239), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(704), 19, + STATE(1800), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1820), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -34268,87 +34462,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [17280] = 35, + [17550] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(730), 1, + anon_sym_COLON, + ACTIONS(732), 1, + anon_sym_COLON_COLON, + ACTIONS(734), 1, + anon_sym_DQUOTE, + ACTIONS(740), 1, + aux_sym_sym_lit_token1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(690), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(694), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(696), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(698), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(700), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(702), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1570), 1, - sym_self_referential_reader_macro, - ACTIONS(1882), 1, + ACTIONS(1664), 1, anon_sym_POUND, - STATE(1506), 1, + ACTIONS(1826), 1, + sym_self_referential_reader_macro, + STATE(1848), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2126), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(51), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(57), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(692), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(704), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2048), 2, + ACTIONS(2066), 2, sym__ws, sym_comment, - ACTIONS(1568), 3, + ACTIONS(1824), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(271), 3, + STATE(810), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1486), 19, + STATE(1963), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -34368,87 +34562,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [17415] = 35, + [17685] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, - aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(606), 1, + anon_sym_COLON, + ACTIONS(608), 1, + anon_sym_COLON_COLON, + ACTIONS(610), 1, + anon_sym_DQUOTE, + ACTIONS(612), 1, + aux_sym_sym_lit_token1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(618), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(951), 1, + aux_sym_num_lit_token1, + ACTIONS(955), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(957), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(959), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(961), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(963), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(965), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(967), 1, anon_sym_cl, - ACTIONS(2052), 1, + ACTIONS(1452), 1, + anon_sym_POUND, + ACTIONS(2072), 1, sym_self_referential_reader_macro, - STATE(1506), 1, - sym_sym_lit, - STATE(1511), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2149), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2244), 1, + sym_sym_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(953), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(969), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(2068), 2, sym__ws, sym_comment, - ACTIONS(2050), 3, + ACTIONS(2070), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(240), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(664), 19, + STATE(1800), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1818), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -34468,7 +34662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [17550] = 35, + [17820] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(17), 1, @@ -34493,33 +34687,33 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(690), 1, + ACTIONS(854), 1, aux_sym_num_lit_token1, - ACTIONS(694), 1, + ACTIONS(858), 1, anon_sym_POUND_SQUOTE, - ACTIONS(696), 1, + ACTIONS(860), 1, anon_sym_SQUOTE, - ACTIONS(698), 1, + ACTIONS(862), 1, anon_sym_BQUOTE, - ACTIONS(700), 1, + ACTIONS(864), 1, anon_sym_COMMA_AT, - ACTIONS(702), 1, + ACTIONS(866), 1, anon_sym_COMMA, - ACTIONS(1564), 1, - sym_self_referential_reader_macro, - ACTIONS(1882), 1, + ACTIONS(2074), 1, anon_sym_POUND, - STATE(1506), 1, + ACTIONS(2078), 1, + sym_self_referential_reader_macro, + STATE(1450), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2126), 1, + STATE(2146), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, ACTIONS(51), 2, anon_sym_POUNDP, @@ -34527,28 +34721,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(692), 2, + ACTIONS(856), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(704), 2, + ACTIONS(868), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1562), 3, + ACTIONS(2076), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1491), 19, + STATE(1475), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -34568,7 +34762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [17685] = 35, + [17955] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -34607,19 +34801,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(2058), 1, + ACTIONS(2084), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -34633,22 +34827,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2054), 2, + ACTIONS(2080), 2, sym__ws, sym_comment, - ACTIONS(2056), 3, + ACTIONS(2082), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(200), 3, + STATE(305), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1542), 19, + STATE(476), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -34668,87 +34862,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [17820] = 35, + [18090] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(730), 1, + anon_sym_COLON, + ACTIONS(732), 1, + anon_sym_COLON_COLON, + ACTIONS(734), 1, + anon_sym_DQUOTE, + ACTIONS(740), 1, + aux_sym_sym_lit_token1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(690), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(694), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(696), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(698), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(700), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(702), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1882), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(2064), 1, + ACTIONS(1870), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2126), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(51), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(57), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(692), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(704), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2060), 2, + ACTIONS(2086), 2, sym__ws, sym_comment, - ACTIONS(2062), 3, + ACTIONS(1868), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(282), 3, + STATE(807), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1541), 19, + STATE(1964), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -34768,9 +34962,13 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [17955] = 35, + [18225] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, ACTIONS(17), 1, anon_sym_COLON, ACTIONS(19), 1, @@ -34789,66 +34987,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(690), 1, - aux_sym_num_lit_token1, - ACTIONS(694), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(696), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(698), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(700), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(702), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(1882), 1, - anon_sym_POUND, - ACTIONS(2058), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(2092), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2126), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, + ACTIONS(31), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, + ACTIONS(55), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(692), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(704), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(2066), 2, + ACTIONS(2088), 2, sym__ws, sym_comment, - ACTIONS(2056), 3, + ACTIONS(2090), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(289), 3, + STATE(269), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1542), 19, + STATE(329), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -34868,7 +35062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [18090] = 35, + [18360] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -34877,78 +35071,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(2072), 1, + ACTIONS(2098), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2068), 2, + ACTIONS(2094), 2, sym__ws, sym_comment, - ACTIONS(2070), 3, + ACTIONS(2096), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(391), 3, + STATE(392), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2065), 19, + STATE(1994), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -34968,9 +35162,13 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [18225] = 35, + [18495] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, ACTIONS(17), 1, anon_sym_COLON, ACTIONS(19), 1, @@ -34989,66 +35187,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(690), 1, - aux_sym_num_lit_token1, - ACTIONS(694), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(696), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(698), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(700), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(702), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(1882), 1, - anon_sym_POUND, - ACTIONS(2078), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(2104), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2126), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, + ACTIONS(31), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, + ACTIONS(55), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(692), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(704), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(2074), 2, + ACTIONS(2100), 2, sym__ws, sym_comment, - ACTIONS(2076), 3, + ACTIONS(2102), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(291), 3, + STATE(270), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1544), 19, + STATE(330), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -35068,9 +35262,13 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [18360] = 35, + [18630] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, ACTIONS(17), 1, anon_sym_COLON, ACTIONS(19), 1, @@ -35089,66 +35287,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(37), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(39), 1, + anon_sym_SQUOTE, + ACTIONS(41), 1, + anon_sym_BQUOTE, + ACTIONS(43), 1, + anon_sym_COMMA_AT, + ACTIONS(45), 1, + anon_sym_COMMA, ACTIONS(47), 1, sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(690), 1, + ACTIONS(2110), 1, + sym_self_referential_reader_macro, + STATE(1450), 1, + sym_sym_lit, + STATE(1452), 1, + sym__bare_set_lit, + STATE(2178), 1, + aux_sym_list_lit_repeat1, + STATE(2221), 1, + sym_old_meta_lit, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, + sym__metadata_lit, + ACTIONS(31), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(2106), 2, + sym__ws, + sym_comment, + ACTIONS(2108), 3, + anon_sym_DOT, + sym_nil_lit, + sym_fancy_literal, + STATE(188), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1451), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(187), 19, + sym__form, + sym_num_lit, + sym_kwd_lit, + sym_str_lit, + sym_char_lit, + sym_list_lit, + sym_vec_lit, + sym_set_lit, + sym_read_cond_lit, + sym_splicing_read_cond_lit, + sym_var_quoting_lit, + sym_quoting_lit, + sym_syn_quoting_lit, + sym_unquote_splicing_lit, + sym_unquoting_lit, + sym_path_lit, + sym_package_lit, + sym_include_reader_macro, + sym_complex_num_lit, + [18765] = 35, + ACTIONS(9), 1, + anon_sym_POUND_, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(694), 1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, + anon_sym_COLON_COLON, + ACTIONS(21), 1, + anon_sym_DQUOTE, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, + anon_sym_POUND_QMARK, + ACTIONS(35), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(696), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(698), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(700), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(702), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(1882), 1, - anon_sym_POUND, - ACTIONS(2084), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(2114), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2126), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, + ACTIONS(31), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, + ACTIONS(55), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(692), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(704), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(2080), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2082), 3, + ACTIONS(2112), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(296), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1550), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(529), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -35168,7 +35462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [18495] = 35, + [18900] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -35177,78 +35471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(588), 1, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(590), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(592), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(598), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(620), 1, - anon_sym_cl, - ACTIONS(670), 1, - aux_sym_num_lit_token1, - ACTIONS(674), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(676), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(678), 1, + ACTIONS(760), 1, + anon_sym_cl, + ACTIONS(838), 1, + aux_sym_num_lit_token1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(680), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(682), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(684), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(686), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1588), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(2090), 1, + ACTIONS(2118), 1, sym_self_referential_reader_macro, - STATE(2150), 1, + STATE(1848), 1, + sym_sym_lit, + STATE(1925), 1, + sym__bare_set_lit, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2428), 1, - sym_sym_lit, - ACTIONS(622), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(628), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(672), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(688), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2086), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2088), 3, + ACTIONS(2116), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(347), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2244), 19, + STATE(1995), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -35268,7 +35562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [18630] = 35, + [19035] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -35277,78 +35571,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(2096), 1, + ACTIONS(1982), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2092), 2, + ACTIONS(2120), 2, sym__ws, sym_comment, - ACTIONS(2094), 3, + ACTIONS(1980), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(756), 3, + STATE(798), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2067), 19, + STATE(1885), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -35368,87 +35662,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [18765] = 35, + [19170] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(524), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, - anon_sym_cl, - ACTIONS(783), 1, - aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(1436), 1, - anon_sym_POUND, - ACTIONS(2100), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(2126), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(564), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(2122), 2, sym__ws, sym_comment, - ACTIONS(2098), 3, + ACTIONS(2124), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(323), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2068), 19, + STATE(540), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -35468,7 +35762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [18900] = 35, + [19305] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -35477,78 +35771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(190), 1, - anon_sym_POUND, - ACTIONS(194), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(728), 1, aux_sym_num_lit_token1, - ACTIONS(196), 1, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(198), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(200), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(202), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(217), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(219), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(221), 1, + ACTIONS(750), 1, anon_sym_POUND_SQUOTE, - ACTIONS(223), 1, + ACTIONS(752), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, + ACTIONS(754), 1, anon_sym_BQUOTE, - ACTIONS(227), 1, + ACTIONS(756), 1, anon_sym_COMMA_AT, - ACTIONS(229), 1, + ACTIONS(758), 1, anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_LPAREN, - ACTIONS(644), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(2104), 1, + ACTIONS(975), 1, + anon_sym_POUND, + ACTIONS(1756), 1, sym_self_referential_reader_macro, - STATE(1012), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1017), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2139), 1, + STATE(2167), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(215), 2, + ACTIONS(744), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(236), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(240), 2, + ACTIONS(766), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(242), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(2128), 2, sym__ws, sym_comment, - ACTIONS(2102), 3, + ACTIONS(1754), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1015), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(352), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1101), 19, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1937), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -35568,87 +35862,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [19035] = 35, + [19440] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, - anon_sym_POUND_QMARK, - ACTIONS(35), 1, - anon_sym_POUND_QMARK_AT, ACTIONS(47), 1, sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(690), 1, + ACTIONS(472), 1, aux_sym_num_lit_token1, - ACTIONS(694), 1, + ACTIONS(474), 1, + anon_sym_COLON, + ACTIONS(476), 1, + anon_sym_COLON_COLON, + ACTIONS(478), 1, + anon_sym_DQUOTE, + ACTIONS(484), 1, + aux_sym_sym_lit_token1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(492), 1, + anon_sym_POUND_QMARK, + ACTIONS(494), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(496), 1, anon_sym_POUND_SQUOTE, - ACTIONS(696), 1, + ACTIONS(498), 1, anon_sym_SQUOTE, - ACTIONS(698), 1, + ACTIONS(500), 1, anon_sym_BQUOTE, - ACTIONS(700), 1, + ACTIONS(502), 1, anon_sym_COMMA_AT, - ACTIONS(702), 1, + ACTIONS(504), 1, anon_sym_COMMA, - ACTIONS(1882), 1, + ACTIONS(506), 1, + anon_sym_cl, + ACTIONS(1794), 1, anon_sym_POUND, - ACTIONS(2108), 1, + ACTIONS(2134), 1, sym_self_referential_reader_macro, - STATE(1506), 1, - sym_sym_lit, - STATE(1511), 1, - sym__bare_set_lit, - STATE(2126), 1, + STATE(2168), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(57), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(692), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2454), 1, + sym_sym_lit, + ACTIONS(490), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(704), 2, + ACTIONS(508), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(512), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(514), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(2130), 2, sym__ws, sym_comment, - ACTIONS(2106), 3, + ACTIONS(2132), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(473), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1552), 19, + STATE(2282), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2330), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -35668,87 +35962,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [19170] = 35, + [19575] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, - anon_sym_POUND_QMARK, - ACTIONS(35), 1, - anon_sym_POUND_QMARK_AT, ACTIONS(47), 1, sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(690), 1, + ACTIONS(776), 1, aux_sym_num_lit_token1, - ACTIONS(694), 1, + ACTIONS(778), 1, + anon_sym_COLON, + ACTIONS(780), 1, + anon_sym_COLON_COLON, + ACTIONS(782), 1, + anon_sym_DQUOTE, + ACTIONS(788), 1, + aux_sym_sym_lit_token1, + ACTIONS(790), 1, + anon_sym_LPAREN, + ACTIONS(796), 1, + anon_sym_POUND_QMARK, + ACTIONS(798), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(800), 1, anon_sym_POUND_SQUOTE, - ACTIONS(696), 1, + ACTIONS(802), 1, anon_sym_SQUOTE, - ACTIONS(698), 1, + ACTIONS(804), 1, anon_sym_BQUOTE, - ACTIONS(700), 1, + ACTIONS(806), 1, anon_sym_COMMA_AT, - ACTIONS(702), 1, + ACTIONS(808), 1, anon_sym_COMMA, - ACTIONS(1882), 1, + ACTIONS(810), 1, + anon_sym_cl, + ACTIONS(1562), 1, anon_sym_POUND, - ACTIONS(2112), 1, + ACTIONS(2138), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1745), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1747), 1, sym__bare_set_lit, - STATE(2126), 1, + STATE(2171), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(57), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(692), 2, + ACTIONS(794), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(704), 2, + ACTIONS(812), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(816), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(818), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2110), 3, + ACTIONS(2136), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1555), 19, + STATE(1746), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1582), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -35768,87 +36062,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [19305] = 35, + [19710] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, - anon_sym_POUND_QMARK, - ACTIONS(35), 1, - anon_sym_POUND_QMARK_AT, ACTIONS(47), 1, sym_block_comment, - ACTIONS(49), 1, + ACTIONS(474), 1, + anon_sym_COLON, + ACTIONS(476), 1, + anon_sym_COLON_COLON, + ACTIONS(478), 1, + anon_sym_DQUOTE, + ACTIONS(484), 1, + aux_sym_sym_lit_token1, + ACTIONS(506), 1, anon_sym_cl, - ACTIONS(690), 1, + ACTIONS(604), 1, aux_sym_num_lit_token1, - ACTIONS(694), 1, + ACTIONS(640), 1, + anon_sym_LPAREN, + ACTIONS(642), 1, + anon_sym_POUND_QMARK, + ACTIONS(644), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(646), 1, anon_sym_POUND_SQUOTE, - ACTIONS(696), 1, + ACTIONS(648), 1, anon_sym_SQUOTE, - ACTIONS(698), 1, + ACTIONS(650), 1, anon_sym_BQUOTE, - ACTIONS(700), 1, + ACTIONS(652), 1, anon_sym_COMMA_AT, - ACTIONS(702), 1, + ACTIONS(654), 1, anon_sym_COMMA, - ACTIONS(1882), 1, + ACTIONS(1470), 1, anon_sym_POUND, - ACTIONS(2116), 1, + ACTIONS(2134), 1, sym_self_referential_reader_macro, - STATE(1506), 1, - sym_sym_lit, - STATE(1511), 1, - sym__bare_set_lit, - STATE(2126), 1, + STATE(2142), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(51), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2454), 1, + sym_sym_lit, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(57), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(692), 2, + ACTIONS(616), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(704), 2, + ACTIONS(656), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(2140), 2, sym__ws, sym_comment, - ACTIONS(2114), 3, + ACTIONS(2132), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1556), 19, + STATE(2282), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2330), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -35868,9 +36162,13 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [19440] = 35, + [19845] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, ACTIONS(17), 1, anon_sym_COLON, ACTIONS(19), 1, @@ -35889,66 +36187,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(690), 1, - aux_sym_num_lit_token1, - ACTIONS(694), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(696), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(698), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(700), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(702), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(1882), 1, - anon_sym_POUND, - ACTIONS(2120), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(2144), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2126), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, + ACTIONS(31), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, + ACTIONS(55), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(692), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(704), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2118), 3, + ACTIONS(2142), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1557), 19, + STATE(347), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -35968,87 +36262,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [19575] = 35, + [19980] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(730), 1, + anon_sym_COLON, + ACTIONS(732), 1, + anon_sym_COLON_COLON, + ACTIONS(734), 1, + anon_sym_DQUOTE, + ACTIONS(740), 1, + aux_sym_sym_lit_token1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(690), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(694), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(696), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(698), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(700), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(702), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1882), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(2124), 1, + ACTIONS(2150), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2126), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(51), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(57), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(692), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(704), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(2146), 2, sym__ws, sym_comment, - ACTIONS(2122), 3, + ACTIONS(2148), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(406), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1558), 19, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1993), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -36068,7 +36362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [19710] = 35, + [20115] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -36077,49 +36371,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(803), 1, + ACTIONS(606), 1, anon_sym_COLON, - ACTIONS(805), 1, + ACTIONS(608), 1, anon_sym_COLON_COLON, - ACTIONS(807), 1, + ACTIONS(610), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(612), 1, aux_sym_sym_lit_token1, - ACTIONS(811), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(618), 1, anon_sym_POUND_QMARK, - ACTIONS(837), 1, + ACTIONS(951), 1, aux_sym_num_lit_token1, - ACTIONS(847), 1, + ACTIONS(955), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(849), 1, + ACTIONS(957), 1, anon_sym_POUND_SQUOTE, - ACTIONS(851), 1, + ACTIONS(959), 1, anon_sym_SQUOTE, - ACTIONS(853), 1, + ACTIONS(961), 1, anon_sym_BQUOTE, - ACTIONS(855), 1, + ACTIONS(963), 1, anon_sym_COMMA_AT, - ACTIONS(857), 1, + ACTIONS(965), 1, anon_sym_COMMA, - ACTIONS(859), 1, + ACTIONS(967), 1, anon_sym_cl, - ACTIONS(1466), 1, + ACTIONS(1452), 1, anon_sym_POUND, - ACTIONS(2128), 1, + ACTIONS(2156), 1, sym_self_referential_reader_macro, - STATE(1794), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2152), 1, + STATE(2149), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2223), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2244), 1, sym_sym_lit, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, ACTIONS(312), 2, anon_sym_POUNDP, @@ -36127,28 +36421,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(845), 2, + ACTIONS(953), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(863), 2, + ACTIONS(969), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(2152), 2, sym__ws, sym_comment, - ACTIONS(2126), 3, + ACTIONS(2154), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(241), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1800), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2147), 19, + STATE(1816), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -36168,7 +36462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [19845] = 35, + [20250] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -36177,78 +36471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(506), 1, + anon_sym_cl, + ACTIONS(604), 1, + aux_sym_num_lit_token1, + ACTIONS(640), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(642), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(644), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, - anon_sym_cl, - ACTIONS(783), 1, - aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(646), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(648), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(650), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(652), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(654), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1470), 1, anon_sym_POUND, - ACTIONS(2134), 1, + ACTIONS(2162), 1, sym_self_referential_reader_macro, - STATE(1825), 1, - sym_sym_lit, - STATE(1887), 1, - sym__bare_set_lit, - STATE(2138), 1, + STATE(2142), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2454), 1, + sym_sym_lit, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(616), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(656), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2130), 2, + ACTIONS(2158), 2, sym__ws, sym_comment, - ACTIONS(2132), 3, + ACTIONS(2160), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(405), 3, + STATE(258), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2029), 19, + STATE(2329), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -36268,87 +36562,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [19980] = 35, + [20385] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, - anon_sym_POUND_QMARK, - ACTIONS(35), 1, - anon_sym_POUND_QMARK_AT, ACTIONS(47), 1, sym_block_comment, - ACTIONS(49), 1, + ACTIONS(474), 1, + anon_sym_COLON, + ACTIONS(476), 1, + anon_sym_COLON_COLON, + ACTIONS(478), 1, + anon_sym_DQUOTE, + ACTIONS(484), 1, + aux_sym_sym_lit_token1, + ACTIONS(506), 1, anon_sym_cl, - ACTIONS(690), 1, + ACTIONS(604), 1, aux_sym_num_lit_token1, - ACTIONS(694), 1, + ACTIONS(640), 1, + anon_sym_LPAREN, + ACTIONS(642), 1, + anon_sym_POUND_QMARK, + ACTIONS(644), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(646), 1, anon_sym_POUND_SQUOTE, - ACTIONS(696), 1, + ACTIONS(648), 1, anon_sym_SQUOTE, - ACTIONS(698), 1, + ACTIONS(650), 1, anon_sym_BQUOTE, - ACTIONS(700), 1, + ACTIONS(652), 1, anon_sym_COMMA_AT, - ACTIONS(702), 1, + ACTIONS(654), 1, anon_sym_COMMA, - ACTIONS(1882), 1, + ACTIONS(1470), 1, anon_sym_POUND, - ACTIONS(2140), 1, + ACTIONS(2168), 1, sym_self_referential_reader_macro, - STATE(1506), 1, - sym_sym_lit, - STATE(1511), 1, - sym__bare_set_lit, - STATE(2126), 1, + STATE(2142), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(51), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2454), 1, + sym_sym_lit, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(57), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(692), 2, + ACTIONS(616), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(704), 2, + ACTIONS(656), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2136), 2, + ACTIONS(2164), 2, sym__ws, sym_comment, - ACTIONS(2138), 3, + ACTIONS(2166), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(307), 3, + STATE(259), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1480), 19, + STATE(2327), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -36368,87 +36662,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [20115] = 35, + [20520] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, - anon_sym_POUND_QMARK, - ACTIONS(35), 1, - anon_sym_POUND_QMARK_AT, ACTIONS(47), 1, sym_block_comment, - ACTIONS(49), 1, + ACTIONS(474), 1, + anon_sym_COLON, + ACTIONS(476), 1, + anon_sym_COLON_COLON, + ACTIONS(478), 1, + anon_sym_DQUOTE, + ACTIONS(484), 1, + aux_sym_sym_lit_token1, + ACTIONS(506), 1, anon_sym_cl, - ACTIONS(690), 1, + ACTIONS(604), 1, aux_sym_num_lit_token1, - ACTIONS(694), 1, + ACTIONS(640), 1, + anon_sym_LPAREN, + ACTIONS(642), 1, + anon_sym_POUND_QMARK, + ACTIONS(644), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(646), 1, anon_sym_POUND_SQUOTE, - ACTIONS(696), 1, + ACTIONS(648), 1, anon_sym_SQUOTE, - ACTIONS(698), 1, + ACTIONS(650), 1, anon_sym_BQUOTE, - ACTIONS(700), 1, + ACTIONS(652), 1, anon_sym_COMMA_AT, - ACTIONS(702), 1, + ACTIONS(654), 1, anon_sym_COMMA, - ACTIONS(1882), 1, + ACTIONS(1470), 1, anon_sym_POUND, - ACTIONS(2146), 1, + ACTIONS(2174), 1, sym_self_referential_reader_macro, - STATE(1506), 1, - sym_sym_lit, - STATE(1511), 1, - sym__bare_set_lit, - STATE(2126), 1, + STATE(2142), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(51), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2454), 1, + sym_sym_lit, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(57), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(692), 2, + ACTIONS(616), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(704), 2, + ACTIONS(656), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2142), 2, + ACTIONS(2170), 2, sym__ws, sym_comment, - ACTIONS(2144), 3, + ACTIONS(2172), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(308), 3, + STATE(267), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1484), 19, + STATE(2325), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -36468,9 +36762,13 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [20250] = 35, + [20655] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, ACTIONS(17), 1, anon_sym_COLON, ACTIONS(19), 1, @@ -36489,66 +36787,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(690), 1, - aux_sym_num_lit_token1, - ACTIONS(694), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(696), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(698), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(700), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(702), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(1882), 1, - anon_sym_POUND, - ACTIONS(2152), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(2180), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2126), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, + ACTIONS(31), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, + ACTIONS(55), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(692), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(704), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(2148), 2, + ACTIONS(2176), 2, sym__ws, sym_comment, - ACTIONS(2150), 3, + ACTIONS(2178), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(309), 3, + STATE(339), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1521), 19, + STATE(542), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -36568,87 +36862,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [20385] = 35, + [20790] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, - anon_sym_POUND_QMARK, - ACTIONS(35), 1, - anon_sym_POUND_QMARK_AT, ACTIONS(47), 1, sym_block_comment, - ACTIONS(49), 1, + ACTIONS(474), 1, + anon_sym_COLON, + ACTIONS(476), 1, + anon_sym_COLON_COLON, + ACTIONS(478), 1, + anon_sym_DQUOTE, + ACTIONS(484), 1, + aux_sym_sym_lit_token1, + ACTIONS(506), 1, anon_sym_cl, - ACTIONS(690), 1, + ACTIONS(604), 1, aux_sym_num_lit_token1, - ACTIONS(694), 1, + ACTIONS(640), 1, + anon_sym_LPAREN, + ACTIONS(642), 1, + anon_sym_POUND_QMARK, + ACTIONS(644), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(646), 1, anon_sym_POUND_SQUOTE, - ACTIONS(696), 1, + ACTIONS(648), 1, anon_sym_SQUOTE, - ACTIONS(698), 1, + ACTIONS(650), 1, anon_sym_BQUOTE, - ACTIONS(700), 1, + ACTIONS(652), 1, anon_sym_COMMA_AT, - ACTIONS(702), 1, + ACTIONS(654), 1, anon_sym_COMMA, - ACTIONS(1882), 1, + ACTIONS(1470), 1, anon_sym_POUND, - ACTIONS(2158), 1, + ACTIONS(2186), 1, sym_self_referential_reader_macro, - STATE(1506), 1, - sym_sym_lit, - STATE(1511), 1, - sym__bare_set_lit, - STATE(2126), 1, + STATE(2142), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(51), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2454), 1, + sym_sym_lit, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(57), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(692), 2, + ACTIONS(616), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(704), 2, + ACTIONS(656), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2154), 2, + ACTIONS(2182), 2, sym__ws, sym_comment, - ACTIONS(2156), 3, + ACTIONS(2184), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(310), 3, + STATE(268), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1524), 19, + STATE(2324), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -36668,7 +36962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [20520] = 35, + [20925] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -36677,78 +36971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(61), 1, - anon_sym_POUND, - ACTIONS(65), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(728), 1, aux_sym_num_lit_token1, - ACTIONS(67), 1, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(69), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(71), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(73), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(77), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(79), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(81), 1, + ACTIONS(750), 1, anon_sym_POUND_SQUOTE, - ACTIONS(83), 1, + ACTIONS(752), 1, anon_sym_SQUOTE, - ACTIONS(85), 1, + ACTIONS(754), 1, anon_sym_BQUOTE, - ACTIONS(87), 1, + ACTIONS(756), 1, anon_sym_COMMA_AT, - ACTIONS(89), 1, + ACTIONS(758), 1, anon_sym_COMMA, - ACTIONS(658), 1, - anon_sym_LPAREN, - ACTIONS(662), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(2162), 1, + ACTIONS(975), 1, + anon_sym_POUND, + ACTIONS(2190), 1, sym_self_referential_reader_macro, - STATE(822), 1, + STATE(1848), 1, sym_sym_lit, - STATE(824), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2149), 1, + STATE(2167), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(75), 2, + ACTIONS(744), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(93), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(97), 2, + ACTIONS(766), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(99), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2160), 3, + ACTIONS(2188), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(823), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(878), 19, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1932), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -36768,87 +37062,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [20655] = 35, + [21060] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, - anon_sym_POUND_QMARK, - ACTIONS(35), 1, - anon_sym_POUND_QMARK_AT, ACTIONS(47), 1, sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(690), 1, + ACTIONS(776), 1, aux_sym_num_lit_token1, - ACTIONS(694), 1, + ACTIONS(778), 1, + anon_sym_COLON, + ACTIONS(780), 1, + anon_sym_COLON_COLON, + ACTIONS(782), 1, + anon_sym_DQUOTE, + ACTIONS(788), 1, + aux_sym_sym_lit_token1, + ACTIONS(790), 1, + anon_sym_LPAREN, + ACTIONS(796), 1, + anon_sym_POUND_QMARK, + ACTIONS(798), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(800), 1, anon_sym_POUND_SQUOTE, - ACTIONS(696), 1, + ACTIONS(802), 1, anon_sym_SQUOTE, - ACTIONS(698), 1, + ACTIONS(804), 1, anon_sym_BQUOTE, - ACTIONS(700), 1, + ACTIONS(806), 1, anon_sym_COMMA_AT, - ACTIONS(702), 1, + ACTIONS(808), 1, anon_sym_COMMA, - ACTIONS(1882), 1, + ACTIONS(810), 1, + anon_sym_cl, + ACTIONS(1562), 1, anon_sym_POUND, - ACTIONS(2168), 1, + ACTIONS(2194), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1745), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1747), 1, sym__bare_set_lit, - STATE(2126), 1, + STATE(2171), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(57), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(692), 2, + ACTIONS(794), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(704), 2, + ACTIONS(812), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(816), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2164), 2, + ACTIONS(818), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2166), 3, + ACTIONS(2192), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(311), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(1746), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1529), 19, + STATE(1779), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -36868,87 +37162,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [20790] = 35, + [21195] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, + anon_sym_COLON_COLON, + ACTIONS(21), 1, + anon_sym_DQUOTE, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(536), 1, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(588), 1, - anon_sym_COLON, - ACTIONS(590), 1, - anon_sym_COLON_COLON, - ACTIONS(592), 1, - anon_sym_DQUOTE, - ACTIONS(598), 1, - aux_sym_sym_lit_token1, - ACTIONS(620), 1, - anon_sym_cl, - ACTIONS(670), 1, - aux_sym_num_lit_token1, - ACTIONS(674), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(676), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(678), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(680), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(682), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(684), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(686), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(1588), 1, - anon_sym_POUND, - ACTIONS(2172), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(2198), 1, sym_self_referential_reader_macro, - STATE(2150), 1, + STATE(1450), 1, + sym_sym_lit, + STATE(1452), 1, + sym__bare_set_lit, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2428), 1, - sym_sym_lit, - ACTIONS(622), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(628), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(672), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(688), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2170), 3, + ACTIONS(2196), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2243), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(567), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -36968,7 +37262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [20925] = 35, + [21330] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -36977,78 +37271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(588), 1, + ACTIONS(728), 1, + aux_sym_num_lit_token1, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(590), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(592), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(598), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(620), 1, - anon_sym_cl, - ACTIONS(670), 1, - aux_sym_num_lit_token1, - ACTIONS(674), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(676), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(678), 1, + ACTIONS(750), 1, anon_sym_POUND_SQUOTE, - ACTIONS(680), 1, + ACTIONS(752), 1, anon_sym_SQUOTE, - ACTIONS(682), 1, + ACTIONS(754), 1, anon_sym_BQUOTE, - ACTIONS(684), 1, + ACTIONS(756), 1, anon_sym_COMMA_AT, - ACTIONS(686), 1, + ACTIONS(758), 1, anon_sym_COMMA, - ACTIONS(1588), 1, + ACTIONS(760), 1, + anon_sym_cl, + ACTIONS(975), 1, anon_sym_POUND, - ACTIONS(2178), 1, + ACTIONS(2204), 1, sym_self_referential_reader_macro, - STATE(2150), 1, + STATE(1848), 1, + sym_sym_lit, + STATE(1925), 1, + sym__bare_set_lit, + STATE(2167), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2428), 1, - sym_sym_lit, - ACTIONS(622), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(628), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(672), 2, + ACTIONS(744), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(688), 2, + ACTIONS(762), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(766), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2174), 2, + ACTIONS(768), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(2200), 2, sym__ws, sym_comment, - ACTIONS(2176), 3, + ACTIONS(2202), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(350), 3, + STATE(379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2242), 19, + STATE(1949), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -37068,7 +37362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [21060] = 35, + [21465] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -37077,78 +37371,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(728), 1, + aux_sym_num_lit_token1, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, - anon_sym_cl, - ACTIONS(783), 1, - aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(750), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(752), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(754), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(756), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(758), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(760), 1, + anon_sym_cl, + ACTIONS(975), 1, anon_sym_POUND, - ACTIONS(2182), 1, + ACTIONS(2210), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2167), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(564), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(744), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(762), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(766), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(768), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(2206), 2, sym__ws, sym_comment, - ACTIONS(2180), 3, + ACTIONS(2208), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(413), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1930), 19, + STATE(1950), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -37168,7 +37462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [21195] = 35, + [21600] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -37177,78 +37471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(556), 1, + aux_sym_num_lit_token1, + ACTIONS(558), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(560), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(562), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(568), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(570), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(576), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(578), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, - anon_sym_cl, - ACTIONS(783), 1, - aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(580), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(582), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(584), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(586), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(588), 1, anon_sym_COMMA, + ACTIONS(590), 1, + anon_sym_cl, ACTIONS(1436), 1, anon_sym_POUND, - ACTIONS(2188), 1, + ACTIONS(2214), 1, sym_self_referential_reader_macro, - STATE(1825), 1, - sym_sym_lit, - STATE(1887), 1, + STATE(1386), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(1388), 1, + sym_sym_lit, + STATE(2172), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(564), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(574), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(592), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(596), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2184), 2, + ACTIONS(598), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2186), 3, + ACTIONS(2212), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(329), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1387), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1931), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1367), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -37268,7 +37562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [21330] = 35, + [21735] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -37277,78 +37571,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(556), 1, + aux_sym_num_lit_token1, + ACTIONS(558), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(560), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(562), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(568), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(570), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(576), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(578), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, - anon_sym_cl, - ACTIONS(783), 1, - aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(580), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(582), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(584), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(586), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(588), 1, anon_sym_COMMA, + ACTIONS(590), 1, + anon_sym_cl, ACTIONS(1436), 1, anon_sym_POUND, - ACTIONS(2192), 1, + ACTIONS(2218), 1, sym_self_referential_reader_macro, - STATE(1825), 1, - sym_sym_lit, - STATE(1887), 1, + STATE(1386), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(1388), 1, + sym_sym_lit, + STATE(2172), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(564), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(574), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(592), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(596), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(598), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2190), 3, + ACTIONS(2216), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1387), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1933), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1366), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -37368,7 +37662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [21465] = 35, + [21870] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -37377,78 +37671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(728), 1, + aux_sym_num_lit_token1, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, - anon_sym_cl, - ACTIONS(783), 1, - aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(750), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(752), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(754), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(756), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(758), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(760), 1, + anon_sym_cl, + ACTIONS(975), 1, anon_sym_POUND, - ACTIONS(2196), 1, + ACTIONS(1776), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2167), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(564), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(744), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(762), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(766), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(768), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(2220), 2, sym__ws, sym_comment, - ACTIONS(2194), 3, + ACTIONS(1774), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(209), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1934), 19, + STATE(1939), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -37468,7 +37762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [21600] = 35, + [22005] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -37477,78 +37771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(776), 1, + aux_sym_num_lit_token1, + ACTIONS(778), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(780), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(782), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(788), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(790), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(796), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(798), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, - anon_sym_cl, - ACTIONS(783), 1, - aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(800), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(802), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(804), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(806), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(808), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(810), 1, + anon_sym_cl, + ACTIONS(1562), 1, anon_sym_POUND, - ACTIONS(2200), 1, + ACTIONS(2226), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1745), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1747), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2171), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(564), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(794), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(812), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(816), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(818), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(2222), 2, sym__ws, sym_comment, - ACTIONS(2198), 3, + ACTIONS(2224), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(264), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1746), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1935), 19, + STATE(1575), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -37568,7 +37862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [21735] = 35, + [22140] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -37577,78 +37871,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(776), 1, + aux_sym_num_lit_token1, + ACTIONS(778), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(780), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(782), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(788), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(790), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(796), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(798), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, - anon_sym_cl, - ACTIONS(783), 1, - aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(800), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(802), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(804), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(806), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(808), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(810), 1, + anon_sym_cl, + ACTIONS(1562), 1, anon_sym_POUND, - ACTIONS(2206), 1, + ACTIONS(2232), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1745), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1747), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2171), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(564), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(794), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(812), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(816), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2202), 2, + ACTIONS(818), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(2228), 2, sym__ws, sym_comment, - ACTIONS(2204), 3, + ACTIONS(2230), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(330), 3, + STATE(288), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1746), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1936), 19, + STATE(1737), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -37668,87 +37962,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [21870] = 35, + [22275] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(524), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, - anon_sym_cl, - ACTIONS(783), 1, - aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(1436), 1, - anon_sym_POUND, - ACTIONS(2212), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(2238), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(564), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2208), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(2234), 2, sym__ws, sym_comment, - ACTIONS(2210), 3, + ACTIONS(2236), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(333), 3, + STATE(313), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1928), 19, + STATE(428), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -37768,107 +38062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [22005] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(524), 1, - anon_sym_COLON, - ACTIONS(526), 1, - anon_sym_COLON_COLON, - ACTIONS(528), 1, - anon_sym_DQUOTE, - ACTIONS(534), 1, - aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, - anon_sym_POUND_QMARK, - ACTIONS(544), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, - anon_sym_cl, - ACTIONS(783), 1, - aux_sym_num_lit_token1, - ACTIONS(787), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, - anon_sym_SQUOTE, - ACTIONS(791), 1, - anon_sym_BQUOTE, - ACTIONS(793), 1, - anon_sym_COMMA_AT, - ACTIONS(795), 1, - anon_sym_COMMA, - ACTIONS(1436), 1, - anon_sym_POUND, - ACTIONS(2216), 1, - sym_self_referential_reader_macro, - STATE(1825), 1, - sym_sym_lit, - STATE(1887), 1, - sym__bare_set_lit, - STATE(2138), 1, - aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, - sym_old_meta_lit, - STATE(2239), 1, - sym__metadata_lit, - ACTIONS(558), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(564), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(785), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(797), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1434), 2, - sym__ws, - sym_comment, - ACTIONS(2214), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1564), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1886), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1953), 19, - sym__form, - sym_num_lit, - sym_kwd_lit, - sym_str_lit, - sym_char_lit, - sym_list_lit, - sym_vec_lit, - sym_set_lit, - sym_read_cond_lit, - sym_splicing_read_cond_lit, - sym_var_quoting_lit, - sym_quoting_lit, - sym_syn_quoting_lit, - sym_unquote_splicing_lit, - sym_unquoting_lit, - sym_path_lit, - sym_package_lit, - sym_include_reader_macro, - sym_complex_num_lit, - [22140] = 35, + [22410] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -37877,178 +38071,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, - anon_sym_COLON, - ACTIONS(526), 1, - anon_sym_COLON_COLON, - ACTIONS(528), 1, - anon_sym_DQUOTE, - ACTIONS(534), 1, - aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, - anon_sym_POUND_QMARK, - ACTIONS(544), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, - anon_sym_cl, - ACTIONS(783), 1, - aux_sym_num_lit_token1, - ACTIONS(787), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, - anon_sym_SQUOTE, - ACTIONS(791), 1, - anon_sym_BQUOTE, - ACTIONS(793), 1, - anon_sym_COMMA_AT, - ACTIONS(795), 1, - anon_sym_COMMA, - ACTIONS(1436), 1, - anon_sym_POUND, - ACTIONS(2220), 1, - sym_self_referential_reader_macro, - STATE(1825), 1, - sym_sym_lit, - STATE(1887), 1, - sym__bare_set_lit, - STATE(2138), 1, - aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, - sym_old_meta_lit, - STATE(2239), 1, - sym__metadata_lit, - ACTIONS(558), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(564), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(785), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(797), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1434), 2, - sym__ws, - sym_comment, - ACTIONS(2218), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1564), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1886), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 19, - sym__form, - sym_num_lit, - sym_kwd_lit, - sym_str_lit, - sym_char_lit, - sym_list_lit, - sym_vec_lit, - sym_set_lit, - sym_read_cond_lit, - sym_splicing_read_cond_lit, - sym_var_quoting_lit, - sym_quoting_lit, - sym_syn_quoting_lit, - sym_unquote_splicing_lit, - sym_unquoting_lit, - sym_path_lit, - sym_package_lit, - sym_include_reader_macro, - sym_complex_num_lit, - [22275] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(61), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(65), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(67), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(69), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(73), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(77), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(79), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(81), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(87), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(89), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(830), 1, + anon_sym_LPAREN, + ACTIONS(834), 1, anon_sym_cl, - ACTIONS(2224), 1, + ACTIONS(2242), 1, sym_self_referential_reader_macro, - STATE(1506), 1, - sym_sym_lit, - STATE(1511), 1, + STATE(927), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(929), 1, + sym_sym_lit, + STATE(2169), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(75), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(93), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(97), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(99), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2222), 3, + ACTIONS(2240), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, + STATE(928), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(785), 19, + STATE(845), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -38068,7 +38162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [22410] = 35, + [22545] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -38077,78 +38171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(776), 1, + aux_sym_num_lit_token1, + ACTIONS(778), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(780), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(782), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(788), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(790), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(796), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(798), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, - anon_sym_cl, - ACTIONS(783), 1, - aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(800), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(802), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(804), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(806), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(808), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(810), 1, + anon_sym_cl, + ACTIONS(1562), 1, anon_sym_POUND, - ACTIONS(2230), 1, + ACTIONS(2246), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1745), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1747), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2171), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(564), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(794), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(812), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(816), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2226), 2, + ACTIONS(818), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2228), 3, + ACTIONS(2244), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(335), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1746), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1950), 19, + STATE(1736), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -38168,7 +38262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [22545] = 35, + [22680] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -38177,78 +38271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(556), 1, + aux_sym_num_lit_token1, + ACTIONS(558), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(560), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(562), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(568), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(570), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(576), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(578), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, - anon_sym_cl, - ACTIONS(783), 1, - aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(580), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(582), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(584), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(586), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(588), 1, anon_sym_COMMA, + ACTIONS(590), 1, + anon_sym_cl, ACTIONS(1436), 1, anon_sym_POUND, - ACTIONS(2234), 1, + ACTIONS(2252), 1, sym_self_referential_reader_macro, - STATE(1825), 1, - sym_sym_lit, - STATE(1887), 1, + STATE(1386), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(1388), 1, + sym_sym_lit, + STATE(2172), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(564), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(574), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(592), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(596), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(598), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(2248), 2, sym__ws, sym_comment, - ACTIONS(2232), 3, + ACTIONS(2250), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(326), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1387), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1949), 19, + STATE(1350), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -38268,7 +38362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [22680] = 35, + [22815] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -38277,78 +38371,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(776), 1, + aux_sym_num_lit_token1, + ACTIONS(778), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(780), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(782), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(788), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(790), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(796), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(798), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, - anon_sym_cl, - ACTIONS(783), 1, - aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(800), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(802), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(804), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(806), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(808), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(810), 1, + anon_sym_cl, + ACTIONS(1562), 1, anon_sym_POUND, - ACTIONS(2240), 1, + ACTIONS(2256), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1745), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1747), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2171), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(564), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(794), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(812), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(816), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2236), 2, + ACTIONS(818), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2238), 3, + ACTIONS(2254), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(336), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1746), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1948), 19, + STATE(1760), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -38368,7 +38462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [22815] = 35, + [22950] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -38377,78 +38471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(556), 1, + aux_sym_num_lit_token1, + ACTIONS(558), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(560), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(562), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(568), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(570), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(576), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(578), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, - anon_sym_cl, - ACTIONS(783), 1, - aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(580), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(582), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(584), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(586), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(588), 1, anon_sym_COMMA, + ACTIONS(590), 1, + anon_sym_cl, ACTIONS(1436), 1, anon_sym_POUND, - ACTIONS(2244), 1, + ACTIONS(2260), 1, sym_self_referential_reader_macro, - STATE(1825), 1, - sym_sym_lit, - STATE(1887), 1, + STATE(1386), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(1388), 1, + sym_sym_lit, + STATE(2172), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(564), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(574), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(592), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(596), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(598), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2242), 3, + ACTIONS(2258), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1387), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1945), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1341), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -38468,7 +38562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [22950] = 35, + [23085] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -38477,78 +38571,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(776), 1, + aux_sym_num_lit_token1, + ACTIONS(778), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(780), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(782), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(788), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(790), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(796), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(798), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, - anon_sym_cl, - ACTIONS(783), 1, - aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(800), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(802), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(804), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(806), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(808), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(810), 1, + anon_sym_cl, + ACTIONS(1562), 1, anon_sym_POUND, - ACTIONS(2248), 1, + ACTIONS(2264), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1745), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1747), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2171), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(564), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(794), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(812), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(816), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(818), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2246), 3, + ACTIONS(2262), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1746), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1944), 19, + STATE(1761), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -38568,7 +38662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [23085] = 35, + [23220] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -38577,78 +38671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(586), 1, + ACTIONS(556), 1, aux_sym_num_lit_token1, - ACTIONS(588), 1, + ACTIONS(558), 1, anon_sym_COLON, - ACTIONS(590), 1, + ACTIONS(560), 1, anon_sym_COLON_COLON, - ACTIONS(592), 1, + ACTIONS(562), 1, anon_sym_DQUOTE, - ACTIONS(598), 1, + ACTIONS(568), 1, aux_sym_sym_lit_token1, - ACTIONS(600), 1, + ACTIONS(570), 1, anon_sym_LPAREN, - ACTIONS(606), 1, + ACTIONS(576), 1, anon_sym_POUND_QMARK, - ACTIONS(608), 1, + ACTIONS(578), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(610), 1, + ACTIONS(580), 1, anon_sym_POUND_SQUOTE, - ACTIONS(612), 1, + ACTIONS(582), 1, anon_sym_SQUOTE, - ACTIONS(614), 1, + ACTIONS(584), 1, anon_sym_BQUOTE, - ACTIONS(616), 1, + ACTIONS(586), 1, anon_sym_COMMA_AT, - ACTIONS(618), 1, + ACTIONS(588), 1, anon_sym_COMMA, - ACTIONS(620), 1, + ACTIONS(590), 1, anon_sym_cl, - ACTIONS(1492), 1, + ACTIONS(1436), 1, anon_sym_POUND, - ACTIONS(2252), 1, + ACTIONS(2270), 1, sym_self_referential_reader_macro, - STATE(2125), 1, + STATE(1386), 1, + sym__bare_set_lit, + STATE(1388), 1, + sym_sym_lit, + STATE(2172), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2428), 1, - sym_sym_lit, - ACTIONS(604), 2, + ACTIONS(574), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(622), 2, + ACTIONS(592), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(626), 2, + ACTIONS(596), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(628), 2, + ACTIONS(598), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(2266), 2, sym__ws, sym_comment, - ACTIONS(2250), 3, + ACTIONS(2268), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(327), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1387), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2260), 19, + STATE(1335), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -38668,7 +38762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [23220] = 35, + [23355] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -38707,19 +38801,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(2256), 1, + ACTIONS(2274), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -38733,22 +38827,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2254), 3, + ACTIONS(2272), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(774), 19, + STATE(605), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -38768,7 +38862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [23355] = 35, + [23490] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -38777,78 +38871,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(586), 1, - aux_sym_num_lit_token1, - ACTIONS(588), 1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(590), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(592), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(598), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(600), 1, + ACTIONS(506), 1, + anon_sym_cl, + ACTIONS(604), 1, + aux_sym_num_lit_token1, + ACTIONS(640), 1, anon_sym_LPAREN, - ACTIONS(606), 1, + ACTIONS(642), 1, anon_sym_POUND_QMARK, - ACTIONS(608), 1, + ACTIONS(644), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(610), 1, + ACTIONS(646), 1, anon_sym_POUND_SQUOTE, - ACTIONS(612), 1, + ACTIONS(648), 1, anon_sym_SQUOTE, - ACTIONS(614), 1, + ACTIONS(650), 1, anon_sym_BQUOTE, - ACTIONS(616), 1, + ACTIONS(652), 1, anon_sym_COMMA_AT, - ACTIONS(618), 1, + ACTIONS(654), 1, anon_sym_COMMA, - ACTIONS(620), 1, - anon_sym_cl, - ACTIONS(1492), 1, + ACTIONS(1470), 1, anon_sym_POUND, - ACTIONS(2260), 1, + ACTIONS(2280), 1, sym_self_referential_reader_macro, - STATE(2125), 1, + STATE(2142), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, + STATE(2337), 1, sym__bare_set_lit, - STATE(2428), 1, + STATE(2454), 1, sym_sym_lit, - ACTIONS(604), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(622), 2, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(626), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(628), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(616), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(656), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(2276), 2, sym__ws, sym_comment, - ACTIONS(2258), 3, + ACTIONS(2278), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(513), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2259), 19, + STATE(2425), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -38868,7 +38962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [23490] = 35, + [23625] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -38877,78 +38971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(61), 1, - anon_sym_POUND, - ACTIONS(65), 1, + ACTIONS(556), 1, aux_sym_num_lit_token1, - ACTIONS(67), 1, + ACTIONS(558), 1, anon_sym_COLON, - ACTIONS(69), 1, + ACTIONS(560), 1, anon_sym_COLON_COLON, - ACTIONS(71), 1, + ACTIONS(562), 1, anon_sym_DQUOTE, - ACTIONS(73), 1, + ACTIONS(568), 1, aux_sym_sym_lit_token1, - ACTIONS(77), 1, + ACTIONS(570), 1, + anon_sym_LPAREN, + ACTIONS(576), 1, anon_sym_POUND_QMARK, - ACTIONS(79), 1, + ACTIONS(578), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(81), 1, + ACTIONS(580), 1, anon_sym_POUND_SQUOTE, - ACTIONS(83), 1, + ACTIONS(582), 1, anon_sym_SQUOTE, - ACTIONS(85), 1, + ACTIONS(584), 1, anon_sym_BQUOTE, - ACTIONS(87), 1, + ACTIONS(586), 1, anon_sym_COMMA_AT, - ACTIONS(89), 1, + ACTIONS(588), 1, anon_sym_COMMA, - ACTIONS(658), 1, - anon_sym_LPAREN, - ACTIONS(662), 1, + ACTIONS(590), 1, anon_sym_cl, - ACTIONS(2266), 1, + ACTIONS(1436), 1, + anon_sym_POUND, + ACTIONS(2284), 1, sym_self_referential_reader_macro, - STATE(822), 1, - sym_sym_lit, - STATE(824), 1, + STATE(1386), 1, sym__bare_set_lit, - STATE(2149), 1, + STATE(1388), 1, + sym_sym_lit, + STATE(2172), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(75), 2, + ACTIONS(574), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(93), 2, + ACTIONS(592), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(97), 2, + ACTIONS(596), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(99), 2, + ACTIONS(598), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2262), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2264), 3, + ACTIONS(2282), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(528), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(823), 3, + STATE(1387), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(879), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1334), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -38968,7 +39062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [23625] = 35, + [23760] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -38977,78 +39071,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(927), 1, + ACTIONS(61), 1, + anon_sym_POUND, + ACTIONS(65), 1, aux_sym_num_lit_token1, - ACTIONS(929), 1, + ACTIONS(67), 1, anon_sym_COLON, - ACTIONS(931), 1, + ACTIONS(69), 1, anon_sym_COLON_COLON, - ACTIONS(933), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(939), 1, + ACTIONS(73), 1, aux_sym_sym_lit_token1, - ACTIONS(941), 1, - anon_sym_LPAREN, - ACTIONS(947), 1, + ACTIONS(77), 1, anon_sym_POUND_QMARK, - ACTIONS(949), 1, + ACTIONS(79), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(951), 1, + ACTIONS(81), 1, anon_sym_POUND_SQUOTE, - ACTIONS(953), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(955), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(957), 1, + ACTIONS(87), 1, anon_sym_COMMA_AT, - ACTIONS(959), 1, + ACTIONS(89), 1, anon_sym_COMMA, - ACTIONS(961), 1, + ACTIONS(830), 1, + anon_sym_LPAREN, + ACTIONS(834), 1, anon_sym_cl, - ACTIONS(1740), 1, - anon_sym_POUND, - ACTIONS(2272), 1, + ACTIONS(2290), 1, sym_self_referential_reader_macro, - STATE(1687), 1, + STATE(927), 1, sym__bare_set_lit, - STATE(1689), 1, + STATE(929), 1, sym_sym_lit, - STATE(2148), 1, + STATE(2169), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(945), 2, + ACTIONS(75), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(963), 2, + ACTIONS(93), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(967), 2, + ACTIONS(97), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(969), 2, + ACTIONS(99), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2268), 2, + ACTIONS(2286), 2, sym__ws, sym_comment, - ACTIONS(2270), 3, + ACTIONS(2288), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(812), 3, + STATE(332), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(928), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1686), 19, + STATE(920), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -39068,7 +39162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [23760] = 35, + [23895] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -39077,78 +39171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(586), 1, + ACTIONS(556), 1, aux_sym_num_lit_token1, - ACTIONS(588), 1, + ACTIONS(558), 1, anon_sym_COLON, - ACTIONS(590), 1, + ACTIONS(560), 1, anon_sym_COLON_COLON, - ACTIONS(592), 1, + ACTIONS(562), 1, anon_sym_DQUOTE, - ACTIONS(598), 1, + ACTIONS(568), 1, aux_sym_sym_lit_token1, - ACTIONS(600), 1, + ACTIONS(570), 1, anon_sym_LPAREN, - ACTIONS(606), 1, + ACTIONS(576), 1, anon_sym_POUND_QMARK, - ACTIONS(608), 1, + ACTIONS(578), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(610), 1, + ACTIONS(580), 1, anon_sym_POUND_SQUOTE, - ACTIONS(612), 1, + ACTIONS(582), 1, anon_sym_SQUOTE, - ACTIONS(614), 1, + ACTIONS(584), 1, anon_sym_BQUOTE, - ACTIONS(616), 1, + ACTIONS(586), 1, anon_sym_COMMA_AT, - ACTIONS(618), 1, + ACTIONS(588), 1, anon_sym_COMMA, - ACTIONS(620), 1, + ACTIONS(590), 1, anon_sym_cl, - ACTIONS(1492), 1, + ACTIONS(1436), 1, anon_sym_POUND, - ACTIONS(2178), 1, + ACTIONS(2294), 1, sym_self_referential_reader_macro, - STATE(2125), 1, + STATE(1386), 1, + sym__bare_set_lit, + STATE(1388), 1, + sym_sym_lit, + STATE(2172), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2428), 1, - sym_sym_lit, - ACTIONS(604), 2, + ACTIONS(574), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(622), 2, + ACTIONS(592), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(626), 2, + ACTIONS(596), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(628), 2, + ACTIONS(598), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2274), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2176), 3, + ACTIONS(2292), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(337), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1387), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2242), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1331), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -39168,7 +39262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [23895] = 35, + [24030] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -39177,78 +39271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(586), 1, + ACTIONS(556), 1, aux_sym_num_lit_token1, - ACTIONS(588), 1, + ACTIONS(558), 1, anon_sym_COLON, - ACTIONS(590), 1, + ACTIONS(560), 1, anon_sym_COLON_COLON, - ACTIONS(592), 1, + ACTIONS(562), 1, anon_sym_DQUOTE, - ACTIONS(598), 1, + ACTIONS(568), 1, aux_sym_sym_lit_token1, - ACTIONS(600), 1, + ACTIONS(570), 1, anon_sym_LPAREN, - ACTIONS(606), 1, + ACTIONS(576), 1, anon_sym_POUND_QMARK, - ACTIONS(608), 1, + ACTIONS(578), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(610), 1, + ACTIONS(580), 1, anon_sym_POUND_SQUOTE, - ACTIONS(612), 1, + ACTIONS(582), 1, anon_sym_SQUOTE, - ACTIONS(614), 1, + ACTIONS(584), 1, anon_sym_BQUOTE, - ACTIONS(616), 1, + ACTIONS(586), 1, anon_sym_COMMA_AT, - ACTIONS(618), 1, + ACTIONS(588), 1, anon_sym_COMMA, - ACTIONS(620), 1, + ACTIONS(590), 1, anon_sym_cl, - ACTIONS(1492), 1, + ACTIONS(1436), 1, anon_sym_POUND, - ACTIONS(2172), 1, + ACTIONS(2300), 1, sym_self_referential_reader_macro, - STATE(2125), 1, + STATE(1386), 1, + sym__bare_set_lit, + STATE(1388), 1, + sym_sym_lit, + STATE(2172), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2428), 1, - sym_sym_lit, - ACTIONS(604), 2, + ACTIONS(574), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(622), 2, + ACTIONS(592), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(626), 2, + ACTIONS(596), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(628), 2, + ACTIONS(598), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(2296), 2, sym__ws, sym_comment, - ACTIONS(2170), 3, + ACTIONS(2298), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1387), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2243), 19, + STATE(1317), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -39268,7 +39362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [24030] = 35, + [24165] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -39277,78 +39371,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(586), 1, + ACTIONS(472), 1, aux_sym_num_lit_token1, - ACTIONS(588), 1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(590), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(592), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(598), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(600), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(606), 1, + ACTIONS(492), 1, anon_sym_POUND_QMARK, - ACTIONS(608), 1, + ACTIONS(494), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(610), 1, + ACTIONS(496), 1, anon_sym_POUND_SQUOTE, - ACTIONS(612), 1, + ACTIONS(498), 1, anon_sym_SQUOTE, - ACTIONS(614), 1, + ACTIONS(500), 1, anon_sym_BQUOTE, - ACTIONS(616), 1, + ACTIONS(502), 1, anon_sym_COMMA_AT, - ACTIONS(618), 1, + ACTIONS(504), 1, anon_sym_COMMA, - ACTIONS(620), 1, + ACTIONS(506), 1, anon_sym_cl, - ACTIONS(1492), 1, + ACTIONS(1794), 1, anon_sym_POUND, - ACTIONS(2090), 1, + ACTIONS(1940), 1, sym_self_referential_reader_macro, - STATE(2125), 1, + STATE(2168), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, + STATE(2337), 1, sym__bare_set_lit, - STATE(2428), 1, + STATE(2454), 1, sym_sym_lit, - ACTIONS(604), 2, + ACTIONS(490), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(622), 2, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(626), 2, + ACTIONS(512), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(628), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2276), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2088), 3, + ACTIONS(1938), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(339), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2244), 19, + STATE(2314), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -39368,7 +39462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [24165] = 35, + [24300] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -39407,19 +39501,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1890), 1, + ACTIONS(2304), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -39433,22 +39527,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1888), 3, + ACTIONS(2302), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1443), 19, + STATE(1530), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -39468,7 +39562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [24300] = 35, + [24435] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -39477,78 +39571,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(586), 1, + ACTIONS(776), 1, aux_sym_num_lit_token1, - ACTIONS(588), 1, + ACTIONS(778), 1, anon_sym_COLON, - ACTIONS(590), 1, + ACTIONS(780), 1, anon_sym_COLON_COLON, - ACTIONS(592), 1, + ACTIONS(782), 1, anon_sym_DQUOTE, - ACTIONS(598), 1, + ACTIONS(788), 1, aux_sym_sym_lit_token1, - ACTIONS(600), 1, + ACTIONS(790), 1, anon_sym_LPAREN, - ACTIONS(606), 1, + ACTIONS(796), 1, anon_sym_POUND_QMARK, - ACTIONS(608), 1, + ACTIONS(798), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(610), 1, + ACTIONS(800), 1, anon_sym_POUND_SQUOTE, - ACTIONS(612), 1, + ACTIONS(802), 1, anon_sym_SQUOTE, - ACTIONS(614), 1, + ACTIONS(804), 1, anon_sym_BQUOTE, - ACTIONS(616), 1, + ACTIONS(806), 1, anon_sym_COMMA_AT, - ACTIONS(618), 1, + ACTIONS(808), 1, anon_sym_COMMA, - ACTIONS(620), 1, + ACTIONS(810), 1, anon_sym_cl, - ACTIONS(1492), 1, + ACTIONS(1562), 1, anon_sym_POUND, - ACTIONS(1880), 1, + ACTIONS(2310), 1, sym_self_referential_reader_macro, - STATE(2125), 1, + STATE(1745), 1, + sym_sym_lit, + STATE(1747), 1, + sym__bare_set_lit, + STATE(2171), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2428), 1, - sym_sym_lit, - ACTIONS(604), 2, + ACTIONS(794), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(622), 2, + ACTIONS(812), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(626), 2, + ACTIONS(816), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(628), 2, + ACTIONS(818), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(2306), 2, sym__ws, sym_comment, - ACTIONS(1878), 3, + ACTIONS(2308), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(311), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1746), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2245), 19, + STATE(1765), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -39568,7 +39662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [24435] = 35, + [24570] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -39577,78 +39671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(588), 1, + ACTIONS(776), 1, + aux_sym_num_lit_token1, + ACTIONS(778), 1, anon_sym_COLON, - ACTIONS(590), 1, + ACTIONS(780), 1, anon_sym_COLON_COLON, - ACTIONS(592), 1, + ACTIONS(782), 1, anon_sym_DQUOTE, - ACTIONS(598), 1, + ACTIONS(788), 1, aux_sym_sym_lit_token1, - ACTIONS(620), 1, - anon_sym_cl, - ACTIONS(670), 1, - aux_sym_num_lit_token1, - ACTIONS(674), 1, + ACTIONS(790), 1, + anon_sym_LPAREN, + ACTIONS(796), 1, anon_sym_POUND_QMARK, - ACTIONS(676), 1, + ACTIONS(798), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(678), 1, + ACTIONS(800), 1, anon_sym_POUND_SQUOTE, - ACTIONS(680), 1, + ACTIONS(802), 1, anon_sym_SQUOTE, - ACTIONS(682), 1, + ACTIONS(804), 1, anon_sym_BQUOTE, - ACTIONS(684), 1, + ACTIONS(806), 1, anon_sym_COMMA_AT, - ACTIONS(686), 1, + ACTIONS(808), 1, anon_sym_COMMA, - ACTIONS(1588), 1, + ACTIONS(810), 1, + anon_sym_cl, + ACTIONS(1562), 1, anon_sym_POUND, - ACTIONS(2260), 1, + ACTIONS(2314), 1, sym_self_referential_reader_macro, - STATE(2150), 1, + STATE(1745), 1, + sym_sym_lit, + STATE(1747), 1, + sym__bare_set_lit, + STATE(2171), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2428), 1, - sym_sym_lit, - ACTIONS(622), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(628), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(672), 2, + ACTIONS(794), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(688), 2, + ACTIONS(812), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(816), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(818), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2258), 3, + ACTIONS(2312), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1746), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2259), 19, + STATE(1766), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -39668,7 +39762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [24570] = 35, + [24705] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -39707,19 +39801,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1886), 1, + ACTIONS(2318), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -39733,22 +39827,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1884), 3, + ACTIONS(2316), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1449), 19, + STATE(1531), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -39768,7 +39862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [24705] = 35, + [24840] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -39777,78 +39871,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(586), 1, + ACTIONS(556), 1, aux_sym_num_lit_token1, - ACTIONS(588), 1, + ACTIONS(558), 1, anon_sym_COLON, - ACTIONS(590), 1, + ACTIONS(560), 1, anon_sym_COLON_COLON, - ACTIONS(592), 1, + ACTIONS(562), 1, anon_sym_DQUOTE, - ACTIONS(598), 1, + ACTIONS(568), 1, aux_sym_sym_lit_token1, - ACTIONS(600), 1, + ACTIONS(570), 1, anon_sym_LPAREN, - ACTIONS(606), 1, + ACTIONS(576), 1, anon_sym_POUND_QMARK, - ACTIONS(608), 1, + ACTIONS(578), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(610), 1, + ACTIONS(580), 1, anon_sym_POUND_SQUOTE, - ACTIONS(612), 1, + ACTIONS(582), 1, anon_sym_SQUOTE, - ACTIONS(614), 1, + ACTIONS(584), 1, anon_sym_BQUOTE, - ACTIONS(616), 1, + ACTIONS(586), 1, anon_sym_COMMA_AT, - ACTIONS(618), 1, + ACTIONS(588), 1, anon_sym_COMMA, - ACTIONS(620), 1, + ACTIONS(590), 1, anon_sym_cl, - ACTIONS(1492), 1, + ACTIONS(1436), 1, anon_sym_POUND, - ACTIONS(1876), 1, + ACTIONS(2324), 1, sym_self_referential_reader_macro, - STATE(2125), 1, + STATE(1386), 1, + sym__bare_set_lit, + STATE(1388), 1, + sym_sym_lit, + STATE(2172), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2428), 1, - sym_sym_lit, - ACTIONS(604), 2, + ACTIONS(574), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(622), 2, + ACTIONS(592), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(626), 2, + ACTIONS(596), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(628), 2, + ACTIONS(598), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(2320), 2, sym__ws, sym_comment, - ACTIONS(1874), 3, + ACTIONS(2322), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(341), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1387), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2247), 19, + STATE(1319), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -39868,87 +39962,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [24840] = 35, + [24975] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, + anon_sym_COLON_COLON, + ACTIONS(21), 1, + anon_sym_DQUOTE, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(536), 1, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(588), 1, - anon_sym_COLON, - ACTIONS(590), 1, - anon_sym_COLON_COLON, - ACTIONS(592), 1, - anon_sym_DQUOTE, - ACTIONS(598), 1, - aux_sym_sym_lit_token1, - ACTIONS(620), 1, - anon_sym_cl, - ACTIONS(670), 1, - aux_sym_num_lit_token1, - ACTIONS(674), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(676), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(678), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(680), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(682), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(684), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(686), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(1588), 1, - anon_sym_POUND, - ACTIONS(2252), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(2330), 1, sym_self_referential_reader_macro, - STATE(2150), 1, + STATE(1450), 1, + sym_sym_lit, + STATE(1452), 1, + sym__bare_set_lit, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2428), 1, - sym_sym_lit, - ACTIONS(622), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(628), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(672), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(688), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(2326), 2, sym__ws, sym_comment, - ACTIONS(2250), 3, + ACTIONS(2328), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(358), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2260), 19, + STATE(235), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -39968,7 +40062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [24975] = 35, + [25110] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -39977,78 +40071,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(586), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(728), 1, aux_sym_num_lit_token1, - ACTIONS(588), 1, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(590), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(592), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(598), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(600), 1, - anon_sym_LPAREN, - ACTIONS(606), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(608), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(610), 1, + ACTIONS(750), 1, anon_sym_POUND_SQUOTE, - ACTIONS(612), 1, + ACTIONS(752), 1, anon_sym_SQUOTE, - ACTIONS(614), 1, + ACTIONS(754), 1, anon_sym_BQUOTE, - ACTIONS(616), 1, + ACTIONS(756), 1, anon_sym_COMMA_AT, - ACTIONS(618), 1, + ACTIONS(758), 1, anon_sym_COMMA, - ACTIONS(620), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(1492), 1, + ACTIONS(975), 1, anon_sym_POUND, - ACTIONS(1712), 1, + ACTIONS(1970), 1, sym_self_referential_reader_macro, - STATE(2125), 1, + STATE(1848), 1, + sym_sym_lit, + STATE(1925), 1, + sym__bare_set_lit, + STATE(2167), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2428), 1, - sym_sym_lit, - ACTIONS(604), 2, + ACTIONS(744), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(622), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(626), 2, + ACTIONS(766), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(628), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2278), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1710), 3, + ACTIONS(1968), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(343), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2248), 19, + STATE(1954), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -40068,87 +40162,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [25110] = 35, + [25245] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, - aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(728), 1, + aux_sym_num_lit_token1, + ACTIONS(730), 1, + anon_sym_COLON, + ACTIONS(732), 1, + anon_sym_COLON_COLON, + ACTIONS(734), 1, + anon_sym_DQUOTE, + ACTIONS(740), 1, + aux_sym_sym_lit_token1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(750), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(752), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(754), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(756), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(758), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(2284), 1, + ACTIONS(975), 1, + anon_sym_POUND, + ACTIONS(1902), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2167), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(744), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(766), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2280), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2282), 3, + ACTIONS(1900), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(331), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(752), 19, + STATE(1953), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -40168,87 +40262,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [25245] = 35, + [25380] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(556), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(558), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(560), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(562), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(568), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(570), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(576), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(578), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(580), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(582), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(584), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(586), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(588), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(590), 1, anon_sym_cl, - ACTIONS(2290), 1, + ACTIONS(1436), 1, + anon_sym_POUND, + ACTIONS(2334), 1, sym_self_referential_reader_macro, - STATE(1506), 1, - sym_sym_lit, - STATE(1511), 1, + STATE(1386), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(1388), 1, + sym_sym_lit, + STATE(2172), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(574), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(592), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(596), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(598), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2286), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2288), 3, + ACTIONS(2332), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(338), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(1387), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(748), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1373), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -40268,87 +40362,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [25380] = 35, + [25515] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(556), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(558), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(560), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(562), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(568), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(570), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(576), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(578), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(580), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(582), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(584), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(586), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(588), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(590), 1, anon_sym_cl, - ACTIONS(2294), 1, + ACTIONS(1436), 1, + anon_sym_POUND, + ACTIONS(2338), 1, sym_self_referential_reader_macro, - STATE(1506), 1, - sym_sym_lit, - STATE(1511), 1, + STATE(1386), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(1388), 1, + sym_sym_lit, + STATE(2172), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(574), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(592), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(596), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(598), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2292), 3, + ACTIONS(2336), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, + STATE(1387), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(725), 19, + STATE(1304), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -40368,87 +40462,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [25515] = 35, + [25650] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(586), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(588), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(590), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(592), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(598), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(600), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(606), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(608), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(610), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(612), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(614), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(616), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(618), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(620), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1492), 1, - anon_sym_POUND, - ACTIONS(1816), 1, + ACTIONS(2342), 1, sym_self_referential_reader_macro, - STATE(2125), 1, + STATE(1450), 1, + sym_sym_lit, + STATE(1452), 1, + sym__bare_set_lit, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2428), 1, - sym_sym_lit, - ACTIONS(604), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(622), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(626), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(628), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2296), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1814), 3, + ACTIONS(2340), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(346), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2249), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(545), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -40468,87 +40562,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [25650] = 35, + [25785] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(586), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(588), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(590), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(592), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(598), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(600), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(606), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(608), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(610), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(612), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(614), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(616), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(618), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(620), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1492), 1, - anon_sym_POUND, - ACTIONS(2300), 1, + ACTIONS(2346), 1, sym_self_referential_reader_macro, - STATE(2125), 1, + STATE(1450), 1, + sym_sym_lit, + STATE(1452), 1, + sym__bare_set_lit, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2428), 1, - sym_sym_lit, - ACTIONS(604), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(622), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(626), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(628), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2298), 3, + ACTIONS(2344), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2250), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(551), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -40568,87 +40662,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [25785] = 35, + [25920] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(586), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(588), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(590), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(592), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(598), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(600), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(606), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(608), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(610), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(612), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(614), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(616), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(618), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(620), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1492), 1, - anon_sym_POUND, - ACTIONS(2304), 1, + ACTIONS(2350), 1, sym_self_referential_reader_macro, - STATE(2125), 1, + STATE(1450), 1, + sym_sym_lit, + STATE(1452), 1, + sym__bare_set_lit, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2428), 1, - sym_sym_lit, - ACTIONS(604), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(622), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(626), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(628), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2302), 3, + ACTIONS(2348), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2251), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(278), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -40668,87 +40762,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [25920] = 35, + [26055] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(586), 1, - aux_sym_num_lit_token1, - ACTIONS(588), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(590), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(592), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(598), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(600), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(606), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(608), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(610), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(854), 1, + aux_sym_num_lit_token1, + ACTIONS(858), 1, anon_sym_POUND_SQUOTE, - ACTIONS(612), 1, + ACTIONS(860), 1, anon_sym_SQUOTE, - ACTIONS(614), 1, + ACTIONS(862), 1, anon_sym_BQUOTE, - ACTIONS(616), 1, + ACTIONS(864), 1, anon_sym_COMMA_AT, - ACTIONS(618), 1, + ACTIONS(866), 1, anon_sym_COMMA, - ACTIONS(620), 1, - anon_sym_cl, - ACTIONS(1492), 1, + ACTIONS(2074), 1, anon_sym_POUND, - ACTIONS(2308), 1, + ACTIONS(2356), 1, sym_self_referential_reader_macro, - STATE(2125), 1, + STATE(1450), 1, + sym_sym_lit, + STATE(1452), 1, + sym__bare_set_lit, + STATE(2146), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2428), 1, - sym_sym_lit, - ACTIONS(604), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(622), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(626), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(628), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(856), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(868), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(2352), 2, sym__ws, sym_comment, - ACTIONS(2306), 3, + ACTIONS(2354), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(399), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2252), 19, + STATE(1467), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -40768,87 +40862,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [26055] = 35, + [26190] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(522), 1, - aux_sym_num_lit_token1, - ACTIONS(524), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(546), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(854), 1, + aux_sym_num_lit_token1, + ACTIONS(858), 1, anon_sym_POUND_SQUOTE, - ACTIONS(548), 1, + ACTIONS(860), 1, anon_sym_SQUOTE, - ACTIONS(550), 1, + ACTIONS(862), 1, anon_sym_BQUOTE, - ACTIONS(552), 1, + ACTIONS(864), 1, anon_sym_COMMA_AT, - ACTIONS(554), 1, + ACTIONS(866), 1, anon_sym_COMMA, - ACTIONS(556), 1, - anon_sym_cl, - ACTIONS(1027), 1, + ACTIONS(2074), 1, anon_sym_POUND, - ACTIONS(1516), 1, + ACTIONS(2362), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2151), 1, + STATE(2146), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(540), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(558), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(562), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(564), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2310), 2, + ACTIONS(856), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(868), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(2358), 2, sym__ws, sym_comment, - ACTIONS(1514), 3, + ACTIONS(2360), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(404), 3, + STATE(402), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1904), 19, + STATE(1468), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -40868,7 +40962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [26190] = 35, + [26325] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -40877,78 +40971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(586), 1, + ACTIONS(556), 1, aux_sym_num_lit_token1, - ACTIONS(588), 1, + ACTIONS(558), 1, anon_sym_COLON, - ACTIONS(590), 1, + ACTIONS(560), 1, anon_sym_COLON_COLON, - ACTIONS(592), 1, + ACTIONS(562), 1, anon_sym_DQUOTE, - ACTIONS(598), 1, + ACTIONS(568), 1, aux_sym_sym_lit_token1, - ACTIONS(600), 1, + ACTIONS(570), 1, anon_sym_LPAREN, - ACTIONS(606), 1, + ACTIONS(576), 1, anon_sym_POUND_QMARK, - ACTIONS(608), 1, + ACTIONS(578), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(610), 1, + ACTIONS(580), 1, anon_sym_POUND_SQUOTE, - ACTIONS(612), 1, + ACTIONS(582), 1, anon_sym_SQUOTE, - ACTIONS(614), 1, + ACTIONS(584), 1, anon_sym_BQUOTE, - ACTIONS(616), 1, + ACTIONS(586), 1, anon_sym_COMMA_AT, - ACTIONS(618), 1, + ACTIONS(588), 1, anon_sym_COMMA, - ACTIONS(620), 1, + ACTIONS(590), 1, anon_sym_cl, - ACTIONS(1492), 1, + ACTIONS(1436), 1, anon_sym_POUND, - ACTIONS(2316), 1, + ACTIONS(2366), 1, sym_self_referential_reader_macro, - STATE(2125), 1, + STATE(1386), 1, + sym__bare_set_lit, + STATE(1388), 1, + sym_sym_lit, + STATE(2172), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2428), 1, - sym_sym_lit, - ACTIONS(604), 2, + ACTIONS(574), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(622), 2, + ACTIONS(592), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(626), 2, + ACTIONS(596), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(628), 2, + ACTIONS(598), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2312), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2314), 3, + ACTIONS(2364), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(349), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1387), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2255), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1305), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -40968,87 +41062,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [26325] = 35, + [26460] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(586), 1, - aux_sym_num_lit_token1, - ACTIONS(588), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(590), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(592), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(598), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(600), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(606), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(608), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(610), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(854), 1, + aux_sym_num_lit_token1, + ACTIONS(858), 1, anon_sym_POUND_SQUOTE, - ACTIONS(612), 1, + ACTIONS(860), 1, anon_sym_SQUOTE, - ACTIONS(614), 1, + ACTIONS(862), 1, anon_sym_BQUOTE, - ACTIONS(616), 1, + ACTIONS(864), 1, anon_sym_COMMA_AT, - ACTIONS(618), 1, + ACTIONS(866), 1, anon_sym_COMMA, - ACTIONS(620), 1, - anon_sym_cl, - ACTIONS(1492), 1, + ACTIONS(2074), 1, anon_sym_POUND, - ACTIONS(2320), 1, + ACTIONS(2372), 1, sym_self_referential_reader_macro, - STATE(2125), 1, + STATE(1450), 1, + sym_sym_lit, + STATE(1452), 1, + sym__bare_set_lit, + STATE(2146), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2428), 1, - sym_sym_lit, - ACTIONS(604), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(622), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(626), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(628), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(856), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(868), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(2368), 2, sym__ws, sym_comment, - ACTIONS(2318), 3, + ACTIONS(2370), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(470), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2256), 19, + STATE(1469), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -41068,7 +41162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [26460] = 35, + [26595] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -41103,23 +41197,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(640), 1, + ACTIONS(526), 1, anon_sym_LPAREN, - ACTIONS(644), 1, + ACTIONS(530), 1, anon_sym_cl, - ACTIONS(2324), 1, + ACTIONS(2376), 1, sym_self_referential_reader_macro, - STATE(1012), 1, - sym_sym_lit, - STATE(1017), 1, + STATE(1072), 1, sym__bare_set_lit, - STATE(2139), 1, + STATE(1074), 1, + sym_sym_lit, + STATE(2177), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, ACTIONS(215), 2, anon_sym_POUND0A, @@ -41133,22 +41227,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(242), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2322), 3, + ACTIONS(2374), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1015), 3, + STATE(1073), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(10), 19, + STATE(7), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -41168,13 +41262,9 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [26595] = 35, + [26730] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, - aux_sym_num_lit_token1, ACTIONS(17), 1, anon_sym_COLON, ACTIONS(19), 1, @@ -41193,62 +41283,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(854), 1, + aux_sym_num_lit_token1, + ACTIONS(858), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(860), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(862), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(864), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(866), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(2330), 1, + ACTIONS(2074), 1, + anon_sym_POUND, + ACTIONS(2382), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2146), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2326), 2, + ACTIONS(856), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(868), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(2378), 2, sym__ws, sym_comment, - ACTIONS(2328), 3, + ACTIONS(2380), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(376), 3, + STATE(555), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(766), 19, + STATE(1470), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -41268,87 +41362,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [26730] = 35, + [26865] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(522), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(524), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(546), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(548), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(550), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(552), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(554), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(556), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1027), 1, - anon_sym_POUND, - ACTIONS(1522), 1, + ACTIONS(2388), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2151), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(540), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(558), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(562), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(564), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2332), 2, + ACTIONS(2384), 2, sym__ws, sym_comment, - ACTIONS(1520), 3, + ACTIONS(2386), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(408), 3, + STATE(401), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1905), 19, + STATE(324), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -41368,7 +41462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [26865] = 35, + [27000] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -41377,74 +41471,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(927), 1, + ACTIONS(776), 1, aux_sym_num_lit_token1, - ACTIONS(929), 1, + ACTIONS(778), 1, anon_sym_COLON, - ACTIONS(931), 1, + ACTIONS(780), 1, anon_sym_COLON_COLON, - ACTIONS(933), 1, + ACTIONS(782), 1, anon_sym_DQUOTE, - ACTIONS(939), 1, + ACTIONS(788), 1, aux_sym_sym_lit_token1, - ACTIONS(941), 1, + ACTIONS(790), 1, anon_sym_LPAREN, - ACTIONS(947), 1, + ACTIONS(796), 1, anon_sym_POUND_QMARK, - ACTIONS(949), 1, + ACTIONS(798), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(951), 1, + ACTIONS(800), 1, anon_sym_POUND_SQUOTE, - ACTIONS(953), 1, + ACTIONS(802), 1, anon_sym_SQUOTE, - ACTIONS(955), 1, + ACTIONS(804), 1, anon_sym_BQUOTE, - ACTIONS(957), 1, + ACTIONS(806), 1, anon_sym_COMMA_AT, - ACTIONS(959), 1, + ACTIONS(808), 1, anon_sym_COMMA, - ACTIONS(961), 1, + ACTIONS(810), 1, anon_sym_cl, - ACTIONS(1740), 1, + ACTIONS(1562), 1, anon_sym_POUND, - ACTIONS(2336), 1, + ACTIONS(2392), 1, sym_self_referential_reader_macro, - STATE(1687), 1, - sym__bare_set_lit, - STATE(1689), 1, + STATE(1745), 1, sym_sym_lit, - STATE(2148), 1, + STATE(1747), 1, + sym__bare_set_lit, + STATE(2171), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(945), 2, + ACTIONS(794), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(963), 2, + ACTIONS(812), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(967), 2, + ACTIONS(816), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(969), 2, + ACTIONS(818), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2334), 3, + ACTIONS(2390), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(1746), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, @@ -41468,87 +41562,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [27000] = 35, + [27135] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(522), 1, - aux_sym_num_lit_token1, - ACTIONS(524), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(546), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(854), 1, + aux_sym_num_lit_token1, + ACTIONS(858), 1, anon_sym_POUND_SQUOTE, - ACTIONS(548), 1, + ACTIONS(860), 1, anon_sym_SQUOTE, - ACTIONS(550), 1, + ACTIONS(862), 1, anon_sym_BQUOTE, - ACTIONS(552), 1, + ACTIONS(864), 1, anon_sym_COMMA_AT, - ACTIONS(554), 1, + ACTIONS(866), 1, anon_sym_COMMA, - ACTIONS(556), 1, - anon_sym_cl, - ACTIONS(1027), 1, + ACTIONS(2074), 1, anon_sym_POUND, - ACTIONS(1528), 1, + ACTIONS(2398), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2151), 1, + STATE(2146), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(540), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(558), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(562), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(564), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2338), 2, + ACTIONS(856), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(868), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(2394), 2, sym__ws, sym_comment, - ACTIONS(1526), 3, + ACTIONS(2396), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(427), 3, + STATE(564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1906), 19, + STATE(1471), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -41568,7 +41662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [27135] = 35, + [27270] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -41577,78 +41671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(61), 1, - anon_sym_POUND, - ACTIONS(65), 1, + ACTIONS(556), 1, aux_sym_num_lit_token1, - ACTIONS(67), 1, + ACTIONS(558), 1, anon_sym_COLON, - ACTIONS(69), 1, + ACTIONS(560), 1, anon_sym_COLON_COLON, - ACTIONS(71), 1, + ACTIONS(562), 1, anon_sym_DQUOTE, - ACTIONS(73), 1, + ACTIONS(568), 1, aux_sym_sym_lit_token1, - ACTIONS(77), 1, + ACTIONS(570), 1, + anon_sym_LPAREN, + ACTIONS(576), 1, anon_sym_POUND_QMARK, - ACTIONS(79), 1, + ACTIONS(578), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(81), 1, + ACTIONS(580), 1, anon_sym_POUND_SQUOTE, - ACTIONS(83), 1, + ACTIONS(582), 1, anon_sym_SQUOTE, - ACTIONS(85), 1, + ACTIONS(584), 1, anon_sym_BQUOTE, - ACTIONS(87), 1, + ACTIONS(586), 1, anon_sym_COMMA_AT, - ACTIONS(89), 1, + ACTIONS(588), 1, anon_sym_COMMA, - ACTIONS(658), 1, - anon_sym_LPAREN, - ACTIONS(662), 1, + ACTIONS(590), 1, anon_sym_cl, - ACTIONS(2344), 1, + ACTIONS(1436), 1, + anon_sym_POUND, + ACTIONS(2404), 1, sym_self_referential_reader_macro, - STATE(822), 1, - sym_sym_lit, - STATE(824), 1, + STATE(1386), 1, sym__bare_set_lit, - STATE(2149), 1, + STATE(1388), 1, + sym_sym_lit, + STATE(2172), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(75), 2, + ACTIONS(574), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(93), 2, + ACTIONS(592), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(97), 2, + ACTIONS(596), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(99), 2, + ACTIONS(598), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2340), 2, + ACTIONS(2400), 2, sym__ws, sym_comment, - ACTIONS(2342), 3, + ACTIONS(2402), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(606), 3, + STATE(343), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(823), 3, + STATE(1387), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(870), 19, + STATE(1308), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -41668,7 +41762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [27270] = 35, + [27405] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -41677,78 +41771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(2348), 1, + ACTIONS(2408), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2346), 3, + ACTIONS(2406), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2047), 19, + STATE(1983), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -41768,7 +41862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [27405] = 35, + [27540] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -41777,78 +41871,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(586), 1, + ACTIONS(556), 1, aux_sym_num_lit_token1, - ACTIONS(588), 1, + ACTIONS(558), 1, anon_sym_COLON, - ACTIONS(590), 1, + ACTIONS(560), 1, anon_sym_COLON_COLON, - ACTIONS(592), 1, + ACTIONS(562), 1, anon_sym_DQUOTE, - ACTIONS(598), 1, + ACTIONS(568), 1, aux_sym_sym_lit_token1, - ACTIONS(600), 1, + ACTIONS(570), 1, anon_sym_LPAREN, - ACTIONS(606), 1, + ACTIONS(576), 1, anon_sym_POUND_QMARK, - ACTIONS(608), 1, + ACTIONS(578), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(610), 1, + ACTIONS(580), 1, anon_sym_POUND_SQUOTE, - ACTIONS(612), 1, + ACTIONS(582), 1, anon_sym_SQUOTE, - ACTIONS(614), 1, + ACTIONS(584), 1, anon_sym_BQUOTE, - ACTIONS(616), 1, + ACTIONS(586), 1, anon_sym_COMMA_AT, - ACTIONS(618), 1, + ACTIONS(588), 1, anon_sym_COMMA, - ACTIONS(620), 1, + ACTIONS(590), 1, anon_sym_cl, - ACTIONS(1492), 1, + ACTIONS(1436), 1, anon_sym_POUND, - ACTIONS(2354), 1, + ACTIONS(2412), 1, sym_self_referential_reader_macro, - STATE(2125), 1, + STATE(1386), 1, + sym__bare_set_lit, + STATE(1388), 1, + sym_sym_lit, + STATE(2172), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2428), 1, - sym_sym_lit, - ACTIONS(604), 2, + ACTIONS(574), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(622), 2, + ACTIONS(592), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(626), 2, + ACTIONS(596), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(628), 2, + ACTIONS(598), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2350), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2352), 3, + ACTIONS(2410), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(356), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1387), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2263), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1309), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -41868,7 +41962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [27540] = 35, + [27675] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -41877,78 +41971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(2358), 1, + ACTIONS(2416), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2356), 3, + ACTIONS(2414), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2046), 19, + STATE(1982), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -41968,7 +42062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [27675] = 35, + [27810] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -41977,78 +42071,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(586), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(728), 1, aux_sym_num_lit_token1, - ACTIONS(588), 1, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(590), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(592), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(598), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(600), 1, - anon_sym_LPAREN, - ACTIONS(606), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(608), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(610), 1, + ACTIONS(750), 1, anon_sym_POUND_SQUOTE, - ACTIONS(612), 1, + ACTIONS(752), 1, anon_sym_SQUOTE, - ACTIONS(614), 1, + ACTIONS(754), 1, anon_sym_BQUOTE, - ACTIONS(616), 1, + ACTIONS(756), 1, anon_sym_COMMA_AT, - ACTIONS(618), 1, + ACTIONS(758), 1, anon_sym_COMMA, - ACTIONS(620), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(1492), 1, + ACTIONS(975), 1, anon_sym_POUND, - ACTIONS(2364), 1, + ACTIONS(2420), 1, sym_self_referential_reader_macro, - STATE(2125), 1, + STATE(1848), 1, + sym_sym_lit, + STATE(1925), 1, + sym__bare_set_lit, + STATE(2167), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2428), 1, - sym_sym_lit, - ACTIONS(604), 2, + ACTIONS(744), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(622), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(626), 2, + ACTIONS(766), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(628), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2360), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2362), 3, + ACTIONS(2418), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(357), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2266), 19, + STATE(1962), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -42068,7 +42162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [27810] = 35, + [27945] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -42077,78 +42171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(2368), 1, + ACTIONS(2424), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2366), 3, + ACTIONS(2422), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2045), 19, + STATE(1981), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -42168,7 +42262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [27945] = 35, + [28080] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -42177,78 +42271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(586), 1, + ACTIONS(556), 1, aux_sym_num_lit_token1, - ACTIONS(588), 1, + ACTIONS(558), 1, anon_sym_COLON, - ACTIONS(590), 1, + ACTIONS(560), 1, anon_sym_COLON_COLON, - ACTIONS(592), 1, + ACTIONS(562), 1, anon_sym_DQUOTE, - ACTIONS(598), 1, + ACTIONS(568), 1, aux_sym_sym_lit_token1, - ACTIONS(600), 1, + ACTIONS(570), 1, anon_sym_LPAREN, - ACTIONS(606), 1, + ACTIONS(576), 1, anon_sym_POUND_QMARK, - ACTIONS(608), 1, + ACTIONS(578), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(610), 1, + ACTIONS(580), 1, anon_sym_POUND_SQUOTE, - ACTIONS(612), 1, + ACTIONS(582), 1, anon_sym_SQUOTE, - ACTIONS(614), 1, + ACTIONS(584), 1, anon_sym_BQUOTE, - ACTIONS(616), 1, + ACTIONS(586), 1, anon_sym_COMMA_AT, - ACTIONS(618), 1, + ACTIONS(588), 1, anon_sym_COMMA, - ACTIONS(620), 1, + ACTIONS(590), 1, anon_sym_cl, - ACTIONS(1492), 1, + ACTIONS(1436), 1, anon_sym_POUND, - ACTIONS(2374), 1, + ACTIONS(2430), 1, sym_self_referential_reader_macro, - STATE(2125), 1, + STATE(1386), 1, + sym__bare_set_lit, + STATE(1388), 1, + sym_sym_lit, + STATE(2172), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2428), 1, - sym_sym_lit, - ACTIONS(604), 2, + ACTIONS(574), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(622), 2, + ACTIONS(592), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(626), 2, + ACTIONS(596), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(628), 2, + ACTIONS(598), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2370), 2, + ACTIONS(2426), 2, sym__ws, sym_comment, - ACTIONS(2372), 3, + ACTIONS(2428), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(358), 3, + STATE(354), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1387), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2271), 19, + STATE(1316), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -42268,7 +42362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [28080] = 35, + [28215] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -42277,78 +42371,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(2378), 1, + ACTIONS(2434), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2376), 3, + ACTIONS(2432), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2044), 19, + STATE(1980), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -42368,87 +42462,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [28215] = 35, + [28350] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(556), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(558), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(560), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(562), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(568), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(570), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(576), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(578), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(580), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(582), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(584), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(586), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(588), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(590), 1, anon_sym_cl, - ACTIONS(2384), 1, + ACTIONS(1436), 1, + anon_sym_POUND, + ACTIONS(2440), 1, sym_self_referential_reader_macro, - STATE(1506), 1, - sym_sym_lit, - STATE(1511), 1, + STATE(1386), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(1388), 1, + sym_sym_lit, + STATE(2172), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(574), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(592), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(596), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(598), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2380), 2, + ACTIONS(2436), 2, sym__ws, sym_comment, - ACTIONS(2382), 3, + ACTIONS(2438), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(354), 3, + STATE(355), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(1387), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(418), 19, + STATE(1318), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -42468,87 +42562,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [28350] = 35, + [28485] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(556), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(558), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(560), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(562), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(568), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(570), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(576), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(578), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(580), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(582), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(584), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(586), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(588), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(590), 1, anon_sym_cl, - ACTIONS(2388), 1, + ACTIONS(1436), 1, + anon_sym_POUND, + ACTIONS(2446), 1, sym_self_referential_reader_macro, - STATE(1506), 1, - sym_sym_lit, - STATE(1511), 1, + STATE(1386), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(1388), 1, + sym_sym_lit, + STATE(2172), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(574), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(592), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(596), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(598), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(2442), 2, sym__ws, sym_comment, - ACTIONS(2386), 3, + ACTIONS(2444), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(361), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(713), 19, + STATE(1387), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1320), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -42568,7 +42662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [28485] = 35, + [28620] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -42577,78 +42671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(586), 1, + ACTIONS(556), 1, aux_sym_num_lit_token1, - ACTIONS(588), 1, + ACTIONS(558), 1, anon_sym_COLON, - ACTIONS(590), 1, + ACTIONS(560), 1, anon_sym_COLON_COLON, - ACTIONS(592), 1, + ACTIONS(562), 1, anon_sym_DQUOTE, - ACTIONS(598), 1, + ACTIONS(568), 1, aux_sym_sym_lit_token1, - ACTIONS(600), 1, + ACTIONS(570), 1, anon_sym_LPAREN, - ACTIONS(606), 1, + ACTIONS(576), 1, anon_sym_POUND_QMARK, - ACTIONS(608), 1, + ACTIONS(578), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(610), 1, + ACTIONS(580), 1, anon_sym_POUND_SQUOTE, - ACTIONS(612), 1, + ACTIONS(582), 1, anon_sym_SQUOTE, - ACTIONS(614), 1, + ACTIONS(584), 1, anon_sym_BQUOTE, - ACTIONS(616), 1, + ACTIONS(586), 1, anon_sym_COMMA_AT, - ACTIONS(618), 1, + ACTIONS(588), 1, anon_sym_COMMA, - ACTIONS(620), 1, + ACTIONS(590), 1, anon_sym_cl, - ACTIONS(1492), 1, + ACTIONS(1436), 1, anon_sym_POUND, - ACTIONS(2394), 1, + ACTIONS(2452), 1, sym_self_referential_reader_macro, - STATE(2125), 1, + STATE(1386), 1, + sym__bare_set_lit, + STATE(1388), 1, + sym_sym_lit, + STATE(2172), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2428), 1, - sym_sym_lit, - ACTIONS(604), 2, + ACTIONS(574), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(622), 2, + ACTIONS(592), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(626), 2, + ACTIONS(596), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(628), 2, + ACTIONS(598), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2390), 2, + ACTIONS(2448), 2, sym__ws, sym_comment, - ACTIONS(2392), 3, + ACTIONS(2450), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(361), 3, + STATE(370), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1387), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2240), 19, + STATE(1325), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -42668,7 +42762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [28620] = 35, + [28755] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -42677,78 +42771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(522), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(728), 1, aux_sym_num_lit_token1, - ACTIONS(524), 1, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(546), 1, + ACTIONS(750), 1, anon_sym_POUND_SQUOTE, - ACTIONS(548), 1, + ACTIONS(752), 1, anon_sym_SQUOTE, - ACTIONS(550), 1, + ACTIONS(754), 1, anon_sym_BQUOTE, - ACTIONS(552), 1, + ACTIONS(756), 1, anon_sym_COMMA_AT, - ACTIONS(554), 1, + ACTIONS(758), 1, anon_sym_COMMA, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(1027), 1, + ACTIONS(975), 1, anon_sym_POUND, - ACTIONS(1534), 1, + ACTIONS(2456), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2151), 1, + STATE(2167), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(540), 2, + ACTIONS(744), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(562), 2, + ACTIONS(766), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2396), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1532), 3, + ACTIONS(2454), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(430), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1907), 19, + STATE(1922), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -42768,7 +42862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [28755] = 35, + [28890] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -42777,78 +42871,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(586), 1, + ACTIONS(556), 1, aux_sym_num_lit_token1, - ACTIONS(588), 1, + ACTIONS(558), 1, anon_sym_COLON, - ACTIONS(590), 1, + ACTIONS(560), 1, anon_sym_COLON_COLON, - ACTIONS(592), 1, + ACTIONS(562), 1, anon_sym_DQUOTE, - ACTIONS(598), 1, + ACTIONS(568), 1, aux_sym_sym_lit_token1, - ACTIONS(600), 1, + ACTIONS(570), 1, anon_sym_LPAREN, - ACTIONS(606), 1, + ACTIONS(576), 1, anon_sym_POUND_QMARK, - ACTIONS(608), 1, + ACTIONS(578), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(610), 1, + ACTIONS(580), 1, anon_sym_POUND_SQUOTE, - ACTIONS(612), 1, + ACTIONS(582), 1, anon_sym_SQUOTE, - ACTIONS(614), 1, + ACTIONS(584), 1, anon_sym_BQUOTE, - ACTIONS(616), 1, + ACTIONS(586), 1, anon_sym_COMMA_AT, - ACTIONS(618), 1, + ACTIONS(588), 1, anon_sym_COMMA, - ACTIONS(620), 1, + ACTIONS(590), 1, anon_sym_cl, - ACTIONS(1492), 1, + ACTIONS(1436), 1, anon_sym_POUND, - ACTIONS(2400), 1, + ACTIONS(2460), 1, sym_self_referential_reader_macro, - STATE(2125), 1, + STATE(1386), 1, + sym__bare_set_lit, + STATE(1388), 1, + sym_sym_lit, + STATE(2172), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2428), 1, - sym_sym_lit, - ACTIONS(604), 2, + ACTIONS(574), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(622), 2, + ACTIONS(592), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(626), 2, + ACTIONS(596), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(628), 2, + ACTIONS(598), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2398), 3, + ACTIONS(2458), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1387), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2281), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1327), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -42868,7 +42962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [28890] = 35, + [29025] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -42877,78 +42971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(877), 1, + ACTIONS(664), 1, aux_sym_num_lit_token1, - ACTIONS(879), 1, + ACTIONS(666), 1, anon_sym_COLON, - ACTIONS(881), 1, + ACTIONS(668), 1, anon_sym_COLON_COLON, - ACTIONS(883), 1, + ACTIONS(670), 1, anon_sym_DQUOTE, - ACTIONS(889), 1, + ACTIONS(676), 1, aux_sym_sym_lit_token1, - ACTIONS(891), 1, + ACTIONS(678), 1, anon_sym_LPAREN, - ACTIONS(897), 1, + ACTIONS(684), 1, anon_sym_POUND_QMARK, - ACTIONS(899), 1, + ACTIONS(686), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(901), 1, + ACTIONS(688), 1, anon_sym_POUND_SQUOTE, - ACTIONS(903), 1, + ACTIONS(690), 1, anon_sym_SQUOTE, - ACTIONS(905), 1, + ACTIONS(692), 1, anon_sym_BQUOTE, - ACTIONS(907), 1, + ACTIONS(694), 1, anon_sym_COMMA_AT, - ACTIONS(909), 1, + ACTIONS(696), 1, anon_sym_COMMA, - ACTIONS(911), 1, + ACTIONS(698), 1, anon_sym_cl, - ACTIONS(2034), 1, + ACTIONS(1444), 1, anon_sym_POUND, - ACTIONS(2404), 1, + ACTIONS(2464), 1, sym_self_referential_reader_macro, - STATE(1165), 1, + STATE(1167), 1, sym_sym_lit, - STATE(1233), 1, + STATE(1175), 1, sym__bare_set_lit, - STATE(2140), 1, + STATE(2160), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(895), 2, + ACTIONS(682), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(913), 2, + ACTIONS(700), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(917), 2, + ACTIONS(704), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(919), 2, + ACTIONS(706), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2402), 3, + ACTIONS(2462), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1275), 3, + STATE(1174), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1230), 19, + STATE(1194), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -42968,7 +43062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [29025] = 35, + [29160] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -42977,78 +43071,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(586), 1, + ACTIONS(556), 1, aux_sym_num_lit_token1, - ACTIONS(588), 1, + ACTIONS(558), 1, anon_sym_COLON, - ACTIONS(590), 1, + ACTIONS(560), 1, anon_sym_COLON_COLON, - ACTIONS(592), 1, + ACTIONS(562), 1, anon_sym_DQUOTE, - ACTIONS(598), 1, + ACTIONS(568), 1, aux_sym_sym_lit_token1, - ACTIONS(600), 1, + ACTIONS(570), 1, anon_sym_LPAREN, - ACTIONS(606), 1, + ACTIONS(576), 1, anon_sym_POUND_QMARK, - ACTIONS(608), 1, + ACTIONS(578), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(610), 1, + ACTIONS(580), 1, anon_sym_POUND_SQUOTE, - ACTIONS(612), 1, + ACTIONS(582), 1, anon_sym_SQUOTE, - ACTIONS(614), 1, + ACTIONS(584), 1, anon_sym_BQUOTE, - ACTIONS(616), 1, + ACTIONS(586), 1, anon_sym_COMMA_AT, - ACTIONS(618), 1, + ACTIONS(588), 1, anon_sym_COMMA, - ACTIONS(620), 1, + ACTIONS(590), 1, anon_sym_cl, - ACTIONS(1492), 1, + ACTIONS(1436), 1, anon_sym_POUND, - ACTIONS(2408), 1, + ACTIONS(2468), 1, sym_self_referential_reader_macro, - STATE(2125), 1, + STATE(1386), 1, + sym__bare_set_lit, + STATE(1388), 1, + sym_sym_lit, + STATE(2172), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2428), 1, - sym_sym_lit, - ACTIONS(604), 2, + ACTIONS(574), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(622), 2, + ACTIONS(592), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(626), 2, + ACTIONS(596), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(628), 2, + ACTIONS(598), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2406), 3, + ACTIONS(2466), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1387), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2284), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1329), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -43068,7 +43162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [29160] = 35, + [29295] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -43077,78 +43171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(877), 1, + ACTIONS(664), 1, aux_sym_num_lit_token1, - ACTIONS(879), 1, + ACTIONS(666), 1, anon_sym_COLON, - ACTIONS(881), 1, + ACTIONS(668), 1, anon_sym_COLON_COLON, - ACTIONS(883), 1, + ACTIONS(670), 1, anon_sym_DQUOTE, - ACTIONS(889), 1, + ACTIONS(676), 1, aux_sym_sym_lit_token1, - ACTIONS(891), 1, + ACTIONS(678), 1, anon_sym_LPAREN, - ACTIONS(897), 1, + ACTIONS(684), 1, anon_sym_POUND_QMARK, - ACTIONS(899), 1, + ACTIONS(686), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(901), 1, + ACTIONS(688), 1, anon_sym_POUND_SQUOTE, - ACTIONS(903), 1, + ACTIONS(690), 1, anon_sym_SQUOTE, - ACTIONS(905), 1, + ACTIONS(692), 1, anon_sym_BQUOTE, - ACTIONS(907), 1, + ACTIONS(694), 1, anon_sym_COMMA_AT, - ACTIONS(909), 1, + ACTIONS(696), 1, anon_sym_COMMA, - ACTIONS(911), 1, + ACTIONS(698), 1, anon_sym_cl, - ACTIONS(2034), 1, + ACTIONS(1444), 1, anon_sym_POUND, - ACTIONS(2414), 1, + ACTIONS(2474), 1, sym_self_referential_reader_macro, - STATE(1165), 1, + STATE(1167), 1, sym_sym_lit, - STATE(1233), 1, + STATE(1175), 1, sym__bare_set_lit, - STATE(2140), 1, + STATE(2160), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(895), 2, + ACTIONS(682), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(913), 2, + ACTIONS(700), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(917), 2, + ACTIONS(704), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(919), 2, + ACTIONS(706), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2410), 2, + ACTIONS(2470), 2, sym__ws, sym_comment, - ACTIONS(2412), 3, + ACTIONS(2472), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(480), 3, + STATE(481), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1275), 3, + STATE(1174), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1231), 19, + STATE(1176), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -43168,7 +43262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [29295] = 35, + [29430] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -43177,78 +43271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(586), 1, + ACTIONS(556), 1, aux_sym_num_lit_token1, - ACTIONS(588), 1, + ACTIONS(558), 1, anon_sym_COLON, - ACTIONS(590), 1, + ACTIONS(560), 1, anon_sym_COLON_COLON, - ACTIONS(592), 1, + ACTIONS(562), 1, anon_sym_DQUOTE, - ACTIONS(598), 1, + ACTIONS(568), 1, aux_sym_sym_lit_token1, - ACTIONS(600), 1, + ACTIONS(570), 1, anon_sym_LPAREN, - ACTIONS(606), 1, + ACTIONS(576), 1, anon_sym_POUND_QMARK, - ACTIONS(608), 1, + ACTIONS(578), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(610), 1, + ACTIONS(580), 1, anon_sym_POUND_SQUOTE, - ACTIONS(612), 1, + ACTIONS(582), 1, anon_sym_SQUOTE, - ACTIONS(614), 1, + ACTIONS(584), 1, anon_sym_BQUOTE, - ACTIONS(616), 1, + ACTIONS(586), 1, anon_sym_COMMA_AT, - ACTIONS(618), 1, + ACTIONS(588), 1, anon_sym_COMMA, - ACTIONS(620), 1, + ACTIONS(590), 1, anon_sym_cl, - ACTIONS(1492), 1, + ACTIONS(1436), 1, anon_sym_POUND, - ACTIONS(2418), 1, + ACTIONS(2478), 1, sym_self_referential_reader_macro, - STATE(2125), 1, + STATE(1386), 1, + sym__bare_set_lit, + STATE(1388), 1, + sym_sym_lit, + STATE(2172), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2428), 1, - sym_sym_lit, - ACTIONS(604), 2, + ACTIONS(574), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(622), 2, + ACTIONS(592), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(626), 2, + ACTIONS(596), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(628), 2, + ACTIONS(598), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2416), 3, + ACTIONS(2476), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1387), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2288), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1336), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -43268,7 +43362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [29430] = 35, + [29565] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -43277,78 +43371,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(190), 1, - anon_sym_POUND, - ACTIONS(194), 1, + ACTIONS(556), 1, aux_sym_num_lit_token1, - ACTIONS(196), 1, + ACTIONS(558), 1, anon_sym_COLON, - ACTIONS(198), 1, + ACTIONS(560), 1, anon_sym_COLON_COLON, - ACTIONS(200), 1, + ACTIONS(562), 1, anon_sym_DQUOTE, - ACTIONS(202), 1, + ACTIONS(568), 1, aux_sym_sym_lit_token1, - ACTIONS(217), 1, + ACTIONS(570), 1, + anon_sym_LPAREN, + ACTIONS(576), 1, anon_sym_POUND_QMARK, - ACTIONS(219), 1, + ACTIONS(578), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(221), 1, + ACTIONS(580), 1, anon_sym_POUND_SQUOTE, - ACTIONS(223), 1, + ACTIONS(582), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, + ACTIONS(584), 1, anon_sym_BQUOTE, - ACTIONS(227), 1, + ACTIONS(586), 1, anon_sym_COMMA_AT, - ACTIONS(229), 1, + ACTIONS(588), 1, anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_LPAREN, - ACTIONS(644), 1, + ACTIONS(590), 1, anon_sym_cl, - ACTIONS(2424), 1, + ACTIONS(1436), 1, + anon_sym_POUND, + ACTIONS(2482), 1, sym_self_referential_reader_macro, - STATE(1012), 1, - sym_sym_lit, - STATE(1017), 1, + STATE(1386), 1, sym__bare_set_lit, - STATE(2139), 1, + STATE(1388), 1, + sym_sym_lit, + STATE(2172), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(215), 2, + ACTIONS(574), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(236), 2, + ACTIONS(592), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(240), 2, + ACTIONS(596), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(242), 2, + ACTIONS(598), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2420), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2422), 3, + ACTIONS(2480), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(412), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1015), 3, + STATE(1387), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1043), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1337), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -43368,87 +43462,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [29565] = 35, + [29700] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(586), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(588), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(590), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(592), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(598), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(600), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(606), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(608), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(610), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(612), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(614), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(616), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(618), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(620), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1492), 1, - anon_sym_POUND, - ACTIONS(2428), 1, + ACTIONS(2488), 1, sym_self_referential_reader_macro, - STATE(2125), 1, + STATE(1450), 1, + sym_sym_lit, + STATE(1452), 1, + sym__bare_set_lit, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2428), 1, - sym_sym_lit, - ACTIONS(604), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(622), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(626), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(628), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(2484), 2, sym__ws, sym_comment, - ACTIONS(2426), 3, + ACTIONS(2486), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(420), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2289), 19, + STATE(325), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -43468,7 +43562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [29700] = 35, + [29835] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -43477,78 +43571,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(190), 1, - anon_sym_POUND, - ACTIONS(194), 1, + ACTIONS(556), 1, aux_sym_num_lit_token1, - ACTIONS(196), 1, + ACTIONS(558), 1, anon_sym_COLON, - ACTIONS(198), 1, + ACTIONS(560), 1, anon_sym_COLON_COLON, - ACTIONS(200), 1, + ACTIONS(562), 1, anon_sym_DQUOTE, - ACTIONS(202), 1, + ACTIONS(568), 1, aux_sym_sym_lit_token1, - ACTIONS(217), 1, + ACTIONS(570), 1, + anon_sym_LPAREN, + ACTIONS(576), 1, anon_sym_POUND_QMARK, - ACTIONS(219), 1, + ACTIONS(578), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(221), 1, + ACTIONS(580), 1, anon_sym_POUND_SQUOTE, - ACTIONS(223), 1, + ACTIONS(582), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, + ACTIONS(584), 1, anon_sym_BQUOTE, - ACTIONS(227), 1, + ACTIONS(586), 1, anon_sym_COMMA_AT, - ACTIONS(229), 1, + ACTIONS(588), 1, anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_LPAREN, - ACTIONS(644), 1, + ACTIONS(590), 1, anon_sym_cl, - ACTIONS(2434), 1, + ACTIONS(1436), 1, + anon_sym_POUND, + ACTIONS(2492), 1, sym_self_referential_reader_macro, - STATE(1012), 1, - sym_sym_lit, - STATE(1017), 1, + STATE(1386), 1, sym__bare_set_lit, - STATE(2139), 1, + STATE(1388), 1, + sym_sym_lit, + STATE(2172), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(215), 2, + ACTIONS(574), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(236), 2, + ACTIONS(592), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(240), 2, + ACTIONS(596), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(242), 2, + ACTIONS(598), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2430), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2432), 3, + ACTIONS(2490), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(413), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1015), 3, + STATE(1387), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1045), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1338), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -43568,7 +43662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [29835] = 35, + [29970] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -43577,78 +43671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(586), 1, + ACTIONS(556), 1, aux_sym_num_lit_token1, - ACTIONS(588), 1, + ACTIONS(558), 1, anon_sym_COLON, - ACTIONS(590), 1, + ACTIONS(560), 1, anon_sym_COLON_COLON, - ACTIONS(592), 1, + ACTIONS(562), 1, anon_sym_DQUOTE, - ACTIONS(598), 1, + ACTIONS(568), 1, aux_sym_sym_lit_token1, - ACTIONS(600), 1, + ACTIONS(570), 1, anon_sym_LPAREN, - ACTIONS(606), 1, + ACTIONS(576), 1, anon_sym_POUND_QMARK, - ACTIONS(608), 1, + ACTIONS(578), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(610), 1, + ACTIONS(580), 1, anon_sym_POUND_SQUOTE, - ACTIONS(612), 1, + ACTIONS(582), 1, anon_sym_SQUOTE, - ACTIONS(614), 1, + ACTIONS(584), 1, anon_sym_BQUOTE, - ACTIONS(616), 1, + ACTIONS(586), 1, anon_sym_COMMA_AT, - ACTIONS(618), 1, + ACTIONS(588), 1, anon_sym_COMMA, - ACTIONS(620), 1, + ACTIONS(590), 1, anon_sym_cl, - ACTIONS(1492), 1, + ACTIONS(1436), 1, anon_sym_POUND, - ACTIONS(2438), 1, + ACTIONS(2496), 1, sym_self_referential_reader_macro, - STATE(2125), 1, + STATE(1386), 1, + sym__bare_set_lit, + STATE(1388), 1, + sym_sym_lit, + STATE(2172), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2428), 1, - sym_sym_lit, - ACTIONS(604), 2, + ACTIONS(574), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(622), 2, + ACTIONS(592), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(626), 2, + ACTIONS(596), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(628), 2, + ACTIONS(598), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2436), 3, + ACTIONS(2494), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1387), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2293), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1351), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -43668,7 +43762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [29970] = 35, + [30105] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -43677,78 +43771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(190), 1, - anon_sym_POUND, - ACTIONS(194), 1, + ACTIONS(472), 1, aux_sym_num_lit_token1, - ACTIONS(196), 1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(198), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(200), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(202), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(217), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(492), 1, anon_sym_POUND_QMARK, - ACTIONS(219), 1, + ACTIONS(494), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(221), 1, + ACTIONS(496), 1, anon_sym_POUND_SQUOTE, - ACTIONS(223), 1, + ACTIONS(498), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, + ACTIONS(500), 1, anon_sym_BQUOTE, - ACTIONS(227), 1, + ACTIONS(502), 1, anon_sym_COMMA_AT, - ACTIONS(229), 1, + ACTIONS(504), 1, anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_LPAREN, - ACTIONS(644), 1, + ACTIONS(506), 1, anon_sym_cl, - ACTIONS(2444), 1, + ACTIONS(1794), 1, + anon_sym_POUND, + ACTIONS(1936), 1, sym_self_referential_reader_macro, - STATE(1012), 1, - sym_sym_lit, - STATE(1017), 1, - sym__bare_set_lit, - STATE(2139), 1, + STATE(2168), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(215), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2454), 1, + sym_sym_lit, + ACTIONS(490), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(236), 2, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(240), 2, + ACTIONS(512), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(242), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2440), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2442), 3, + ACTIONS(1934), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(414), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1015), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1046), 19, + STATE(2313), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -43768,7 +43862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [30105] = 35, + [30240] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -43777,78 +43871,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(190), 1, - anon_sym_POUND, - ACTIONS(194), 1, + ACTIONS(556), 1, aux_sym_num_lit_token1, - ACTIONS(196), 1, + ACTIONS(558), 1, anon_sym_COLON, - ACTIONS(198), 1, + ACTIONS(560), 1, anon_sym_COLON_COLON, - ACTIONS(200), 1, + ACTIONS(562), 1, anon_sym_DQUOTE, - ACTIONS(202), 1, + ACTIONS(568), 1, aux_sym_sym_lit_token1, - ACTIONS(217), 1, + ACTIONS(570), 1, + anon_sym_LPAREN, + ACTIONS(576), 1, anon_sym_POUND_QMARK, - ACTIONS(219), 1, + ACTIONS(578), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(221), 1, + ACTIONS(580), 1, anon_sym_POUND_SQUOTE, - ACTIONS(223), 1, + ACTIONS(582), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, + ACTIONS(584), 1, anon_sym_BQUOTE, - ACTIONS(227), 1, + ACTIONS(586), 1, anon_sym_COMMA_AT, - ACTIONS(229), 1, + ACTIONS(588), 1, anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_LPAREN, - ACTIONS(644), 1, + ACTIONS(590), 1, anon_sym_cl, - ACTIONS(2450), 1, + ACTIONS(1436), 1, + anon_sym_POUND, + ACTIONS(2502), 1, sym_self_referential_reader_macro, - STATE(1012), 1, - sym_sym_lit, - STATE(1017), 1, + STATE(1386), 1, sym__bare_set_lit, - STATE(2139), 1, + STATE(1388), 1, + sym_sym_lit, + STATE(2172), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(215), 2, + ACTIONS(574), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(236), 2, + ACTIONS(592), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(240), 2, + ACTIONS(596), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(242), 2, + ACTIONS(598), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2446), 2, + ACTIONS(2498), 2, sym__ws, sym_comment, - ACTIONS(2448), 3, + ACTIONS(2500), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(416), 3, + STATE(380), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1015), 3, + STATE(1387), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1048), 19, + STATE(1361), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -43868,7 +43962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [30240] = 35, + [30375] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -43877,78 +43971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(522), 1, + ACTIONS(556), 1, aux_sym_num_lit_token1, - ACTIONS(524), 1, + ACTIONS(558), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(560), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(562), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(568), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(570), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(576), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(578), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(546), 1, + ACTIONS(580), 1, anon_sym_POUND_SQUOTE, - ACTIONS(548), 1, + ACTIONS(582), 1, anon_sym_SQUOTE, - ACTIONS(550), 1, + ACTIONS(584), 1, anon_sym_BQUOTE, - ACTIONS(552), 1, + ACTIONS(586), 1, anon_sym_COMMA_AT, - ACTIONS(554), 1, + ACTIONS(588), 1, anon_sym_COMMA, - ACTIONS(556), 1, + ACTIONS(590), 1, anon_sym_cl, - ACTIONS(1027), 1, + ACTIONS(1436), 1, anon_sym_POUND, - ACTIONS(1540), 1, + ACTIONS(2508), 1, sym_self_referential_reader_macro, - STATE(1825), 1, - sym_sym_lit, - STATE(1887), 1, + STATE(1386), 1, sym__bare_set_lit, - STATE(2151), 1, + STATE(1388), 1, + sym_sym_lit, + STATE(2172), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(540), 2, + ACTIONS(574), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(558), 2, + ACTIONS(592), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(562), 2, + ACTIONS(596), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(564), 2, + ACTIONS(598), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2452), 2, + ACTIONS(2504), 2, sym__ws, sym_comment, - ACTIONS(1538), 3, + ACTIONS(2506), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(431), 3, + STATE(382), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1387), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1908), 19, + STATE(1362), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -43968,7 +44062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [30375] = 35, + [30510] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -43977,78 +44071,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(2456), 1, + ACTIONS(2512), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2454), 3, + ACTIONS(2510), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2022), 19, + STATE(1979), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -44068,7 +44162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [30510] = 35, + [30645] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -44077,78 +44171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(522), 1, - aux_sym_num_lit_token1, - ACTIONS(524), 1, + ACTIONS(606), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(608), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(610), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(612), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(618), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(951), 1, + aux_sym_num_lit_token1, + ACTIONS(955), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(546), 1, + ACTIONS(957), 1, anon_sym_POUND_SQUOTE, - ACTIONS(548), 1, + ACTIONS(959), 1, anon_sym_SQUOTE, - ACTIONS(550), 1, + ACTIONS(961), 1, anon_sym_BQUOTE, - ACTIONS(552), 1, + ACTIONS(963), 1, anon_sym_COMMA_AT, - ACTIONS(554), 1, + ACTIONS(965), 1, anon_sym_COMMA, - ACTIONS(556), 1, + ACTIONS(967), 1, anon_sym_cl, - ACTIONS(1027), 1, + ACTIONS(1452), 1, anon_sym_POUND, - ACTIONS(2462), 1, + ACTIONS(2516), 1, sym_self_referential_reader_macro, - STATE(1825), 1, - sym_sym_lit, - STATE(1887), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2151), 1, + STATE(2149), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2244), 1, + sym_sym_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(540), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(558), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(562), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(564), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2458), 2, + ACTIONS(953), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(969), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2460), 3, + ACTIONS(2514), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(410), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1800), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1837), 19, + STATE(2173), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -44168,7 +44262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [30645] = 35, + [30780] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -44177,78 +44271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(2468), 1, + ACTIONS(2522), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2464), 2, + ACTIONS(2518), 2, sym__ws, sym_comment, - ACTIONS(2466), 3, + ACTIONS(2520), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(488), 3, + STATE(489), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2037), 19, + STATE(1978), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -44268,87 +44362,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [30780] = 35, + [30915] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(190), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(194), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(196), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(198), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(200), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(202), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(217), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(219), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(221), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(223), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(227), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(229), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_LPAREN, - ACTIONS(644), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(2474), 1, + ACTIONS(2528), 1, sym_self_referential_reader_macro, - STATE(1012), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1017), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2139), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(215), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(236), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(240), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(242), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2470), 2, + ACTIONS(2524), 2, sym__ws, sym_comment, - ACTIONS(2472), 3, + ACTIONS(2526), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(417), 3, + STATE(356), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1015), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1139), 19, + STATE(569), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -44368,7 +44462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [30915] = 35, + [31050] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -44407,19 +44501,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(2480), 1, + ACTIONS(2534), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -44433,22 +44527,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2476), 2, + ACTIONS(2530), 2, sym__ws, sym_comment, - ACTIONS(2478), 3, + ACTIONS(2532), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(429), 3, + STATE(357), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(242), 19, + STATE(583), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -44468,7 +44562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [31050] = 35, + [31185] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -44477,78 +44571,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(2486), 1, + ACTIONS(2540), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2482), 2, + ACTIONS(2536), 2, sym__ws, sym_comment, - ACTIONS(2484), 3, + ACTIONS(2538), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(167), 3, + STATE(494), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1958), 19, + STATE(1977), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -44568,87 +44662,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [31185] = 35, + [31320] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, + anon_sym_COLON_COLON, + ACTIONS(21), 1, + anon_sym_DQUOTE, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(536), 1, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(588), 1, - anon_sym_COLON, - ACTIONS(590), 1, - anon_sym_COLON_COLON, - ACTIONS(592), 1, - anon_sym_DQUOTE, - ACTIONS(598), 1, - aux_sym_sym_lit_token1, - ACTIONS(620), 1, - anon_sym_cl, - ACTIONS(670), 1, - aux_sym_num_lit_token1, - ACTIONS(674), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(676), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(678), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(680), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(682), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(684), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(686), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(1588), 1, - anon_sym_POUND, - ACTIONS(2300), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(2544), 1, sym_self_referential_reader_macro, - STATE(2150), 1, + STATE(1450), 1, + sym_sym_lit, + STATE(1452), 1, + sym__bare_set_lit, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2428), 1, - sym_sym_lit, - ACTIONS(622), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(628), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(672), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(688), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2298), 3, + ACTIONS(2542), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2250), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(593), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -44668,87 +44762,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [31320] = 35, + [31455] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, + anon_sym_COLON_COLON, + ACTIONS(21), 1, + anon_sym_DQUOTE, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, + anon_sym_POUND_QMARK, + ACTIONS(35), 1, + anon_sym_POUND_QMARK_AT, ACTIONS(47), 1, sym_block_comment, - ACTIONS(61), 1, - anon_sym_POUND, - ACTIONS(65), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(854), 1, aux_sym_num_lit_token1, - ACTIONS(67), 1, - anon_sym_COLON, - ACTIONS(69), 1, - anon_sym_COLON_COLON, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - aux_sym_sym_lit_token1, - ACTIONS(77), 1, - anon_sym_POUND_QMARK, - ACTIONS(79), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(81), 1, + ACTIONS(858), 1, anon_sym_POUND_SQUOTE, - ACTIONS(83), 1, + ACTIONS(860), 1, anon_sym_SQUOTE, - ACTIONS(85), 1, + ACTIONS(862), 1, anon_sym_BQUOTE, - ACTIONS(87), 1, + ACTIONS(864), 1, anon_sym_COMMA_AT, - ACTIONS(89), 1, + ACTIONS(866), 1, anon_sym_COMMA, - ACTIONS(658), 1, - anon_sym_LPAREN, - ACTIONS(662), 1, - anon_sym_cl, - ACTIONS(2490), 1, + ACTIONS(2074), 1, + anon_sym_POUND, + ACTIONS(2548), 1, sym_self_referential_reader_macro, - STATE(822), 1, + STATE(1450), 1, sym_sym_lit, - STATE(824), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2149), 1, + STATE(2146), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(75), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(93), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(97), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(99), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(856), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(868), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2488), 3, + ACTIONS(2546), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(823), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(845), 19, + STATE(1487), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -44768,7 +44862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [31455] = 35, + [31590] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -44777,78 +44871,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(2496), 1, + ACTIONS(2554), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2492), 2, + ACTIONS(2550), 2, sym__ws, sym_comment, - ACTIONS(2494), 3, + ACTIONS(2552), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(499), 3, + STATE(500), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2035), 19, + STATE(2056), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -44868,7 +44962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [31590] = 35, + [31725] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -44907,19 +45001,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(2502), 1, + ACTIONS(2558), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -44933,22 +45027,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2498), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2500), 3, + ACTIONS(2556), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(438), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(219), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(412), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -44968,13 +45062,9 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [31725] = 35, + [31860] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, - aux_sym_num_lit_token1, ACTIONS(17), 1, anon_sym_COLON, ACTIONS(19), 1, @@ -44993,62 +45083,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(854), 1, + aux_sym_num_lit_token1, + ACTIONS(858), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(860), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(862), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(864), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(866), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(2508), 1, + ACTIONS(2074), 1, + anon_sym_POUND, + ACTIONS(2562), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2146), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2504), 2, + ACTIONS(856), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(868), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2506), 3, + ACTIONS(2560), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(206), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(205), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1488), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -45068,7 +45162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [31860] = 35, + [31995] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -45077,78 +45171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(588), 1, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(590), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(592), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(598), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(620), 1, - anon_sym_cl, - ACTIONS(670), 1, - aux_sym_num_lit_token1, - ACTIONS(674), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(676), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(678), 1, + ACTIONS(760), 1, + anon_sym_cl, + ACTIONS(838), 1, + aux_sym_num_lit_token1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(680), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(682), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(684), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(686), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1588), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(2438), 1, + ACTIONS(2566), 1, sym_self_referential_reader_macro, - STATE(2150), 1, + STATE(1848), 1, + sym_sym_lit, + STATE(1925), 1, + sym__bare_set_lit, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2428), 1, - sym_sym_lit, - ACTIONS(622), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(628), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(672), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(688), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2436), 3, + ACTIONS(2564), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2293), 19, + STATE(1996), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -45168,87 +45262,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [31995] = 35, + [32130] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(556), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(558), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(560), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(562), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(568), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(570), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(576), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(578), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(580), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(582), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(584), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(586), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(588), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(590), 1, anon_sym_cl, - ACTIONS(2514), 1, + ACTIONS(1436), 1, + anon_sym_POUND, + ACTIONS(2572), 1, sym_self_referential_reader_macro, - STATE(1506), 1, - sym_sym_lit, - STATE(1511), 1, + STATE(1386), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(1388), 1, + sym_sym_lit, + STATE(2172), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(574), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(592), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(596), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(598), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2510), 2, + ACTIONS(2568), 2, sym__ws, sym_comment, - ACTIONS(2512), 3, + ACTIONS(2570), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(204), 3, + STATE(384), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(1387), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(203), 19, + STATE(1369), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -45268,7 +45362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [32130] = 35, + [32265] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -45277,78 +45371,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(522), 1, + ACTIONS(556), 1, aux_sym_num_lit_token1, - ACTIONS(524), 1, + ACTIONS(558), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(560), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(562), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(568), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(570), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(576), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(578), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(546), 1, + ACTIONS(580), 1, anon_sym_POUND_SQUOTE, - ACTIONS(548), 1, + ACTIONS(582), 1, anon_sym_SQUOTE, - ACTIONS(550), 1, + ACTIONS(584), 1, anon_sym_BQUOTE, - ACTIONS(552), 1, + ACTIONS(586), 1, anon_sym_COMMA_AT, - ACTIONS(554), 1, + ACTIONS(588), 1, anon_sym_COMMA, - ACTIONS(556), 1, + ACTIONS(590), 1, anon_sym_cl, - ACTIONS(1027), 1, + ACTIONS(1436), 1, anon_sym_POUND, - ACTIONS(1622), 1, + ACTIONS(2578), 1, sym_self_referential_reader_macro, - STATE(1825), 1, - sym_sym_lit, - STATE(1887), 1, + STATE(1386), 1, sym__bare_set_lit, - STATE(2151), 1, + STATE(1388), 1, + sym_sym_lit, + STATE(2172), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(540), 2, + ACTIONS(574), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(558), 2, + ACTIONS(592), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(562), 2, + ACTIONS(596), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(564), 2, + ACTIONS(598), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(2574), 2, sym__ws, sym_comment, - ACTIONS(1620), 3, + ACTIONS(2576), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(385), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1387), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1917), 19, + STATE(1370), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -45368,7 +45462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [32265] = 35, + [32400] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -45377,78 +45471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(2518), 1, + ACTIONS(2582), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2516), 3, + ACTIONS(2580), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2034), 19, + STATE(1986), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -45468,87 +45562,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [32400] = 35, + [32535] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, - aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(730), 1, + anon_sym_COLON, + ACTIONS(732), 1, + anon_sym_COLON_COLON, + ACTIONS(734), 1, + anon_sym_DQUOTE, + ACTIONS(740), 1, + aux_sym_sym_lit_token1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(760), 1, + anon_sym_cl, + ACTIONS(838), 1, + aux_sym_num_lit_token1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(2064), 1, + ACTIONS(1664), 1, + anon_sym_POUND, + ACTIONS(2586), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2520), 2, + ACTIONS(840), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(852), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2062), 3, + ACTIONS(2584), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(202), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1541), 19, + STATE(1992), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -45568,7 +45662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [32535] = 35, + [32670] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -45577,78 +45671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(2526), 1, + ACTIONS(2592), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2522), 2, + ACTIONS(2588), 2, sym__ws, sym_comment, - ACTIONS(2524), 3, + ACTIONS(2590), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(510), 3, + STATE(511), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2033), 19, + STATE(1985), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -45668,7 +45762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [32670] = 35, + [32805] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -45677,78 +45771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(522), 1, - aux_sym_num_lit_token1, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(546), 1, + ACTIONS(760), 1, + anon_sym_cl, + ACTIONS(838), 1, + aux_sym_num_lit_token1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(548), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(550), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(552), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(554), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(556), 1, - anon_sym_cl, - ACTIONS(1027), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(1650), 1, + ACTIONS(1986), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2151), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(540), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(562), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(840), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(852), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1648), 3, + ACTIONS(1984), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1918), 19, + STATE(1901), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -45768,7 +45862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [32805] = 35, + [32940] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -45777,78 +45871,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(2532), 1, + ACTIONS(2598), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2528), 2, + ACTIONS(2594), 2, sym__ws, sym_comment, - ACTIONS(2530), 3, + ACTIONS(2596), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(513), 3, + STATE(514), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2032), 19, + STATE(1984), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -45868,87 +45962,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [32940] = 35, + [33075] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(522), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(524), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(546), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(548), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(550), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(552), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(554), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(556), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1027), 1, - anon_sym_POUND, - ACTIONS(1592), 1, + ACTIONS(2604), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2151), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(540), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(558), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(562), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(564), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(2600), 2, sym__ws, sym_comment, - ACTIONS(1590), 3, + ACTIONS(2602), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(398), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1851), 19, + STATE(620), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -45968,7 +46062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [33075] = 35, + [33210] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -45977,78 +46071,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(588), 1, + ACTIONS(728), 1, + aux_sym_num_lit_token1, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(590), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(592), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(598), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(620), 1, - anon_sym_cl, - ACTIONS(670), 1, - aux_sym_num_lit_token1, - ACTIONS(674), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(676), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(678), 1, + ACTIONS(750), 1, anon_sym_POUND_SQUOTE, - ACTIONS(680), 1, + ACTIONS(752), 1, anon_sym_SQUOTE, - ACTIONS(682), 1, + ACTIONS(754), 1, anon_sym_BQUOTE, - ACTIONS(684), 1, + ACTIONS(756), 1, anon_sym_COMMA_AT, - ACTIONS(686), 1, + ACTIONS(758), 1, anon_sym_COMMA, - ACTIONS(1588), 1, + ACTIONS(760), 1, + anon_sym_cl, + ACTIONS(975), 1, anon_sym_POUND, - ACTIONS(2304), 1, + ACTIONS(2610), 1, sym_self_referential_reader_macro, - STATE(2150), 1, + STATE(1848), 1, + sym_sym_lit, + STATE(1925), 1, + sym__bare_set_lit, + STATE(2167), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2428), 1, - sym_sym_lit, - ACTIONS(622), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(628), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(672), 2, + ACTIONS(744), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(688), 2, + ACTIONS(762), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(766), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(768), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(2606), 2, sym__ws, sym_comment, - ACTIONS(2302), 3, + ACTIONS(2608), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(416), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2251), 19, + STATE(1923), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -46068,7 +46162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [33210] = 35, + [33345] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -46077,78 +46171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(190), 1, - anon_sym_POUND, - ACTIONS(194), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(728), 1, aux_sym_num_lit_token1, - ACTIONS(196), 1, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(198), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(200), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(202), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(217), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(219), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(221), 1, + ACTIONS(750), 1, anon_sym_POUND_SQUOTE, - ACTIONS(223), 1, + ACTIONS(752), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, + ACTIONS(754), 1, anon_sym_BQUOTE, - ACTIONS(227), 1, + ACTIONS(756), 1, anon_sym_COMMA_AT, - ACTIONS(229), 1, + ACTIONS(758), 1, anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_LPAREN, - ACTIONS(644), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(2536), 1, + ACTIONS(975), 1, + anon_sym_POUND, + ACTIONS(2614), 1, sym_self_referential_reader_macro, - STATE(1012), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1017), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2139), 1, + STATE(2167), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(215), 2, + ACTIONS(744), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(236), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(240), 2, + ACTIONS(766), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(242), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2534), 3, + ACTIONS(2612), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1015), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1151), 19, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1926), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -46168,7 +46262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [33345] = 35, + [33480] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -46177,78 +46271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(190), 1, - anon_sym_POUND, - ACTIONS(194), 1, + ACTIONS(472), 1, aux_sym_num_lit_token1, - ACTIONS(196), 1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(198), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(200), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(202), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(217), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(492), 1, anon_sym_POUND_QMARK, - ACTIONS(219), 1, + ACTIONS(494), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(221), 1, + ACTIONS(496), 1, anon_sym_POUND_SQUOTE, - ACTIONS(223), 1, + ACTIONS(498), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, + ACTIONS(500), 1, anon_sym_BQUOTE, - ACTIONS(227), 1, + ACTIONS(502), 1, anon_sym_COMMA_AT, - ACTIONS(229), 1, + ACTIONS(504), 1, anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_LPAREN, - ACTIONS(644), 1, + ACTIONS(506), 1, anon_sym_cl, - ACTIONS(2540), 1, + ACTIONS(1794), 1, + anon_sym_POUND, + ACTIONS(1898), 1, sym_self_referential_reader_macro, - STATE(1012), 1, - sym_sym_lit, - STATE(1017), 1, - sym__bare_set_lit, - STATE(2139), 1, + STATE(2168), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(215), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2454), 1, + sym_sym_lit, + ACTIONS(490), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(236), 2, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(240), 2, + ACTIONS(512), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(242), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2538), 3, + ACTIONS(1896), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1015), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1150), 19, + STATE(2282), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2312), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -46268,7 +46362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [33480] = 35, + [33615] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -46277,78 +46371,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(190), 1, - anon_sym_POUND, - ACTIONS(194), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(728), 1, aux_sym_num_lit_token1, - ACTIONS(196), 1, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(198), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(200), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(202), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(217), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(219), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(221), 1, + ACTIONS(750), 1, anon_sym_POUND_SQUOTE, - ACTIONS(223), 1, + ACTIONS(752), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, + ACTIONS(754), 1, anon_sym_BQUOTE, - ACTIONS(227), 1, + ACTIONS(756), 1, anon_sym_COMMA_AT, - ACTIONS(229), 1, + ACTIONS(758), 1, anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_LPAREN, - ACTIONS(644), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(2544), 1, + ACTIONS(975), 1, + anon_sym_POUND, + ACTIONS(2620), 1, sym_self_referential_reader_macro, - STATE(1012), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1017), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2139), 1, + STATE(2167), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(215), 2, + ACTIONS(744), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(236), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(240), 2, + ACTIONS(766), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(242), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(2616), 2, sym__ws, sym_comment, - ACTIONS(2542), 3, + ACTIONS(2618), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1015), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(417), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1149), 19, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1948), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -46368,87 +46462,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [33615] = 35, + [33750] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, - anon_sym_POUND_QMARK, - ACTIONS(35), 1, - anon_sym_POUND_QMARK_AT, ACTIONS(47), 1, sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(690), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(728), 1, aux_sym_num_lit_token1, - ACTIONS(694), 1, + ACTIONS(730), 1, + anon_sym_COLON, + ACTIONS(732), 1, + anon_sym_COLON_COLON, + ACTIONS(734), 1, + anon_sym_DQUOTE, + ACTIONS(740), 1, + aux_sym_sym_lit_token1, + ACTIONS(746), 1, + anon_sym_POUND_QMARK, + ACTIONS(748), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(750), 1, anon_sym_POUND_SQUOTE, - ACTIONS(696), 1, + ACTIONS(752), 1, anon_sym_SQUOTE, - ACTIONS(698), 1, + ACTIONS(754), 1, anon_sym_BQUOTE, - ACTIONS(700), 1, + ACTIONS(756), 1, anon_sym_COMMA_AT, - ACTIONS(702), 1, + ACTIONS(758), 1, anon_sym_COMMA, - ACTIONS(1882), 1, + ACTIONS(760), 1, + anon_sym_cl, + ACTIONS(975), 1, anon_sym_POUND, - ACTIONS(2548), 1, + ACTIONS(2624), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2126), 1, + STATE(2167), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(57), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(692), 2, + ACTIONS(744), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(704), 2, + ACTIONS(762), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(766), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(768), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2546), 3, + ACTIONS(2622), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1459), 19, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1878), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -46468,7 +46562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [33750] = 35, + [33885] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -46477,78 +46571,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(190), 1, - anon_sym_POUND, - ACTIONS(194), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(728), 1, aux_sym_num_lit_token1, - ACTIONS(196), 1, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(198), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(200), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(202), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(217), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(219), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(221), 1, + ACTIONS(750), 1, anon_sym_POUND_SQUOTE, - ACTIONS(223), 1, + ACTIONS(752), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, + ACTIONS(754), 1, anon_sym_BQUOTE, - ACTIONS(227), 1, + ACTIONS(756), 1, anon_sym_COMMA_AT, - ACTIONS(229), 1, + ACTIONS(758), 1, anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_LPAREN, - ACTIONS(644), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(2552), 1, + ACTIONS(975), 1, + anon_sym_POUND, + ACTIONS(2628), 1, sym_self_referential_reader_macro, - STATE(1012), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1017), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2139), 1, + STATE(2167), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(215), 2, + ACTIONS(744), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(236), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(240), 2, + ACTIONS(766), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(242), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2550), 3, + ACTIONS(2626), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1015), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1148), 19, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1879), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -46568,7 +46662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [33885] = 35, + [34020] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -46577,78 +46671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(190), 1, + ACTIONS(274), 1, anon_sym_POUND, - ACTIONS(194), 1, + ACTIONS(278), 1, aux_sym_num_lit_token1, - ACTIONS(196), 1, + ACTIONS(280), 1, anon_sym_COLON, - ACTIONS(198), 1, + ACTIONS(282), 1, anon_sym_COLON_COLON, - ACTIONS(200), 1, + ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(202), 1, + ACTIONS(286), 1, aux_sym_sym_lit_token1, - ACTIONS(217), 1, + ACTIONS(288), 1, + anon_sym_LPAREN, + ACTIONS(292), 1, anon_sym_POUND_QMARK, - ACTIONS(219), 1, + ACTIONS(294), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(221), 1, + ACTIONS(296), 1, anon_sym_POUND_SQUOTE, - ACTIONS(223), 1, + ACTIONS(298), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, + ACTIONS(300), 1, anon_sym_BQUOTE, - ACTIONS(227), 1, + ACTIONS(302), 1, anon_sym_COMMA_AT, - ACTIONS(229), 1, + ACTIONS(304), 1, anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_LPAREN, - ACTIONS(644), 1, + ACTIONS(546), 1, anon_sym_cl, - ACTIONS(2556), 1, + ACTIONS(2156), 1, sym_self_referential_reader_macro, - STATE(1012), 1, - sym_sym_lit, - STATE(1017), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2139), 1, + STATE(2137), 1, + sym_sym_lit, + STATE(2165), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(215), 2, + ACTIONS(290), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(236), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(240), 2, + ACTIONS(316), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(242), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(2630), 2, sym__ws, sym_comment, - ACTIONS(2554), 3, + ACTIONS(2154), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1015), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(434), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1147), 19, + STATE(1800), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1816), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -46668,7 +46762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [34020] = 35, + [34155] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -46677,78 +46771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(190), 1, - anon_sym_POUND, - ACTIONS(194), 1, + ACTIONS(472), 1, aux_sym_num_lit_token1, - ACTIONS(196), 1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(198), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(200), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(202), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(217), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(492), 1, anon_sym_POUND_QMARK, - ACTIONS(219), 1, + ACTIONS(494), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(221), 1, + ACTIONS(496), 1, anon_sym_POUND_SQUOTE, - ACTIONS(223), 1, + ACTIONS(498), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, + ACTIONS(500), 1, anon_sym_BQUOTE, - ACTIONS(227), 1, + ACTIONS(502), 1, anon_sym_COMMA_AT, - ACTIONS(229), 1, + ACTIONS(504), 1, anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_LPAREN, - ACTIONS(644), 1, + ACTIONS(506), 1, anon_sym_cl, - ACTIONS(2562), 1, + ACTIONS(1794), 1, + anon_sym_POUND, + ACTIONS(1894), 1, sym_self_referential_reader_macro, - STATE(1012), 1, - sym_sym_lit, - STATE(1017), 1, - sym__bare_set_lit, - STATE(2139), 1, + STATE(2168), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(215), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2454), 1, + sym_sym_lit, + ACTIONS(490), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(236), 2, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(240), 2, + ACTIONS(512), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(242), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2558), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2560), 3, + ACTIONS(1892), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(722), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1015), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1145), 19, + STATE(2311), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -46768,7 +46862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [34155] = 35, + [34290] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -46807,19 +46901,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(2566), 1, + ACTIONS(2634), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -46833,22 +46927,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2564), 3, + ACTIONS(2632), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(334), 19, + STATE(415), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -46868,7 +46962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [34290] = 35, + [34425] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -46877,78 +46971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(190), 1, + ACTIONS(274), 1, anon_sym_POUND, - ACTIONS(194), 1, + ACTIONS(278), 1, aux_sym_num_lit_token1, - ACTIONS(196), 1, + ACTIONS(280), 1, anon_sym_COLON, - ACTIONS(198), 1, + ACTIONS(282), 1, anon_sym_COLON_COLON, - ACTIONS(200), 1, + ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(202), 1, + ACTIONS(286), 1, aux_sym_sym_lit_token1, - ACTIONS(217), 1, + ACTIONS(288), 1, + anon_sym_LPAREN, + ACTIONS(292), 1, anon_sym_POUND_QMARK, - ACTIONS(219), 1, + ACTIONS(294), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(221), 1, + ACTIONS(296), 1, anon_sym_POUND_SQUOTE, - ACTIONS(223), 1, + ACTIONS(298), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, + ACTIONS(300), 1, anon_sym_BQUOTE, - ACTIONS(227), 1, + ACTIONS(302), 1, anon_sym_COMMA_AT, - ACTIONS(229), 1, + ACTIONS(304), 1, anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_LPAREN, - ACTIONS(644), 1, + ACTIONS(546), 1, anon_sym_cl, - ACTIONS(2572), 1, + ACTIONS(2072), 1, sym_self_referential_reader_macro, - STATE(1012), 1, - sym_sym_lit, - STATE(1017), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2139), 1, + STATE(2137), 1, + sym_sym_lit, + STATE(2165), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(215), 2, + ACTIONS(290), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(236), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(240), 2, + ACTIONS(316), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(242), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2568), 2, + ACTIONS(2636), 2, sym__ws, sym_comment, - ACTIONS(2570), 3, + ACTIONS(2070), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(726), 3, + STATE(436), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1015), 3, + STATE(1800), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1141), 19, + STATE(1818), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -46968,7 +47062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [34425] = 35, + [34560] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -46977,78 +47071,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(586), 1, + ACTIONS(274), 1, + anon_sym_POUND, + ACTIONS(278), 1, aux_sym_num_lit_token1, - ACTIONS(588), 1, + ACTIONS(280), 1, anon_sym_COLON, - ACTIONS(590), 1, + ACTIONS(282), 1, anon_sym_COLON_COLON, - ACTIONS(592), 1, + ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(598), 1, + ACTIONS(286), 1, aux_sym_sym_lit_token1, - ACTIONS(600), 1, + ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(606), 1, + ACTIONS(292), 1, anon_sym_POUND_QMARK, - ACTIONS(608), 1, + ACTIONS(294), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(610), 1, + ACTIONS(296), 1, anon_sym_POUND_SQUOTE, - ACTIONS(612), 1, + ACTIONS(298), 1, anon_sym_SQUOTE, - ACTIONS(614), 1, + ACTIONS(300), 1, anon_sym_BQUOTE, - ACTIONS(616), 1, + ACTIONS(302), 1, anon_sym_COMMA_AT, - ACTIONS(618), 1, + ACTIONS(304), 1, anon_sym_COMMA, - ACTIONS(620), 1, + ACTIONS(546), 1, anon_sym_cl, - ACTIONS(1492), 1, - anon_sym_POUND, - ACTIONS(2578), 1, + ACTIONS(2064), 1, sym_self_referential_reader_macro, - STATE(2125), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2137), 1, + sym_sym_lit, + STATE(2165), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2428), 1, - sym_sym_lit, - ACTIONS(604), 2, + ACTIONS(290), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(622), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(626), 2, + ACTIONS(316), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(628), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2574), 2, + ACTIONS(2638), 2, sym__ws, sym_comment, - ACTIONS(2576), 3, + ACTIONS(2062), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(379), 3, + STATE(437), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1800), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2319), 19, + STATE(1820), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -47068,87 +47162,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [34560] = 35, + [34695] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(274), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(278), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(280), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(282), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(286), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(292), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(294), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(296), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(298), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(300), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(302), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(304), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(546), 1, anon_sym_cl, - ACTIONS(2582), 1, + ACTIONS(2644), 1, sym_self_referential_reader_macro, - STATE(1506), 1, - sym_sym_lit, - STATE(1511), 1, + STATE(1801), 1, sym__bare_set_lit, STATE(2137), 1, + sym_sym_lit, + STATE(2165), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(290), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(316), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(2640), 2, sym__ws, sym_comment, - ACTIONS(2580), 3, + ACTIONS(2642), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(432), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(332), 19, + STATE(1800), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2207), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -47168,7 +47262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [34695] = 35, + [34830] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -47177,78 +47271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(586), 1, + ACTIONS(776), 1, aux_sym_num_lit_token1, - ACTIONS(588), 1, + ACTIONS(778), 1, anon_sym_COLON, - ACTIONS(590), 1, + ACTIONS(780), 1, anon_sym_COLON_COLON, - ACTIONS(592), 1, + ACTIONS(782), 1, anon_sym_DQUOTE, - ACTIONS(598), 1, + ACTIONS(788), 1, aux_sym_sym_lit_token1, - ACTIONS(600), 1, + ACTIONS(790), 1, anon_sym_LPAREN, - ACTIONS(606), 1, + ACTIONS(796), 1, anon_sym_POUND_QMARK, - ACTIONS(608), 1, + ACTIONS(798), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(610), 1, + ACTIONS(800), 1, anon_sym_POUND_SQUOTE, - ACTIONS(612), 1, + ACTIONS(802), 1, anon_sym_SQUOTE, - ACTIONS(614), 1, + ACTIONS(804), 1, anon_sym_BQUOTE, - ACTIONS(616), 1, + ACTIONS(806), 1, anon_sym_COMMA_AT, - ACTIONS(618), 1, + ACTIONS(808), 1, anon_sym_COMMA, - ACTIONS(620), 1, + ACTIONS(810), 1, anon_sym_cl, - ACTIONS(1492), 1, + ACTIONS(1562), 1, anon_sym_POUND, - ACTIONS(2588), 1, + ACTIONS(2650), 1, sym_self_referential_reader_macro, - STATE(2125), 1, + STATE(1745), 1, + sym_sym_lit, + STATE(1747), 1, + sym__bare_set_lit, + STATE(2171), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2428), 1, - sym_sym_lit, - ACTIONS(604), 2, + ACTIONS(794), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(622), 2, + ACTIONS(812), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(626), 2, + ACTIONS(816), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(628), 2, + ACTIONS(818), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2584), 2, + ACTIONS(2646), 2, sym__ws, sym_comment, - ACTIONS(2586), 3, + ACTIONS(2648), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(381), 3, + STATE(333), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1746), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2313), 19, + STATE(1797), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -47268,7 +47362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [34830] = 35, + [34965] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -47277,78 +47371,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(586), 1, + ACTIONS(776), 1, aux_sym_num_lit_token1, - ACTIONS(588), 1, + ACTIONS(778), 1, anon_sym_COLON, - ACTIONS(590), 1, + ACTIONS(780), 1, anon_sym_COLON_COLON, - ACTIONS(592), 1, + ACTIONS(782), 1, anon_sym_DQUOTE, - ACTIONS(598), 1, + ACTIONS(788), 1, aux_sym_sym_lit_token1, - ACTIONS(600), 1, + ACTIONS(790), 1, anon_sym_LPAREN, - ACTIONS(606), 1, + ACTIONS(796), 1, anon_sym_POUND_QMARK, - ACTIONS(608), 1, + ACTIONS(798), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(610), 1, + ACTIONS(800), 1, anon_sym_POUND_SQUOTE, - ACTIONS(612), 1, + ACTIONS(802), 1, anon_sym_SQUOTE, - ACTIONS(614), 1, + ACTIONS(804), 1, anon_sym_BQUOTE, - ACTIONS(616), 1, + ACTIONS(806), 1, anon_sym_COMMA_AT, - ACTIONS(618), 1, + ACTIONS(808), 1, anon_sym_COMMA, - ACTIONS(620), 1, + ACTIONS(810), 1, anon_sym_cl, - ACTIONS(1492), 1, + ACTIONS(1562), 1, anon_sym_POUND, - ACTIONS(2594), 1, + ACTIONS(2656), 1, sym_self_referential_reader_macro, - STATE(2125), 1, + STATE(1745), 1, + sym_sym_lit, + STATE(1747), 1, + sym__bare_set_lit, + STATE(2171), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2428), 1, - sym_sym_lit, - ACTIONS(604), 2, + ACTIONS(794), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(622), 2, + ACTIONS(812), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(626), 2, + ACTIONS(816), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(628), 2, + ACTIONS(818), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2590), 2, + ACTIONS(2652), 2, sym__ws, sym_comment, - ACTIONS(2592), 3, + ACTIONS(2654), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(383), 3, + STATE(335), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1746), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2309), 19, + STATE(1803), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -47368,7 +47462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [34965] = 35, + [35100] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -47377,78 +47471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(586), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(728), 1, aux_sym_num_lit_token1, - ACTIONS(588), 1, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(590), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(592), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(598), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(600), 1, - anon_sym_LPAREN, - ACTIONS(606), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(608), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(610), 1, + ACTIONS(750), 1, anon_sym_POUND_SQUOTE, - ACTIONS(612), 1, + ACTIONS(752), 1, anon_sym_SQUOTE, - ACTIONS(614), 1, + ACTIONS(754), 1, anon_sym_BQUOTE, - ACTIONS(616), 1, + ACTIONS(756), 1, anon_sym_COMMA_AT, - ACTIONS(618), 1, + ACTIONS(758), 1, anon_sym_COMMA, - ACTIONS(620), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(1492), 1, + ACTIONS(975), 1, anon_sym_POUND, - ACTIONS(2600), 1, + ACTIONS(2662), 1, sym_self_referential_reader_macro, - STATE(2125), 1, + STATE(1848), 1, + sym_sym_lit, + STATE(1925), 1, + sym__bare_set_lit, + STATE(2167), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2428), 1, - sym_sym_lit, - ACTIONS(604), 2, + ACTIONS(744), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(622), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(626), 2, + ACTIONS(766), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(628), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2596), 2, + ACTIONS(2658), 2, sym__ws, sym_comment, - ACTIONS(2598), 3, + ACTIONS(2660), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(385), 3, + STATE(628), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2308), 19, + STATE(1857), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -47468,7 +47562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [35100] = 35, + [35235] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -47477,78 +47571,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(586), 1, + ACTIONS(776), 1, aux_sym_num_lit_token1, - ACTIONS(588), 1, + ACTIONS(778), 1, anon_sym_COLON, - ACTIONS(590), 1, + ACTIONS(780), 1, anon_sym_COLON_COLON, - ACTIONS(592), 1, + ACTIONS(782), 1, anon_sym_DQUOTE, - ACTIONS(598), 1, + ACTIONS(788), 1, aux_sym_sym_lit_token1, - ACTIONS(600), 1, + ACTIONS(790), 1, anon_sym_LPAREN, - ACTIONS(606), 1, + ACTIONS(796), 1, anon_sym_POUND_QMARK, - ACTIONS(608), 1, + ACTIONS(798), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(610), 1, + ACTIONS(800), 1, anon_sym_POUND_SQUOTE, - ACTIONS(612), 1, + ACTIONS(802), 1, anon_sym_SQUOTE, - ACTIONS(614), 1, + ACTIONS(804), 1, anon_sym_BQUOTE, - ACTIONS(616), 1, + ACTIONS(806), 1, anon_sym_COMMA_AT, - ACTIONS(618), 1, + ACTIONS(808), 1, anon_sym_COMMA, - ACTIONS(620), 1, + ACTIONS(810), 1, anon_sym_cl, - ACTIONS(1492), 1, + ACTIONS(1562), 1, anon_sym_POUND, - ACTIONS(2606), 1, + ACTIONS(2668), 1, sym_self_referential_reader_macro, - STATE(2125), 1, + STATE(1745), 1, + sym_sym_lit, + STATE(1747), 1, + sym__bare_set_lit, + STATE(2171), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2428), 1, - sym_sym_lit, - ACTIONS(604), 2, + ACTIONS(794), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(622), 2, + ACTIONS(812), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(626), 2, + ACTIONS(816), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(628), 2, + ACTIONS(818), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2602), 2, + ACTIONS(2664), 2, sym__ws, sym_comment, - ACTIONS(2604), 3, + ACTIONS(2666), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(387), 3, + STATE(337), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1746), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2301), 19, + STATE(1817), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -47568,7 +47662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [35235] = 35, + [35370] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -47577,78 +47671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(522), 1, + ACTIONS(776), 1, aux_sym_num_lit_token1, - ACTIONS(524), 1, + ACTIONS(778), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(780), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(782), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(788), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(790), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(796), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(798), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(546), 1, + ACTIONS(800), 1, anon_sym_POUND_SQUOTE, - ACTIONS(548), 1, + ACTIONS(802), 1, anon_sym_SQUOTE, - ACTIONS(550), 1, + ACTIONS(804), 1, anon_sym_BQUOTE, - ACTIONS(552), 1, + ACTIONS(806), 1, anon_sym_COMMA_AT, - ACTIONS(554), 1, + ACTIONS(808), 1, anon_sym_COMMA, - ACTIONS(556), 1, + ACTIONS(810), 1, anon_sym_cl, - ACTIONS(1027), 1, + ACTIONS(1562), 1, anon_sym_POUND, - ACTIONS(1654), 1, + ACTIONS(2674), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1745), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1747), 1, sym__bare_set_lit, - STATE(2151), 1, + STATE(2171), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(540), 2, + ACTIONS(794), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(558), 2, + ACTIONS(812), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(562), 2, + ACTIONS(816), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(564), 2, + ACTIONS(818), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(2670), 2, sym__ws, sym_comment, - ACTIONS(1652), 3, + ACTIONS(2672), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(348), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1746), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1919), 19, + STATE(1740), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -47668,87 +47762,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [35370] = 35, + [35505] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(274), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(278), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(280), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(282), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(286), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(292), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(294), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(296), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(298), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(300), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(302), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(304), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(546), 1, anon_sym_cl, - ACTIONS(2078), 1, + ACTIONS(2016), 1, sym_self_referential_reader_macro, - STATE(1506), 1, - sym_sym_lit, - STATE(1511), 1, + STATE(1801), 1, sym__bare_set_lit, STATE(2137), 1, + sym_sym_lit, + STATE(2165), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(290), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(316), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2608), 2, + ACTIONS(2676), 2, sym__ws, sym_comment, - ACTIONS(2076), 3, + ACTIONS(2014), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(198), 3, + STATE(441), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(1800), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1544), 19, + STATE(1822), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -47768,7 +47862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [35505] = 35, + [35640] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -47807,19 +47901,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(2612), 1, + ACTIONS(2682), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -47833,22 +47927,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(2678), 2, sym__ws, sym_comment, - ACTIONS(2610), 3, + ACTIONS(2680), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(626), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(303), 19, + STATE(1451), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(566), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -47868,7 +47962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [35640] = 35, + [35775] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -47877,78 +47971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(522), 1, + ACTIONS(274), 1, + anon_sym_POUND, + ACTIONS(278), 1, aux_sym_num_lit_token1, - ACTIONS(524), 1, + ACTIONS(280), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(282), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(286), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(292), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(294), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(546), 1, + ACTIONS(296), 1, anon_sym_POUND_SQUOTE, - ACTIONS(548), 1, + ACTIONS(298), 1, anon_sym_SQUOTE, - ACTIONS(550), 1, + ACTIONS(300), 1, anon_sym_BQUOTE, - ACTIONS(552), 1, + ACTIONS(302), 1, anon_sym_COMMA_AT, - ACTIONS(554), 1, + ACTIONS(304), 1, anon_sym_COMMA, - ACTIONS(556), 1, + ACTIONS(546), 1, anon_sym_cl, - ACTIONS(1027), 1, - anon_sym_POUND, - ACTIONS(1664), 1, + ACTIONS(1882), 1, sym_self_referential_reader_macro, - STATE(1825), 1, - sym_sym_lit, - STATE(1887), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2151), 1, + STATE(2137), 1, + sym_sym_lit, + STATE(2165), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(540), 2, + ACTIONS(290), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(558), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(562), 2, + ACTIONS(316), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(564), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(2684), 2, sym__ws, sym_comment, - ACTIONS(1662), 3, + ACTIONS(1880), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(443), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1800), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1920), 19, + STATE(1824), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -47968,7 +48062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [35775] = 35, + [35910] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -47977,78 +48071,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(522), 1, + ACTIONS(274), 1, + anon_sym_POUND, + ACTIONS(278), 1, aux_sym_num_lit_token1, - ACTIONS(524), 1, + ACTIONS(280), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(282), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(286), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(292), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(294), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(546), 1, + ACTIONS(296), 1, anon_sym_POUND_SQUOTE, - ACTIONS(548), 1, + ACTIONS(298), 1, anon_sym_SQUOTE, - ACTIONS(550), 1, + ACTIONS(300), 1, anon_sym_BQUOTE, - ACTIONS(552), 1, + ACTIONS(302), 1, anon_sym_COMMA_AT, - ACTIONS(554), 1, + ACTIONS(304), 1, anon_sym_COMMA, - ACTIONS(556), 1, + ACTIONS(546), 1, anon_sym_cl, - ACTIONS(1027), 1, - anon_sym_POUND, - ACTIONS(1674), 1, + ACTIONS(2688), 1, sym_self_referential_reader_macro, - STATE(1825), 1, - sym_sym_lit, - STATE(1887), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2151), 1, + STATE(2137), 1, + sym_sym_lit, + STATE(2165), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(540), 2, + ACTIONS(290), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(558), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(562), 2, + ACTIONS(316), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(564), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1672), 3, + ACTIONS(2686), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1800), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1921), 19, + STATE(2190), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -48068,7 +48162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [35910] = 35, + [36045] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -48077,78 +48171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(472), 1, + ACTIONS(776), 1, aux_sym_num_lit_token1, - ACTIONS(474), 1, + ACTIONS(778), 1, anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(780), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(782), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(788), 1, aux_sym_sym_lit_token1, - ACTIONS(486), 1, + ACTIONS(790), 1, anon_sym_LPAREN, - ACTIONS(492), 1, + ACTIONS(796), 1, anon_sym_POUND_QMARK, - ACTIONS(494), 1, + ACTIONS(798), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(496), 1, + ACTIONS(800), 1, anon_sym_POUND_SQUOTE, - ACTIONS(498), 1, + ACTIONS(802), 1, anon_sym_SQUOTE, - ACTIONS(500), 1, + ACTIONS(804), 1, anon_sym_BQUOTE, - ACTIONS(502), 1, + ACTIONS(806), 1, anon_sym_COMMA_AT, - ACTIONS(504), 1, + ACTIONS(808), 1, anon_sym_COMMA, - ACTIONS(506), 1, + ACTIONS(810), 1, anon_sym_cl, - ACTIONS(2614), 1, + ACTIONS(1562), 1, anon_sym_POUND, - ACTIONS(2618), 1, + ACTIONS(2692), 1, sym_self_referential_reader_macro, - STATE(1302), 1, + STATE(1745), 1, sym_sym_lit, - STATE(1304), 1, + STATE(1747), 1, sym__bare_set_lit, - STATE(2160), 1, + STATE(2171), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(490), 2, + ACTIONS(794), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(508), 2, + ACTIONS(812), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(512), 2, + ACTIONS(816), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(514), 2, + ACTIONS(818), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2616), 3, + ACTIONS(2690), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1303), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1405), 19, + STATE(1746), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1733), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -48168,7 +48262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [36045] = 35, + [36180] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -48177,78 +48271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(472), 1, + ACTIONS(274), 1, + anon_sym_POUND, + ACTIONS(278), 1, aux_sym_num_lit_token1, - ACTIONS(474), 1, + ACTIONS(280), 1, anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(282), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(286), 1, aux_sym_sym_lit_token1, - ACTIONS(486), 1, + ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(492), 1, + ACTIONS(292), 1, anon_sym_POUND_QMARK, - ACTIONS(494), 1, + ACTIONS(294), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(496), 1, + ACTIONS(296), 1, anon_sym_POUND_SQUOTE, - ACTIONS(498), 1, + ACTIONS(298), 1, anon_sym_SQUOTE, - ACTIONS(500), 1, + ACTIONS(300), 1, anon_sym_BQUOTE, - ACTIONS(502), 1, + ACTIONS(302), 1, anon_sym_COMMA_AT, - ACTIONS(504), 1, + ACTIONS(304), 1, anon_sym_COMMA, - ACTIONS(506), 1, + ACTIONS(546), 1, anon_sym_cl, - ACTIONS(2614), 1, - anon_sym_POUND, - ACTIONS(2622), 1, + ACTIONS(1810), 1, sym_self_referential_reader_macro, - STATE(1302), 1, - sym_sym_lit, - STATE(1304), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2160), 1, + STATE(2137), 1, + sym_sym_lit, + STATE(2165), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(490), 2, + ACTIONS(290), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(508), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(512), 2, + ACTIONS(316), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(514), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2620), 3, + ACTIONS(1808), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1303), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1406), 19, + STATE(1800), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1812), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -48268,7 +48362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [36180] = 35, + [36315] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -48277,178 +48371,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(472), 1, + ACTIONS(776), 1, aux_sym_num_lit_token1, - ACTIONS(474), 1, + ACTIONS(778), 1, anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(780), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(782), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(788), 1, aux_sym_sym_lit_token1, - ACTIONS(486), 1, + ACTIONS(790), 1, anon_sym_LPAREN, - ACTIONS(492), 1, + ACTIONS(796), 1, anon_sym_POUND_QMARK, - ACTIONS(494), 1, + ACTIONS(798), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(496), 1, + ACTIONS(800), 1, anon_sym_POUND_SQUOTE, - ACTIONS(498), 1, + ACTIONS(802), 1, anon_sym_SQUOTE, - ACTIONS(500), 1, + ACTIONS(804), 1, anon_sym_BQUOTE, - ACTIONS(502), 1, + ACTIONS(806), 1, anon_sym_COMMA_AT, - ACTIONS(504), 1, + ACTIONS(808), 1, anon_sym_COMMA, - ACTIONS(506), 1, + ACTIONS(810), 1, anon_sym_cl, - ACTIONS(2614), 1, + ACTIONS(1562), 1, anon_sym_POUND, - ACTIONS(2628), 1, + ACTIONS(2696), 1, sym_self_referential_reader_macro, - STATE(1302), 1, + STATE(1745), 1, sym_sym_lit, - STATE(1304), 1, + STATE(1747), 1, sym__bare_set_lit, - STATE(2160), 1, + STATE(2171), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(490), 2, + ACTIONS(794), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(508), 2, + ACTIONS(812), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(512), 2, + ACTIONS(816), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(514), 2, + ACTIONS(818), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2624), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2626), 3, + ACTIONS(2694), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(432), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1303), 3, + STATE(1746), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1415), 19, - sym__form, - sym_num_lit, - sym_kwd_lit, - sym_str_lit, - sym_char_lit, - sym_list_lit, - sym_vec_lit, - sym_set_lit, - sym_read_cond_lit, - sym_splicing_read_cond_lit, - sym_var_quoting_lit, - sym_quoting_lit, - sym_syn_quoting_lit, - sym_unquote_splicing_lit, - sym_unquoting_lit, - sym_path_lit, - sym_package_lit, - sym_include_reader_macro, - sym_complex_num_lit, - [36315] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(472), 1, - aux_sym_num_lit_token1, - ACTIONS(474), 1, - anon_sym_COLON, - ACTIONS(476), 1, - anon_sym_COLON_COLON, - ACTIONS(478), 1, - anon_sym_DQUOTE, - ACTIONS(484), 1, - aux_sym_sym_lit_token1, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(492), 1, - anon_sym_POUND_QMARK, - ACTIONS(494), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(496), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(498), 1, - anon_sym_SQUOTE, - ACTIONS(500), 1, - anon_sym_BQUOTE, - ACTIONS(502), 1, - anon_sym_COMMA_AT, - ACTIONS(504), 1, - anon_sym_COMMA, - ACTIONS(506), 1, - anon_sym_cl, - ACTIONS(2614), 1, - anon_sym_POUND, - ACTIONS(2632), 1, - sym_self_referential_reader_macro, - STATE(1302), 1, - sym_sym_lit, - STATE(1304), 1, - sym__bare_set_lit, - STATE(2160), 1, - aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, - sym_old_meta_lit, - STATE(2239), 1, - sym__metadata_lit, - ACTIONS(490), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(508), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(512), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(514), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1434), 2, - sym__ws, - sym_comment, - ACTIONS(2630), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1303), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1416), 19, + STATE(1732), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -48477,78 +48471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(472), 1, + ACTIONS(274), 1, + anon_sym_POUND, + ACTIONS(278), 1, aux_sym_num_lit_token1, - ACTIONS(474), 1, + ACTIONS(280), 1, anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(282), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(286), 1, aux_sym_sym_lit_token1, - ACTIONS(486), 1, + ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(492), 1, + ACTIONS(292), 1, anon_sym_POUND_QMARK, - ACTIONS(494), 1, + ACTIONS(294), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(496), 1, + ACTIONS(296), 1, anon_sym_POUND_SQUOTE, - ACTIONS(498), 1, + ACTIONS(298), 1, anon_sym_SQUOTE, - ACTIONS(500), 1, + ACTIONS(300), 1, anon_sym_BQUOTE, - ACTIONS(502), 1, + ACTIONS(302), 1, anon_sym_COMMA_AT, - ACTIONS(504), 1, + ACTIONS(304), 1, anon_sym_COMMA, - ACTIONS(506), 1, + ACTIONS(546), 1, anon_sym_cl, - ACTIONS(2614), 1, - anon_sym_POUND, - ACTIONS(2638), 1, + ACTIONS(1806), 1, sym_self_referential_reader_macro, - STATE(1302), 1, - sym_sym_lit, - STATE(1304), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2160), 1, + STATE(2137), 1, + sym_sym_lit, + STATE(2165), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(490), 2, + ACTIONS(290), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(508), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(512), 2, + ACTIONS(316), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(514), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2634), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2636), 3, + ACTIONS(1804), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(433), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1303), 3, + STATE(1800), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1419), 19, + STATE(1811), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -48577,78 +48571,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(472), 1, + ACTIONS(274), 1, + anon_sym_POUND, + ACTIONS(278), 1, aux_sym_num_lit_token1, - ACTIONS(474), 1, + ACTIONS(280), 1, anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(282), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(286), 1, aux_sym_sym_lit_token1, - ACTIONS(486), 1, + ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(492), 1, + ACTIONS(292), 1, anon_sym_POUND_QMARK, - ACTIONS(494), 1, + ACTIONS(294), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(496), 1, + ACTIONS(296), 1, anon_sym_POUND_SQUOTE, - ACTIONS(498), 1, + ACTIONS(298), 1, anon_sym_SQUOTE, - ACTIONS(500), 1, + ACTIONS(300), 1, anon_sym_BQUOTE, - ACTIONS(502), 1, + ACTIONS(302), 1, anon_sym_COMMA_AT, - ACTIONS(504), 1, + ACTIONS(304), 1, anon_sym_COMMA, - ACTIONS(506), 1, + ACTIONS(546), 1, anon_sym_cl, - ACTIONS(2614), 1, - anon_sym_POUND, - ACTIONS(2642), 1, + ACTIONS(1802), 1, sym_self_referential_reader_macro, - STATE(1302), 1, - sym_sym_lit, - STATE(1304), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2160), 1, + STATE(2137), 1, + sym_sym_lit, + STATE(2165), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(490), 2, + ACTIONS(290), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(508), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(512), 2, + ACTIONS(316), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(514), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2640), 3, + ACTIONS(1800), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1303), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1418), 19, + STATE(1800), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1810), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -48707,19 +48701,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(2646), 1, + ACTIONS(2702), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -48733,22 +48727,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(2698), 2, sym__ws, sym_comment, - ACTIONS(2644), 3, + ACTIONS(2700), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(186), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(321), 19, + STATE(1451), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(185), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -48807,19 +48801,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(2652), 1, + ACTIONS(2708), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -48833,22 +48827,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2648), 2, + ACTIONS(2704), 2, sym__ws, sym_comment, - ACTIONS(2650), 3, + ACTIONS(2706), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(419), 3, + STATE(184), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(328), 19, + STATE(1498), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -48907,19 +48901,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(2658), 1, + ACTIONS(2714), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -48933,22 +48927,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2654), 2, + ACTIONS(2710), 2, sym__ws, sym_comment, - ACTIONS(2656), 3, + ACTIONS(2712), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(422), 3, + STATE(182), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(327), 19, + STATE(1497), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -48977,78 +48971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(472), 1, + ACTIONS(274), 1, + anon_sym_POUND, + ACTIONS(278), 1, aux_sym_num_lit_token1, - ACTIONS(474), 1, + ACTIONS(280), 1, anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(282), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(286), 1, aux_sym_sym_lit_token1, - ACTIONS(486), 1, + ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(492), 1, + ACTIONS(292), 1, anon_sym_POUND_QMARK, - ACTIONS(494), 1, + ACTIONS(294), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(496), 1, + ACTIONS(296), 1, anon_sym_POUND_SQUOTE, - ACTIONS(498), 1, + ACTIONS(298), 1, anon_sym_SQUOTE, - ACTIONS(500), 1, + ACTIONS(300), 1, anon_sym_BQUOTE, - ACTIONS(502), 1, + ACTIONS(302), 1, anon_sym_COMMA_AT, - ACTIONS(504), 1, + ACTIONS(304), 1, anon_sym_COMMA, - ACTIONS(506), 1, + ACTIONS(546), 1, anon_sym_cl, - ACTIONS(2614), 1, - anon_sym_POUND, - ACTIONS(2662), 1, + ACTIONS(1724), 1, sym_self_referential_reader_macro, - STATE(1302), 1, - sym_sym_lit, - STATE(1304), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2160), 1, + STATE(2137), 1, + sym_sym_lit, + STATE(2165), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(490), 2, + ACTIONS(290), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(508), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(512), 2, + ACTIONS(316), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(514), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2660), 3, + ACTIONS(1722), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1303), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1414), 19, + STATE(1800), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1809), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -49077,78 +49071,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(472), 1, + ACTIONS(776), 1, aux_sym_num_lit_token1, - ACTIONS(474), 1, + ACTIONS(778), 1, anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(780), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(782), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(788), 1, aux_sym_sym_lit_token1, - ACTIONS(486), 1, + ACTIONS(790), 1, anon_sym_LPAREN, - ACTIONS(492), 1, + ACTIONS(796), 1, anon_sym_POUND_QMARK, - ACTIONS(494), 1, + ACTIONS(798), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(496), 1, + ACTIONS(800), 1, anon_sym_POUND_SQUOTE, - ACTIONS(498), 1, + ACTIONS(802), 1, anon_sym_SQUOTE, - ACTIONS(500), 1, + ACTIONS(804), 1, anon_sym_BQUOTE, - ACTIONS(502), 1, + ACTIONS(806), 1, anon_sym_COMMA_AT, - ACTIONS(504), 1, + ACTIONS(808), 1, anon_sym_COMMA, - ACTIONS(506), 1, + ACTIONS(810), 1, anon_sym_cl, - ACTIONS(2614), 1, + ACTIONS(1562), 1, anon_sym_POUND, - ACTIONS(2668), 1, + ACTIONS(2718), 1, sym_self_referential_reader_macro, - STATE(1302), 1, + STATE(1745), 1, sym_sym_lit, - STATE(1304), 1, + STATE(1747), 1, sym__bare_set_lit, - STATE(2160), 1, + STATE(2171), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(490), 2, + ACTIONS(794), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(508), 2, + ACTIONS(812), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(512), 2, + ACTIONS(816), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(514), 2, + ACTIONS(818), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2664), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2666), 3, + ACTIONS(2716), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(435), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1303), 3, + STATE(1746), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1387), 19, + STATE(1731), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -49177,78 +49171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(472), 1, + ACTIONS(274), 1, + anon_sym_POUND, + ACTIONS(278), 1, aux_sym_num_lit_token1, - ACTIONS(474), 1, + ACTIONS(280), 1, anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(282), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(286), 1, aux_sym_sym_lit_token1, - ACTIONS(486), 1, + ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(492), 1, + ACTIONS(292), 1, anon_sym_POUND_QMARK, - ACTIONS(494), 1, + ACTIONS(294), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(496), 1, + ACTIONS(296), 1, anon_sym_POUND_SQUOTE, - ACTIONS(498), 1, + ACTIONS(298), 1, anon_sym_SQUOTE, - ACTIONS(500), 1, + ACTIONS(300), 1, anon_sym_BQUOTE, - ACTIONS(502), 1, + ACTIONS(302), 1, anon_sym_COMMA_AT, - ACTIONS(504), 1, + ACTIONS(304), 1, anon_sym_COMMA, - ACTIONS(506), 1, + ACTIONS(546), 1, anon_sym_cl, - ACTIONS(2614), 1, - anon_sym_POUND, - ACTIONS(2674), 1, + ACTIONS(1704), 1, sym_self_referential_reader_macro, - STATE(1302), 1, - sym_sym_lit, - STATE(1304), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2160), 1, + STATE(2137), 1, + sym_sym_lit, + STATE(2165), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(490), 2, + ACTIONS(290), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(508), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(512), 2, + ACTIONS(316), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(514), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2670), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2672), 3, + ACTIONS(1702), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(437), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1303), 3, + STATE(1800), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1369), 19, + STATE(1802), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -49271,84 +49265,84 @@ static const uint16_t ts_small_parse_table[] = { [37530] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(776), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(778), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(780), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(782), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(788), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(790), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(796), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(798), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(800), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(802), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(804), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(806), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(808), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(810), 1, anon_sym_cl, - ACTIONS(2678), 1, + ACTIONS(1562), 1, + anon_sym_POUND, + ACTIONS(2722), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1745), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1747), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2171), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(794), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(812), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(816), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(818), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2676), 3, + ACTIONS(2720), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(323), 19, + STATE(1746), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1729), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -49377,78 +49371,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(61), 1, + ACTIONS(274), 1, anon_sym_POUND, - ACTIONS(65), 1, + ACTIONS(278), 1, aux_sym_num_lit_token1, - ACTIONS(67), 1, + ACTIONS(280), 1, anon_sym_COLON, - ACTIONS(69), 1, + ACTIONS(282), 1, anon_sym_COLON_COLON, - ACTIONS(71), 1, + ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(73), 1, + ACTIONS(286), 1, aux_sym_sym_lit_token1, - ACTIONS(77), 1, + ACTIONS(288), 1, + anon_sym_LPAREN, + ACTIONS(292), 1, anon_sym_POUND_QMARK, - ACTIONS(79), 1, + ACTIONS(294), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(81), 1, + ACTIONS(296), 1, anon_sym_POUND_SQUOTE, - ACTIONS(83), 1, + ACTIONS(298), 1, anon_sym_SQUOTE, - ACTIONS(85), 1, + ACTIONS(300), 1, anon_sym_BQUOTE, - ACTIONS(87), 1, + ACTIONS(302), 1, anon_sym_COMMA_AT, - ACTIONS(89), 1, + ACTIONS(304), 1, anon_sym_COMMA, - ACTIONS(658), 1, - anon_sym_LPAREN, - ACTIONS(662), 1, + ACTIONS(546), 1, anon_sym_cl, - ACTIONS(2684), 1, + ACTIONS(1628), 1, sym_self_referential_reader_macro, - STATE(822), 1, - sym_sym_lit, - STATE(824), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2149), 1, + STATE(2137), 1, + sym_sym_lit, + STATE(2165), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(75), 2, + ACTIONS(290), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(93), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(97), 2, + ACTIONS(316), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(99), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2680), 2, + ACTIONS(2724), 2, sym__ws, sym_comment, - ACTIONS(2682), 3, + ACTIONS(1626), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(398), 3, + STATE(454), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(823), 3, + STATE(1800), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(825), 19, + STATE(1795), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -49507,19 +49501,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(2690), 1, + ACTIONS(2728), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -49533,22 +49527,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2686), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2688), 3, + ACTIONS(2726), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(449), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(458), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(779), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -49571,84 +49565,84 @@ static const uint16_t ts_small_parse_table[] = { [37935] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(472), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(474), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(486), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(492), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(494), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(496), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(498), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(500), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(502), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(504), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(506), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(2614), 1, - anon_sym_POUND, - ACTIONS(2694), 1, + ACTIONS(2732), 1, sym_self_referential_reader_macro, - STATE(1302), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1304), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2160), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(490), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(508), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(512), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(514), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2692), 3, + ACTIONS(2730), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1303), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1362), 19, + STATE(786), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -49671,84 +49665,84 @@ static const uint16_t ts_small_parse_table[] = { [38070] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(472), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(474), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(486), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(492), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(494), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(496), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(498), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(500), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(502), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(504), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(506), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(2614), 1, - anon_sym_POUND, - ACTIONS(2698), 1, + ACTIONS(2738), 1, sym_self_referential_reader_macro, - STATE(1302), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1304), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2160), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(490), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(508), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(512), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(514), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(2734), 2, sym__ws, sym_comment, - ACTIONS(2696), 3, + ACTIONS(2736), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1303), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(180), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1359), 19, + STATE(1451), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1496), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -49807,19 +49801,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(2702), 1, + ACTIONS(2744), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -49833,22 +49827,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(2740), 2, sym__ws, sym_comment, - ACTIONS(2700), 3, + ACTIONS(2742), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(450), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(485), 19, + STATE(1451), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(445), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -49907,19 +49901,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(2708), 1, + ACTIONS(2748), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -49933,22 +49927,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2704), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2706), 3, + ACTIONS(2746), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(444), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(222), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(462), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -49977,78 +49971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(472), 1, + ACTIONS(274), 1, + anon_sym_POUND, + ACTIONS(278), 1, aux_sym_num_lit_token1, - ACTIONS(474), 1, + ACTIONS(280), 1, anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(282), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(286), 1, aux_sym_sym_lit_token1, - ACTIONS(486), 1, + ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(492), 1, + ACTIONS(292), 1, anon_sym_POUND_QMARK, - ACTIONS(494), 1, + ACTIONS(294), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(496), 1, + ACTIONS(296), 1, anon_sym_POUND_SQUOTE, - ACTIONS(498), 1, + ACTIONS(298), 1, anon_sym_SQUOTE, - ACTIONS(500), 1, + ACTIONS(300), 1, anon_sym_BQUOTE, - ACTIONS(502), 1, + ACTIONS(302), 1, anon_sym_COMMA_AT, - ACTIONS(504), 1, + ACTIONS(304), 1, anon_sym_COMMA, - ACTIONS(506), 1, + ACTIONS(546), 1, anon_sym_cl, - ACTIONS(2614), 1, - anon_sym_POUND, - ACTIONS(2712), 1, + ACTIONS(1622), 1, sym_self_referential_reader_macro, - STATE(1302), 1, - sym_sym_lit, - STATE(1304), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2160), 1, + STATE(2137), 1, + sym_sym_lit, + STATE(2165), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(490), 2, + ACTIONS(290), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(508), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(512), 2, + ACTIONS(316), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(514), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(2750), 2, sym__ws, sym_comment, - ACTIONS(2710), 3, + ACTIONS(1620), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1303), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(464), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1358), 19, + STATE(1800), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1792), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -50071,84 +50065,84 @@ static const uint16_t ts_small_parse_table[] = { [38610] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(274), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(278), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(280), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(282), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(286), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(292), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(294), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(296), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(298), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(300), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(302), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(304), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(546), 1, anon_sym_cl, - ACTIONS(2718), 1, + ACTIONS(1578), 1, sym_self_referential_reader_macro, - STATE(1506), 1, - sym_sym_lit, - STATE(1511), 1, + STATE(1801), 1, sym__bare_set_lit, STATE(2137), 1, + sym_sym_lit, + STATE(2165), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(290), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(316), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2714), 2, + ACTIONS(2752), 2, sym__ws, sym_comment, - ACTIONS(2716), 3, + ACTIONS(1576), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(530), 3, + STATE(466), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(1800), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(497), 19, + STATE(1788), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -50171,84 +50165,84 @@ static const uint16_t ts_small_parse_table[] = { [38745] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(274), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(278), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(280), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(282), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(286), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(292), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(294), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(296), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(298), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(300), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(302), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(304), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(546), 1, anon_sym_cl, - ACTIONS(2722), 1, + ACTIONS(1572), 1, sym_self_referential_reader_macro, - STATE(1506), 1, - sym_sym_lit, - STATE(1511), 1, + STATE(1801), 1, sym__bare_set_lit, STATE(2137), 1, + sym_sym_lit, + STATE(2165), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(290), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(316), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(2754), 2, sym__ws, sym_comment, - ACTIONS(2720), 3, + ACTIONS(1570), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(469), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(190), 19, + STATE(1800), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1787), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -50277,78 +50271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(588), 1, + ACTIONS(274), 1, + anon_sym_POUND, + ACTIONS(278), 1, + aux_sym_num_lit_token1, + ACTIONS(280), 1, anon_sym_COLON, - ACTIONS(590), 1, + ACTIONS(282), 1, anon_sym_COLON_COLON, - ACTIONS(592), 1, + ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(598), 1, + ACTIONS(286), 1, aux_sym_sym_lit_token1, - ACTIONS(620), 1, - anon_sym_cl, - ACTIONS(670), 1, - aux_sym_num_lit_token1, - ACTIONS(674), 1, + ACTIONS(288), 1, + anon_sym_LPAREN, + ACTIONS(292), 1, anon_sym_POUND_QMARK, - ACTIONS(676), 1, + ACTIONS(294), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(678), 1, + ACTIONS(296), 1, anon_sym_POUND_SQUOTE, - ACTIONS(680), 1, + ACTIONS(298), 1, anon_sym_SQUOTE, - ACTIONS(682), 1, + ACTIONS(300), 1, anon_sym_BQUOTE, - ACTIONS(684), 1, + ACTIONS(302), 1, anon_sym_COMMA_AT, - ACTIONS(686), 1, + ACTIONS(304), 1, anon_sym_COMMA, - ACTIONS(1588), 1, - anon_sym_POUND, - ACTIONS(2462), 1, + ACTIONS(546), 1, + anon_sym_cl, + ACTIONS(1456), 1, sym_self_referential_reader_macro, - STATE(2150), 1, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2137), 1, + sym_sym_lit, + STATE(2165), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2428), 1, - sym_sym_lit, - ACTIONS(622), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(628), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(672), 2, + ACTIONS(290), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(688), 2, + ACTIONS(312), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(316), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2724), 2, + ACTIONS(318), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2460), 3, + ACTIONS(1454), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(194), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1800), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1837), 19, + STATE(1764), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -50371,84 +50365,84 @@ static const uint16_t ts_small_parse_table[] = { [39015] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(472), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(474), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(486), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(492), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(494), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(496), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(498), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(500), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(502), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(504), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(506), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(2614), 1, - anon_sym_POUND, - ACTIONS(2730), 1, + ACTIONS(2760), 1, sym_self_referential_reader_macro, - STATE(1302), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1304), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2160), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(490), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(508), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(512), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(514), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2726), 2, + ACTIONS(2756), 2, sym__ws, sym_comment, - ACTIONS(2728), 3, + ACTIONS(2758), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(441), 3, + STATE(461), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1303), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1355), 19, + STATE(472), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -50507,19 +50501,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(2084), 1, + ACTIONS(2766), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -50533,22 +50527,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2732), 2, + ACTIONS(2762), 2, sym__ws, sym_comment, - ACTIONS(2082), 3, + ACTIONS(2764), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(189), 3, + STATE(446), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1550), 19, + STATE(805), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -50571,84 +50565,184 @@ static const uint16_t ts_small_parse_table[] = { [39285] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, + anon_sym_COLON_COLON, + ACTIONS(21), 1, + anon_sym_DQUOTE, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, + anon_sym_POUND_QMARK, + ACTIONS(35), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(37), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(39), 1, + anon_sym_SQUOTE, + ACTIONS(41), 1, + anon_sym_BQUOTE, + ACTIONS(43), 1, + anon_sym_COMMA_AT, + ACTIONS(45), 1, + anon_sym_COMMA, ACTIONS(47), 1, sym_block_comment, - ACTIONS(472), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(2772), 1, + sym_self_referential_reader_macro, + STATE(1450), 1, + sym_sym_lit, + STATE(1452), 1, + sym__bare_set_lit, + STATE(2178), 1, + aux_sym_list_lit_repeat1, + STATE(2221), 1, + sym_old_meta_lit, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, + sym__metadata_lit, + ACTIONS(31), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(2768), 2, + sym__ws, + sym_comment, + ACTIONS(2770), 3, + anon_sym_DOT, + sym_nil_lit, + sym_fancy_literal, + STATE(447), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1451), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(806), 19, + sym__form, + sym_num_lit, + sym_kwd_lit, + sym_str_lit, + sym_char_lit, + sym_list_lit, + sym_vec_lit, + sym_set_lit, + sym_read_cond_lit, + sym_splicing_read_cond_lit, + sym_var_quoting_lit, + sym_quoting_lit, + sym_syn_quoting_lit, + sym_unquote_splicing_lit, + sym_unquoting_lit, + sym_path_lit, + sym_package_lit, + sym_include_reader_macro, + sym_complex_num_lit, + [39420] = 35, + ACTIONS(9), 1, + anon_sym_POUND_, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(474), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(486), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(492), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(494), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(496), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(498), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(500), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(502), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(504), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(506), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(2614), 1, - anon_sym_POUND, - ACTIONS(2736), 1, + ACTIONS(2776), 1, sym_self_referential_reader_macro, - STATE(1302), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1304), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2160), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(490), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(508), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(512), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(514), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2734), 3, + ACTIONS(2774), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1303), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1354), 19, + STATE(307), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -50668,87 +50762,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [39420] = 35, + [39555] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(522), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(524), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(546), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(548), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(550), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(552), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(554), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(556), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1027), 1, - anon_sym_POUND, - ACTIONS(1726), 1, + ACTIONS(2782), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2151), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(540), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(558), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(562), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(564), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2738), 2, + ACTIONS(2778), 2, sym__ws, sym_comment, - ACTIONS(1724), 3, + ACTIONS(2780), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(483), 3, + STATE(463), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1923), 19, + STATE(474), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -50768,7 +50862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [39555] = 35, + [39690] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -50777,78 +50871,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(472), 1, + ACTIONS(776), 1, aux_sym_num_lit_token1, - ACTIONS(474), 1, + ACTIONS(778), 1, anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(780), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(782), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(788), 1, aux_sym_sym_lit_token1, - ACTIONS(486), 1, + ACTIONS(790), 1, anon_sym_LPAREN, - ACTIONS(492), 1, + ACTIONS(796), 1, anon_sym_POUND_QMARK, - ACTIONS(494), 1, + ACTIONS(798), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(496), 1, + ACTIONS(800), 1, anon_sym_POUND_SQUOTE, - ACTIONS(498), 1, + ACTIONS(802), 1, anon_sym_SQUOTE, - ACTIONS(500), 1, + ACTIONS(804), 1, anon_sym_BQUOTE, - ACTIONS(502), 1, + ACTIONS(806), 1, anon_sym_COMMA_AT, - ACTIONS(504), 1, + ACTIONS(808), 1, anon_sym_COMMA, - ACTIONS(506), 1, + ACTIONS(810), 1, anon_sym_cl, - ACTIONS(2614), 1, + ACTIONS(1562), 1, anon_sym_POUND, - ACTIONS(2744), 1, + ACTIONS(2786), 1, sym_self_referential_reader_macro, - STATE(1302), 1, + STATE(1745), 1, sym_sym_lit, - STATE(1304), 1, + STATE(1747), 1, sym__bare_set_lit, - STATE(2160), 1, + STATE(2171), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(490), 2, + ACTIONS(794), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(508), 2, + ACTIONS(812), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(512), 2, + ACTIONS(816), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(514), 2, + ACTIONS(818), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2740), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2742), 3, + ACTIONS(2784), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(447), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1303), 3, + STATE(1746), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1347), 19, + STATE(1728), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -50868,87 +50962,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [39690] = 35, + [39825] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(472), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(474), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(486), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(492), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(494), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(496), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(498), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(500), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(502), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(504), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(506), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(2614), 1, - anon_sym_POUND, - ACTIONS(2750), 1, + ACTIONS(2790), 1, sym_self_referential_reader_macro, - STATE(1302), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1304), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2160), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(490), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(508), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(512), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(514), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2746), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2748), 3, + ACTIONS(2788), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(448), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1303), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1346), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(478), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -50968,7 +51062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [39825] = 35, + [39960] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -50977,78 +51071,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(472), 1, + ACTIONS(274), 1, + anon_sym_POUND, + ACTIONS(278), 1, aux_sym_num_lit_token1, - ACTIONS(474), 1, + ACTIONS(280), 1, anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(282), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(286), 1, aux_sym_sym_lit_token1, - ACTIONS(486), 1, + ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(492), 1, + ACTIONS(292), 1, anon_sym_POUND_QMARK, - ACTIONS(494), 1, + ACTIONS(294), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(496), 1, + ACTIONS(296), 1, anon_sym_POUND_SQUOTE, - ACTIONS(498), 1, + ACTIONS(298), 1, anon_sym_SQUOTE, - ACTIONS(500), 1, + ACTIONS(300), 1, anon_sym_BQUOTE, - ACTIONS(502), 1, + ACTIONS(302), 1, anon_sym_COMMA_AT, - ACTIONS(504), 1, + ACTIONS(304), 1, anon_sym_COMMA, - ACTIONS(506), 1, + ACTIONS(546), 1, anon_sym_cl, - ACTIONS(2614), 1, - anon_sym_POUND, - ACTIONS(2756), 1, + ACTIONS(1462), 1, sym_self_referential_reader_macro, - STATE(1302), 1, - sym_sym_lit, - STATE(1304), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2160), 1, + STATE(2137), 1, + sym_sym_lit, + STATE(2165), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(490), 2, + ACTIONS(290), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(508), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(512), 2, + ACTIONS(316), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(514), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2752), 2, + ACTIONS(2792), 2, sym__ws, sym_comment, - ACTIONS(2754), 3, + ACTIONS(1460), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(451), 3, + STATE(475), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1303), 3, + STATE(1800), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1345), 19, + STATE(1759), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -51068,7 +51162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [39960] = 35, + [40095] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -51107,19 +51201,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(2762), 1, + ACTIONS(2796), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -51133,22 +51227,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2758), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2760), 3, + ACTIONS(2794), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(540), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(498), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(480), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -51168,7 +51262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [40095] = 35, + [40230] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -51177,78 +51271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(472), 1, + ACTIONS(274), 1, + anon_sym_POUND, + ACTIONS(278), 1, aux_sym_num_lit_token1, - ACTIONS(474), 1, + ACTIONS(280), 1, anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(282), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(286), 1, aux_sym_sym_lit_token1, - ACTIONS(486), 1, + ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(492), 1, + ACTIONS(292), 1, anon_sym_POUND_QMARK, - ACTIONS(494), 1, + ACTIONS(294), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(496), 1, + ACTIONS(296), 1, anon_sym_POUND_SQUOTE, - ACTIONS(498), 1, + ACTIONS(298), 1, anon_sym_SQUOTE, - ACTIONS(500), 1, + ACTIONS(300), 1, anon_sym_BQUOTE, - ACTIONS(502), 1, + ACTIONS(302), 1, anon_sym_COMMA_AT, - ACTIONS(504), 1, + ACTIONS(304), 1, anon_sym_COMMA, - ACTIONS(506), 1, + ACTIONS(546), 1, anon_sym_cl, - ACTIONS(2614), 1, - anon_sym_POUND, - ACTIONS(2768), 1, + ACTIONS(1466), 1, sym_self_referential_reader_macro, - STATE(1302), 1, - sym_sym_lit, - STATE(1304), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2160), 1, + STATE(2137), 1, + sym_sym_lit, + STATE(2165), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(490), 2, + ACTIONS(290), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(508), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(512), 2, + ACTIONS(316), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(514), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2764), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2766), 3, + ACTIONS(1464), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(457), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1303), 3, + STATE(1800), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1342), 19, + STATE(1749), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -51268,7 +51362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [40230] = 35, + [40365] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -51307,19 +51401,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(2108), 1, + ACTIONS(2800), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -51333,22 +51427,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2106), 3, + ACTIONS(2798), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1552), 19, + STATE(173), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -51368,7 +51462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [40365] = 35, + [40500] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -51377,78 +51471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(522), 1, + ACTIONS(274), 1, + anon_sym_POUND, + ACTIONS(278), 1, aux_sym_num_lit_token1, - ACTIONS(524), 1, + ACTIONS(280), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(282), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(286), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(292), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(294), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(546), 1, + ACTIONS(296), 1, anon_sym_POUND_SQUOTE, - ACTIONS(548), 1, + ACTIONS(298), 1, anon_sym_SQUOTE, - ACTIONS(550), 1, + ACTIONS(300), 1, anon_sym_BQUOTE, - ACTIONS(552), 1, + ACTIONS(302), 1, anon_sym_COMMA_AT, - ACTIONS(554), 1, + ACTIONS(304), 1, anon_sym_COMMA, - ACTIONS(556), 1, + ACTIONS(546), 1, anon_sym_cl, - ACTIONS(1027), 1, - anon_sym_POUND, - ACTIONS(1778), 1, + ACTIONS(1492), 1, sym_self_referential_reader_macro, - STATE(1825), 1, - sym_sym_lit, - STATE(1887), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2151), 1, + STATE(2137), 1, + sym_sym_lit, + STATE(2165), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(540), 2, + ACTIONS(290), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(558), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(562), 2, + ACTIONS(316), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(564), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2770), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1776), 3, + ACTIONS(1490), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(486), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1800), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1925), 19, + STATE(1743), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -51468,87 +51562,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [40500] = 35, + [40635] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(472), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(474), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(486), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(492), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(494), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(496), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(498), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(500), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(502), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(504), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(506), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(2614), 1, - anon_sym_POUND, - ACTIONS(2774), 1, + ACTIONS(2806), 1, sym_self_referential_reader_macro, - STATE(1302), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1304), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2160), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(490), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(508), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(512), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(514), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(2802), 2, sym__ws, sym_comment, - ACTIONS(2772), 3, + ACTIONS(2804), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1303), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(172), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1340), 19, + STATE(1451), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1493), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -51568,7 +51662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [40635] = 35, + [40770] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -51577,78 +51671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(2780), 1, + ACTIONS(2812), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2776), 2, + ACTIONS(2808), 2, sym__ws, sym_comment, - ACTIONS(2778), 3, + ACTIONS(2810), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(569), 3, + STATE(570), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2019), 19, + STATE(2004), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -51668,87 +51762,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [40770] = 35, + [40905] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(274), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(278), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(280), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(282), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(286), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(292), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(294), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(296), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(298), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(300), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(302), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(304), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(546), 1, anon_sym_cl, - ACTIONS(2112), 1, + ACTIONS(1510), 1, sym_self_referential_reader_macro, - STATE(1506), 1, - sym_sym_lit, - STATE(1511), 1, + STATE(1801), 1, sym__bare_set_lit, STATE(2137), 1, + sym_sym_lit, + STATE(2165), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(290), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(316), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2110), 3, + ACTIONS(1508), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1555), 19, + STATE(1800), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1742), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -51768,87 +51862,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [40905] = 35, + [41040] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(472), 1, - aux_sym_num_lit_token1, - ACTIONS(474), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(486), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(492), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(494), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(496), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(854), 1, + aux_sym_num_lit_token1, + ACTIONS(858), 1, anon_sym_POUND_SQUOTE, - ACTIONS(498), 1, + ACTIONS(860), 1, anon_sym_SQUOTE, - ACTIONS(500), 1, + ACTIONS(862), 1, anon_sym_BQUOTE, - ACTIONS(502), 1, + ACTIONS(864), 1, anon_sym_COMMA_AT, - ACTIONS(504), 1, + ACTIONS(866), 1, anon_sym_COMMA, - ACTIONS(506), 1, - anon_sym_cl, - ACTIONS(2614), 1, + ACTIONS(2074), 1, anon_sym_POUND, - ACTIONS(2784), 1, + ACTIONS(2816), 1, sym_self_referential_reader_macro, - STATE(1302), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1304), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2160), 1, + STATE(2146), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(490), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(508), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(512), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(514), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(856), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(868), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2782), 3, + ACTIONS(2814), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1303), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1339), 19, + STATE(1489), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -51868,7 +51962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [41040] = 35, + [41175] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -51907,19 +52001,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(2116), 1, + ACTIONS(2820), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -51933,22 +52027,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2114), 3, + ACTIONS(2818), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1556), 19, + STATE(1491), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -51968,7 +52062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [41175] = 35, + [41310] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -51977,78 +52071,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(472), 1, + ACTIONS(274), 1, + anon_sym_POUND, + ACTIONS(278), 1, aux_sym_num_lit_token1, - ACTIONS(474), 1, + ACTIONS(280), 1, anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(282), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(286), 1, aux_sym_sym_lit_token1, - ACTIONS(486), 1, + ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(492), 1, + ACTIONS(292), 1, anon_sym_POUND_QMARK, - ACTIONS(494), 1, + ACTIONS(294), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(496), 1, + ACTIONS(296), 1, anon_sym_POUND_SQUOTE, - ACTIONS(498), 1, + ACTIONS(298), 1, anon_sym_SQUOTE, - ACTIONS(500), 1, + ACTIONS(300), 1, anon_sym_BQUOTE, - ACTIONS(502), 1, + ACTIONS(302), 1, anon_sym_COMMA_AT, - ACTIONS(504), 1, + ACTIONS(304), 1, anon_sym_COMMA, - ACTIONS(506), 1, + ACTIONS(546), 1, anon_sym_cl, - ACTIONS(2614), 1, - anon_sym_POUND, - ACTIONS(2788), 1, + ACTIONS(1520), 1, sym_self_referential_reader_macro, - STATE(1302), 1, - sym_sym_lit, - STATE(1304), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2160), 1, + STATE(2137), 1, + sym_sym_lit, + STATE(2165), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(490), 2, + ACTIONS(290), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(508), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(512), 2, + ACTIONS(316), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(514), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(2822), 2, sym__ws, sym_comment, - ACTIONS(2786), 3, + ACTIONS(1518), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1303), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(477), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1338), 19, + STATE(1800), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1741), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -52068,7 +52162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [41310] = 35, + [41445] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -52105,22 +52199,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, ACTIONS(506), 1, anon_sym_cl, - ACTIONS(2614), 1, + ACTIONS(1794), 1, anon_sym_POUND, - ACTIONS(2792), 1, + ACTIONS(1886), 1, sym_self_referential_reader_macro, - STATE(1302), 1, - sym_sym_lit, - STATE(1304), 1, - sym__bare_set_lit, - STATE(2160), 1, + STATE(2168), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2454), 1, + sym_sym_lit, ACTIONS(490), 2, anon_sym_POUND0A, anon_sym_POUND0a, @@ -52133,22 +52227,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2790), 3, + ACTIONS(1884), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1303), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1337), 19, + STATE(2282), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2310), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -52168,7 +52262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [41445] = 35, + [41580] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -52177,78 +52271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(472), 1, + ACTIONS(274), 1, + anon_sym_POUND, + ACTIONS(278), 1, aux_sym_num_lit_token1, - ACTIONS(474), 1, + ACTIONS(280), 1, anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(282), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(286), 1, aux_sym_sym_lit_token1, - ACTIONS(486), 1, + ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(492), 1, + ACTIONS(292), 1, anon_sym_POUND_QMARK, - ACTIONS(494), 1, + ACTIONS(294), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(496), 1, + ACTIONS(296), 1, anon_sym_POUND_SQUOTE, - ACTIONS(498), 1, + ACTIONS(298), 1, anon_sym_SQUOTE, - ACTIONS(500), 1, + ACTIONS(300), 1, anon_sym_BQUOTE, - ACTIONS(502), 1, + ACTIONS(302), 1, anon_sym_COMMA_AT, - ACTIONS(504), 1, + ACTIONS(304), 1, anon_sym_COMMA, - ACTIONS(506), 1, + ACTIONS(546), 1, anon_sym_cl, - ACTIONS(2614), 1, - anon_sym_POUND, - ACTIONS(2796), 1, + ACTIONS(1530), 1, sym_self_referential_reader_macro, - STATE(1302), 1, - sym_sym_lit, - STATE(1304), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2160), 1, + STATE(2137), 1, + sym_sym_lit, + STATE(2165), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(490), 2, + ACTIONS(290), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(508), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(512), 2, + ACTIONS(316), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(514), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(2824), 2, sym__ws, sym_comment, - ACTIONS(2794), 3, + ACTIONS(1528), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1303), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(479), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1336), 19, + STATE(1800), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1739), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -52268,7 +52362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [41580] = 35, + [41715] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -52277,78 +52371,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(472), 1, + ACTIONS(274), 1, + anon_sym_POUND, + ACTIONS(278), 1, aux_sym_num_lit_token1, - ACTIONS(474), 1, + ACTIONS(280), 1, anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(282), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(286), 1, aux_sym_sym_lit_token1, - ACTIONS(486), 1, + ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(492), 1, + ACTIONS(292), 1, anon_sym_POUND_QMARK, - ACTIONS(494), 1, + ACTIONS(294), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(496), 1, + ACTIONS(296), 1, anon_sym_POUND_SQUOTE, - ACTIONS(498), 1, + ACTIONS(298), 1, anon_sym_SQUOTE, - ACTIONS(500), 1, + ACTIONS(300), 1, anon_sym_BQUOTE, - ACTIONS(502), 1, + ACTIONS(302), 1, anon_sym_COMMA_AT, - ACTIONS(504), 1, + ACTIONS(304), 1, anon_sym_COMMA, - ACTIONS(506), 1, + ACTIONS(546), 1, anon_sym_cl, - ACTIONS(2614), 1, - anon_sym_POUND, - ACTIONS(2800), 1, + ACTIONS(1582), 1, sym_self_referential_reader_macro, - STATE(1302), 1, - sym_sym_lit, - STATE(1304), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2160), 1, + STATE(2137), 1, + sym_sym_lit, + STATE(2165), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(490), 2, + ACTIONS(290), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(508), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(512), 2, + ACTIONS(316), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(514), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2798), 3, + ACTIONS(1580), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1303), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1325), 19, + STATE(1800), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1727), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -52368,7 +52462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [41715] = 35, + [41850] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -52405,22 +52499,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, ACTIONS(506), 1, anon_sym_cl, - ACTIONS(2614), 1, + ACTIONS(1794), 1, anon_sym_POUND, - ACTIONS(2806), 1, + ACTIONS(1860), 1, sym_self_referential_reader_macro, - STATE(1302), 1, - sym_sym_lit, - STATE(1304), 1, - sym__bare_set_lit, - STATE(2160), 1, + STATE(2168), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2454), 1, + sym_sym_lit, ACTIONS(490), 2, anon_sym_POUND0A, anon_sym_POUND0a, @@ -52433,22 +52527,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2802), 2, + ACTIONS(2826), 2, sym__ws, sym_comment, - ACTIONS(2804), 3, + ACTIONS(1858), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(466), 3, + STATE(527), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1303), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1321), 19, + STATE(2306), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -52468,7 +52562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [41850] = 35, + [41985] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -52477,78 +52571,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(472), 1, + ACTIONS(274), 1, + anon_sym_POUND, + ACTIONS(278), 1, aux_sym_num_lit_token1, - ACTIONS(474), 1, + ACTIONS(280), 1, anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(282), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(286), 1, aux_sym_sym_lit_token1, - ACTIONS(486), 1, + ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(492), 1, + ACTIONS(292), 1, anon_sym_POUND_QMARK, - ACTIONS(494), 1, + ACTIONS(294), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(496), 1, + ACTIONS(296), 1, anon_sym_POUND_SQUOTE, - ACTIONS(498), 1, + ACTIONS(298), 1, anon_sym_SQUOTE, - ACTIONS(500), 1, + ACTIONS(300), 1, anon_sym_BQUOTE, - ACTIONS(502), 1, + ACTIONS(302), 1, anon_sym_COMMA_AT, - ACTIONS(504), 1, + ACTIONS(304), 1, anon_sym_COMMA, - ACTIONS(506), 1, + ACTIONS(546), 1, anon_sym_cl, - ACTIONS(2614), 1, - anon_sym_POUND, - ACTIONS(2812), 1, + ACTIONS(1586), 1, sym_self_referential_reader_macro, - STATE(1302), 1, - sym_sym_lit, - STATE(1304), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2160), 1, + STATE(2137), 1, + sym_sym_lit, + STATE(2165), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(490), 2, + ACTIONS(290), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(508), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(512), 2, + ACTIONS(316), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(514), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2808), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2810), 3, + ACTIONS(1584), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(469), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1303), 3, + STATE(1800), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1320), 19, + STATE(1725), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -52568,7 +52662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [41985] = 35, + [42120] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -52577,78 +52671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(472), 1, + ACTIONS(274), 1, + anon_sym_POUND, + ACTIONS(278), 1, aux_sym_num_lit_token1, - ACTIONS(474), 1, + ACTIONS(280), 1, anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(282), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(286), 1, aux_sym_sym_lit_token1, - ACTIONS(486), 1, + ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(492), 1, + ACTIONS(292), 1, anon_sym_POUND_QMARK, - ACTIONS(494), 1, + ACTIONS(294), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(496), 1, + ACTIONS(296), 1, anon_sym_POUND_SQUOTE, - ACTIONS(498), 1, + ACTIONS(298), 1, anon_sym_SQUOTE, - ACTIONS(500), 1, + ACTIONS(300), 1, anon_sym_BQUOTE, - ACTIONS(502), 1, + ACTIONS(302), 1, anon_sym_COMMA_AT, - ACTIONS(504), 1, + ACTIONS(304), 1, anon_sym_COMMA, - ACTIONS(506), 1, + ACTIONS(546), 1, anon_sym_cl, - ACTIONS(2614), 1, - anon_sym_POUND, - ACTIONS(2818), 1, + ACTIONS(1600), 1, sym_self_referential_reader_macro, - STATE(1302), 1, - sym_sym_lit, - STATE(1304), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2160), 1, + STATE(2137), 1, + sym_sym_lit, + STATE(2165), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(490), 2, + ACTIONS(290), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(508), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(512), 2, + ACTIONS(316), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(514), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2814), 2, + ACTIONS(2828), 2, sym__ws, sym_comment, - ACTIONS(2816), 3, + ACTIONS(1598), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(471), 3, + STATE(482), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1303), 3, + STATE(1800), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1319), 19, + STATE(1724), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -52668,7 +52762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [42120] = 35, + [42255] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -52677,78 +52771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(472), 1, + ACTIONS(274), 1, + anon_sym_POUND, + ACTIONS(278), 1, aux_sym_num_lit_token1, - ACTIONS(474), 1, + ACTIONS(280), 1, anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(282), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(286), 1, aux_sym_sym_lit_token1, - ACTIONS(486), 1, + ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(492), 1, + ACTIONS(292), 1, anon_sym_POUND_QMARK, - ACTIONS(494), 1, + ACTIONS(294), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(496), 1, + ACTIONS(296), 1, anon_sym_POUND_SQUOTE, - ACTIONS(498), 1, + ACTIONS(298), 1, anon_sym_SQUOTE, - ACTIONS(500), 1, + ACTIONS(300), 1, anon_sym_BQUOTE, - ACTIONS(502), 1, + ACTIONS(302), 1, anon_sym_COMMA_AT, - ACTIONS(504), 1, + ACTIONS(304), 1, anon_sym_COMMA, - ACTIONS(506), 1, + ACTIONS(546), 1, anon_sym_cl, - ACTIONS(2614), 1, - anon_sym_POUND, - ACTIONS(2824), 1, + ACTIONS(1632), 1, sym_self_referential_reader_macro, - STATE(1302), 1, - sym_sym_lit, - STATE(1304), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2160), 1, + STATE(2137), 1, + sym_sym_lit, + STATE(2165), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(490), 2, + ACTIONS(290), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(508), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(512), 2, + ACTIONS(316), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(514), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2820), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2822), 3, + ACTIONS(1630), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(472), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1303), 3, + STATE(1800), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1318), 19, + STATE(1722), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -52768,7 +52862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [42255] = 35, + [42390] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -52777,78 +52871,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(472), 1, + ACTIONS(274), 1, + anon_sym_POUND, + ACTIONS(278), 1, aux_sym_num_lit_token1, - ACTIONS(474), 1, + ACTIONS(280), 1, anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(282), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(286), 1, aux_sym_sym_lit_token1, - ACTIONS(486), 1, + ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(492), 1, + ACTIONS(292), 1, anon_sym_POUND_QMARK, - ACTIONS(494), 1, + ACTIONS(294), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(496), 1, + ACTIONS(296), 1, anon_sym_POUND_SQUOTE, - ACTIONS(498), 1, + ACTIONS(298), 1, anon_sym_SQUOTE, - ACTIONS(500), 1, + ACTIONS(300), 1, anon_sym_BQUOTE, - ACTIONS(502), 1, + ACTIONS(302), 1, anon_sym_COMMA_AT, - ACTIONS(504), 1, + ACTIONS(304), 1, anon_sym_COMMA, - ACTIONS(506), 1, + ACTIONS(546), 1, anon_sym_cl, - ACTIONS(2614), 1, - anon_sym_POUND, - ACTIONS(2830), 1, + ACTIONS(1638), 1, sym_self_referential_reader_macro, - STATE(1302), 1, - sym_sym_lit, - STATE(1304), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2160), 1, + STATE(2137), 1, + sym_sym_lit, + STATE(2165), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(490), 2, + ACTIONS(290), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(508), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(512), 2, + ACTIONS(316), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(514), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2826), 2, + ACTIONS(2830), 2, sym__ws, sym_comment, - ACTIONS(2828), 3, + ACTIONS(1636), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(473), 3, + STATE(484), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1303), 3, + STATE(1800), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1317), 19, + STATE(1721), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -52868,7 +52962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [42390] = 35, + [42525] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -52877,78 +52971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(877), 1, + ACTIONS(664), 1, aux_sym_num_lit_token1, - ACTIONS(879), 1, + ACTIONS(666), 1, anon_sym_COLON, - ACTIONS(881), 1, + ACTIONS(668), 1, anon_sym_COLON_COLON, - ACTIONS(883), 1, + ACTIONS(670), 1, anon_sym_DQUOTE, - ACTIONS(889), 1, + ACTIONS(676), 1, aux_sym_sym_lit_token1, - ACTIONS(891), 1, + ACTIONS(678), 1, anon_sym_LPAREN, - ACTIONS(897), 1, + ACTIONS(684), 1, anon_sym_POUND_QMARK, - ACTIONS(899), 1, + ACTIONS(686), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(901), 1, + ACTIONS(688), 1, anon_sym_POUND_SQUOTE, - ACTIONS(903), 1, + ACTIONS(690), 1, anon_sym_SQUOTE, - ACTIONS(905), 1, + ACTIONS(692), 1, anon_sym_BQUOTE, - ACTIONS(907), 1, + ACTIONS(694), 1, anon_sym_COMMA_AT, - ACTIONS(909), 1, + ACTIONS(696), 1, anon_sym_COMMA, - ACTIONS(911), 1, + ACTIONS(698), 1, anon_sym_cl, - ACTIONS(2034), 1, + ACTIONS(1444), 1, anon_sym_POUND, ACTIONS(2834), 1, sym_self_referential_reader_macro, - STATE(1165), 1, + STATE(1167), 1, sym_sym_lit, - STATE(1233), 1, + STATE(1175), 1, sym__bare_set_lit, - STATE(2140), 1, + STATE(2160), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(895), 2, + ACTIONS(682), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(913), 2, + ACTIONS(700), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(917), 2, + ACTIONS(704), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(919), 2, + ACTIONS(706), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, ACTIONS(2832), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1275), 3, + STATE(1174), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1286), 19, + STATE(1172), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -52968,7 +53062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [42525] = 35, + [42660] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -52977,78 +53071,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(522), 1, + ACTIONS(274), 1, + anon_sym_POUND, + ACTIONS(278), 1, aux_sym_num_lit_token1, - ACTIONS(524), 1, + ACTIONS(280), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(282), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(286), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(292), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(294), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(546), 1, + ACTIONS(296), 1, anon_sym_POUND_SQUOTE, - ACTIONS(548), 1, + ACTIONS(298), 1, anon_sym_SQUOTE, - ACTIONS(550), 1, + ACTIONS(300), 1, anon_sym_BQUOTE, - ACTIONS(552), 1, + ACTIONS(302), 1, anon_sym_COMMA_AT, - ACTIONS(554), 1, + ACTIONS(304), 1, anon_sym_COMMA, - ACTIONS(556), 1, + ACTIONS(546), 1, anon_sym_cl, - ACTIONS(1027), 1, - anon_sym_POUND, - ACTIONS(1796), 1, + ACTIONS(1642), 1, sym_self_referential_reader_macro, - STATE(1825), 1, - sym_sym_lit, - STATE(1887), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2151), 1, + STATE(2137), 1, + sym_sym_lit, + STATE(2165), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(540), 2, + ACTIONS(290), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(558), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(562), 2, + ACTIONS(316), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(564), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2836), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1794), 3, + ACTIONS(1640), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(489), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1800), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1926), 19, + STATE(1714), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -53068,7 +53162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [42660] = 35, + [42795] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -53077,78 +53171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(522), 1, + ACTIONS(472), 1, aux_sym_num_lit_token1, - ACTIONS(524), 1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(492), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(494), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(546), 1, + ACTIONS(496), 1, anon_sym_POUND_SQUOTE, - ACTIONS(548), 1, + ACTIONS(498), 1, anon_sym_SQUOTE, - ACTIONS(550), 1, + ACTIONS(500), 1, anon_sym_BQUOTE, - ACTIONS(552), 1, + ACTIONS(502), 1, anon_sym_COMMA_AT, - ACTIONS(554), 1, + ACTIONS(504), 1, anon_sym_COMMA, - ACTIONS(556), 1, + ACTIONS(506), 1, anon_sym_cl, - ACTIONS(1027), 1, + ACTIONS(1794), 1, anon_sym_POUND, - ACTIONS(1806), 1, + ACTIONS(1854), 1, sym_self_referential_reader_macro, - STATE(1825), 1, - sym_sym_lit, - STATE(1887), 1, - sym__bare_set_lit, - STATE(2151), 1, + STATE(2168), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(540), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2454), 1, + sym_sym_lit, + ACTIONS(490), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(558), 2, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(562), 2, + ACTIONS(512), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(564), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2838), 2, + ACTIONS(2836), 2, sym__ws, sym_comment, - ACTIONS(1804), 3, + ACTIONS(1852), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(492), 3, + STATE(530), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1927), 19, + STATE(2303), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -53168,7 +53262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [42795] = 35, + [42930] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -53177,78 +53271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(522), 1, + ACTIONS(274), 1, + anon_sym_POUND, + ACTIONS(278), 1, aux_sym_num_lit_token1, - ACTIONS(524), 1, + ACTIONS(280), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(282), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(286), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(292), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(294), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(546), 1, + ACTIONS(296), 1, anon_sym_POUND_SQUOTE, - ACTIONS(548), 1, + ACTIONS(298), 1, anon_sym_SQUOTE, - ACTIONS(550), 1, + ACTIONS(300), 1, anon_sym_BQUOTE, - ACTIONS(552), 1, + ACTIONS(302), 1, anon_sym_COMMA_AT, - ACTIONS(554), 1, + ACTIONS(304), 1, anon_sym_COMMA, - ACTIONS(556), 1, + ACTIONS(546), 1, anon_sym_cl, - ACTIONS(1027), 1, - anon_sym_POUND, - ACTIONS(2182), 1, + ACTIONS(1646), 1, sym_self_referential_reader_macro, - STATE(1825), 1, - sym_sym_lit, - STATE(1887), 1, + STATE(1801), 1, sym__bare_set_lit, - STATE(2151), 1, + STATE(2137), 1, + sym_sym_lit, + STATE(2165), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(540), 2, + ACTIONS(290), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(558), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(562), 2, + ACTIONS(316), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(564), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2180), 3, + ACTIONS(1644), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1800), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1930), 19, + STATE(1713), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -53268,7 +53362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [42930] = 35, + [43065] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -53277,78 +53371,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(2844), 1, + ACTIONS(2842), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2840), 2, + ACTIONS(2838), 2, sym__ws, sym_comment, - ACTIONS(2842), 3, + ACTIONS(2840), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(583), 3, + STATE(584), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2018), 19, + STATE(2005), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -53368,7 +53462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [43065] = 35, + [43200] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -53377,78 +53471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(522), 1, + ACTIONS(472), 1, aux_sym_num_lit_token1, - ACTIONS(524), 1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(492), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(494), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(546), 1, + ACTIONS(496), 1, anon_sym_POUND_SQUOTE, - ACTIONS(548), 1, + ACTIONS(498), 1, anon_sym_SQUOTE, - ACTIONS(550), 1, + ACTIONS(500), 1, anon_sym_BQUOTE, - ACTIONS(552), 1, + ACTIONS(502), 1, anon_sym_COMMA_AT, - ACTIONS(554), 1, + ACTIONS(504), 1, anon_sym_COMMA, - ACTIONS(556), 1, + ACTIONS(506), 1, anon_sym_cl, - ACTIONS(1027), 1, + ACTIONS(1794), 1, anon_sym_POUND, - ACTIONS(2188), 1, + ACTIONS(1848), 1, sym_self_referential_reader_macro, - STATE(1825), 1, - sym_sym_lit, - STATE(1887), 1, - sym__bare_set_lit, - STATE(2151), 1, + STATE(2168), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(540), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2454), 1, + sym_sym_lit, + ACTIONS(490), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(558), 2, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(562), 2, + ACTIONS(512), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(564), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2846), 2, + ACTIONS(2844), 2, sym__ws, sym_comment, - ACTIONS(2186), 3, + ACTIONS(1846), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(502), 3, + STATE(536), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1931), 19, + STATE(2302), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -53468,7 +53562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [43200] = 35, + [43335] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -53477,78 +53571,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(522), 1, + ACTIONS(61), 1, + anon_sym_POUND, + ACTIONS(65), 1, aux_sym_num_lit_token1, - ACTIONS(524), 1, + ACTIONS(67), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(69), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(73), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(77), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(79), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(546), 1, + ACTIONS(81), 1, anon_sym_POUND_SQUOTE, - ACTIONS(548), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(550), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(552), 1, + ACTIONS(87), 1, anon_sym_COMMA_AT, - ACTIONS(554), 1, + ACTIONS(89), 1, anon_sym_COMMA, - ACTIONS(556), 1, + ACTIONS(830), 1, + anon_sym_LPAREN, + ACTIONS(834), 1, anon_sym_cl, - ACTIONS(1027), 1, - anon_sym_POUND, - ACTIONS(2192), 1, + ACTIONS(2850), 1, sym_self_referential_reader_macro, - STATE(1825), 1, - sym_sym_lit, - STATE(1887), 1, + STATE(927), 1, sym__bare_set_lit, - STATE(2151), 1, + STATE(929), 1, + sym_sym_lit, + STATE(2169), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(540), 2, + ACTIONS(75), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(558), 2, + ACTIONS(93), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(562), 2, + ACTIONS(97), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(564), 2, + ACTIONS(99), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(2846), 2, sym__ws, sym_comment, - ACTIONS(2190), 3, + ACTIONS(2848), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(595), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(928), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1933), 19, + STATE(884), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -53568,7 +53662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [43335] = 35, + [43470] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -53577,78 +53671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(927), 1, + ACTIONS(664), 1, aux_sym_num_lit_token1, - ACTIONS(929), 1, + ACTIONS(666), 1, anon_sym_COLON, - ACTIONS(931), 1, + ACTIONS(668), 1, anon_sym_COLON_COLON, - ACTIONS(933), 1, + ACTIONS(670), 1, anon_sym_DQUOTE, - ACTIONS(939), 1, + ACTIONS(676), 1, aux_sym_sym_lit_token1, - ACTIONS(941), 1, + ACTIONS(678), 1, anon_sym_LPAREN, - ACTIONS(947), 1, + ACTIONS(684), 1, anon_sym_POUND_QMARK, - ACTIONS(949), 1, + ACTIONS(686), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(951), 1, + ACTIONS(688), 1, anon_sym_POUND_SQUOTE, - ACTIONS(953), 1, + ACTIONS(690), 1, anon_sym_SQUOTE, - ACTIONS(955), 1, + ACTIONS(692), 1, anon_sym_BQUOTE, - ACTIONS(957), 1, + ACTIONS(694), 1, anon_sym_COMMA_AT, - ACTIONS(959), 1, + ACTIONS(696), 1, anon_sym_COMMA, - ACTIONS(961), 1, + ACTIONS(698), 1, anon_sym_cl, - ACTIONS(1740), 1, + ACTIONS(1444), 1, anon_sym_POUND, - ACTIONS(2850), 1, + ACTIONS(2856), 1, sym_self_referential_reader_macro, - STATE(1687), 1, - sym__bare_set_lit, - STATE(1689), 1, + STATE(1167), 1, sym_sym_lit, - STATE(2148), 1, + STATE(1175), 1, + sym__bare_set_lit, + STATE(2160), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(945), 2, + ACTIONS(682), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(963), 2, + ACTIONS(700), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(967), 2, + ACTIONS(704), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(969), 2, + ACTIONS(706), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(2852), 2, sym__ws, sym_comment, - ACTIONS(2848), 3, + ACTIONS(2854), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(504), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(1174), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1591), 19, + STATE(1203), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -53668,7 +53762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [43470] = 35, + [43605] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -53677,78 +53771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(2854), 1, + ACTIONS(2860), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2852), 3, + ACTIONS(2858), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2017), 19, + STATE(2006), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -53768,87 +53862,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [43605] = 35, + [43740] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(522), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(524), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(546), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(548), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(550), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(552), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(554), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(556), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1027), 1, - anon_sym_POUND, - ACTIONS(2196), 1, + ACTIONS(2866), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2151), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(540), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(558), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(562), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(564), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(2862), 2, sym__ws, sym_comment, - ACTIONS(2194), 3, + ACTIONS(2864), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(458), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1934), 19, + STATE(292), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -53868,7 +53962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [43740] = 35, + [43875] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -53877,78 +53971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(2860), 1, + ACTIONS(2872), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2856), 2, + ACTIONS(2868), 2, sym__ws, sym_comment, - ACTIONS(2858), 3, + ACTIONS(2870), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(588), 3, + STATE(589), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2016), 19, + STATE(2007), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -53968,7 +54062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [43875] = 35, + [44010] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -54007,19 +54101,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(2864), 1, + ACTIONS(2876), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -54033,22 +54127,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2862), 3, + ACTIONS(2874), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(171), 19, + STATE(1490), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -54068,7 +54162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [44010] = 35, + [44145] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -54077,78 +54171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(522), 1, + ACTIONS(472), 1, aux_sym_num_lit_token1, - ACTIONS(524), 1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(492), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(494), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(546), 1, + ACTIONS(496), 1, anon_sym_POUND_SQUOTE, - ACTIONS(548), 1, + ACTIONS(498), 1, anon_sym_SQUOTE, - ACTIONS(550), 1, + ACTIONS(500), 1, anon_sym_BQUOTE, - ACTIONS(552), 1, + ACTIONS(502), 1, anon_sym_COMMA_AT, - ACTIONS(554), 1, + ACTIONS(504), 1, anon_sym_COMMA, - ACTIONS(556), 1, + ACTIONS(506), 1, anon_sym_cl, - ACTIONS(1027), 1, + ACTIONS(1794), 1, anon_sym_POUND, - ACTIONS(2200), 1, + ACTIONS(2168), 1, sym_self_referential_reader_macro, - STATE(1825), 1, - sym_sym_lit, - STATE(1887), 1, - sym__bare_set_lit, - STATE(2151), 1, + STATE(2168), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(540), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2454), 1, + sym_sym_lit, + ACTIONS(490), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(558), 2, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(562), 2, + ACTIONS(512), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(564), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(2878), 2, sym__ws, sym_comment, - ACTIONS(2198), 3, + ACTIONS(2166), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(414), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1935), 19, + STATE(2327), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -54168,7 +54262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [44145] = 35, + [44280] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -54177,78 +54271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(588), 1, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(590), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(592), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(598), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(620), 1, - anon_sym_cl, - ACTIONS(670), 1, - aux_sym_num_lit_token1, - ACTIONS(674), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(676), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(678), 1, + ACTIONS(760), 1, + anon_sym_cl, + ACTIONS(838), 1, + aux_sym_num_lit_token1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(680), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(682), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(684), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(686), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1588), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(2428), 1, + ACTIONS(2882), 1, sym_self_referential_reader_macro, - STATE(2150), 1, + STATE(1848), 1, + sym_sym_lit, + STATE(1925), 1, + sym__bare_set_lit, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2428), 1, - sym_sym_lit, - ACTIONS(622), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(628), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(672), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(688), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2426), 3, + ACTIONS(2880), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2289), 19, + STATE(2008), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -54268,87 +54362,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [44280] = 35, + [44415] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(61), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(65), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(67), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(69), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(73), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(77), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(79), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(81), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(87), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(89), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(830), 1, + anon_sym_LPAREN, + ACTIONS(834), 1, anon_sym_cl, - ACTIONS(2868), 1, + ACTIONS(2888), 1, sym_self_referential_reader_macro, - STATE(1506), 1, - sym_sym_lit, - STATE(1511), 1, + STATE(927), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(929), 1, + sym_sym_lit, + STATE(2169), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(75), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(93), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(97), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(99), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(2884), 2, sym__ws, sym_comment, - ACTIONS(2866), 3, + ACTIONS(2886), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(609), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(177), 19, + STATE(928), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(879), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -54368,7 +54462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [44415] = 35, + [44550] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -54377,78 +54471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(2874), 1, + ACTIONS(2894), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2870), 2, + ACTIONS(2890), 2, sym__ws, sym_comment, - ACTIONS(2872), 3, + ACTIONS(2892), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(593), 3, + STATE(594), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2014), 19, + STATE(2009), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -54468,87 +54562,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [44550] = 35, + [44685] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(472), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(492), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(494), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(496), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(498), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(500), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(502), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(504), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(506), 1, anon_sym_cl, - ACTIONS(2120), 1, + ACTIONS(1794), 1, + anon_sym_POUND, + ACTIONS(2662), 1, sym_self_referential_reader_macro, - STATE(1506), 1, - sym_sym_lit, - STATE(1511), 1, - sym__bare_set_lit, - STATE(2137), 1, + STATE(2168), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2454), 1, + sym_sym_lit, + ACTIONS(490), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(512), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(2896), 2, sym__ws, sym_comment, - ACTIONS(2118), 3, + ACTIONS(2660), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(238), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1557), 19, + STATE(2282), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1857), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -54568,7 +54662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [44685] = 35, + [44820] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -54577,78 +54671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(522), 1, + ACTIONS(664), 1, aux_sym_num_lit_token1, - ACTIONS(524), 1, + ACTIONS(666), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(668), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(670), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(676), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(678), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(684), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(686), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(546), 1, + ACTIONS(688), 1, anon_sym_POUND_SQUOTE, - ACTIONS(548), 1, + ACTIONS(690), 1, anon_sym_SQUOTE, - ACTIONS(550), 1, + ACTIONS(692), 1, anon_sym_BQUOTE, - ACTIONS(552), 1, + ACTIONS(694), 1, anon_sym_COMMA_AT, - ACTIONS(554), 1, + ACTIONS(696), 1, anon_sym_COMMA, - ACTIONS(556), 1, + ACTIONS(698), 1, anon_sym_cl, - ACTIONS(1027), 1, + ACTIONS(1444), 1, anon_sym_POUND, - ACTIONS(2206), 1, + ACTIONS(2902), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1167), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1175), 1, sym__bare_set_lit, - STATE(2151), 1, + STATE(2160), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(540), 2, + ACTIONS(682), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(558), 2, + ACTIONS(700), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(562), 2, + ACTIONS(704), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(564), 2, + ACTIONS(706), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2876), 2, + ACTIONS(2898), 2, sym__ws, sym_comment, - ACTIONS(2204), 3, + ACTIONS(2900), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(503), 3, + STATE(510), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1174), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1936), 19, + STATE(1210), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -54668,7 +54762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [44820] = 35, + [44955] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -54677,78 +54771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(522), 1, + ACTIONS(664), 1, aux_sym_num_lit_token1, - ACTIONS(524), 1, + ACTIONS(666), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(668), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(670), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(676), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(678), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(684), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(686), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(546), 1, + ACTIONS(688), 1, anon_sym_POUND_SQUOTE, - ACTIONS(548), 1, + ACTIONS(690), 1, anon_sym_SQUOTE, - ACTIONS(550), 1, + ACTIONS(692), 1, anon_sym_BQUOTE, - ACTIONS(552), 1, + ACTIONS(694), 1, anon_sym_COMMA_AT, - ACTIONS(554), 1, + ACTIONS(696), 1, anon_sym_COMMA, - ACTIONS(556), 1, + ACTIONS(698), 1, anon_sym_cl, - ACTIONS(1027), 1, + ACTIONS(1444), 1, anon_sym_POUND, - ACTIONS(2212), 1, + ACTIONS(2908), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1167), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1175), 1, sym__bare_set_lit, - STATE(2151), 1, + STATE(2160), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(540), 2, + ACTIONS(682), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(558), 2, + ACTIONS(700), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(562), 2, + ACTIONS(704), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(564), 2, + ACTIONS(706), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2878), 2, + ACTIONS(2904), 2, sym__ws, sym_comment, - ACTIONS(2210), 3, + ACTIONS(2906), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(508), 3, + STATE(515), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1174), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1928), 19, + STATE(1211), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -54768,7 +54862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [44955] = 35, + [45090] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -54777,78 +54871,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(2882), 1, + ACTIONS(2912), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2880), 3, + ACTIONS(2910), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2013), 19, + STATE(1988), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -54868,7 +54962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [45090] = 35, + [45225] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -54907,19 +55001,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(2124), 1, + ACTIONS(2816), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -54933,22 +55027,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2122), 3, + ACTIONS(2814), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1558), 19, + STATE(1489), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -54968,7 +55062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [45225] = 35, + [45360] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -54977,74 +55071,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(2888), 1, + ACTIONS(2918), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2884), 2, + ACTIONS(2914), 2, sym__ws, sym_comment, - ACTIONS(2886), 3, + ACTIONS(2916), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(600), 3, + STATE(601), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, @@ -55068,7 +55162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [45360] = 35, + [45495] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -55077,78 +55171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(522), 1, + ACTIONS(664), 1, aux_sym_num_lit_token1, - ACTIONS(524), 1, + ACTIONS(666), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(668), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(670), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(676), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(678), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(684), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(686), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(546), 1, + ACTIONS(688), 1, anon_sym_POUND_SQUOTE, - ACTIONS(548), 1, + ACTIONS(690), 1, anon_sym_SQUOTE, - ACTIONS(550), 1, + ACTIONS(692), 1, anon_sym_BQUOTE, - ACTIONS(552), 1, + ACTIONS(694), 1, anon_sym_COMMA_AT, - ACTIONS(554), 1, + ACTIONS(696), 1, anon_sym_COMMA, - ACTIONS(556), 1, + ACTIONS(698), 1, anon_sym_cl, - ACTIONS(1027), 1, + ACTIONS(1444), 1, anon_sym_POUND, - ACTIONS(2216), 1, + ACTIONS(2924), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1167), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1175), 1, sym__bare_set_lit, - STATE(2151), 1, + STATE(2160), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(540), 2, + ACTIONS(682), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(558), 2, + ACTIONS(700), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(562), 2, + ACTIONS(704), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(564), 2, + ACTIONS(706), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(2920), 2, sym__ws, sym_comment, - ACTIONS(2214), 3, + ACTIONS(2922), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(518), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1174), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1953), 19, + STATE(1216), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -55168,7 +55262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [45495] = 35, + [45630] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -55177,78 +55271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(522), 1, + ACTIONS(664), 1, aux_sym_num_lit_token1, - ACTIONS(524), 1, + ACTIONS(666), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(668), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(670), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(676), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(678), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(684), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(686), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(546), 1, + ACTIONS(688), 1, anon_sym_POUND_SQUOTE, - ACTIONS(548), 1, + ACTIONS(690), 1, anon_sym_SQUOTE, - ACTIONS(550), 1, + ACTIONS(692), 1, anon_sym_BQUOTE, - ACTIONS(552), 1, + ACTIONS(694), 1, anon_sym_COMMA_AT, - ACTIONS(554), 1, + ACTIONS(696), 1, anon_sym_COMMA, - ACTIONS(556), 1, + ACTIONS(698), 1, anon_sym_cl, - ACTIONS(1027), 1, + ACTIONS(1444), 1, anon_sym_POUND, - ACTIONS(2220), 1, + ACTIONS(2928), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1167), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1175), 1, sym__bare_set_lit, - STATE(2151), 1, + STATE(2160), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(540), 2, + ACTIONS(682), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(558), 2, + ACTIONS(700), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(562), 2, + ACTIONS(704), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(564), 2, + ACTIONS(706), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2218), 3, + ACTIONS(2926), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1174), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1951), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1253), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -55268,7 +55362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [45630] = 35, + [45765] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -55277,78 +55371,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(2894), 1, + ACTIONS(2934), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2890), 2, + ACTIONS(2930), 2, sym__ws, sym_comment, - ACTIONS(2892), 3, + ACTIONS(2932), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(605), 3, + STATE(606), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2011), 19, + STATE(2013), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -55368,7 +55462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [45765] = 35, + [45900] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -55377,78 +55471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(522), 1, + ACTIONS(61), 1, + anon_sym_POUND, + ACTIONS(65), 1, aux_sym_num_lit_token1, - ACTIONS(524), 1, + ACTIONS(67), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(69), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(73), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(77), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(79), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(546), 1, + ACTIONS(81), 1, anon_sym_POUND_SQUOTE, - ACTIONS(548), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(550), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(552), 1, + ACTIONS(87), 1, anon_sym_COMMA_AT, - ACTIONS(554), 1, + ACTIONS(89), 1, anon_sym_COMMA, - ACTIONS(556), 1, + ACTIONS(830), 1, + anon_sym_LPAREN, + ACTIONS(834), 1, anon_sym_cl, - ACTIONS(1027), 1, - anon_sym_POUND, - ACTIONS(2230), 1, + ACTIONS(2940), 1, sym_self_referential_reader_macro, - STATE(1825), 1, - sym_sym_lit, - STATE(1887), 1, + STATE(927), 1, sym__bare_set_lit, - STATE(2151), 1, + STATE(929), 1, + sym_sym_lit, + STATE(2169), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(540), 2, + ACTIONS(75), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(558), 2, + ACTIONS(93), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(562), 2, + ACTIONS(97), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(564), 2, + ACTIONS(99), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2896), 2, + ACTIONS(2936), 2, sym__ws, sym_comment, - ACTIONS(2228), 3, + ACTIONS(2938), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(512), 3, + STATE(616), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(928), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1950), 19, + STATE(877), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -55468,7 +55562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [45900] = 35, + [46035] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -55477,78 +55571,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(2902), 1, + ACTIONS(2946), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2898), 2, + ACTIONS(2942), 2, sym__ws, sym_comment, - ACTIONS(2900), 3, + ACTIONS(2944), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(610), 3, + STATE(611), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2010), 19, + STATE(2014), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -55568,7 +55662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [46035] = 35, + [46170] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -55577,178 +55671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(927), 1, + ACTIONS(664), 1, aux_sym_num_lit_token1, - ACTIONS(929), 1, + ACTIONS(666), 1, anon_sym_COLON, - ACTIONS(931), 1, + ACTIONS(668), 1, anon_sym_COLON_COLON, - ACTIONS(933), 1, + ACTIONS(670), 1, anon_sym_DQUOTE, - ACTIONS(939), 1, + ACTIONS(676), 1, aux_sym_sym_lit_token1, - ACTIONS(941), 1, + ACTIONS(678), 1, anon_sym_LPAREN, - ACTIONS(947), 1, + ACTIONS(684), 1, anon_sym_POUND_QMARK, - ACTIONS(949), 1, + ACTIONS(686), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(951), 1, + ACTIONS(688), 1, anon_sym_POUND_SQUOTE, - ACTIONS(953), 1, + ACTIONS(690), 1, anon_sym_SQUOTE, - ACTIONS(955), 1, + ACTIONS(692), 1, anon_sym_BQUOTE, - ACTIONS(957), 1, + ACTIONS(694), 1, anon_sym_COMMA_AT, - ACTIONS(959), 1, + ACTIONS(696), 1, anon_sym_COMMA, - ACTIONS(961), 1, + ACTIONS(698), 1, anon_sym_cl, - ACTIONS(1740), 1, + ACTIONS(1444), 1, anon_sym_POUND, - ACTIONS(2906), 1, + ACTIONS(2950), 1, sym_self_referential_reader_macro, - STATE(1687), 1, - sym__bare_set_lit, - STATE(1689), 1, + STATE(1167), 1, sym_sym_lit, - STATE(2148), 1, + STATE(1175), 1, + sym__bare_set_lit, + STATE(2160), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(945), 2, + ACTIONS(682), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(963), 2, + ACTIONS(700), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(967), 2, + ACTIONS(704), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(969), 2, + ACTIONS(706), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2904), 3, + ACTIONS(2948), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(1174), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1590), 19, - sym__form, - sym_num_lit, - sym_kwd_lit, - sym_str_lit, - sym_char_lit, - sym_list_lit, - sym_vec_lit, - sym_set_lit, - sym_read_cond_lit, - sym_splicing_read_cond_lit, - sym_var_quoting_lit, - sym_quoting_lit, - sym_syn_quoting_lit, - sym_unquote_splicing_lit, - sym_unquoting_lit, - sym_path_lit, - sym_package_lit, - sym_include_reader_macro, - sym_complex_num_lit, - [46170] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(522), 1, - aux_sym_num_lit_token1, - ACTIONS(524), 1, - anon_sym_COLON, - ACTIONS(526), 1, - anon_sym_COLON_COLON, - ACTIONS(528), 1, - anon_sym_DQUOTE, - ACTIONS(534), 1, - aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, - anon_sym_POUND_QMARK, - ACTIONS(544), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(546), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(548), 1, - anon_sym_SQUOTE, - ACTIONS(550), 1, - anon_sym_BQUOTE, - ACTIONS(552), 1, - anon_sym_COMMA_AT, - ACTIONS(554), 1, - anon_sym_COMMA, - ACTIONS(556), 1, - anon_sym_cl, - ACTIONS(1027), 1, - anon_sym_POUND, - ACTIONS(2234), 1, - sym_self_referential_reader_macro, - STATE(1825), 1, - sym_sym_lit, - STATE(1887), 1, - sym__bare_set_lit, - STATE(2151), 1, - aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, - sym_old_meta_lit, - STATE(2239), 1, - sym__metadata_lit, - ACTIONS(540), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(558), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(562), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(564), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1434), 2, - sym__ws, - sym_comment, - ACTIONS(2232), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1949), 19, + STATE(1265), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -55771,84 +55765,84 @@ static const uint16_t ts_small_parse_table[] = { [46305] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(522), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(524), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(546), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(548), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(550), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(552), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(554), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(556), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1027), 1, - anon_sym_POUND, - ACTIONS(2240), 1, + ACTIONS(2562), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2151), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(540), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(558), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(562), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(564), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2908), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2238), 3, + ACTIONS(2560), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(516), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1948), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1488), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -55877,78 +55871,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(664), 1, + aux_sym_num_lit_token1, + ACTIONS(666), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(668), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(670), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(676), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(678), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(684), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(686), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, - anon_sym_cl, - ACTIONS(783), 1, - aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(688), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(690), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(692), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(694), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(696), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(698), 1, + anon_sym_cl, + ACTIONS(1444), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2954), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1167), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1175), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2160), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(564), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(682), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(700), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(704), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(706), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2910), 3, + ACTIONS(2952), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1174), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2009), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1267), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -55971,84 +55965,84 @@ static const uint16_t ts_small_parse_table[] = { [46575] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, - aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(730), 1, + anon_sym_COLON, + ACTIONS(732), 1, + anon_sym_COLON_COLON, + ACTIONS(734), 1, + anon_sym_DQUOTE, + ACTIONS(740), 1, + aux_sym_sym_lit_token1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(760), 1, + anon_sym_cl, + ACTIONS(838), 1, + aux_sym_num_lit_token1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(2918), 1, + ACTIONS(1664), 1, + anon_sym_POUND, + ACTIONS(2958), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2914), 2, + ACTIONS(840), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(852), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2916), 3, + ACTIONS(2956), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(491), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(185), 19, + STATE(2015), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -56077,78 +56071,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(522), 1, + ACTIONS(61), 1, + anon_sym_POUND, + ACTIONS(65), 1, aux_sym_num_lit_token1, - ACTIONS(524), 1, + ACTIONS(67), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(69), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(73), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(77), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(79), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(546), 1, + ACTIONS(81), 1, anon_sym_POUND_SQUOTE, - ACTIONS(548), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(550), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(552), 1, + ACTIONS(87), 1, anon_sym_COMMA_AT, - ACTIONS(554), 1, + ACTIONS(89), 1, anon_sym_COMMA, - ACTIONS(556), 1, + ACTIONS(830), 1, + anon_sym_LPAREN, + ACTIONS(834), 1, anon_sym_cl, - ACTIONS(1027), 1, - anon_sym_POUND, - ACTIONS(2244), 1, + ACTIONS(2964), 1, sym_self_referential_reader_macro, - STATE(1825), 1, - sym_sym_lit, - STATE(1887), 1, + STATE(927), 1, sym__bare_set_lit, - STATE(2151), 1, + STATE(929), 1, + sym_sym_lit, + STATE(2169), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(540), 2, + ACTIONS(75), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(558), 2, + ACTIONS(93), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(562), 2, + ACTIONS(97), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(564), 2, + ACTIONS(99), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(2960), 2, sym__ws, sym_comment, - ACTIONS(2242), 3, + ACTIONS(2962), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(644), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(928), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1945), 19, + STATE(873), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -56177,78 +56171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(506), 1, + anon_sym_cl, + ACTIONS(604), 1, + aux_sym_num_lit_token1, + ACTIONS(640), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(642), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(644), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, - anon_sym_cl, - ACTIONS(783), 1, - aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(646), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(648), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(650), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(652), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(654), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1470), 1, anon_sym_POUND, - ACTIONS(2922), 1, + ACTIONS(2968), 1, sym_self_referential_reader_macro, - STATE(1825), 1, - sym_sym_lit, - STATE(1887), 1, - sym__bare_set_lit, - STATE(2138), 1, + STATE(2142), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2454), 1, + sym_sym_lit, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(616), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(656), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2920), 3, + ACTIONS(2966), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2008), 19, + STATE(2424), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -56271,84 +56265,84 @@ static const uint16_t ts_small_parse_table[] = { [46980] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, - aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(730), 1, + anon_sym_COLON, + ACTIONS(732), 1, + anon_sym_COLON_COLON, + ACTIONS(734), 1, + anon_sym_DQUOTE, + ACTIONS(740), 1, + aux_sym_sym_lit_token1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(760), 1, + anon_sym_cl, + ACTIONS(838), 1, + aux_sym_num_lit_token1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(2928), 1, + ACTIONS(1664), 1, + anon_sym_POUND, + ACTIONS(2972), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2924), 2, + ACTIONS(840), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(852), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2926), 3, + ACTIONS(2970), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(494), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(186), 19, + STATE(2017), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -56377,78 +56371,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(664), 1, + aux_sym_num_lit_token1, + ACTIONS(666), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(668), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(670), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(676), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(678), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(684), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(686), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, - anon_sym_cl, - ACTIONS(783), 1, - aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(688), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(690), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(692), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(694), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(696), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(698), 1, + anon_sym_cl, + ACTIONS(1444), 1, anon_sym_POUND, - ACTIONS(2934), 1, + ACTIONS(2976), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1167), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1175), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2160), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(564), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(682), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(700), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(704), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2930), 2, + ACTIONS(706), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2932), 3, + ACTIONS(2974), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(617), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1174), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2007), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1229), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -56477,78 +56471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(522), 1, - aux_sym_num_lit_token1, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(546), 1, + ACTIONS(760), 1, + anon_sym_cl, + ACTIONS(838), 1, + aux_sym_num_lit_token1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(548), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(550), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(552), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(554), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(556), 1, - anon_sym_cl, - ACTIONS(1027), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(2248), 1, + ACTIONS(2982), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2151), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(540), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(562), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(840), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(852), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(2978), 2, sym__ws, sym_comment, - ACTIONS(2246), 3, + ACTIONS(2980), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(618), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1944), 19, + STATE(2010), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -56577,78 +56571,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(274), 1, - anon_sym_POUND, - ACTIONS(278), 1, + ACTIONS(472), 1, aux_sym_num_lit_token1, - ACTIONS(280), 1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(282), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(284), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(286), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(288), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(292), 1, + ACTIONS(492), 1, anon_sym_POUND_QMARK, - ACTIONS(294), 1, + ACTIONS(494), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(296), 1, + ACTIONS(496), 1, anon_sym_POUND_SQUOTE, - ACTIONS(298), 1, + ACTIONS(498), 1, anon_sym_SQUOTE, - ACTIONS(300), 1, + ACTIONS(500), 1, anon_sym_BQUOTE, - ACTIONS(302), 1, + ACTIONS(502), 1, anon_sym_COMMA_AT, - ACTIONS(304), 1, + ACTIONS(504), 1, anon_sym_COMMA, - ACTIONS(869), 1, + ACTIONS(506), 1, anon_sym_cl, - ACTIONS(1872), 1, + ACTIONS(1794), 1, + anon_sym_POUND, + ACTIONS(1832), 1, sym_self_referential_reader_macro, - STATE(1794), 1, - sym__bare_set_lit, - STATE(2118), 1, - sym_sym_lit, - STATE(2158), 1, + STATE(2168), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(290), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2454), 1, + sym_sym_lit, + ACTIONS(490), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(312), 2, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(316), 2, + ACTIONS(512), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(318), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2936), 2, + ACTIONS(2984), 2, sym__ws, sym_comment, - ACTIONS(1870), 3, + ACTIONS(1830), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(525), 3, + STATE(539), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1809), 19, + STATE(2348), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -56677,78 +56671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(274), 1, - anon_sym_POUND, - ACTIONS(278), 1, + ACTIONS(664), 1, aux_sym_num_lit_token1, - ACTIONS(280), 1, + ACTIONS(666), 1, anon_sym_COLON, - ACTIONS(282), 1, + ACTIONS(668), 1, anon_sym_COLON_COLON, - ACTIONS(284), 1, + ACTIONS(670), 1, anon_sym_DQUOTE, - ACTIONS(286), 1, + ACTIONS(676), 1, aux_sym_sym_lit_token1, - ACTIONS(288), 1, + ACTIONS(678), 1, anon_sym_LPAREN, - ACTIONS(292), 1, + ACTIONS(684), 1, anon_sym_POUND_QMARK, - ACTIONS(294), 1, + ACTIONS(686), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(296), 1, + ACTIONS(688), 1, anon_sym_POUND_SQUOTE, - ACTIONS(298), 1, + ACTIONS(690), 1, anon_sym_SQUOTE, - ACTIONS(300), 1, + ACTIONS(692), 1, anon_sym_BQUOTE, - ACTIONS(302), 1, + ACTIONS(694), 1, anon_sym_COMMA_AT, - ACTIONS(304), 1, + ACTIONS(696), 1, anon_sym_COMMA, - ACTIONS(869), 1, + ACTIONS(698), 1, anon_sym_cl, - ACTIONS(1866), 1, + ACTIONS(1444), 1, + anon_sym_POUND, + ACTIONS(2988), 1, sym_self_referential_reader_macro, - STATE(1794), 1, - sym__bare_set_lit, - STATE(2118), 1, + STATE(1167), 1, sym_sym_lit, - STATE(2158), 1, + STATE(1175), 1, + sym__bare_set_lit, + STATE(2160), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(290), 2, + ACTIONS(682), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(312), 2, + ACTIONS(700), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(316), 2, + ACTIONS(704), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(318), 2, + ACTIONS(706), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2938), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1864), 3, + ACTIONS(2986), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(531), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1174), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1811), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1215), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -56777,78 +56771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(274), 1, - anon_sym_POUND, - ACTIONS(278), 1, + ACTIONS(664), 1, aux_sym_num_lit_token1, - ACTIONS(280), 1, + ACTIONS(666), 1, anon_sym_COLON, - ACTIONS(282), 1, + ACTIONS(668), 1, anon_sym_COLON_COLON, - ACTIONS(284), 1, + ACTIONS(670), 1, anon_sym_DQUOTE, - ACTIONS(286), 1, + ACTIONS(676), 1, aux_sym_sym_lit_token1, - ACTIONS(288), 1, + ACTIONS(678), 1, anon_sym_LPAREN, - ACTIONS(292), 1, + ACTIONS(684), 1, anon_sym_POUND_QMARK, - ACTIONS(294), 1, + ACTIONS(686), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(296), 1, + ACTIONS(688), 1, anon_sym_POUND_SQUOTE, - ACTIONS(298), 1, + ACTIONS(690), 1, anon_sym_SQUOTE, - ACTIONS(300), 1, + ACTIONS(692), 1, anon_sym_BQUOTE, - ACTIONS(302), 1, + ACTIONS(694), 1, anon_sym_COMMA_AT, - ACTIONS(304), 1, + ACTIONS(696), 1, anon_sym_COMMA, - ACTIONS(869), 1, + ACTIONS(698), 1, anon_sym_cl, - ACTIONS(1860), 1, + ACTIONS(1444), 1, + anon_sym_POUND, + ACTIONS(2994), 1, sym_self_referential_reader_macro, - STATE(1794), 1, - sym__bare_set_lit, - STATE(2118), 1, + STATE(1167), 1, sym_sym_lit, - STATE(2158), 1, + STATE(1175), 1, + sym__bare_set_lit, + STATE(2160), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(290), 2, + ACTIONS(682), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(312), 2, + ACTIONS(700), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(316), 2, + ACTIONS(704), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(318), 2, + ACTIONS(706), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2940), 2, + ACTIONS(2990), 2, sym__ws, sym_comment, - ACTIONS(1858), 3, + ACTIONS(2992), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(532), 3, + STATE(544), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1174), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1813), 19, + STATE(1228), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -56877,78 +56871,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(274), 1, - anon_sym_POUND, - ACTIONS(278), 1, + ACTIONS(664), 1, aux_sym_num_lit_token1, - ACTIONS(280), 1, + ACTIONS(666), 1, anon_sym_COLON, - ACTIONS(282), 1, + ACTIONS(668), 1, anon_sym_COLON_COLON, - ACTIONS(284), 1, + ACTIONS(670), 1, anon_sym_DQUOTE, - ACTIONS(286), 1, + ACTIONS(676), 1, aux_sym_sym_lit_token1, - ACTIONS(288), 1, + ACTIONS(678), 1, anon_sym_LPAREN, - ACTIONS(292), 1, + ACTIONS(684), 1, anon_sym_POUND_QMARK, - ACTIONS(294), 1, + ACTIONS(686), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(296), 1, + ACTIONS(688), 1, anon_sym_POUND_SQUOTE, - ACTIONS(298), 1, + ACTIONS(690), 1, anon_sym_SQUOTE, - ACTIONS(300), 1, + ACTIONS(692), 1, anon_sym_BQUOTE, - ACTIONS(302), 1, + ACTIONS(694), 1, anon_sym_COMMA_AT, - ACTIONS(304), 1, + ACTIONS(696), 1, anon_sym_COMMA, - ACTIONS(869), 1, + ACTIONS(698), 1, anon_sym_cl, - ACTIONS(1850), 1, + ACTIONS(1444), 1, + anon_sym_POUND, + ACTIONS(3000), 1, sym_self_referential_reader_macro, - STATE(1794), 1, - sym__bare_set_lit, - STATE(2118), 1, + STATE(1167), 1, sym_sym_lit, - STATE(2158), 1, + STATE(1175), 1, + sym__bare_set_lit, + STATE(2160), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(290), 2, + ACTIONS(682), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(312), 2, + ACTIONS(700), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(316), 2, + ACTIONS(704), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(318), 2, + ACTIONS(706), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2942), 2, + ACTIONS(2996), 2, sym__ws, sym_comment, - ACTIONS(1848), 3, + ACTIONS(2998), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(533), 3, + STATE(558), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1174), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1815), 19, + STATE(1200), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -56977,78 +56971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(274), 1, - anon_sym_POUND, - ACTIONS(278), 1, + ACTIONS(664), 1, aux_sym_num_lit_token1, - ACTIONS(280), 1, + ACTIONS(666), 1, anon_sym_COLON, - ACTIONS(282), 1, + ACTIONS(668), 1, anon_sym_COLON_COLON, - ACTIONS(284), 1, + ACTIONS(670), 1, anon_sym_DQUOTE, - ACTIONS(286), 1, + ACTIONS(676), 1, aux_sym_sym_lit_token1, - ACTIONS(288), 1, + ACTIONS(678), 1, anon_sym_LPAREN, - ACTIONS(292), 1, + ACTIONS(684), 1, anon_sym_POUND_QMARK, - ACTIONS(294), 1, + ACTIONS(686), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(296), 1, + ACTIONS(688), 1, anon_sym_POUND_SQUOTE, - ACTIONS(298), 1, + ACTIONS(690), 1, anon_sym_SQUOTE, - ACTIONS(300), 1, + ACTIONS(692), 1, anon_sym_BQUOTE, - ACTIONS(302), 1, + ACTIONS(694), 1, anon_sym_COMMA_AT, - ACTIONS(304), 1, + ACTIONS(696), 1, anon_sym_COMMA, - ACTIONS(869), 1, + ACTIONS(698), 1, anon_sym_cl, - ACTIONS(1844), 1, + ACTIONS(1444), 1, + anon_sym_POUND, + ACTIONS(3006), 1, sym_self_referential_reader_macro, - STATE(1794), 1, - sym__bare_set_lit, - STATE(2118), 1, + STATE(1167), 1, sym_sym_lit, - STATE(2158), 1, + STATE(1175), 1, + sym__bare_set_lit, + STATE(2160), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(290), 2, + ACTIONS(682), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(312), 2, + ACTIONS(700), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(316), 2, + ACTIONS(704), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(318), 2, + ACTIONS(706), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2944), 2, + ACTIONS(3002), 2, sym__ws, sym_comment, - ACTIONS(1842), 3, + ACTIONS(3004), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(534), 3, + STATE(561), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1174), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1817), 19, + STATE(1201), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -57077,78 +57071,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(274), 1, - anon_sym_POUND, - ACTIONS(278), 1, + ACTIONS(776), 1, aux_sym_num_lit_token1, - ACTIONS(280), 1, + ACTIONS(778), 1, anon_sym_COLON, - ACTIONS(282), 1, + ACTIONS(780), 1, anon_sym_COLON_COLON, - ACTIONS(284), 1, + ACTIONS(782), 1, anon_sym_DQUOTE, - ACTIONS(286), 1, + ACTIONS(788), 1, aux_sym_sym_lit_token1, - ACTIONS(288), 1, + ACTIONS(790), 1, anon_sym_LPAREN, - ACTIONS(292), 1, + ACTIONS(796), 1, anon_sym_POUND_QMARK, - ACTIONS(294), 1, + ACTIONS(798), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(296), 1, + ACTIONS(800), 1, anon_sym_POUND_SQUOTE, - ACTIONS(298), 1, + ACTIONS(802), 1, anon_sym_SQUOTE, - ACTIONS(300), 1, + ACTIONS(804), 1, anon_sym_BQUOTE, - ACTIONS(302), 1, + ACTIONS(806), 1, anon_sym_COMMA_AT, - ACTIONS(304), 1, + ACTIONS(808), 1, anon_sym_COMMA, - ACTIONS(869), 1, + ACTIONS(810), 1, anon_sym_cl, - ACTIONS(2948), 1, + ACTIONS(1562), 1, + anon_sym_POUND, + ACTIONS(3012), 1, sym_self_referential_reader_macro, - STATE(1794), 1, - sym__bare_set_lit, - STATE(2118), 1, + STATE(1745), 1, sym_sym_lit, - STATE(2158), 1, + STATE(1747), 1, + sym__bare_set_lit, + STATE(2171), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(290), 2, + ACTIONS(794), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(312), 2, + ACTIONS(812), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(316), 2, + ACTIONS(816), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(318), 2, + ACTIONS(818), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(3008), 2, sym__ws, sym_comment, - ACTIONS(2946), 3, + ACTIONS(3010), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(433), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1746), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2172), 19, + STATE(1798), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -57177,78 +57171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(927), 1, + ACTIONS(776), 1, aux_sym_num_lit_token1, - ACTIONS(929), 1, + ACTIONS(778), 1, anon_sym_COLON, - ACTIONS(931), 1, + ACTIONS(780), 1, anon_sym_COLON_COLON, - ACTIONS(933), 1, + ACTIONS(782), 1, anon_sym_DQUOTE, - ACTIONS(939), 1, + ACTIONS(788), 1, aux_sym_sym_lit_token1, - ACTIONS(941), 1, + ACTIONS(790), 1, anon_sym_LPAREN, - ACTIONS(947), 1, + ACTIONS(796), 1, anon_sym_POUND_QMARK, - ACTIONS(949), 1, + ACTIONS(798), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(951), 1, + ACTIONS(800), 1, anon_sym_POUND_SQUOTE, - ACTIONS(953), 1, + ACTIONS(802), 1, anon_sym_SQUOTE, - ACTIONS(955), 1, + ACTIONS(804), 1, anon_sym_BQUOTE, - ACTIONS(957), 1, + ACTIONS(806), 1, anon_sym_COMMA_AT, - ACTIONS(959), 1, + ACTIONS(808), 1, anon_sym_COMMA, - ACTIONS(961), 1, + ACTIONS(810), 1, anon_sym_cl, - ACTIONS(1740), 1, + ACTIONS(1562), 1, anon_sym_POUND, - ACTIONS(2954), 1, + ACTIONS(3018), 1, sym_self_referential_reader_macro, - STATE(1687), 1, - sym__bare_set_lit, - STATE(1689), 1, + STATE(1745), 1, sym_sym_lit, - STATE(2148), 1, + STATE(1747), 1, + sym__bare_set_lit, + STATE(2171), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(945), 2, + ACTIONS(794), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(963), 2, + ACTIONS(812), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(967), 2, + ACTIONS(816), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(969), 2, + ACTIONS(818), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2950), 2, + ACTIONS(3014), 2, sym__ws, sym_comment, - ACTIONS(2952), 3, + ACTIONS(3016), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(487), 3, + STATE(435), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(1746), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1584), 19, + STATE(1784), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -57277,78 +57271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(927), 1, + ACTIONS(776), 1, aux_sym_num_lit_token1, - ACTIONS(929), 1, + ACTIONS(778), 1, anon_sym_COLON, - ACTIONS(931), 1, + ACTIONS(780), 1, anon_sym_COLON_COLON, - ACTIONS(933), 1, + ACTIONS(782), 1, anon_sym_DQUOTE, - ACTIONS(939), 1, + ACTIONS(788), 1, aux_sym_sym_lit_token1, - ACTIONS(941), 1, + ACTIONS(790), 1, anon_sym_LPAREN, - ACTIONS(947), 1, + ACTIONS(796), 1, anon_sym_POUND_QMARK, - ACTIONS(949), 1, + ACTIONS(798), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(951), 1, + ACTIONS(800), 1, anon_sym_POUND_SQUOTE, - ACTIONS(953), 1, + ACTIONS(802), 1, anon_sym_SQUOTE, - ACTIONS(955), 1, + ACTIONS(804), 1, anon_sym_BQUOTE, - ACTIONS(957), 1, + ACTIONS(806), 1, anon_sym_COMMA_AT, - ACTIONS(959), 1, + ACTIONS(808), 1, anon_sym_COMMA, - ACTIONS(961), 1, + ACTIONS(810), 1, anon_sym_cl, - ACTIONS(1740), 1, + ACTIONS(1562), 1, anon_sym_POUND, - ACTIONS(2958), 1, + ACTIONS(3024), 1, sym_self_referential_reader_macro, - STATE(1687), 1, - sym__bare_set_lit, - STATE(1689), 1, + STATE(1745), 1, sym_sym_lit, - STATE(2148), 1, + STATE(1747), 1, + sym__bare_set_lit, + STATE(2171), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(945), 2, + ACTIONS(794), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(963), 2, + ACTIONS(812), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(967), 2, + ACTIONS(816), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(969), 2, + ACTIONS(818), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(3020), 2, sym__ws, sym_comment, - ACTIONS(2956), 3, + ACTIONS(3022), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(442), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(1746), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1583), 19, + STATE(1782), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -57377,78 +57371,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(274), 1, - anon_sym_POUND, - ACTIONS(278), 1, + ACTIONS(776), 1, aux_sym_num_lit_token1, - ACTIONS(280), 1, + ACTIONS(778), 1, anon_sym_COLON, - ACTIONS(282), 1, + ACTIONS(780), 1, anon_sym_COLON_COLON, - ACTIONS(284), 1, + ACTIONS(782), 1, anon_sym_DQUOTE, - ACTIONS(286), 1, + ACTIONS(788), 1, aux_sym_sym_lit_token1, - ACTIONS(288), 1, + ACTIONS(790), 1, anon_sym_LPAREN, - ACTIONS(292), 1, + ACTIONS(796), 1, anon_sym_POUND_QMARK, - ACTIONS(294), 1, + ACTIONS(798), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(296), 1, + ACTIONS(800), 1, anon_sym_POUND_SQUOTE, - ACTIONS(298), 1, + ACTIONS(802), 1, anon_sym_SQUOTE, - ACTIONS(300), 1, + ACTIONS(804), 1, anon_sym_BQUOTE, - ACTIONS(302), 1, + ACTIONS(806), 1, anon_sym_COMMA_AT, - ACTIONS(304), 1, + ACTIONS(808), 1, anon_sym_COMMA, - ACTIONS(869), 1, + ACTIONS(810), 1, anon_sym_cl, - ACTIONS(1810), 1, + ACTIONS(1562), 1, + anon_sym_POUND, + ACTIONS(3030), 1, sym_self_referential_reader_macro, - STATE(1794), 1, - sym__bare_set_lit, - STATE(2118), 1, + STATE(1745), 1, sym_sym_lit, - STATE(2158), 1, + STATE(1747), 1, + sym__bare_set_lit, + STATE(2171), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(290), 2, + ACTIONS(794), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(312), 2, + ACTIONS(812), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(316), 2, + ACTIONS(816), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(318), 2, + ACTIONS(818), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(3026), 2, sym__ws, sym_comment, - ACTIONS(1808), 3, + ACTIONS(3028), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(444), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1746), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1746), 19, + STATE(1780), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -57477,78 +57471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(927), 1, + ACTIONS(776), 1, aux_sym_num_lit_token1, - ACTIONS(929), 1, + ACTIONS(778), 1, anon_sym_COLON, - ACTIONS(931), 1, + ACTIONS(780), 1, anon_sym_COLON_COLON, - ACTIONS(933), 1, + ACTIONS(782), 1, anon_sym_DQUOTE, - ACTIONS(939), 1, + ACTIONS(788), 1, aux_sym_sym_lit_token1, - ACTIONS(941), 1, + ACTIONS(790), 1, anon_sym_LPAREN, - ACTIONS(947), 1, + ACTIONS(796), 1, anon_sym_POUND_QMARK, - ACTIONS(949), 1, + ACTIONS(798), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(951), 1, + ACTIONS(800), 1, anon_sym_POUND_SQUOTE, - ACTIONS(953), 1, + ACTIONS(802), 1, anon_sym_SQUOTE, - ACTIONS(955), 1, + ACTIONS(804), 1, anon_sym_BQUOTE, - ACTIONS(957), 1, + ACTIONS(806), 1, anon_sym_COMMA_AT, - ACTIONS(959), 1, + ACTIONS(808), 1, anon_sym_COMMA, - ACTIONS(961), 1, + ACTIONS(810), 1, anon_sym_cl, - ACTIONS(1740), 1, + ACTIONS(1562), 1, anon_sym_POUND, - ACTIONS(2964), 1, + ACTIONS(3036), 1, sym_self_referential_reader_macro, - STATE(1687), 1, - sym__bare_set_lit, - STATE(1689), 1, + STATE(1745), 1, sym_sym_lit, - STATE(2148), 1, + STATE(1747), 1, + sym__bare_set_lit, + STATE(2171), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(945), 2, + ACTIONS(794), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(963), 2, + ACTIONS(812), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(967), 2, + ACTIONS(816), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(969), 2, + ACTIONS(818), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2960), 2, + ACTIONS(3032), 2, sym__ws, sym_comment, - ACTIONS(2962), 3, + ACTIONS(3034), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(507), 3, + STATE(460), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(1746), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1582), 19, + STATE(1778), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -57571,84 +57565,84 @@ static const uint16_t ts_small_parse_table[] = { [48735] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(472), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(492), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(494), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(496), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(498), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(500), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(502), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(504), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(506), 1, anon_sym_cl, - ACTIONS(2968), 1, + ACTIONS(1792), 1, sym_self_referential_reader_macro, - STATE(1506), 1, - sym_sym_lit, - STATE(1511), 1, - sym__bare_set_lit, - STATE(2137), 1, + ACTIONS(1794), 1, + anon_sym_POUND, + STATE(2168), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2454), 1, + sym_sym_lit, + ACTIONS(490), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(512), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2966), 3, + ACTIONS(1790), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(197), 19, + STATE(2282), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2285), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -57677,78 +57671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(61), 1, - anon_sym_POUND, - ACTIONS(65), 1, + ACTIONS(664), 1, aux_sym_num_lit_token1, - ACTIONS(67), 1, + ACTIONS(666), 1, anon_sym_COLON, - ACTIONS(69), 1, + ACTIONS(668), 1, anon_sym_COLON_COLON, - ACTIONS(71), 1, + ACTIONS(670), 1, anon_sym_DQUOTE, - ACTIONS(73), 1, + ACTIONS(676), 1, aux_sym_sym_lit_token1, - ACTIONS(77), 1, + ACTIONS(678), 1, + anon_sym_LPAREN, + ACTIONS(684), 1, anon_sym_POUND_QMARK, - ACTIONS(79), 1, + ACTIONS(686), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(81), 1, + ACTIONS(688), 1, anon_sym_POUND_SQUOTE, - ACTIONS(83), 1, + ACTIONS(690), 1, anon_sym_SQUOTE, - ACTIONS(85), 1, + ACTIONS(692), 1, anon_sym_BQUOTE, - ACTIONS(87), 1, + ACTIONS(694), 1, anon_sym_COMMA_AT, - ACTIONS(89), 1, + ACTIONS(696), 1, anon_sym_COMMA, - ACTIONS(658), 1, - anon_sym_LPAREN, - ACTIONS(662), 1, + ACTIONS(698), 1, anon_sym_cl, - ACTIONS(2972), 1, + ACTIONS(1444), 1, + anon_sym_POUND, + ACTIONS(3042), 1, sym_self_referential_reader_macro, - STATE(822), 1, + STATE(1167), 1, sym_sym_lit, - STATE(824), 1, + STATE(1175), 1, sym__bare_set_lit, - STATE(2149), 1, + STATE(2160), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(75), 2, + ACTIONS(682), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(93), 2, + ACTIONS(700), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(97), 2, + ACTIONS(704), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(99), 2, + ACTIONS(706), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(3038), 2, sym__ws, sym_comment, - ACTIONS(2970), 3, + ACTIONS(3040), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(823), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(565), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(891), 19, + STATE(1174), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1282), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -57777,78 +57771,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(927), 1, + ACTIONS(472), 1, aux_sym_num_lit_token1, - ACTIONS(929), 1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(931), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(933), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(939), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(941), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(947), 1, + ACTIONS(492), 1, anon_sym_POUND_QMARK, - ACTIONS(949), 1, + ACTIONS(494), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(951), 1, + ACTIONS(496), 1, anon_sym_POUND_SQUOTE, - ACTIONS(953), 1, + ACTIONS(498), 1, anon_sym_SQUOTE, - ACTIONS(955), 1, + ACTIONS(500), 1, anon_sym_BQUOTE, - ACTIONS(957), 1, + ACTIONS(502), 1, anon_sym_COMMA_AT, - ACTIONS(959), 1, + ACTIONS(504), 1, anon_sym_COMMA, - ACTIONS(961), 1, + ACTIONS(506), 1, anon_sym_cl, - ACTIONS(1740), 1, - anon_sym_POUND, - ACTIONS(2976), 1, + ACTIONS(1788), 1, sym_self_referential_reader_macro, - STATE(1687), 1, + ACTIONS(1794), 1, + anon_sym_POUND, + STATE(2168), 1, + aux_sym_list_lit_repeat1, + STATE(2221), 1, + sym_old_meta_lit, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, + sym__metadata_lit, + STATE(2337), 1, sym__bare_set_lit, - STATE(1689), 1, + STATE(2454), 1, sym_sym_lit, - STATE(2148), 1, + ACTIONS(490), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(508), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(512), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(514), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3044), 2, + sym__ws, + sym_comment, + ACTIONS(1786), 3, + anon_sym_DOT, + sym_nil_lit, + sym_fancy_literal, + STATE(562), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(2282), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2283), 19, + sym__form, + sym_num_lit, + sym_kwd_lit, + sym_str_lit, + sym_char_lit, + sym_list_lit, + sym_vec_lit, + sym_set_lit, + sym_read_cond_lit, + sym_splicing_read_cond_lit, + sym_var_quoting_lit, + sym_quoting_lit, + sym_syn_quoting_lit, + sym_unquote_splicing_lit, + sym_unquoting_lit, + sym_path_lit, + sym_package_lit, + sym_include_reader_macro, + sym_complex_num_lit, + [49140] = 35, + ACTIONS(9), 1, + anon_sym_POUND_, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(472), 1, + aux_sym_num_lit_token1, + ACTIONS(474), 1, + anon_sym_COLON, + ACTIONS(476), 1, + anon_sym_COLON_COLON, + ACTIONS(478), 1, + anon_sym_DQUOTE, + ACTIONS(484), 1, + aux_sym_sym_lit_token1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(492), 1, + anon_sym_POUND_QMARK, + ACTIONS(494), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(496), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(498), 1, + anon_sym_SQUOTE, + ACTIONS(500), 1, + anon_sym_BQUOTE, + ACTIONS(502), 1, + anon_sym_COMMA_AT, + ACTIONS(504), 1, + anon_sym_COMMA, + ACTIONS(506), 1, + anon_sym_cl, + ACTIONS(1764), 1, + sym_self_referential_reader_macro, + ACTIONS(1794), 1, + anon_sym_POUND, + STATE(2168), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(945), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2454), 1, + sym_sym_lit, + ACTIONS(490), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(963), 2, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(967), 2, + ACTIONS(512), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(969), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2974), 3, + ACTIONS(1762), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1581), 19, + STATE(2272), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -57868,7 +57962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [49140] = 35, + [49275] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -57907,19 +58001,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(2980), 1, + ACTIONS(3048), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -57933,22 +58027,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2978), 3, + ACTIONS(3046), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(505), 19, + STATE(204), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -57968,7 +58062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [49275] = 35, + [49410] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -57977,78 +58071,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(274), 1, + ACTIONS(190), 1, anon_sym_POUND, - ACTIONS(278), 1, + ACTIONS(194), 1, aux_sym_num_lit_token1, - ACTIONS(280), 1, + ACTIONS(196), 1, anon_sym_COLON, - ACTIONS(282), 1, + ACTIONS(198), 1, anon_sym_COLON_COLON, - ACTIONS(284), 1, + ACTIONS(200), 1, anon_sym_DQUOTE, - ACTIONS(286), 1, + ACTIONS(202), 1, aux_sym_sym_lit_token1, - ACTIONS(288), 1, - anon_sym_LPAREN, - ACTIONS(292), 1, + ACTIONS(217), 1, anon_sym_POUND_QMARK, - ACTIONS(294), 1, + ACTIONS(219), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(296), 1, + ACTIONS(221), 1, anon_sym_POUND_SQUOTE, - ACTIONS(298), 1, + ACTIONS(223), 1, anon_sym_SQUOTE, - ACTIONS(300), 1, + ACTIONS(225), 1, anon_sym_BQUOTE, - ACTIONS(302), 1, + ACTIONS(227), 1, anon_sym_COMMA_AT, - ACTIONS(304), 1, + ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(869), 1, + ACTIONS(526), 1, + anon_sym_LPAREN, + ACTIONS(530), 1, anon_sym_cl, - ACTIONS(1800), 1, + ACTIONS(3052), 1, sym_self_referential_reader_macro, - STATE(1794), 1, + STATE(1072), 1, sym__bare_set_lit, - STATE(2118), 1, + STATE(1074), 1, sym_sym_lit, - STATE(2158), 1, + STATE(2177), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(290), 2, + ACTIONS(215), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(312), 2, + ACTIONS(236), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(316), 2, + ACTIONS(240), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(318), 2, + ACTIONS(242), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1798), 3, + ACTIONS(3050), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1073), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1745), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1144), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -58068,7 +58162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [49410] = 35, + [49545] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -58077,78 +58171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(274), 1, - anon_sym_POUND, - ACTIONS(278), 1, + ACTIONS(472), 1, aux_sym_num_lit_token1, - ACTIONS(280), 1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(282), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(284), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(286), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(288), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(292), 1, + ACTIONS(492), 1, anon_sym_POUND_QMARK, - ACTIONS(294), 1, + ACTIONS(494), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(296), 1, + ACTIONS(496), 1, anon_sym_POUND_SQUOTE, - ACTIONS(298), 1, + ACTIONS(498), 1, anon_sym_SQUOTE, - ACTIONS(300), 1, + ACTIONS(500), 1, anon_sym_BQUOTE, - ACTIONS(302), 1, + ACTIONS(502), 1, anon_sym_COMMA_AT, - ACTIONS(304), 1, + ACTIONS(504), 1, anon_sym_COMMA, - ACTIONS(869), 1, + ACTIONS(506), 1, anon_sym_cl, - ACTIONS(1786), 1, + ACTIONS(1794), 1, + anon_sym_POUND, + ACTIONS(2162), 1, sym_self_referential_reader_macro, - STATE(1794), 1, - sym__bare_set_lit, - STATE(2118), 1, - sym_sym_lit, - STATE(2158), 1, + STATE(2168), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(290), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2454), 1, + sym_sym_lit, + ACTIONS(490), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(312), 2, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(316), 2, + ACTIONS(512), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(318), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(3054), 2, sym__ws, sym_comment, - ACTIONS(1784), 3, + ACTIONS(2160), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1738), 19, + STATE(2329), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -58168,7 +58262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [49545] = 35, + [49680] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -58177,78 +58271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(274), 1, + ACTIONS(190), 1, anon_sym_POUND, - ACTIONS(278), 1, + ACTIONS(194), 1, aux_sym_num_lit_token1, - ACTIONS(280), 1, + ACTIONS(196), 1, anon_sym_COLON, - ACTIONS(282), 1, + ACTIONS(198), 1, anon_sym_COLON_COLON, - ACTIONS(284), 1, + ACTIONS(200), 1, anon_sym_DQUOTE, - ACTIONS(286), 1, + ACTIONS(202), 1, aux_sym_sym_lit_token1, - ACTIONS(288), 1, - anon_sym_LPAREN, - ACTIONS(292), 1, + ACTIONS(217), 1, anon_sym_POUND_QMARK, - ACTIONS(294), 1, + ACTIONS(219), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(296), 1, + ACTIONS(221), 1, anon_sym_POUND_SQUOTE, - ACTIONS(298), 1, + ACTIONS(223), 1, anon_sym_SQUOTE, - ACTIONS(300), 1, + ACTIONS(225), 1, anon_sym_BQUOTE, - ACTIONS(302), 1, + ACTIONS(227), 1, anon_sym_COMMA_AT, - ACTIONS(304), 1, + ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(869), 1, + ACTIONS(526), 1, + anon_sym_LPAREN, + ACTIONS(530), 1, anon_sym_cl, - ACTIONS(1768), 1, + ACTIONS(3058), 1, sym_self_referential_reader_macro, - STATE(1794), 1, + STATE(1072), 1, sym__bare_set_lit, - STATE(2118), 1, + STATE(1074), 1, sym_sym_lit, - STATE(2158), 1, + STATE(2177), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(290), 2, + ACTIONS(215), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(312), 2, + ACTIONS(236), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(316), 2, + ACTIONS(240), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(318), 2, + ACTIONS(242), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1766), 3, + ACTIONS(3056), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1073), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1737), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1134), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -58268,87 +58362,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [49680] = 35, + [49815] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(274), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(278), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(280), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(282), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(284), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(286), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(288), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(292), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(294), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(296), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(298), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(300), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(302), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(304), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(869), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1716), 1, + ACTIONS(3062), 1, sym_self_referential_reader_macro, - STATE(1794), 1, - sym__bare_set_lit, - STATE(2118), 1, + STATE(1450), 1, sym_sym_lit, - STATE(2158), 1, + STATE(1452), 1, + sym__bare_set_lit, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(290), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(312), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(316), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(318), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1714), 3, + ACTIONS(3060), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1736), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(197), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -58368,7 +58462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [49815] = 35, + [49950] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -58377,78 +58471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(274), 1, - anon_sym_POUND, - ACTIONS(278), 1, + ACTIONS(472), 1, aux_sym_num_lit_token1, - ACTIONS(280), 1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(282), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(284), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(286), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(288), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(292), 1, + ACTIONS(492), 1, anon_sym_POUND_QMARK, - ACTIONS(294), 1, + ACTIONS(494), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(296), 1, + ACTIONS(496), 1, anon_sym_POUND_SQUOTE, - ACTIONS(298), 1, + ACTIONS(498), 1, anon_sym_SQUOTE, - ACTIONS(300), 1, + ACTIONS(500), 1, anon_sym_BQUOTE, - ACTIONS(302), 1, + ACTIONS(502), 1, anon_sym_COMMA_AT, - ACTIONS(304), 1, + ACTIONS(504), 1, anon_sym_COMMA, - ACTIONS(869), 1, + ACTIONS(506), 1, anon_sym_cl, - ACTIONS(1706), 1, + ACTIONS(1746), 1, sym_self_referential_reader_macro, - STATE(1794), 1, - sym__bare_set_lit, - STATE(2118), 1, - sym_sym_lit, - STATE(2158), 1, + ACTIONS(1794), 1, + anon_sym_POUND, + STATE(2168), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(290), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2454), 1, + sym_sym_lit, + ACTIONS(490), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(312), 2, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(316), 2, + ACTIONS(512), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(318), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2982), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1704), 3, + ACTIONS(1744), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(539), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1725), 19, + STATE(2271), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -58468,87 +58562,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [49950] = 35, + [50085] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(274), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(278), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(280), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(282), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(284), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(286), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(288), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(292), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(294), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(296), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(298), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(300), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(302), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(304), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(869), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1700), 1, + ACTIONS(2548), 1, sym_self_referential_reader_macro, - STATE(1794), 1, - sym__bare_set_lit, - STATE(2118), 1, + STATE(1450), 1, sym_sym_lit, - STATE(2158), 1, + STATE(1452), 1, + sym__bare_set_lit, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(290), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(312), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(316), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(318), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2984), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1698), 3, + ACTIONS(2546), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(543), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1694), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1487), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -58568,7 +58662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [50085] = 35, + [50220] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -58577,78 +58671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(274), 1, + ACTIONS(61), 1, anon_sym_POUND, - ACTIONS(278), 1, + ACTIONS(65), 1, aux_sym_num_lit_token1, - ACTIONS(280), 1, + ACTIONS(67), 1, anon_sym_COLON, - ACTIONS(282), 1, + ACTIONS(69), 1, anon_sym_COLON_COLON, - ACTIONS(284), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(286), 1, + ACTIONS(73), 1, aux_sym_sym_lit_token1, - ACTIONS(288), 1, - anon_sym_LPAREN, - ACTIONS(292), 1, + ACTIONS(77), 1, anon_sym_POUND_QMARK, - ACTIONS(294), 1, + ACTIONS(79), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(296), 1, + ACTIONS(81), 1, anon_sym_POUND_SQUOTE, - ACTIONS(298), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(300), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(302), 1, + ACTIONS(87), 1, anon_sym_COMMA_AT, - ACTIONS(304), 1, + ACTIONS(89), 1, anon_sym_COMMA, - ACTIONS(869), 1, + ACTIONS(830), 1, + anon_sym_LPAREN, + ACTIONS(834), 1, anon_sym_cl, - ACTIONS(1686), 1, + ACTIONS(3068), 1, sym_self_referential_reader_macro, - STATE(1794), 1, + STATE(927), 1, sym__bare_set_lit, - STATE(2118), 1, + STATE(929), 1, sym_sym_lit, - STATE(2158), 1, + STATE(2169), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(290), 2, + ACTIONS(75), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(312), 2, + ACTIONS(93), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(316), 2, + ACTIONS(97), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(318), 2, + ACTIONS(99), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2986), 2, + ACTIONS(3064), 2, sym__ws, sym_comment, - ACTIONS(1684), 3, + ACTIONS(3066), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(544), 3, + STATE(653), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(928), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1690), 19, + STATE(872), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -58668,7 +58762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [50220] = 35, + [50355] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -58677,78 +58771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(274), 1, - anon_sym_POUND, - ACTIONS(278), 1, + ACTIONS(472), 1, aux_sym_num_lit_token1, - ACTIONS(280), 1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(282), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(284), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(286), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(288), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(292), 1, + ACTIONS(492), 1, anon_sym_POUND_QMARK, - ACTIONS(294), 1, + ACTIONS(494), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(296), 1, + ACTIONS(496), 1, anon_sym_POUND_SQUOTE, - ACTIONS(298), 1, + ACTIONS(498), 1, anon_sym_SQUOTE, - ACTIONS(300), 1, + ACTIONS(500), 1, anon_sym_BQUOTE, - ACTIONS(302), 1, + ACTIONS(502), 1, anon_sym_COMMA_AT, - ACTIONS(304), 1, + ACTIONS(504), 1, anon_sym_COMMA, - ACTIONS(869), 1, + ACTIONS(506), 1, anon_sym_cl, - ACTIONS(1680), 1, + ACTIONS(1728), 1, sym_self_referential_reader_macro, - STATE(1794), 1, - sym__bare_set_lit, - STATE(2118), 1, - sym_sym_lit, - STATE(2158), 1, + ACTIONS(1794), 1, + anon_sym_POUND, + STATE(2168), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(290), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2454), 1, + sym_sym_lit, + ACTIONS(490), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(312), 2, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(316), 2, + ACTIONS(512), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(318), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2988), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1678), 3, + ACTIONS(1726), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(547), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1699), 19, + STATE(2270), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -58768,7 +58862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [50355] = 35, + [50490] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -58777,78 +58871,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(274), 1, - anon_sym_POUND, - ACTIONS(278), 1, + ACTIONS(472), 1, aux_sym_num_lit_token1, - ACTIONS(280), 1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(282), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(284), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(286), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(288), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(292), 1, + ACTIONS(492), 1, anon_sym_POUND_QMARK, - ACTIONS(294), 1, + ACTIONS(494), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(296), 1, + ACTIONS(496), 1, anon_sym_POUND_SQUOTE, - ACTIONS(298), 1, + ACTIONS(498), 1, anon_sym_SQUOTE, - ACTIONS(300), 1, + ACTIONS(500), 1, anon_sym_BQUOTE, - ACTIONS(302), 1, + ACTIONS(502), 1, anon_sym_COMMA_AT, - ACTIONS(304), 1, + ACTIONS(504), 1, anon_sym_COMMA, - ACTIONS(869), 1, + ACTIONS(506), 1, anon_sym_cl, - ACTIONS(1614), 1, + ACTIONS(1686), 1, sym_self_referential_reader_macro, - STATE(1794), 1, - sym__bare_set_lit, - STATE(2118), 1, - sym_sym_lit, - STATE(2158), 1, + ACTIONS(1794), 1, + anon_sym_POUND, + STATE(2168), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(290), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2454), 1, + sym_sym_lit, + ACTIONS(490), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(312), 2, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(316), 2, + ACTIONS(512), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(318), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(3070), 2, sym__ws, sym_comment, - ACTIONS(1612), 3, + ACTIONS(1684), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(563), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1700), 19, + STATE(2269), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -58868,7 +58962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [50490] = 35, + [50625] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -58907,19 +59001,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(2992), 1, + ACTIONS(3076), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -58933,22 +59027,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(3072), 2, sym__ws, sym_comment, - ACTIONS(2990), 3, + ACTIONS(3074), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(554), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(509), 19, + STATE(1451), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(519), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -58968,7 +59062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [50625] = 35, + [50760] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -58977,78 +59071,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(274), 1, - anon_sym_POUND, - ACTIONS(278), 1, + ACTIONS(472), 1, aux_sym_num_lit_token1, - ACTIONS(280), 1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(282), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(284), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(286), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(288), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(292), 1, + ACTIONS(492), 1, anon_sym_POUND_QMARK, - ACTIONS(294), 1, + ACTIONS(494), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(296), 1, + ACTIONS(496), 1, anon_sym_POUND_SQUOTE, - ACTIONS(298), 1, + ACTIONS(498), 1, anon_sym_SQUOTE, - ACTIONS(300), 1, + ACTIONS(500), 1, anon_sym_BQUOTE, - ACTIONS(302), 1, + ACTIONS(502), 1, anon_sym_COMMA_AT, - ACTIONS(304), 1, + ACTIONS(504), 1, anon_sym_COMMA, - ACTIONS(869), 1, + ACTIONS(506), 1, anon_sym_cl, - ACTIONS(1606), 1, + ACTIONS(1680), 1, sym_self_referential_reader_macro, - STATE(1794), 1, - sym__bare_set_lit, - STATE(2118), 1, - sym_sym_lit, - STATE(2158), 1, + ACTIONS(1794), 1, + anon_sym_POUND, + STATE(2168), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(290), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2454), 1, + sym_sym_lit, + ACTIONS(490), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(312), 2, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(316), 2, + ACTIONS(512), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(318), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2994), 2, + ACTIONS(3078), 2, sym__ws, sym_comment, - ACTIONS(1604), 3, + ACTIONS(1678), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(550), 3, + STATE(600), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1710), 19, + STATE(2268), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -59068,87 +59162,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [50760] = 35, + [50895] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(604), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(606), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(608), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(610), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(612), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(618), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(620), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(622), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(624), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(626), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(628), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(630), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(632), 1, anon_sym_cl, - ACTIONS(3000), 1, + ACTIONS(1708), 1, sym_self_referential_reader_macro, - STATE(1506), 1, - sym_sym_lit, - STATE(1511), 1, - sym__bare_set_lit, - STATE(2137), 1, + ACTIONS(3080), 1, + anon_sym_POUND, + STATE(2151), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2380), 1, + sym_sym_lit, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2996), 2, + ACTIONS(616), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(634), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2998), 3, + ACTIONS(1706), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(527), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(218), 19, + STATE(2280), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -59168,7 +59262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [50895] = 35, + [51030] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -59177,78 +59271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(274), 1, - anon_sym_POUND, - ACTIONS(278), 1, + ACTIONS(664), 1, aux_sym_num_lit_token1, - ACTIONS(280), 1, + ACTIONS(666), 1, anon_sym_COLON, - ACTIONS(282), 1, + ACTIONS(668), 1, anon_sym_COLON_COLON, - ACTIONS(284), 1, + ACTIONS(670), 1, anon_sym_DQUOTE, - ACTIONS(286), 1, + ACTIONS(676), 1, aux_sym_sym_lit_token1, - ACTIONS(288), 1, + ACTIONS(678), 1, anon_sym_LPAREN, - ACTIONS(292), 1, + ACTIONS(684), 1, anon_sym_POUND_QMARK, - ACTIONS(294), 1, + ACTIONS(686), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(296), 1, + ACTIONS(688), 1, anon_sym_POUND_SQUOTE, - ACTIONS(298), 1, + ACTIONS(690), 1, anon_sym_SQUOTE, - ACTIONS(300), 1, + ACTIONS(692), 1, anon_sym_BQUOTE, - ACTIONS(302), 1, + ACTIONS(694), 1, anon_sym_COMMA_AT, - ACTIONS(304), 1, + ACTIONS(696), 1, anon_sym_COMMA, - ACTIONS(869), 1, + ACTIONS(698), 1, anon_sym_cl, - ACTIONS(1574), 1, + ACTIONS(1444), 1, + anon_sym_POUND, + ACTIONS(3084), 1, sym_self_referential_reader_macro, - STATE(1794), 1, - sym__bare_set_lit, - STATE(2118), 1, + STATE(1167), 1, sym_sym_lit, - STATE(2158), 1, + STATE(1175), 1, + sym__bare_set_lit, + STATE(2160), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(290), 2, + ACTIONS(682), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(312), 2, + ACTIONS(700), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(316), 2, + ACTIONS(704), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(318), 2, + ACTIONS(706), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1572), 3, + ACTIONS(3082), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1174), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1757), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1185), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -59268,7 +59362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [51030] = 35, + [51165] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -59277,78 +59371,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(274), 1, + ACTIONS(190), 1, anon_sym_POUND, - ACTIONS(278), 1, + ACTIONS(194), 1, aux_sym_num_lit_token1, - ACTIONS(280), 1, + ACTIONS(196), 1, anon_sym_COLON, - ACTIONS(282), 1, + ACTIONS(198), 1, anon_sym_COLON_COLON, - ACTIONS(284), 1, + ACTIONS(200), 1, anon_sym_DQUOTE, - ACTIONS(286), 1, + ACTIONS(202), 1, aux_sym_sym_lit_token1, - ACTIONS(288), 1, - anon_sym_LPAREN, - ACTIONS(292), 1, + ACTIONS(217), 1, anon_sym_POUND_QMARK, - ACTIONS(294), 1, + ACTIONS(219), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(296), 1, + ACTIONS(221), 1, anon_sym_POUND_SQUOTE, - ACTIONS(298), 1, + ACTIONS(223), 1, anon_sym_SQUOTE, - ACTIONS(300), 1, + ACTIONS(225), 1, anon_sym_BQUOTE, - ACTIONS(302), 1, + ACTIONS(227), 1, anon_sym_COMMA_AT, - ACTIONS(304), 1, + ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(869), 1, + ACTIONS(526), 1, + anon_sym_LPAREN, + ACTIONS(530), 1, anon_sym_cl, - ACTIONS(1560), 1, + ACTIONS(3090), 1, sym_self_referential_reader_macro, - STATE(1794), 1, + STATE(1072), 1, sym__bare_set_lit, - STATE(2118), 1, + STATE(1074), 1, sym_sym_lit, - STATE(2158), 1, + STATE(2177), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(290), 2, + ACTIONS(215), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(312), 2, + ACTIONS(236), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(316), 2, + ACTIONS(240), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(318), 2, + ACTIONS(242), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(3086), 2, sym__ws, sym_comment, - ACTIONS(1558), 3, + ACTIONS(3088), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(532), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1073), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1758), 19, + STATE(968), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -59368,7 +59462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [51165] = 35, + [51300] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -59377,78 +59471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(274), 1, - anon_sym_POUND, - ACTIONS(278), 1, + ACTIONS(664), 1, aux_sym_num_lit_token1, - ACTIONS(280), 1, + ACTIONS(666), 1, anon_sym_COLON, - ACTIONS(282), 1, + ACTIONS(668), 1, anon_sym_COLON_COLON, - ACTIONS(284), 1, + ACTIONS(670), 1, anon_sym_DQUOTE, - ACTIONS(286), 1, + ACTIONS(676), 1, aux_sym_sym_lit_token1, - ACTIONS(288), 1, + ACTIONS(678), 1, anon_sym_LPAREN, - ACTIONS(292), 1, + ACTIONS(684), 1, anon_sym_POUND_QMARK, - ACTIONS(294), 1, + ACTIONS(686), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(296), 1, + ACTIONS(688), 1, anon_sym_POUND_SQUOTE, - ACTIONS(298), 1, + ACTIONS(690), 1, anon_sym_SQUOTE, - ACTIONS(300), 1, + ACTIONS(692), 1, anon_sym_BQUOTE, - ACTIONS(302), 1, + ACTIONS(694), 1, anon_sym_COMMA_AT, - ACTIONS(304), 1, + ACTIONS(696), 1, anon_sym_COMMA, - ACTIONS(869), 1, + ACTIONS(698), 1, anon_sym_cl, - ACTIONS(3006), 1, + ACTIONS(1444), 1, + anon_sym_POUND, + ACTIONS(3096), 1, sym_self_referential_reader_macro, - STATE(1794), 1, - sym__bare_set_lit, - STATE(2118), 1, + STATE(1167), 1, sym_sym_lit, - STATE(2158), 1, + STATE(1175), 1, + sym__bare_set_lit, + STATE(2160), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(290), 2, + ACTIONS(682), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(312), 2, + ACTIONS(700), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(316), 2, + ACTIONS(704), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(318), 2, + ACTIONS(706), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3002), 2, + ACTIONS(3092), 2, sym__ws, sym_comment, - ACTIONS(3004), 3, + ACTIONS(3094), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(522), 3, + STATE(577), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1174), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2174), 19, + STATE(1186), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -59468,7 +59562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [51300] = 35, + [51435] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -59477,78 +59571,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(190), 1, + anon_sym_POUND, + ACTIONS(194), 1, + aux_sym_num_lit_token1, + ACTIONS(196), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(198), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(200), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(202), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(217), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(219), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, - anon_sym_cl, - ACTIONS(783), 1, - aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(221), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(223), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(225), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(227), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(1436), 1, - anon_sym_POUND, - ACTIONS(2462), 1, + ACTIONS(526), 1, + anon_sym_LPAREN, + ACTIONS(530), 1, + anon_sym_cl, + ACTIONS(3100), 1, sym_self_referential_reader_macro, - STATE(1825), 1, - sym_sym_lit, - STATE(1887), 1, + STATE(1072), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(1074), 1, + sym_sym_lit, + STATE(2177), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(564), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(215), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(236), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(240), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3008), 2, + ACTIONS(242), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2460), 3, + ACTIONS(3098), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(247), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1073), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1837), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1042), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -59568,87 +59662,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [51435] = 35, + [51570] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(274), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(278), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(280), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(282), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(284), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(286), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(288), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(292), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(294), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(296), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(298), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(300), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(302), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(304), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(869), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1556), 1, + ACTIONS(3106), 1, sym_self_referential_reader_macro, - STATE(1794), 1, - sym__bare_set_lit, - STATE(2118), 1, + STATE(1450), 1, sym_sym_lit, - STATE(2158), 1, + STATE(1452), 1, + sym__bare_set_lit, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(290), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(312), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(316), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(318), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(3102), 2, sym__ws, sym_comment, - ACTIONS(1554), 3, + ACTIONS(3104), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(531), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1759), 19, + STATE(183), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -59668,87 +59762,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [51570] = 35, + [51705] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(274), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(278), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(280), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(282), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(284), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(286), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(288), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(292), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(294), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(296), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(298), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(300), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(302), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(304), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(869), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1552), 1, + ACTIONS(3112), 1, sym_self_referential_reader_macro, - STATE(1794), 1, - sym__bare_set_lit, - STATE(2118), 1, + STATE(1450), 1, sym_sym_lit, - STATE(2158), 1, + STATE(1452), 1, + sym__bare_set_lit, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(290), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(312), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(316), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(318), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3010), 2, + ACTIONS(3108), 2, sym__ws, sym_comment, - ACTIONS(1550), 3, + ACTIONS(3110), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(551), 3, + STATE(535), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1774), 19, + STATE(181), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -59768,7 +59862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [51705] = 35, + [51840] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -59777,78 +59871,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(274), 1, + ACTIONS(190), 1, anon_sym_POUND, - ACTIONS(278), 1, + ACTIONS(194), 1, aux_sym_num_lit_token1, - ACTIONS(280), 1, + ACTIONS(196), 1, anon_sym_COLON, - ACTIONS(282), 1, + ACTIONS(198), 1, anon_sym_COLON_COLON, - ACTIONS(284), 1, + ACTIONS(200), 1, anon_sym_DQUOTE, - ACTIONS(286), 1, + ACTIONS(202), 1, aux_sym_sym_lit_token1, - ACTIONS(288), 1, - anon_sym_LPAREN, - ACTIONS(292), 1, + ACTIONS(217), 1, anon_sym_POUND_QMARK, - ACTIONS(294), 1, + ACTIONS(219), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(296), 1, + ACTIONS(221), 1, anon_sym_POUND_SQUOTE, - ACTIONS(298), 1, + ACTIONS(223), 1, anon_sym_SQUOTE, - ACTIONS(300), 1, + ACTIONS(225), 1, anon_sym_BQUOTE, - ACTIONS(302), 1, + ACTIONS(227), 1, anon_sym_COMMA_AT, - ACTIONS(304), 1, + ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(869), 1, + ACTIONS(526), 1, + anon_sym_LPAREN, + ACTIONS(530), 1, anon_sym_cl, - ACTIONS(1546), 1, + ACTIONS(3116), 1, sym_self_referential_reader_macro, - STATE(1794), 1, + STATE(1072), 1, sym__bare_set_lit, - STATE(2118), 1, + STATE(1074), 1, sym_sym_lit, - STATE(2158), 1, + STATE(2177), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(290), 2, + ACTIONS(215), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(312), 2, + ACTIONS(236), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(316), 2, + ACTIONS(240), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(318), 2, + ACTIONS(242), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3012), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1544), 3, + ACTIONS(3114), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(553), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1073), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1796), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(974), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -59868,7 +59962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [51840] = 35, + [51975] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -59877,78 +59971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(274), 1, + ACTIONS(190), 1, anon_sym_POUND, - ACTIONS(278), 1, + ACTIONS(194), 1, aux_sym_num_lit_token1, - ACTIONS(280), 1, + ACTIONS(196), 1, anon_sym_COLON, - ACTIONS(282), 1, + ACTIONS(198), 1, anon_sym_COLON_COLON, - ACTIONS(284), 1, + ACTIONS(200), 1, anon_sym_DQUOTE, - ACTIONS(286), 1, + ACTIONS(202), 1, aux_sym_sym_lit_token1, - ACTIONS(288), 1, - anon_sym_LPAREN, - ACTIONS(292), 1, + ACTIONS(217), 1, anon_sym_POUND_QMARK, - ACTIONS(294), 1, + ACTIONS(219), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(296), 1, + ACTIONS(221), 1, anon_sym_POUND_SQUOTE, - ACTIONS(298), 1, + ACTIONS(223), 1, anon_sym_SQUOTE, - ACTIONS(300), 1, + ACTIONS(225), 1, anon_sym_BQUOTE, - ACTIONS(302), 1, + ACTIONS(227), 1, anon_sym_COMMA_AT, - ACTIONS(304), 1, + ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(869), 1, + ACTIONS(526), 1, + anon_sym_LPAREN, + ACTIONS(530), 1, anon_sym_cl, - ACTIONS(1510), 1, + ACTIONS(3122), 1, sym_self_referential_reader_macro, - STATE(1794), 1, + STATE(1072), 1, sym__bare_set_lit, - STATE(2118), 1, + STATE(1074), 1, sym_sym_lit, - STATE(2158), 1, + STATE(2177), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(290), 2, + ACTIONS(215), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(312), 2, + ACTIONS(236), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(316), 2, + ACTIONS(240), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(318), 2, + ACTIONS(242), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(3118), 2, sym__ws, sym_comment, - ACTIONS(1508), 3, + ACTIONS(3120), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(534), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1073), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1812), 19, + STATE(975), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -59968,87 +60062,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [51975] = 35, + [52110] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(274), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(278), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(280), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(282), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(284), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(286), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(288), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(292), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(294), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(296), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(298), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(300), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(302), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(304), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(869), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1506), 1, + ACTIONS(3126), 1, sym_self_referential_reader_macro, - STATE(1794), 1, - sym__bare_set_lit, - STATE(2118), 1, + STATE(1450), 1, sym_sym_lit, - STATE(2158), 1, + STATE(1452), 1, + sym__bare_set_lit, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(290), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(312), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(316), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(318), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1504), 3, + ACTIONS(3124), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1822), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(169), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -60068,7 +60162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [52110] = 35, + [52245] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -60077,78 +60171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(274), 1, + ACTIONS(190), 1, anon_sym_POUND, - ACTIONS(278), 1, + ACTIONS(194), 1, aux_sym_num_lit_token1, - ACTIONS(280), 1, + ACTIONS(196), 1, anon_sym_COLON, - ACTIONS(282), 1, + ACTIONS(198), 1, anon_sym_COLON_COLON, - ACTIONS(284), 1, + ACTIONS(200), 1, anon_sym_DQUOTE, - ACTIONS(286), 1, + ACTIONS(202), 1, aux_sym_sym_lit_token1, - ACTIONS(288), 1, - anon_sym_LPAREN, - ACTIONS(292), 1, + ACTIONS(217), 1, anon_sym_POUND_QMARK, - ACTIONS(294), 1, + ACTIONS(219), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(296), 1, + ACTIONS(221), 1, anon_sym_POUND_SQUOTE, - ACTIONS(298), 1, + ACTIONS(223), 1, anon_sym_SQUOTE, - ACTIONS(300), 1, + ACTIONS(225), 1, anon_sym_BQUOTE, - ACTIONS(302), 1, + ACTIONS(227), 1, anon_sym_COMMA_AT, - ACTIONS(304), 1, + ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(869), 1, + ACTIONS(526), 1, + anon_sym_LPAREN, + ACTIONS(530), 1, anon_sym_cl, - ACTIONS(1502), 1, + ACTIONS(3130), 1, sym_self_referential_reader_macro, - STATE(1794), 1, + STATE(1072), 1, sym__bare_set_lit, - STATE(2118), 1, + STATE(1074), 1, sym_sym_lit, - STATE(2158), 1, + STATE(2177), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(290), 2, + ACTIONS(215), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(312), 2, + ACTIONS(236), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(316), 2, + ACTIONS(240), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(318), 2, + ACTIONS(242), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3014), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1500), 3, + ACTIONS(3128), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(556), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1073), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1821), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(977), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -60168,87 +60262,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [52245] = 35, + [52380] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(274), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(278), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(280), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(282), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(284), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(286), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(288), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(292), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(294), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(296), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(298), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(300), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(302), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(304), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(869), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1480), 1, + ACTIONS(3134), 1, sym_self_referential_reader_macro, - STATE(1794), 1, - sym__bare_set_lit, - STATE(2118), 1, + STATE(1450), 1, sym_sym_lit, - STATE(2158), 1, + STATE(1452), 1, + sym__bare_set_lit, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(290), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(312), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(316), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(318), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1478), 3, + ACTIONS(3132), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1820), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(546), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -60268,87 +60362,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [52380] = 35, + [52515] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(586), 1, - aux_sym_num_lit_token1, - ACTIONS(588), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(590), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(592), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(598), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(600), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(606), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(608), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(610), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(854), 1, + aux_sym_num_lit_token1, + ACTIONS(858), 1, anon_sym_POUND_SQUOTE, - ACTIONS(612), 1, + ACTIONS(860), 1, anon_sym_SQUOTE, - ACTIONS(614), 1, + ACTIONS(862), 1, anon_sym_BQUOTE, - ACTIONS(616), 1, + ACTIONS(864), 1, anon_sym_COMMA_AT, - ACTIONS(618), 1, + ACTIONS(866), 1, anon_sym_COMMA, - ACTIONS(620), 1, - anon_sym_cl, - ACTIONS(1492), 1, + ACTIONS(2074), 1, anon_sym_POUND, - ACTIONS(3020), 1, + ACTIONS(2876), 1, sym_self_referential_reader_macro, - STATE(2125), 1, + STATE(1450), 1, + sym_sym_lit, + STATE(1452), 1, + sym__bare_set_lit, + STATE(2146), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2428), 1, - sym_sym_lit, - ACTIONS(604), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(622), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(626), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(628), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3016), 2, + ACTIONS(856), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(868), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3018), 3, + ACTIONS(2874), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(176), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2105), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1490), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -60368,7 +60462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [52515] = 35, + [52650] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -60377,78 +60471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(274), 1, + ACTIONS(190), 1, anon_sym_POUND, - ACTIONS(278), 1, + ACTIONS(194), 1, aux_sym_num_lit_token1, - ACTIONS(280), 1, + ACTIONS(196), 1, anon_sym_COLON, - ACTIONS(282), 1, + ACTIONS(198), 1, anon_sym_COLON_COLON, - ACTIONS(284), 1, + ACTIONS(200), 1, anon_sym_DQUOTE, - ACTIONS(286), 1, + ACTIONS(202), 1, aux_sym_sym_lit_token1, - ACTIONS(288), 1, - anon_sym_LPAREN, - ACTIONS(292), 1, + ACTIONS(217), 1, anon_sym_POUND_QMARK, - ACTIONS(294), 1, + ACTIONS(219), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(296), 1, + ACTIONS(221), 1, anon_sym_POUND_SQUOTE, - ACTIONS(298), 1, + ACTIONS(223), 1, anon_sym_SQUOTE, - ACTIONS(300), 1, + ACTIONS(225), 1, anon_sym_BQUOTE, - ACTIONS(302), 1, + ACTIONS(227), 1, anon_sym_COMMA_AT, - ACTIONS(304), 1, + ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(869), 1, + ACTIONS(526), 1, + anon_sym_LPAREN, + ACTIONS(530), 1, anon_sym_cl, - ACTIONS(1470), 1, + ACTIONS(3138), 1, sym_self_referential_reader_macro, - STATE(1794), 1, + STATE(1072), 1, sym__bare_set_lit, - STATE(2118), 1, + STATE(1074), 1, sym_sym_lit, - STATE(2158), 1, + STATE(2177), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(290), 2, + ACTIONS(215), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(312), 2, + ACTIONS(236), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(316), 2, + ACTIONS(240), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(318), 2, + ACTIONS(242), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3022), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1468), 3, + ACTIONS(3136), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(557), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1073), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1816), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(983), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -60468,7 +60562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [52650] = 35, + [52785] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -60477,78 +60571,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(274), 1, - anon_sym_POUND, - ACTIONS(278), 1, + ACTIONS(604), 1, aux_sym_num_lit_token1, - ACTIONS(280), 1, + ACTIONS(606), 1, anon_sym_COLON, - ACTIONS(282), 1, + ACTIONS(608), 1, anon_sym_COLON_COLON, - ACTIONS(284), 1, + ACTIONS(610), 1, anon_sym_DQUOTE, - ACTIONS(286), 1, + ACTIONS(612), 1, aux_sym_sym_lit_token1, - ACTIONS(288), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(292), 1, + ACTIONS(618), 1, anon_sym_POUND_QMARK, - ACTIONS(294), 1, + ACTIONS(620), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(296), 1, + ACTIONS(622), 1, anon_sym_POUND_SQUOTE, - ACTIONS(298), 1, + ACTIONS(624), 1, anon_sym_SQUOTE, - ACTIONS(300), 1, + ACTIONS(626), 1, anon_sym_BQUOTE, - ACTIONS(302), 1, + ACTIONS(628), 1, anon_sym_COMMA_AT, - ACTIONS(304), 1, + ACTIONS(630), 1, anon_sym_COMMA, - ACTIONS(869), 1, + ACTIONS(632), 1, anon_sym_cl, - ACTIONS(3026), 1, + ACTIONS(1656), 1, sym_self_referential_reader_macro, - STATE(1794), 1, - sym__bare_set_lit, - STATE(2118), 1, - sym_sym_lit, - STATE(2158), 1, + ACTIONS(3080), 1, + anon_sym_POUND, + STATE(2151), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(290), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(312), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2380), 1, + sym_sym_lit, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(316), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(318), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(616), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(634), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3024), 3, + ACTIONS(1654), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1805), 19, + STATE(2279), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -60568,7 +60662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [52785] = 35, + [52920] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -60577,78 +60671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(274), 1, - anon_sym_POUND, - ACTIONS(278), 1, + ACTIONS(664), 1, aux_sym_num_lit_token1, - ACTIONS(280), 1, + ACTIONS(666), 1, anon_sym_COLON, - ACTIONS(282), 1, + ACTIONS(668), 1, anon_sym_COLON_COLON, - ACTIONS(284), 1, + ACTIONS(670), 1, anon_sym_DQUOTE, - ACTIONS(286), 1, + ACTIONS(676), 1, aux_sym_sym_lit_token1, - ACTIONS(288), 1, + ACTIONS(678), 1, anon_sym_LPAREN, - ACTIONS(292), 1, + ACTIONS(684), 1, anon_sym_POUND_QMARK, - ACTIONS(294), 1, + ACTIONS(686), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(296), 1, + ACTIONS(688), 1, anon_sym_POUND_SQUOTE, - ACTIONS(298), 1, + ACTIONS(690), 1, anon_sym_SQUOTE, - ACTIONS(300), 1, + ACTIONS(692), 1, anon_sym_BQUOTE, - ACTIONS(302), 1, + ACTIONS(694), 1, anon_sym_COMMA_AT, - ACTIONS(304), 1, + ACTIONS(696), 1, anon_sym_COMMA, - ACTIONS(869), 1, + ACTIONS(698), 1, anon_sym_cl, - ACTIONS(1484), 1, + ACTIONS(1444), 1, + anon_sym_POUND, + ACTIONS(3142), 1, sym_self_referential_reader_macro, - STATE(1794), 1, - sym__bare_set_lit, - STATE(2118), 1, + STATE(1167), 1, sym_sym_lit, - STATE(2158), 1, + STATE(1175), 1, + sym__bare_set_lit, + STATE(2160), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(290), 2, + ACTIONS(682), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(312), 2, + ACTIONS(700), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(316), 2, + ACTIONS(704), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(318), 2, + ACTIONS(706), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1482), 3, + ACTIONS(3140), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1174), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1804), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1188), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -60668,87 +60762,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [52920] = 35, + [53055] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(877), 1, - aux_sym_num_lit_token1, - ACTIONS(879), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(881), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(883), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(889), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(891), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(897), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(899), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(901), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(854), 1, + aux_sym_num_lit_token1, + ACTIONS(858), 1, anon_sym_POUND_SQUOTE, - ACTIONS(903), 1, + ACTIONS(860), 1, anon_sym_SQUOTE, - ACTIONS(905), 1, + ACTIONS(862), 1, anon_sym_BQUOTE, - ACTIONS(907), 1, + ACTIONS(864), 1, anon_sym_COMMA_AT, - ACTIONS(909), 1, + ACTIONS(866), 1, anon_sym_COMMA, - ACTIONS(911), 1, - anon_sym_cl, - ACTIONS(2034), 1, - anon_sym_POUND, - ACTIONS(3032), 1, + ACTIONS(1550), 1, sym_self_referential_reader_macro, - STATE(1165), 1, + ACTIONS(2074), 1, + anon_sym_POUND, + STATE(1450), 1, sym_sym_lit, - STATE(1233), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2140), 1, + STATE(2146), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(895), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(913), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(917), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(919), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3028), 2, + ACTIONS(856), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(868), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(3144), 2, sym__ws, sym_comment, - ACTIONS(3030), 3, + ACTIONS(1548), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(566), 3, + STATE(705), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1275), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1256), 19, + STATE(1513), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -60768,87 +60862,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [53055] = 35, + [53190] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(877), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(879), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(881), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(883), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(889), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(891), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(897), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(899), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(901), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(903), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(905), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(907), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(909), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(911), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(2034), 1, - anon_sym_POUND, - ACTIONS(3038), 1, + ACTIONS(3150), 1, sym_self_referential_reader_macro, - STATE(1165), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1233), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2140), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(895), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(913), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(917), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(919), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3034), 2, + ACTIONS(3146), 2, sym__ws, sym_comment, - ACTIONS(3036), 3, + ACTIONS(3148), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(568), 3, + STATE(552), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1275), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1242), 19, + STATE(202), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -60868,7 +60962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [53190] = 35, + [53325] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -60877,78 +60971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(877), 1, + ACTIONS(664), 1, aux_sym_num_lit_token1, - ACTIONS(879), 1, + ACTIONS(666), 1, anon_sym_COLON, - ACTIONS(881), 1, + ACTIONS(668), 1, anon_sym_COLON_COLON, - ACTIONS(883), 1, + ACTIONS(670), 1, anon_sym_DQUOTE, - ACTIONS(889), 1, + ACTIONS(676), 1, aux_sym_sym_lit_token1, - ACTIONS(891), 1, + ACTIONS(678), 1, anon_sym_LPAREN, - ACTIONS(897), 1, + ACTIONS(684), 1, anon_sym_POUND_QMARK, - ACTIONS(899), 1, + ACTIONS(686), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(901), 1, + ACTIONS(688), 1, anon_sym_POUND_SQUOTE, - ACTIONS(903), 1, + ACTIONS(690), 1, anon_sym_SQUOTE, - ACTIONS(905), 1, + ACTIONS(692), 1, anon_sym_BQUOTE, - ACTIONS(907), 1, + ACTIONS(694), 1, anon_sym_COMMA_AT, - ACTIONS(909), 1, + ACTIONS(696), 1, anon_sym_COMMA, - ACTIONS(911), 1, + ACTIONS(698), 1, anon_sym_cl, - ACTIONS(2034), 1, + ACTIONS(1444), 1, anon_sym_POUND, - ACTIONS(3044), 1, + ACTIONS(3154), 1, sym_self_referential_reader_macro, - STATE(1165), 1, + STATE(1167), 1, sym_sym_lit, - STATE(1233), 1, + STATE(1175), 1, sym__bare_set_lit, - STATE(2140), 1, + STATE(2160), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(895), 2, + ACTIONS(682), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(913), 2, + ACTIONS(700), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(917), 2, + ACTIONS(704), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(919), 2, + ACTIONS(706), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3040), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3042), 3, + ACTIONS(3152), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(572), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1275), 3, + STATE(1174), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1241), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1191), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -60968,7 +61062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [53325] = 35, + [53460] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -60977,78 +61071,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(586), 1, + ACTIONS(472), 1, aux_sym_num_lit_token1, - ACTIONS(803), 1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(805), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(807), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(811), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(492), 1, anon_sym_POUND_QMARK, - ACTIONS(815), 1, + ACTIONS(494), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(817), 1, + ACTIONS(496), 1, anon_sym_POUND_SQUOTE, - ACTIONS(819), 1, + ACTIONS(498), 1, anon_sym_SQUOTE, - ACTIONS(821), 1, + ACTIONS(500), 1, anon_sym_BQUOTE, - ACTIONS(823), 1, + ACTIONS(502), 1, anon_sym_COMMA_AT, - ACTIONS(825), 1, + ACTIONS(504), 1, anon_sym_COMMA, - ACTIONS(827), 1, + ACTIONS(506), 1, anon_sym_cl, - ACTIONS(2252), 1, + ACTIONS(1594), 1, sym_self_referential_reader_macro, - ACTIONS(3046), 1, + ACTIONS(1794), 1, anon_sym_POUND, - STATE(2135), 1, + STATE(2168), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, + STATE(2337), 1, sym__bare_set_lit, - STATE(2373), 1, + STATE(2454), 1, sym_sym_lit, - ACTIONS(604), 2, + ACTIONS(490), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(622), 2, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(628), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(829), 2, + ACTIONS(512), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(514), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2250), 3, + ACTIONS(1592), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2260), 19, + STATE(2267), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -61068,7 +61162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [53460] = 35, + [53595] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -61077,78 +61171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(877), 1, + ACTIONS(472), 1, aux_sym_num_lit_token1, - ACTIONS(879), 1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(881), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(883), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(889), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(891), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(897), 1, + ACTIONS(492), 1, anon_sym_POUND_QMARK, - ACTIONS(899), 1, + ACTIONS(494), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(901), 1, + ACTIONS(496), 1, anon_sym_POUND_SQUOTE, - ACTIONS(903), 1, + ACTIONS(498), 1, anon_sym_SQUOTE, - ACTIONS(905), 1, + ACTIONS(500), 1, anon_sym_BQUOTE, - ACTIONS(907), 1, + ACTIONS(502), 1, anon_sym_COMMA_AT, - ACTIONS(909), 1, + ACTIONS(504), 1, anon_sym_COMMA, - ACTIONS(911), 1, + ACTIONS(506), 1, anon_sym_cl, - ACTIONS(2034), 1, - anon_sym_POUND, - ACTIONS(3052), 1, + ACTIONS(1502), 1, sym_self_referential_reader_macro, - STATE(1165), 1, - sym_sym_lit, - STATE(1233), 1, - sym__bare_set_lit, - STATE(2140), 1, + ACTIONS(1794), 1, + anon_sym_POUND, + STATE(2168), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(895), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2454), 1, + sym_sym_lit, + ACTIONS(490), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(913), 2, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(917), 2, + ACTIONS(512), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(919), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3048), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3050), 3, + ACTIONS(1500), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(575), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1275), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1234), 19, + STATE(2265), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -61168,87 +61262,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [53595] = 35, + [53730] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, + anon_sym_COLON_COLON, + ACTIONS(21), 1, + anon_sym_DQUOTE, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, + anon_sym_POUND_QMARK, + ACTIONS(35), 1, + anon_sym_POUND_QMARK_AT, ACTIONS(47), 1, sym_block_comment, - ACTIONS(61), 1, - anon_sym_POUND, - ACTIONS(65), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(854), 1, aux_sym_num_lit_token1, - ACTIONS(67), 1, - anon_sym_COLON, - ACTIONS(69), 1, - anon_sym_COLON_COLON, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - aux_sym_sym_lit_token1, - ACTIONS(77), 1, - anon_sym_POUND_QMARK, - ACTIONS(79), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(81), 1, + ACTIONS(858), 1, anon_sym_POUND_SQUOTE, - ACTIONS(83), 1, + ACTIONS(860), 1, anon_sym_SQUOTE, - ACTIONS(85), 1, + ACTIONS(862), 1, anon_sym_BQUOTE, - ACTIONS(87), 1, + ACTIONS(864), 1, anon_sym_COMMA_AT, - ACTIONS(89), 1, + ACTIONS(866), 1, anon_sym_COMMA, - ACTIONS(658), 1, - anon_sym_LPAREN, - ACTIONS(662), 1, - anon_sym_cl, - ACTIONS(3056), 1, + ACTIONS(2074), 1, + anon_sym_POUND, + ACTIONS(2820), 1, sym_self_referential_reader_macro, - STATE(822), 1, + STATE(1450), 1, sym_sym_lit, - STATE(824), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2149), 1, + STATE(2146), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(75), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(93), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(97), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(99), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(856), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(868), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3054), 3, + ACTIONS(2818), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(823), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(882), 19, + STATE(1491), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -61268,7 +61362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [53730] = 35, + [53865] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -61277,78 +61371,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(877), 1, + ACTIONS(664), 1, aux_sym_num_lit_token1, - ACTIONS(879), 1, + ACTIONS(666), 1, anon_sym_COLON, - ACTIONS(881), 1, + ACTIONS(668), 1, anon_sym_COLON_COLON, - ACTIONS(883), 1, + ACTIONS(670), 1, anon_sym_DQUOTE, - ACTIONS(889), 1, + ACTIONS(676), 1, aux_sym_sym_lit_token1, - ACTIONS(891), 1, + ACTIONS(678), 1, anon_sym_LPAREN, - ACTIONS(897), 1, + ACTIONS(684), 1, anon_sym_POUND_QMARK, - ACTIONS(899), 1, + ACTIONS(686), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(901), 1, + ACTIONS(688), 1, anon_sym_POUND_SQUOTE, - ACTIONS(903), 1, + ACTIONS(690), 1, anon_sym_SQUOTE, - ACTIONS(905), 1, + ACTIONS(692), 1, anon_sym_BQUOTE, - ACTIONS(907), 1, + ACTIONS(694), 1, anon_sym_COMMA_AT, - ACTIONS(909), 1, + ACTIONS(696), 1, anon_sym_COMMA, - ACTIONS(911), 1, + ACTIONS(698), 1, anon_sym_cl, - ACTIONS(2034), 1, + ACTIONS(1444), 1, anon_sym_POUND, - ACTIONS(3062), 1, + ACTIONS(3158), 1, sym_self_referential_reader_macro, - STATE(1165), 1, + STATE(1167), 1, sym_sym_lit, - STATE(1233), 1, + STATE(1175), 1, sym__bare_set_lit, - STATE(2140), 1, + STATE(2160), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(895), 2, + ACTIONS(682), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(913), 2, + ACTIONS(700), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(917), 2, + ACTIONS(704), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(919), 2, + ACTIONS(706), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3058), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3060), 3, + ACTIONS(3156), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(576), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1275), 3, + STATE(1174), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1229), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1192), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -61368,7 +61462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [53865] = 35, + [54000] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -61377,78 +61471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(586), 1, + ACTIONS(664), 1, aux_sym_num_lit_token1, - ACTIONS(803), 1, + ACTIONS(666), 1, anon_sym_COLON, - ACTIONS(805), 1, + ACTIONS(668), 1, anon_sym_COLON_COLON, - ACTIONS(807), 1, + ACTIONS(670), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(676), 1, aux_sym_sym_lit_token1, - ACTIONS(811), 1, + ACTIONS(678), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(684), 1, anon_sym_POUND_QMARK, - ACTIONS(815), 1, + ACTIONS(686), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(817), 1, + ACTIONS(688), 1, anon_sym_POUND_SQUOTE, - ACTIONS(819), 1, + ACTIONS(690), 1, anon_sym_SQUOTE, - ACTIONS(821), 1, + ACTIONS(692), 1, anon_sym_BQUOTE, - ACTIONS(823), 1, + ACTIONS(694), 1, anon_sym_COMMA_AT, - ACTIONS(825), 1, + ACTIONS(696), 1, anon_sym_COMMA, - ACTIONS(827), 1, + ACTIONS(698), 1, anon_sym_cl, - ACTIONS(2260), 1, - sym_self_referential_reader_macro, - ACTIONS(3046), 1, + ACTIONS(1444), 1, anon_sym_POUND, - STATE(2135), 1, + ACTIONS(3164), 1, + sym_self_referential_reader_macro, + STATE(1167), 1, + sym_sym_lit, + STATE(1175), 1, + sym__bare_set_lit, + STATE(2160), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2373), 1, - sym_sym_lit, - ACTIONS(604), 2, + ACTIONS(682), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(622), 2, + ACTIONS(700), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(628), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(829), 2, + ACTIONS(704), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(706), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3160), 2, sym__ws, sym_comment, - ACTIONS(2258), 3, + ACTIONS(3162), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(579), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1174), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2259), 19, + STATE(1193), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -61468,7 +61562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [54000] = 35, + [54135] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -61477,78 +61571,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(877), 1, + ACTIONS(472), 1, aux_sym_num_lit_token1, - ACTIONS(879), 1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(881), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(883), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(889), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(891), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(897), 1, + ACTIONS(492), 1, anon_sym_POUND_QMARK, - ACTIONS(899), 1, + ACTIONS(494), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(901), 1, + ACTIONS(496), 1, anon_sym_POUND_SQUOTE, - ACTIONS(903), 1, + ACTIONS(498), 1, anon_sym_SQUOTE, - ACTIONS(905), 1, + ACTIONS(500), 1, anon_sym_BQUOTE, - ACTIONS(907), 1, + ACTIONS(502), 1, anon_sym_COMMA_AT, - ACTIONS(909), 1, + ACTIONS(504), 1, anon_sym_COMMA, - ACTIONS(911), 1, + ACTIONS(506), 1, anon_sym_cl, - ACTIONS(2034), 1, - anon_sym_POUND, - ACTIONS(3066), 1, + ACTIONS(1498), 1, sym_self_referential_reader_macro, - STATE(1165), 1, - sym_sym_lit, - STATE(1233), 1, - sym__bare_set_lit, - STATE(2140), 1, + ACTIONS(1794), 1, + anon_sym_POUND, + STATE(2168), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(895), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2454), 1, + sym_sym_lit, + ACTIONS(490), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(913), 2, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(917), 2, + ACTIONS(512), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(919), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(3166), 2, sym__ws, sym_comment, - ACTIONS(3064), 3, + ACTIONS(1496), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1275), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(610), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1282), 19, + STATE(2282), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2264), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -61568,87 +61662,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [54135] = 35, + [54270] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, - aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(474), 1, + anon_sym_COLON, + ACTIONS(476), 1, + anon_sym_COLON_COLON, + ACTIONS(478), 1, + anon_sym_DQUOTE, + ACTIONS(484), 1, + aux_sym_sym_lit_token1, + ACTIONS(506), 1, + anon_sym_cl, + ACTIONS(604), 1, + aux_sym_num_lit_token1, + ACTIONS(640), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(642), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(644), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(646), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(648), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(650), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(652), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(654), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(3070), 1, + ACTIONS(1470), 1, + anon_sym_POUND, + ACTIONS(3172), 1, sym_self_referential_reader_macro, - STATE(1506), 1, - sym_sym_lit, - STATE(1511), 1, - sym__bare_set_lit, - STATE(2137), 1, + STATE(2142), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2454), 1, + sym_sym_lit, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(616), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(656), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(3168), 2, sym__ws, sym_comment, - ACTIONS(3068), 3, + ACTIONS(3170), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(215), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(259), 19, + STATE(2282), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2127), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -61668,7 +61762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [54270] = 35, + [54405] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -61677,78 +61771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(877), 1, + ACTIONS(190), 1, + anon_sym_POUND, + ACTIONS(194), 1, aux_sym_num_lit_token1, - ACTIONS(879), 1, + ACTIONS(196), 1, anon_sym_COLON, - ACTIONS(881), 1, + ACTIONS(198), 1, anon_sym_COLON_COLON, - ACTIONS(883), 1, + ACTIONS(200), 1, anon_sym_DQUOTE, - ACTIONS(889), 1, + ACTIONS(202), 1, aux_sym_sym_lit_token1, - ACTIONS(891), 1, - anon_sym_LPAREN, - ACTIONS(897), 1, + ACTIONS(217), 1, anon_sym_POUND_QMARK, - ACTIONS(899), 1, + ACTIONS(219), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(901), 1, + ACTIONS(221), 1, anon_sym_POUND_SQUOTE, - ACTIONS(903), 1, + ACTIONS(223), 1, anon_sym_SQUOTE, - ACTIONS(905), 1, + ACTIONS(225), 1, anon_sym_BQUOTE, - ACTIONS(907), 1, + ACTIONS(227), 1, anon_sym_COMMA_AT, - ACTIONS(909), 1, + ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(911), 1, + ACTIONS(526), 1, + anon_sym_LPAREN, + ACTIONS(530), 1, anon_sym_cl, - ACTIONS(2034), 1, - anon_sym_POUND, - ACTIONS(3074), 1, + ACTIONS(3178), 1, sym_self_referential_reader_macro, - STATE(1165), 1, - sym_sym_lit, - STATE(1233), 1, + STATE(1072), 1, sym__bare_set_lit, - STATE(2140), 1, + STATE(1074), 1, + sym_sym_lit, + STATE(2177), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(895), 2, + ACTIONS(215), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(913), 2, + ACTIONS(236), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(917), 2, + ACTIONS(240), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(919), 2, + ACTIONS(242), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(3174), 2, sym__ws, sym_comment, - ACTIONS(3072), 3, + ACTIONS(3176), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1275), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(550), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1204), 19, + STATE(1073), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(991), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -61768,7 +61862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [54405] = 35, + [54540] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -61777,78 +61871,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(3078), 1, + ACTIONS(3182), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3076), 3, + ACTIONS(3180), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2002), 19, + STATE(2030), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -61868,87 +61962,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [54540] = 35, + [54675] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, - aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(728), 1, + aux_sym_num_lit_token1, + ACTIONS(730), 1, + anon_sym_COLON, + ACTIONS(732), 1, + anon_sym_COLON_COLON, + ACTIONS(734), 1, + anon_sym_DQUOTE, + ACTIONS(740), 1, + aux_sym_sym_lit_token1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(750), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(752), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(754), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(756), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(758), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(3082), 1, + ACTIONS(975), 1, + anon_sym_POUND, + ACTIONS(1890), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2167), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(744), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(766), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3080), 3, + ACTIONS(1888), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(268), 19, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1952), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -61968,7 +62062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [54675] = 35, + [54810] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -61977,78 +62071,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(3088), 1, + ACTIONS(3188), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3084), 2, + ACTIONS(3184), 2, sym__ws, sym_comment, - ACTIONS(3086), 3, + ACTIONS(3186), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(654), 3, + STATE(655), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2001), 19, + STATE(2033), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -62068,7 +62162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [54810] = 35, + [54945] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -62077,78 +62171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(877), 1, - aux_sym_num_lit_token1, - ACTIONS(879), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(881), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(883), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(889), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(891), 1, - anon_sym_LPAREN, - ACTIONS(897), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(899), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(901), 1, + ACTIONS(760), 1, + anon_sym_cl, + ACTIONS(838), 1, + aux_sym_num_lit_token1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(903), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(905), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(907), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(909), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(911), 1, - anon_sym_cl, - ACTIONS(2034), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(3092), 1, + ACTIONS(2662), 1, sym_self_referential_reader_macro, - STATE(1165), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1233), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2140), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(895), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(913), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(917), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(919), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(840), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(852), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(3190), 2, sym__ws, sym_comment, - ACTIONS(3090), 3, + ACTIONS(2660), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1275), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(253), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1235), 19, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1857), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -62168,87 +62262,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [54945] = 35, + [55080] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(664), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(666), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(668), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(670), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(676), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(678), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(684), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(686), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(688), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(690), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(692), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(694), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(696), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(698), 1, anon_sym_cl, - ACTIONS(3098), 1, + ACTIONS(1444), 1, + anon_sym_POUND, + ACTIONS(3196), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1167), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1175), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2160), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(682), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(700), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(704), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(706), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3094), 2, + ACTIONS(3192), 2, sym__ws, sym_comment, - ACTIONS(3096), 3, + ACTIONS(3194), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(591), 3, + STATE(602), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(1174), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(535), 19, + STATE(1196), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -62268,7 +62362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [55080] = 35, + [55215] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -62277,78 +62371,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(3104), 1, + ACTIONS(3202), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3100), 2, + ACTIONS(3198), 2, sym__ws, sym_comment, - ACTIONS(3102), 3, + ACTIONS(3200), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(659), 3, + STATE(660), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2000), 19, + STATE(2034), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -62368,87 +62462,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [55215] = 35, + [55350] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(877), 1, - aux_sym_num_lit_token1, - ACTIONS(879), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(881), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(883), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(889), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(891), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(897), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(899), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(901), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(854), 1, + aux_sym_num_lit_token1, + ACTIONS(858), 1, anon_sym_POUND_SQUOTE, - ACTIONS(903), 1, + ACTIONS(860), 1, anon_sym_SQUOTE, - ACTIONS(905), 1, + ACTIONS(862), 1, anon_sym_BQUOTE, - ACTIONS(907), 1, + ACTIONS(864), 1, anon_sym_COMMA_AT, - ACTIONS(909), 1, + ACTIONS(866), 1, anon_sym_COMMA, - ACTIONS(911), 1, - anon_sym_cl, - ACTIONS(2034), 1, + ACTIONS(2074), 1, anon_sym_POUND, - ACTIONS(3108), 1, + ACTIONS(2806), 1, sym_self_referential_reader_macro, - STATE(1165), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1233), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2140), 1, + STATE(2146), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(895), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(913), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(917), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(919), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(856), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(868), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(3204), 2, sym__ws, sym_comment, - ACTIONS(3106), 3, + ACTIONS(2804), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1275), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(647), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1274), 19, + STATE(1451), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1493), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -62468,7 +62562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [55350] = 35, + [55485] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -62477,78 +62571,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(877), 1, + ACTIONS(664), 1, aux_sym_num_lit_token1, - ACTIONS(879), 1, + ACTIONS(666), 1, anon_sym_COLON, - ACTIONS(881), 1, + ACTIONS(668), 1, anon_sym_COLON_COLON, - ACTIONS(883), 1, + ACTIONS(670), 1, anon_sym_DQUOTE, - ACTIONS(889), 1, + ACTIONS(676), 1, aux_sym_sym_lit_token1, - ACTIONS(891), 1, + ACTIONS(678), 1, anon_sym_LPAREN, - ACTIONS(897), 1, + ACTIONS(684), 1, anon_sym_POUND_QMARK, - ACTIONS(899), 1, + ACTIONS(686), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(901), 1, + ACTIONS(688), 1, anon_sym_POUND_SQUOTE, - ACTIONS(903), 1, + ACTIONS(690), 1, anon_sym_SQUOTE, - ACTIONS(905), 1, + ACTIONS(692), 1, anon_sym_BQUOTE, - ACTIONS(907), 1, + ACTIONS(694), 1, anon_sym_COMMA_AT, - ACTIONS(909), 1, + ACTIONS(696), 1, anon_sym_COMMA, - ACTIONS(911), 1, + ACTIONS(698), 1, anon_sym_cl, - ACTIONS(2034), 1, + ACTIONS(1444), 1, anon_sym_POUND, - ACTIONS(3112), 1, + ACTIONS(3208), 1, sym_self_referential_reader_macro, - STATE(1165), 1, + STATE(1167), 1, sym_sym_lit, - STATE(1233), 1, + STATE(1175), 1, sym__bare_set_lit, - STATE(2140), 1, + STATE(2160), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(895), 2, + ACTIONS(682), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(913), 2, + ACTIONS(700), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(917), 2, + ACTIONS(704), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(919), 2, + ACTIONS(706), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3110), 3, + ACTIONS(3206), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1275), 3, + STATE(1174), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1287), 19, + STATE(1209), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -62568,7 +62662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [55485] = 35, + [55620] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -62577,78 +62671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(3118), 1, + ACTIONS(3214), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3114), 2, + ACTIONS(3210), 2, sym__ws, sym_comment, - ACTIONS(3116), 3, + ACTIONS(3212), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(665), 3, + STATE(666), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1999), 19, + STATE(2035), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -62668,7 +62762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [55620] = 35, + [55755] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -62677,178 +62771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(877), 1, + ACTIONS(664), 1, aux_sym_num_lit_token1, - ACTIONS(879), 1, + ACTIONS(666), 1, anon_sym_COLON, - ACTIONS(881), 1, + ACTIONS(668), 1, anon_sym_COLON_COLON, - ACTIONS(883), 1, + ACTIONS(670), 1, anon_sym_DQUOTE, - ACTIONS(889), 1, + ACTIONS(676), 1, aux_sym_sym_lit_token1, - ACTIONS(891), 1, + ACTIONS(678), 1, anon_sym_LPAREN, - ACTIONS(897), 1, + ACTIONS(684), 1, anon_sym_POUND_QMARK, - ACTIONS(899), 1, + ACTIONS(686), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(901), 1, + ACTIONS(688), 1, anon_sym_POUND_SQUOTE, - ACTIONS(903), 1, + ACTIONS(690), 1, anon_sym_SQUOTE, - ACTIONS(905), 1, + ACTIONS(692), 1, anon_sym_BQUOTE, - ACTIONS(907), 1, + ACTIONS(694), 1, anon_sym_COMMA_AT, - ACTIONS(909), 1, + ACTIONS(696), 1, anon_sym_COMMA, - ACTIONS(911), 1, + ACTIONS(698), 1, anon_sym_cl, - ACTIONS(2034), 1, + ACTIONS(1444), 1, anon_sym_POUND, - ACTIONS(3124), 1, + ACTIONS(3218), 1, sym_self_referential_reader_macro, - STATE(1165), 1, + STATE(1167), 1, sym_sym_lit, - STATE(1233), 1, + STATE(1175), 1, sym__bare_set_lit, - STATE(2140), 1, + STATE(2160), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, - sym__metadata_lit, - ACTIONS(895), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(913), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(917), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(919), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3120), 2, - sym__ws, - sym_comment, - ACTIONS(3122), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(597), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1275), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1284), 19, - sym__form, - sym_num_lit, - sym_kwd_lit, - sym_str_lit, - sym_char_lit, - sym_list_lit, - sym_vec_lit, - sym_set_lit, - sym_read_cond_lit, - sym_splicing_read_cond_lit, - sym_var_quoting_lit, - sym_quoting_lit, - sym_syn_quoting_lit, - sym_unquote_splicing_lit, - sym_unquoting_lit, - sym_path_lit, - sym_package_lit, - sym_include_reader_macro, - sym_complex_num_lit, - [55755] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(61), 1, - anon_sym_POUND, - ACTIONS(65), 1, - aux_sym_num_lit_token1, - ACTIONS(67), 1, - anon_sym_COLON, - ACTIONS(69), 1, - anon_sym_COLON_COLON, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - aux_sym_sym_lit_token1, - ACTIONS(77), 1, - anon_sym_POUND_QMARK, - ACTIONS(79), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(81), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(83), 1, - anon_sym_SQUOTE, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(87), 1, - anon_sym_COMMA_AT, - ACTIONS(89), 1, - anon_sym_COMMA, - ACTIONS(658), 1, - anon_sym_LPAREN, - ACTIONS(662), 1, - anon_sym_cl, - ACTIONS(3128), 1, - sym_self_referential_reader_macro, - STATE(822), 1, - sym_sym_lit, - STATE(824), 1, - sym__bare_set_lit, - STATE(2149), 1, - aux_sym_list_lit_repeat1, - STATE(2215), 1, + STATE(2234), 1, sym_meta_lit, - STATE(2217), 1, - sym_old_meta_lit, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(75), 2, + ACTIONS(682), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(93), 2, + ACTIONS(700), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(97), 2, + ACTIONS(704), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(99), 2, + ACTIONS(706), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3126), 3, + ACTIONS(3216), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(823), 3, + STATE(1174), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(883), 19, + STATE(1213), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -62871,84 +62865,84 @@ static const uint16_t ts_small_parse_table[] = { [55890] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(877), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(879), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(881), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(883), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(889), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(891), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(897), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(899), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(901), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(903), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(905), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(907), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(909), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(911), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(2034), 1, - anon_sym_POUND, - ACTIONS(3134), 1, + ACTIONS(3224), 1, sym_self_referential_reader_macro, - STATE(1165), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1233), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2140), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(895), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(913), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(917), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(919), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3130), 2, + ACTIONS(3220), 2, sym__ws, sym_comment, - ACTIONS(3132), 3, + ACTIONS(3222), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(604), 3, + STATE(636), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1275), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1268), 19, + STATE(574), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -62977,78 +62971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(877), 1, + ACTIONS(664), 1, aux_sym_num_lit_token1, - ACTIONS(879), 1, + ACTIONS(666), 1, anon_sym_COLON, - ACTIONS(881), 1, + ACTIONS(668), 1, anon_sym_COLON_COLON, - ACTIONS(883), 1, + ACTIONS(670), 1, anon_sym_DQUOTE, - ACTIONS(889), 1, + ACTIONS(676), 1, aux_sym_sym_lit_token1, - ACTIONS(891), 1, + ACTIONS(678), 1, anon_sym_LPAREN, - ACTIONS(897), 1, + ACTIONS(684), 1, anon_sym_POUND_QMARK, - ACTIONS(899), 1, + ACTIONS(686), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(901), 1, + ACTIONS(688), 1, anon_sym_POUND_SQUOTE, - ACTIONS(903), 1, + ACTIONS(690), 1, anon_sym_SQUOTE, - ACTIONS(905), 1, + ACTIONS(692), 1, anon_sym_BQUOTE, - ACTIONS(907), 1, + ACTIONS(694), 1, anon_sym_COMMA_AT, - ACTIONS(909), 1, + ACTIONS(696), 1, anon_sym_COMMA, - ACTIONS(911), 1, + ACTIONS(698), 1, anon_sym_cl, - ACTIONS(2034), 1, + ACTIONS(1444), 1, anon_sym_POUND, - ACTIONS(3140), 1, + ACTIONS(3230), 1, sym_self_referential_reader_macro, - STATE(1165), 1, + STATE(1167), 1, sym_sym_lit, - STATE(1233), 1, + STATE(1175), 1, sym__bare_set_lit, - STATE(2140), 1, + STATE(2160), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(895), 2, + ACTIONS(682), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(913), 2, + ACTIONS(700), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(917), 2, + ACTIONS(704), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(919), 2, + ACTIONS(706), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3136), 2, + ACTIONS(3226), 2, sym__ws, sym_comment, - ACTIONS(3138), 3, + ACTIONS(3228), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(608), 3, + STATE(639), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1275), 3, + STATE(1174), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1262), 19, + STATE(1214), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -63077,78 +63071,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(586), 1, + ACTIONS(604), 1, aux_sym_num_lit_token1, - ACTIONS(803), 1, + ACTIONS(606), 1, anon_sym_COLON, - ACTIONS(805), 1, + ACTIONS(608), 1, anon_sym_COLON_COLON, - ACTIONS(807), 1, + ACTIONS(610), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(612), 1, aux_sym_sym_lit_token1, - ACTIONS(811), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(618), 1, anon_sym_POUND_QMARK, - ACTIONS(815), 1, + ACTIONS(620), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(817), 1, + ACTIONS(622), 1, anon_sym_POUND_SQUOTE, - ACTIONS(819), 1, + ACTIONS(624), 1, anon_sym_SQUOTE, - ACTIONS(821), 1, + ACTIONS(626), 1, anon_sym_BQUOTE, - ACTIONS(823), 1, + ACTIONS(628), 1, anon_sym_COMMA_AT, - ACTIONS(825), 1, + ACTIONS(630), 1, anon_sym_COMMA, - ACTIONS(827), 1, + ACTIONS(632), 1, anon_sym_cl, - ACTIONS(2178), 1, + ACTIONS(1474), 1, sym_self_referential_reader_macro, - ACTIONS(3046), 1, + ACTIONS(3080), 1, anon_sym_POUND, - STATE(2135), 1, + STATE(2151), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, + STATE(2337), 1, sym__bare_set_lit, - STATE(2373), 1, + STATE(2380), 1, sym_sym_lit, - ACTIONS(604), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(622), 2, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(628), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(829), 2, + ACTIONS(616), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(634), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3142), 2, + ACTIONS(3232), 2, sym__ws, sym_comment, - ACTIONS(2176), 3, + ACTIONS(1472), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(561), 3, + STATE(543), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2242), 19, + STATE(2262), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -63177,78 +63171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(190), 1, + anon_sym_POUND, + ACTIONS(194), 1, + aux_sym_num_lit_token1, + ACTIONS(196), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(198), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(200), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(202), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(217), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(219), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, - anon_sym_cl, - ACTIONS(783), 1, - aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(221), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(223), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(225), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(227), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(1436), 1, - anon_sym_POUND, - ACTIONS(3146), 1, + ACTIONS(526), 1, + anon_sym_LPAREN, + ACTIONS(530), 1, + anon_sym_cl, + ACTIONS(3238), 1, sym_self_referential_reader_macro, - STATE(1825), 1, - sym_sym_lit, - STATE(1887), 1, + STATE(1072), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(1074), 1, + sym_sym_lit, + STATE(2177), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(564), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(215), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(236), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(240), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(242), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3234), 2, sym__ws, sym_comment, - ACTIONS(3144), 3, + ACTIONS(3236), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(553), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1073), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1998), 19, + STATE(992), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -63277,78 +63271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(3152), 1, + ACTIONS(3242), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3148), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3150), 3, + ACTIONS(3240), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(674), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1997), 19, + STATE(2036), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -63377,78 +63371,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(586), 1, - aux_sym_num_lit_token1, - ACTIONS(803), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(805), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(807), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(811), 1, - anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(815), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(817), 1, + ACTIONS(760), 1, + anon_sym_cl, + ACTIONS(838), 1, + aux_sym_num_lit_token1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(819), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(821), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(823), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(825), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(827), 1, - anon_sym_cl, - ACTIONS(2172), 1, - sym_self_referential_reader_macro, - ACTIONS(3046), 1, + ACTIONS(1664), 1, anon_sym_POUND, - STATE(2135), 1, + ACTIONS(3248), 1, + sym_self_referential_reader_macro, + STATE(1848), 1, + sym_sym_lit, + STATE(1925), 1, + sym__bare_set_lit, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2373), 1, - sym_sym_lit, - ACTIONS(604), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(622), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(628), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(829), 2, + ACTIONS(840), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(3244), 2, sym__ws, sym_comment, - ACTIONS(2170), 3, + ACTIONS(3246), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(675), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2243), 19, + STATE(2037), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -63477,78 +63471,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(877), 1, + ACTIONS(190), 1, + anon_sym_POUND, + ACTIONS(194), 1, aux_sym_num_lit_token1, - ACTIONS(879), 1, + ACTIONS(196), 1, anon_sym_COLON, - ACTIONS(881), 1, + ACTIONS(198), 1, anon_sym_COLON_COLON, - ACTIONS(883), 1, + ACTIONS(200), 1, anon_sym_DQUOTE, - ACTIONS(889), 1, + ACTIONS(202), 1, aux_sym_sym_lit_token1, - ACTIONS(891), 1, - anon_sym_LPAREN, - ACTIONS(897), 1, + ACTIONS(217), 1, anon_sym_POUND_QMARK, - ACTIONS(899), 1, + ACTIONS(219), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(901), 1, + ACTIONS(221), 1, anon_sym_POUND_SQUOTE, - ACTIONS(903), 1, + ACTIONS(223), 1, anon_sym_SQUOTE, - ACTIONS(905), 1, + ACTIONS(225), 1, anon_sym_BQUOTE, - ACTIONS(907), 1, + ACTIONS(227), 1, anon_sym_COMMA_AT, - ACTIONS(909), 1, + ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(911), 1, + ACTIONS(526), 1, + anon_sym_LPAREN, + ACTIONS(530), 1, anon_sym_cl, - ACTIONS(2034), 1, - anon_sym_POUND, - ACTIONS(3158), 1, + ACTIONS(3252), 1, sym_self_referential_reader_macro, - STATE(1165), 1, - sym_sym_lit, - STATE(1233), 1, + STATE(1072), 1, sym__bare_set_lit, - STATE(2140), 1, + STATE(1074), 1, + sym_sym_lit, + STATE(2177), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(895), 2, + ACTIONS(215), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(913), 2, + ACTIONS(236), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(917), 2, + ACTIONS(240), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(919), 2, + ACTIONS(242), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3154), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3156), 3, + ACTIONS(3250), 3, + anon_sym_DOT, + sym_nil_lit, + sym_fancy_literal, + STATE(1073), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(962), 19, + sym__form, + sym_num_lit, + sym_kwd_lit, + sym_str_lit, + sym_char_lit, + sym_list_lit, + sym_vec_lit, + sym_set_lit, + sym_read_cond_lit, + sym_splicing_read_cond_lit, + sym_var_quoting_lit, + sym_quoting_lit, + sym_syn_quoting_lit, + sym_unquote_splicing_lit, + sym_unquoting_lit, + sym_path_lit, + sym_package_lit, + sym_include_reader_macro, + sym_complex_num_lit, + [56835] = 35, + ACTIONS(9), 1, + anon_sym_POUND_, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, + anon_sym_COLON_COLON, + ACTIONS(21), 1, + anon_sym_DQUOTE, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, + anon_sym_POUND_QMARK, + ACTIONS(35), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(854), 1, + aux_sym_num_lit_token1, + ACTIONS(858), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(860), 1, + anon_sym_SQUOTE, + ACTIONS(862), 1, + anon_sym_BQUOTE, + ACTIONS(864), 1, + anon_sym_COMMA_AT, + ACTIONS(866), 1, + anon_sym_COMMA, + ACTIONS(2074), 1, + anon_sym_POUND, + ACTIONS(2738), 1, + sym_self_referential_reader_macro, + STATE(1450), 1, + sym_sym_lit, + STATE(1452), 1, + sym__bare_set_lit, + STATE(2146), 1, + aux_sym_list_lit_repeat1, + STATE(2221), 1, + sym_old_meta_lit, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, + sym__metadata_lit, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(856), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(868), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(3254), 2, + sym__ws, + sym_comment, + ACTIONS(2736), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(612), 3, + STATE(652), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1275), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1213), 19, + STATE(1496), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -63568,7 +63662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [56835] = 35, + [56970] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -63577,78 +63671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(927), 1, + ACTIONS(190), 1, + anon_sym_POUND, + ACTIONS(194), 1, aux_sym_num_lit_token1, - ACTIONS(929), 1, + ACTIONS(196), 1, anon_sym_COLON, - ACTIONS(931), 1, + ACTIONS(198), 1, anon_sym_COLON_COLON, - ACTIONS(933), 1, + ACTIONS(200), 1, anon_sym_DQUOTE, - ACTIONS(939), 1, + ACTIONS(202), 1, aux_sym_sym_lit_token1, - ACTIONS(941), 1, - anon_sym_LPAREN, - ACTIONS(947), 1, + ACTIONS(217), 1, anon_sym_POUND_QMARK, - ACTIONS(949), 1, + ACTIONS(219), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(951), 1, + ACTIONS(221), 1, anon_sym_POUND_SQUOTE, - ACTIONS(953), 1, + ACTIONS(223), 1, anon_sym_SQUOTE, - ACTIONS(955), 1, + ACTIONS(225), 1, anon_sym_BQUOTE, - ACTIONS(957), 1, + ACTIONS(227), 1, anon_sym_COMMA_AT, - ACTIONS(959), 1, + ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(961), 1, + ACTIONS(526), 1, + anon_sym_LPAREN, + ACTIONS(530), 1, anon_sym_cl, - ACTIONS(1740), 1, - anon_sym_POUND, - ACTIONS(3162), 1, + ACTIONS(3258), 1, sym_self_referential_reader_macro, - STATE(1687), 1, + STATE(1072), 1, sym__bare_set_lit, - STATE(1689), 1, + STATE(1074), 1, sym_sym_lit, - STATE(2148), 1, + STATE(2177), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(945), 2, + ACTIONS(215), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(963), 2, + ACTIONS(236), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(967), 2, + ACTIONS(240), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(969), 2, + ACTIONS(242), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3160), 3, + ACTIONS(3256), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(1073), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1579), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(996), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -63668,7 +63762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [56970] = 35, + [57105] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -63677,78 +63771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(3166), 1, + ACTIONS(3262), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3164), 3, + ACTIONS(3260), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1996), 19, + STATE(2038), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -63768,7 +63862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [57105] = 35, + [57240] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -63777,78 +63871,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(3172), 1, + ACTIONS(3268), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3168), 2, + ACTIONS(3264), 2, sym__ws, sym_comment, - ACTIONS(3170), 3, + ACTIONS(3266), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(678), 3, + STATE(679), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1995), 19, + STATE(2039), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -63868,7 +63962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [57240] = 35, + [57375] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -63877,78 +63971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(586), 1, + ACTIONS(190), 1, + anon_sym_POUND, + ACTIONS(194), 1, aux_sym_num_lit_token1, - ACTIONS(803), 1, + ACTIONS(196), 1, anon_sym_COLON, - ACTIONS(805), 1, + ACTIONS(198), 1, anon_sym_COLON_COLON, - ACTIONS(807), 1, + ACTIONS(200), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(202), 1, aux_sym_sym_lit_token1, - ACTIONS(811), 1, - anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(217), 1, anon_sym_POUND_QMARK, - ACTIONS(815), 1, + ACTIONS(219), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(817), 1, + ACTIONS(221), 1, anon_sym_POUND_SQUOTE, - ACTIONS(819), 1, + ACTIONS(223), 1, anon_sym_SQUOTE, - ACTIONS(821), 1, + ACTIONS(225), 1, anon_sym_BQUOTE, - ACTIONS(823), 1, + ACTIONS(227), 1, anon_sym_COMMA_AT, - ACTIONS(825), 1, + ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(827), 1, + ACTIONS(526), 1, + anon_sym_LPAREN, + ACTIONS(530), 1, anon_sym_cl, - ACTIONS(2090), 1, + ACTIONS(3272), 1, sym_self_referential_reader_macro, - ACTIONS(3046), 1, - anon_sym_POUND, - STATE(2135), 1, + STATE(1072), 1, + sym__bare_set_lit, + STATE(1074), 1, + sym_sym_lit, + STATE(2177), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2373), 1, - sym_sym_lit, - ACTIONS(604), 2, + ACTIONS(215), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(622), 2, + ACTIONS(236), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(628), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(829), 2, + ACTIONS(240), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3174), 2, + ACTIONS(242), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2088), 3, + ACTIONS(3270), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(565), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1073), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2244), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(998), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -63968,13 +64062,9 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [57375] = 35, + [57510] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, - aux_sym_num_lit_token1, ACTIONS(17), 1, anon_sym_COLON, ACTIONS(19), 1, @@ -63993,62 +64083,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(854), 1, + aux_sym_num_lit_token1, + ACTIONS(858), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(860), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(862), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(864), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(866), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(3178), 1, + ACTIONS(2074), 1, + anon_sym_POUND, + ACTIONS(2714), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2146), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(856), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(868), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(3274), 2, sym__ws, sym_comment, - ACTIONS(3176), 3, + ACTIONS(2712), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(667), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(541), 19, + STATE(1451), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1497), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -64068,7 +64162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [57510] = 35, + [57645] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -64077,78 +64171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(586), 1, + ACTIONS(190), 1, + anon_sym_POUND, + ACTIONS(194), 1, aux_sym_num_lit_token1, - ACTIONS(803), 1, + ACTIONS(196), 1, anon_sym_COLON, - ACTIONS(805), 1, + ACTIONS(198), 1, anon_sym_COLON_COLON, - ACTIONS(807), 1, + ACTIONS(200), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(202), 1, aux_sym_sym_lit_token1, - ACTIONS(811), 1, - anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(217), 1, anon_sym_POUND_QMARK, - ACTIONS(815), 1, + ACTIONS(219), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(817), 1, + ACTIONS(221), 1, anon_sym_POUND_SQUOTE, - ACTIONS(819), 1, + ACTIONS(223), 1, anon_sym_SQUOTE, - ACTIONS(821), 1, + ACTIONS(225), 1, anon_sym_BQUOTE, - ACTIONS(823), 1, + ACTIONS(227), 1, anon_sym_COMMA_AT, - ACTIONS(825), 1, + ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(827), 1, + ACTIONS(526), 1, + anon_sym_LPAREN, + ACTIONS(530), 1, anon_sym_cl, - ACTIONS(1880), 1, + ACTIONS(3280), 1, sym_self_referential_reader_macro, - ACTIONS(3046), 1, - anon_sym_POUND, - STATE(2135), 1, + STATE(1072), 1, + sym__bare_set_lit, + STATE(1074), 1, + sym_sym_lit, + STATE(2177), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2373), 1, - sym_sym_lit, - ACTIONS(604), 2, + ACTIONS(215), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(622), 2, + ACTIONS(236), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(628), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(829), 2, + ACTIONS(240), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(242), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3276), 2, sym__ws, sym_comment, - ACTIONS(1878), 3, + ACTIONS(3278), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(556), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1073), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2245), 19, + STATE(1005), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -64168,7 +64262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [57645] = 35, + [57780] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -64177,78 +64271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(3182), 1, + ACTIONS(3284), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3180), 3, + ACTIONS(3282), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1994), 19, + STATE(2040), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -64268,87 +64362,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [57780] = 35, + [57915] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(61), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(65), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(67), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(69), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(73), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(77), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(79), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(81), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(87), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(89), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(830), 1, + anon_sym_LPAREN, + ACTIONS(834), 1, anon_sym_cl, - ACTIONS(3188), 1, + ACTIONS(3288), 1, sym_self_referential_reader_macro, - STATE(1506), 1, - sym_sym_lit, - STATE(1511), 1, + STATE(927), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(929), 1, + sym_sym_lit, + STATE(2169), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(75), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(93), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(97), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(99), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3184), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3186), 3, + ACTIONS(3286), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(567), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(928), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(276), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(846), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -64368,7 +64462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [57915] = 35, + [58050] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -64377,78 +64471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(3194), 1, + ACTIONS(3294), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3190), 2, + ACTIONS(3290), 2, sym__ws, sym_comment, - ACTIONS(3192), 3, + ACTIONS(3292), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(683), 3, + STATE(684), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1993), 19, + STATE(2041), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -64468,7 +64562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [58050] = 35, + [58185] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -64477,78 +64571,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(3200), 1, + ACTIONS(3300), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3196), 2, + ACTIONS(3296), 2, sym__ws, sym_comment, - ACTIONS(3198), 3, + ACTIONS(3298), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(685), 3, + STATE(686), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2039), 19, + STATE(2042), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -64568,7 +64662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [58185] = 35, + [58320] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -64577,78 +64671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(877), 1, + ACTIONS(190), 1, + anon_sym_POUND, + ACTIONS(194), 1, aux_sym_num_lit_token1, - ACTIONS(879), 1, + ACTIONS(196), 1, anon_sym_COLON, - ACTIONS(881), 1, + ACTIONS(198), 1, anon_sym_COLON_COLON, - ACTIONS(883), 1, + ACTIONS(200), 1, anon_sym_DQUOTE, - ACTIONS(889), 1, + ACTIONS(202), 1, aux_sym_sym_lit_token1, - ACTIONS(891), 1, - anon_sym_LPAREN, - ACTIONS(897), 1, + ACTIONS(217), 1, anon_sym_POUND_QMARK, - ACTIONS(899), 1, + ACTIONS(219), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(901), 1, + ACTIONS(221), 1, anon_sym_POUND_SQUOTE, - ACTIONS(903), 1, + ACTIONS(223), 1, anon_sym_SQUOTE, - ACTIONS(905), 1, + ACTIONS(225), 1, anon_sym_BQUOTE, - ACTIONS(907), 1, + ACTIONS(227), 1, anon_sym_COMMA_AT, - ACTIONS(909), 1, + ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(911), 1, + ACTIONS(526), 1, + anon_sym_LPAREN, + ACTIONS(530), 1, anon_sym_cl, - ACTIONS(2034), 1, - anon_sym_POUND, - ACTIONS(3204), 1, + ACTIONS(3304), 1, sym_self_referential_reader_macro, - STATE(1165), 1, - sym_sym_lit, - STATE(1233), 1, + STATE(1072), 1, sym__bare_set_lit, - STATE(2140), 1, + STATE(1074), 1, + sym_sym_lit, + STATE(2177), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(895), 2, + ACTIONS(215), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(913), 2, + ACTIONS(236), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(917), 2, + ACTIONS(240), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(919), 2, + ACTIONS(242), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3202), 3, + ACTIONS(3302), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1275), 3, + STATE(1073), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1173), 19, + STATE(1007), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -64668,87 +64762,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [58320] = 35, + [58455] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(604), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(606), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(608), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(610), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(612), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(618), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(620), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(622), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(624), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(626), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(628), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(630), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(632), 1, anon_sym_cl, - ACTIONS(3210), 1, + ACTIONS(1488), 1, sym_self_referential_reader_macro, - STATE(1506), 1, - sym_sym_lit, - STATE(1511), 1, - sym__bare_set_lit, - STATE(2137), 1, + ACTIONS(3080), 1, + anon_sym_POUND, + STATE(2151), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2380), 1, + sym_sym_lit, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3206), 2, + ACTIONS(616), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(634), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3208), 3, + ACTIONS(1486), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(570), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(277), 19, + STATE(2263), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -64768,7 +64862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [58455] = 35, + [58590] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -64777,78 +64871,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(877), 1, + ACTIONS(472), 1, aux_sym_num_lit_token1, - ACTIONS(879), 1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(881), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(883), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(889), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(891), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(897), 1, + ACTIONS(492), 1, anon_sym_POUND_QMARK, - ACTIONS(899), 1, + ACTIONS(494), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(901), 1, + ACTIONS(496), 1, anon_sym_POUND_SQUOTE, - ACTIONS(903), 1, + ACTIONS(498), 1, anon_sym_SQUOTE, - ACTIONS(905), 1, + ACTIONS(500), 1, anon_sym_BQUOTE, - ACTIONS(907), 1, + ACTIONS(502), 1, anon_sym_COMMA_AT, - ACTIONS(909), 1, + ACTIONS(504), 1, anon_sym_COMMA, - ACTIONS(911), 1, + ACTIONS(506), 1, anon_sym_cl, - ACTIONS(2034), 1, - anon_sym_POUND, - ACTIONS(3216), 1, + ACTIONS(1488), 1, sym_self_referential_reader_macro, - STATE(1165), 1, - sym_sym_lit, - STATE(1233), 1, - sym__bare_set_lit, - STATE(2140), 1, + ACTIONS(1794), 1, + anon_sym_POUND, + STATE(2168), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(895), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2454), 1, + sym_sym_lit, + ACTIONS(490), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(913), 2, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(917), 2, + ACTIONS(512), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(919), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3212), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3214), 3, + ACTIONS(1486), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(622), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1275), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1190), 19, + STATE(2263), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -64868,7 +64962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [58590] = 35, + [58725] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -64877,78 +64971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(3220), 1, + ACTIONS(3308), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3218), 3, + ACTIONS(3306), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1992), 19, + STATE(2043), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -64968,87 +65062,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [58725] = 35, + [58860] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(664), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(666), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(668), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(670), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(676), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(678), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(684), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(686), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(688), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(690), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(692), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(694), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(696), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(698), 1, anon_sym_cl, - ACTIONS(3224), 1, + ACTIONS(1444), 1, + anon_sym_POUND, + ACTIONS(3312), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1167), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1175), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2160), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(682), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(700), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(704), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(706), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3222), 3, + ACTIONS(3310), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, + STATE(1174), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(294), 19, + STATE(1223), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -65068,7 +65162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [58860] = 35, + [58995] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -65077,78 +65171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(3230), 1, + ACTIONS(3318), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3226), 2, + ACTIONS(3314), 2, sym__ws, sym_comment, - ACTIONS(3228), 3, + ACTIONS(3316), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(690), 3, + STATE(691), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1991), 19, + STATE(2044), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -65168,7 +65262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [58995] = 35, + [59130] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -65207,19 +65301,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3236), 1, + ACTIONS(3322), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -65233,22 +65327,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3232), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3234), 3, + ACTIONS(3320), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(632), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(548), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(706), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -65268,7 +65362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [59130] = 35, + [59265] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -65277,78 +65371,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(877), 1, + ACTIONS(472), 1, aux_sym_num_lit_token1, - ACTIONS(879), 1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(881), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(883), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(889), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(891), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(897), 1, + ACTIONS(492), 1, anon_sym_POUND_QMARK, - ACTIONS(899), 1, + ACTIONS(494), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(901), 1, + ACTIONS(496), 1, anon_sym_POUND_SQUOTE, - ACTIONS(903), 1, + ACTIONS(498), 1, anon_sym_SQUOTE, - ACTIONS(905), 1, + ACTIONS(500), 1, anon_sym_BQUOTE, - ACTIONS(907), 1, + ACTIONS(502), 1, anon_sym_COMMA_AT, - ACTIONS(909), 1, + ACTIONS(504), 1, anon_sym_COMMA, - ACTIONS(911), 1, + ACTIONS(506), 1, anon_sym_cl, - ACTIONS(2034), 1, - anon_sym_POUND, - ACTIONS(3240), 1, + ACTIONS(1474), 1, sym_self_referential_reader_macro, - STATE(1165), 1, - sym_sym_lit, - STATE(1233), 1, - sym__bare_set_lit, - STATE(2140), 1, + ACTIONS(1794), 1, + anon_sym_POUND, + STATE(2168), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(895), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2454), 1, + sym_sym_lit, + ACTIONS(490), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(913), 2, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(917), 2, + ACTIONS(512), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(919), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(3324), 2, sym__ws, sym_comment, - ACTIONS(3238), 3, + ACTIONS(1472), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1275), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(613), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1281), 19, + STATE(2282), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2262), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -65368,7 +65462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [59265] = 35, + [59400] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -65377,78 +65471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(3244), 1, + ACTIONS(3328), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3242), 3, + ACTIONS(3326), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1990), 19, + STATE(2047), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -65468,87 +65562,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [59400] = 35, + [59535] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(61), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(65), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(67), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(69), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(71), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(73), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(77), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(79), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(81), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(83), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(85), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(87), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(89), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(658), 1, - anon_sym_LPAREN, - ACTIONS(662), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3248), 1, + ACTIONS(3332), 1, sym_self_referential_reader_macro, - STATE(822), 1, + STATE(1450), 1, sym_sym_lit, - STATE(824), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2149), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(75), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(93), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(97), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(99), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3246), 3, + ACTIONS(3330), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(823), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(884), 19, + STATE(699), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -65568,7 +65662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [59535] = 35, + [59670] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -65577,178 +65671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(3254), 1, + ACTIONS(3338), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3250), 2, + ACTIONS(3334), 2, sym__ws, sym_comment, - ACTIONS(3252), 3, + ACTIONS(3336), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(695), 3, + STATE(696), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1989), 19, - sym__form, - sym_num_lit, - sym_kwd_lit, - sym_str_lit, - sym_char_lit, - sym_list_lit, - sym_vec_lit, - sym_set_lit, - sym_read_cond_lit, - sym_splicing_read_cond_lit, - sym_var_quoting_lit, - sym_quoting_lit, - sym_syn_quoting_lit, - sym_unquote_splicing_lit, - sym_unquoting_lit, - sym_path_lit, - sym_package_lit, - sym_include_reader_macro, - sym_complex_num_lit, - [59670] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(877), 1, - aux_sym_num_lit_token1, - ACTIONS(879), 1, - anon_sym_COLON, - ACTIONS(881), 1, - anon_sym_COLON_COLON, - ACTIONS(883), 1, - anon_sym_DQUOTE, - ACTIONS(889), 1, - aux_sym_sym_lit_token1, - ACTIONS(891), 1, - anon_sym_LPAREN, - ACTIONS(897), 1, - anon_sym_POUND_QMARK, - ACTIONS(899), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(901), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(903), 1, - anon_sym_SQUOTE, - ACTIONS(905), 1, - anon_sym_BQUOTE, - ACTIONS(907), 1, - anon_sym_COMMA_AT, - ACTIONS(909), 1, - anon_sym_COMMA, - ACTIONS(911), 1, - anon_sym_cl, - ACTIONS(2034), 1, - anon_sym_POUND, - ACTIONS(3258), 1, - sym_self_referential_reader_macro, - STATE(1165), 1, - sym_sym_lit, - STATE(1233), 1, - sym__bare_set_lit, - STATE(2140), 1, - aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, - sym_old_meta_lit, - STATE(2239), 1, - sym__metadata_lit, - ACTIONS(895), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(913), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(917), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(919), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1434), 2, - sym__ws, - sym_comment, - ACTIONS(3256), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1275), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1564), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1280), 19, + STATE(2048), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -65803,23 +65797,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(89), 1, anon_sym_COMMA, - ACTIONS(658), 1, + ACTIONS(830), 1, anon_sym_LPAREN, - ACTIONS(662), 1, + ACTIONS(834), 1, anon_sym_cl, - ACTIONS(3262), 1, + ACTIONS(3342), 1, sym_self_referential_reader_macro, - STATE(822), 1, - sym_sym_lit, - STATE(824), 1, + STATE(927), 1, sym__bare_set_lit, - STATE(2149), 1, + STATE(929), 1, + sym_sym_lit, + STATE(2169), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, ACTIONS(75), 2, anon_sym_POUND0A, @@ -65833,22 +65827,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(99), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3260), 3, + ACTIONS(3340), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(823), 3, + STATE(928), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(893), 19, + STATE(843), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -65877,78 +65871,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(472), 1, + aux_sym_num_lit_token1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(492), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(494), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, - anon_sym_cl, - ACTIONS(783), 1, - aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(496), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(498), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(500), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(502), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(504), 1, anon_sym_COMMA, - ACTIONS(1436), 1, - anon_sym_POUND, - ACTIONS(3266), 1, + ACTIONS(506), 1, + anon_sym_cl, + ACTIONS(1656), 1, sym_self_referential_reader_macro, - STATE(1825), 1, - sym_sym_lit, - STATE(1887), 1, - sym__bare_set_lit, - STATE(2138), 1, + ACTIONS(1794), 1, + anon_sym_POUND, + STATE(2168), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(564), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(785), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2454), 1, + sym_sym_lit, + ACTIONS(490), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(508), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(512), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(514), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3264), 3, + ACTIONS(1654), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1988), 19, + STATE(2279), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -65977,78 +65971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(3272), 1, + ACTIONS(3346), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3268), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3270), 3, + ACTIONS(3344), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(700), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1987), 19, + STATE(2049), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -66077,78 +66071,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(877), 1, - aux_sym_num_lit_token1, - ACTIONS(879), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(881), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(883), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(889), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(891), 1, - anon_sym_LPAREN, - ACTIONS(897), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(899), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(901), 1, + ACTIONS(760), 1, + anon_sym_cl, + ACTIONS(838), 1, + aux_sym_num_lit_token1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(903), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(905), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(907), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(909), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(911), 1, - anon_sym_cl, - ACTIONS(2034), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(3276), 1, + ACTIONS(3352), 1, sym_self_referential_reader_macro, - STATE(1165), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1233), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2140), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(895), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(913), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(917), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(919), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(840), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(852), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(3348), 2, sym__ws, sym_comment, - ACTIONS(3274), 3, + ACTIONS(3350), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1275), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(701), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1279), 19, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2050), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -66177,78 +66171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(472), 1, + aux_sym_num_lit_token1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(492), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(494), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, - anon_sym_cl, - ACTIONS(783), 1, - aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(496), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(498), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(500), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(502), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(504), 1, anon_sym_COMMA, - ACTIONS(1436), 1, - anon_sym_POUND, - ACTIONS(3282), 1, + ACTIONS(506), 1, + anon_sym_cl, + ACTIONS(1708), 1, sym_self_referential_reader_macro, - STATE(1825), 1, - sym_sym_lit, - STATE(1887), 1, - sym__bare_set_lit, - STATE(2138), 1, + ACTIONS(1794), 1, + anon_sym_POUND, + STATE(2168), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(564), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(785), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2454), 1, + sym_sym_lit, + ACTIONS(490), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(508), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(512), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3278), 2, + ACTIONS(514), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3280), 3, + ACTIONS(1706), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(702), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1986), 19, + STATE(2280), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -66277,78 +66271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(877), 1, - aux_sym_num_lit_token1, - ACTIONS(879), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(881), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(883), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(889), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(891), 1, - anon_sym_LPAREN, - ACTIONS(897), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(899), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(901), 1, + ACTIONS(760), 1, + anon_sym_cl, + ACTIONS(838), 1, + aux_sym_num_lit_token1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(903), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(905), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(907), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(909), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(911), 1, - anon_sym_cl, - ACTIONS(2034), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(3288), 1, + ACTIONS(3358), 1, sym_self_referential_reader_macro, - STATE(1165), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1233), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2140), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(895), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(913), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(917), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(919), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3284), 2, + ACTIONS(840), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(852), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(3354), 2, sym__ws, sym_comment, - ACTIONS(3286), 3, + ACTIONS(3356), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(623), 3, + STATE(703), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1275), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1278), 19, + STATE(2051), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -66377,78 +66371,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(586), 1, + ACTIONS(190), 1, + anon_sym_POUND, + ACTIONS(194), 1, aux_sym_num_lit_token1, - ACTIONS(803), 1, + ACTIONS(196), 1, anon_sym_COLON, - ACTIONS(805), 1, + ACTIONS(198), 1, anon_sym_COLON_COLON, - ACTIONS(807), 1, + ACTIONS(200), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(202), 1, aux_sym_sym_lit_token1, - ACTIONS(811), 1, - anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(217), 1, anon_sym_POUND_QMARK, - ACTIONS(815), 1, + ACTIONS(219), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(817), 1, + ACTIONS(221), 1, anon_sym_POUND_SQUOTE, - ACTIONS(819), 1, + ACTIONS(223), 1, anon_sym_SQUOTE, - ACTIONS(821), 1, + ACTIONS(225), 1, anon_sym_BQUOTE, - ACTIONS(823), 1, + ACTIONS(227), 1, anon_sym_COMMA_AT, - ACTIONS(825), 1, + ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(827), 1, + ACTIONS(526), 1, + anon_sym_LPAREN, + ACTIONS(530), 1, anon_sym_cl, - ACTIONS(1876), 1, + ACTIONS(3364), 1, sym_self_referential_reader_macro, - ACTIONS(3046), 1, - anon_sym_POUND, - STATE(2135), 1, + STATE(1072), 1, + sym__bare_set_lit, + STATE(1074), 1, + sym_sym_lit, + STATE(2177), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2373), 1, - sym_sym_lit, - ACTIONS(604), 2, + ACTIONS(215), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(622), 2, + ACTIONS(236), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(628), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(829), 2, + ACTIONS(240), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(242), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3360), 2, sym__ws, sym_comment, - ACTIONS(1874), 3, + ACTIONS(3362), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(586), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1073), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2247), 19, + STATE(1017), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -66477,78 +66471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(927), 1, + ACTIONS(61), 1, + anon_sym_POUND, + ACTIONS(65), 1, aux_sym_num_lit_token1, - ACTIONS(929), 1, + ACTIONS(67), 1, anon_sym_COLON, - ACTIONS(931), 1, + ACTIONS(69), 1, anon_sym_COLON_COLON, - ACTIONS(933), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(939), 1, + ACTIONS(73), 1, aux_sym_sym_lit_token1, - ACTIONS(941), 1, - anon_sym_LPAREN, - ACTIONS(947), 1, + ACTIONS(77), 1, anon_sym_POUND_QMARK, - ACTIONS(949), 1, + ACTIONS(79), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(951), 1, + ACTIONS(81), 1, anon_sym_POUND_SQUOTE, - ACTIONS(953), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(955), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(957), 1, + ACTIONS(87), 1, anon_sym_COMMA_AT, - ACTIONS(959), 1, + ACTIONS(89), 1, anon_sym_COMMA, - ACTIONS(961), 1, + ACTIONS(830), 1, + anon_sym_LPAREN, + ACTIONS(834), 1, anon_sym_cl, - ACTIONS(1740), 1, - anon_sym_POUND, - ACTIONS(3294), 1, + ACTIONS(3368), 1, sym_self_referential_reader_macro, - STATE(1687), 1, + STATE(927), 1, sym__bare_set_lit, - STATE(1689), 1, + STATE(929), 1, sym_sym_lit, - STATE(2148), 1, + STATE(2169), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(945), 2, + ACTIONS(75), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(963), 2, + ACTIONS(93), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(967), 2, + ACTIONS(97), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(969), 2, + ACTIONS(99), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3290), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3292), 3, + ACTIONS(3366), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(524), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(928), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1574), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(842), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -66577,78 +66571,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(190), 1, + anon_sym_POUND, + ACTIONS(194), 1, + aux_sym_num_lit_token1, + ACTIONS(196), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(198), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(200), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(202), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(217), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(219), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, - anon_sym_cl, - ACTIONS(783), 1, - aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(221), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(223), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(225), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(227), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(1436), 1, - anon_sym_POUND, - ACTIONS(3298), 1, + ACTIONS(526), 1, + anon_sym_LPAREN, + ACTIONS(530), 1, + anon_sym_cl, + ACTIONS(3374), 1, sym_self_referential_reader_macro, - STATE(1825), 1, - sym_sym_lit, - STATE(1887), 1, + STATE(1072), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(1074), 1, + sym_sym_lit, + STATE(2177), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(564), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(215), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(236), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(240), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(242), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3370), 2, sym__ws, sym_comment, - ACTIONS(3296), 3, + ACTIONS(3372), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(588), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1073), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1985), 19, + STATE(1018), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -66677,78 +66671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(927), 1, - aux_sym_num_lit_token1, - ACTIONS(929), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(931), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(933), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(939), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(941), 1, - anon_sym_LPAREN, - ACTIONS(947), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(949), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(951), 1, + ACTIONS(760), 1, + anon_sym_cl, + ACTIONS(838), 1, + aux_sym_num_lit_token1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(953), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(955), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(957), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(959), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(961), 1, - anon_sym_cl, - ACTIONS(1740), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(3304), 1, + ACTIONS(3378), 1, sym_self_referential_reader_macro, - STATE(1687), 1, - sym__bare_set_lit, - STATE(1689), 1, + STATE(1848), 1, sym_sym_lit, - STATE(2148), 1, + STATE(1925), 1, + sym__bare_set_lit, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(945), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(963), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(967), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(969), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3300), 2, + ACTIONS(840), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(852), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3302), 3, + ACTIONS(3376), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(529), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1573), 19, + STATE(2052), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -66777,78 +66771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(927), 1, + ACTIONS(190), 1, + anon_sym_POUND, + ACTIONS(194), 1, aux_sym_num_lit_token1, - ACTIONS(929), 1, + ACTIONS(196), 1, anon_sym_COLON, - ACTIONS(931), 1, + ACTIONS(198), 1, anon_sym_COLON_COLON, - ACTIONS(933), 1, + ACTIONS(200), 1, anon_sym_DQUOTE, - ACTIONS(939), 1, + ACTIONS(202), 1, aux_sym_sym_lit_token1, - ACTIONS(941), 1, - anon_sym_LPAREN, - ACTIONS(947), 1, + ACTIONS(217), 1, anon_sym_POUND_QMARK, - ACTIONS(949), 1, + ACTIONS(219), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(951), 1, + ACTIONS(221), 1, anon_sym_POUND_SQUOTE, - ACTIONS(953), 1, + ACTIONS(223), 1, anon_sym_SQUOTE, - ACTIONS(955), 1, + ACTIONS(225), 1, anon_sym_BQUOTE, - ACTIONS(957), 1, + ACTIONS(227), 1, anon_sym_COMMA_AT, - ACTIONS(959), 1, + ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(961), 1, + ACTIONS(526), 1, + anon_sym_LPAREN, + ACTIONS(530), 1, anon_sym_cl, - ACTIONS(1740), 1, - anon_sym_POUND, - ACTIONS(3308), 1, + ACTIONS(3384), 1, sym_self_referential_reader_macro, - STATE(1687), 1, + STATE(1072), 1, sym__bare_set_lit, - STATE(1689), 1, + STATE(1074), 1, sym_sym_lit, - STATE(2148), 1, + STATE(2177), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(945), 2, + ACTIONS(215), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(963), 2, + ACTIONS(236), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(967), 2, + ACTIONS(240), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(969), 2, + ACTIONS(242), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(3380), 2, sym__ws, sym_comment, - ACTIONS(3306), 3, + ACTIONS(3382), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(591), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(1073), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1572), 19, + STATE(1019), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -66877,78 +66871,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(877), 1, + ACTIONS(190), 1, + anon_sym_POUND, + ACTIONS(194), 1, aux_sym_num_lit_token1, - ACTIONS(879), 1, + ACTIONS(196), 1, anon_sym_COLON, - ACTIONS(881), 1, + ACTIONS(198), 1, anon_sym_COLON_COLON, - ACTIONS(883), 1, + ACTIONS(200), 1, anon_sym_DQUOTE, - ACTIONS(889), 1, + ACTIONS(202), 1, aux_sym_sym_lit_token1, - ACTIONS(891), 1, - anon_sym_LPAREN, - ACTIONS(897), 1, + ACTIONS(217), 1, anon_sym_POUND_QMARK, - ACTIONS(899), 1, + ACTIONS(219), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(901), 1, + ACTIONS(221), 1, anon_sym_POUND_SQUOTE, - ACTIONS(903), 1, + ACTIONS(223), 1, anon_sym_SQUOTE, - ACTIONS(905), 1, + ACTIONS(225), 1, anon_sym_BQUOTE, - ACTIONS(907), 1, + ACTIONS(227), 1, anon_sym_COMMA_AT, - ACTIONS(909), 1, + ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(911), 1, + ACTIONS(526), 1, + anon_sym_LPAREN, + ACTIONS(530), 1, anon_sym_cl, - ACTIONS(2034), 1, - anon_sym_POUND, - ACTIONS(3314), 1, + ACTIONS(3390), 1, sym_self_referential_reader_macro, - STATE(1165), 1, - sym_sym_lit, - STATE(1233), 1, + STATE(1072), 1, sym__bare_set_lit, - STATE(2140), 1, + STATE(1074), 1, + sym_sym_lit, + STATE(2177), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(895), 2, + ACTIONS(215), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(913), 2, + ACTIONS(236), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(917), 2, + ACTIONS(240), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(919), 2, + ACTIONS(242), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3310), 2, + ACTIONS(3386), 2, sym__ws, sym_comment, - ACTIONS(3312), 3, + ACTIONS(3388), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(626), 3, + STATE(598), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1275), 3, + STATE(1073), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1255), 19, + STATE(1023), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -66977,78 +66971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(927), 1, + ACTIONS(190), 1, + anon_sym_POUND, + ACTIONS(194), 1, aux_sym_num_lit_token1, - ACTIONS(929), 1, + ACTIONS(196), 1, anon_sym_COLON, - ACTIONS(931), 1, + ACTIONS(198), 1, anon_sym_COLON_COLON, - ACTIONS(933), 1, + ACTIONS(200), 1, anon_sym_DQUOTE, - ACTIONS(939), 1, + ACTIONS(202), 1, aux_sym_sym_lit_token1, - ACTIONS(941), 1, - anon_sym_LPAREN, - ACTIONS(947), 1, + ACTIONS(217), 1, anon_sym_POUND_QMARK, - ACTIONS(949), 1, + ACTIONS(219), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(951), 1, + ACTIONS(221), 1, anon_sym_POUND_SQUOTE, - ACTIONS(953), 1, + ACTIONS(223), 1, anon_sym_SQUOTE, - ACTIONS(955), 1, + ACTIONS(225), 1, anon_sym_BQUOTE, - ACTIONS(957), 1, + ACTIONS(227), 1, anon_sym_COMMA_AT, - ACTIONS(959), 1, + ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(961), 1, + ACTIONS(526), 1, + anon_sym_LPAREN, + ACTIONS(530), 1, anon_sym_cl, - ACTIONS(1740), 1, - anon_sym_POUND, - ACTIONS(3318), 1, + ACTIONS(3394), 1, sym_self_referential_reader_macro, - STATE(1687), 1, + STATE(1072), 1, sym__bare_set_lit, - STATE(1689), 1, + STATE(1074), 1, sym_sym_lit, - STATE(2148), 1, + STATE(2177), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(945), 2, + ACTIONS(215), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(963), 2, + ACTIONS(236), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(967), 2, + ACTIONS(240), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(969), 2, + ACTIONS(242), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3316), 3, + ACTIONS(3392), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(1073), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1571), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1026), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -67077,78 +67071,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(877), 1, + ACTIONS(190), 1, + anon_sym_POUND, + ACTIONS(194), 1, aux_sym_num_lit_token1, - ACTIONS(879), 1, + ACTIONS(196), 1, anon_sym_COLON, - ACTIONS(881), 1, + ACTIONS(198), 1, anon_sym_COLON_COLON, - ACTIONS(883), 1, + ACTIONS(200), 1, anon_sym_DQUOTE, - ACTIONS(889), 1, + ACTIONS(202), 1, aux_sym_sym_lit_token1, - ACTIONS(891), 1, - anon_sym_LPAREN, - ACTIONS(897), 1, + ACTIONS(217), 1, anon_sym_POUND_QMARK, - ACTIONS(899), 1, + ACTIONS(219), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(901), 1, + ACTIONS(221), 1, anon_sym_POUND_SQUOTE, - ACTIONS(903), 1, + ACTIONS(223), 1, anon_sym_SQUOTE, - ACTIONS(905), 1, + ACTIONS(225), 1, anon_sym_BQUOTE, - ACTIONS(907), 1, + ACTIONS(227), 1, anon_sym_COMMA_AT, - ACTIONS(909), 1, + ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(911), 1, + ACTIONS(526), 1, + anon_sym_LPAREN, + ACTIONS(530), 1, anon_sym_cl, - ACTIONS(2034), 1, - anon_sym_POUND, - ACTIONS(3322), 1, + ACTIONS(3398), 1, sym_self_referential_reader_macro, - STATE(1165), 1, - sym_sym_lit, - STATE(1233), 1, + STATE(1072), 1, sym__bare_set_lit, - STATE(2140), 1, + STATE(1074), 1, + sym_sym_lit, + STATE(2177), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(895), 2, + ACTIONS(215), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(913), 2, + ACTIONS(236), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(917), 2, + ACTIONS(240), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(919), 2, + ACTIONS(242), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3320), 3, + ACTIONS(3396), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1275), 3, + STATE(1073), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1250), 19, + STATE(1027), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -67177,78 +67171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(877), 1, + ACTIONS(190), 1, + anon_sym_POUND, + ACTIONS(194), 1, aux_sym_num_lit_token1, - ACTIONS(879), 1, + ACTIONS(196), 1, anon_sym_COLON, - ACTIONS(881), 1, + ACTIONS(198), 1, anon_sym_COLON_COLON, - ACTIONS(883), 1, + ACTIONS(200), 1, anon_sym_DQUOTE, - ACTIONS(889), 1, + ACTIONS(202), 1, aux_sym_sym_lit_token1, - ACTIONS(891), 1, - anon_sym_LPAREN, - ACTIONS(897), 1, + ACTIONS(217), 1, anon_sym_POUND_QMARK, - ACTIONS(899), 1, + ACTIONS(219), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(901), 1, + ACTIONS(221), 1, anon_sym_POUND_SQUOTE, - ACTIONS(903), 1, + ACTIONS(223), 1, anon_sym_SQUOTE, - ACTIONS(905), 1, + ACTIONS(225), 1, anon_sym_BQUOTE, - ACTIONS(907), 1, + ACTIONS(227), 1, anon_sym_COMMA_AT, - ACTIONS(909), 1, + ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(911), 1, + ACTIONS(526), 1, + anon_sym_LPAREN, + ACTIONS(530), 1, anon_sym_cl, - ACTIONS(2034), 1, - anon_sym_POUND, - ACTIONS(3326), 1, + ACTIONS(3402), 1, sym_self_referential_reader_macro, - STATE(1165), 1, - sym_sym_lit, - STATE(1233), 1, + STATE(1072), 1, sym__bare_set_lit, - STATE(2140), 1, + STATE(1074), 1, + sym_sym_lit, + STATE(2177), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(895), 2, + ACTIONS(215), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(913), 2, + ACTIONS(236), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(917), 2, + ACTIONS(240), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(919), 2, + ACTIONS(242), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3324), 3, + ACTIONS(3400), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1275), 3, + STATE(1073), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1246), 19, + STATE(1028), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -67277,78 +67271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(877), 1, + ACTIONS(190), 1, + anon_sym_POUND, + ACTIONS(194), 1, aux_sym_num_lit_token1, - ACTIONS(879), 1, + ACTIONS(196), 1, anon_sym_COLON, - ACTIONS(881), 1, + ACTIONS(198), 1, anon_sym_COLON_COLON, - ACTIONS(883), 1, + ACTIONS(200), 1, anon_sym_DQUOTE, - ACTIONS(889), 1, + ACTIONS(202), 1, aux_sym_sym_lit_token1, - ACTIONS(891), 1, - anon_sym_LPAREN, - ACTIONS(897), 1, + ACTIONS(217), 1, anon_sym_POUND_QMARK, - ACTIONS(899), 1, + ACTIONS(219), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(901), 1, + ACTIONS(221), 1, anon_sym_POUND_SQUOTE, - ACTIONS(903), 1, + ACTIONS(223), 1, anon_sym_SQUOTE, - ACTIONS(905), 1, + ACTIONS(225), 1, anon_sym_BQUOTE, - ACTIONS(907), 1, + ACTIONS(227), 1, anon_sym_COMMA_AT, - ACTIONS(909), 1, + ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(911), 1, + ACTIONS(526), 1, + anon_sym_LPAREN, + ACTIONS(530), 1, anon_sym_cl, - ACTIONS(2034), 1, - anon_sym_POUND, - ACTIONS(3332), 1, + ACTIONS(3406), 1, sym_self_referential_reader_macro, - STATE(1165), 1, - sym_sym_lit, - STATE(1233), 1, + STATE(1072), 1, sym__bare_set_lit, - STATE(2140), 1, + STATE(1074), 1, + sym_sym_lit, + STATE(2177), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(895), 2, + ACTIONS(215), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(913), 2, + ACTIONS(236), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(917), 2, + ACTIONS(240), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(919), 2, + ACTIONS(242), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3328), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3330), 3, + ACTIONS(3404), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(628), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1275), 3, + STATE(1073), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1245), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1029), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -67371,84 +67365,84 @@ static const uint16_t ts_small_parse_table[] = { [61965] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(190), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(194), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(196), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(198), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(200), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(202), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(217), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(219), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(221), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(223), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(225), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(227), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(526), 1, + anon_sym_LPAREN, + ACTIONS(530), 1, anon_sym_cl, - ACTIONS(3338), 1, + ACTIONS(3410), 1, sym_self_referential_reader_macro, - STATE(1506), 1, - sym_sym_lit, - STATE(1511), 1, + STATE(1072), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(1074), 1, + sym_sym_lit, + STATE(2177), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(215), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(236), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(240), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(242), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3334), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3336), 3, + ACTIONS(3408), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(634), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(1073), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(549), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1030), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -67471,84 +67465,84 @@ static const uint16_t ts_small_parse_table[] = { [62100] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(877), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(879), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(881), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(883), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(889), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(891), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(897), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(899), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(901), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(903), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(905), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(907), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(909), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(911), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(2034), 1, - anon_sym_POUND, - ACTIONS(3342), 1, + ACTIONS(3414), 1, sym_self_referential_reader_macro, - STATE(1165), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1233), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2140), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(895), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(913), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(917), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(919), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3340), 3, + ACTIONS(3412), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1275), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1239), 19, + STATE(581), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -67577,78 +67571,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(877), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(728), 1, aux_sym_num_lit_token1, - ACTIONS(879), 1, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(881), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(883), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(889), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(891), 1, - anon_sym_LPAREN, - ACTIONS(897), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(899), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(901), 1, + ACTIONS(750), 1, anon_sym_POUND_SQUOTE, - ACTIONS(903), 1, + ACTIONS(752), 1, anon_sym_SQUOTE, - ACTIONS(905), 1, + ACTIONS(754), 1, anon_sym_BQUOTE, - ACTIONS(907), 1, + ACTIONS(756), 1, anon_sym_COMMA_AT, - ACTIONS(909), 1, + ACTIONS(758), 1, anon_sym_COMMA, - ACTIONS(911), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(2034), 1, + ACTIONS(975), 1, anon_sym_POUND, - ACTIONS(3348), 1, + ACTIONS(1668), 1, sym_self_referential_reader_macro, - STATE(1165), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1233), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2140), 1, + STATE(2167), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(895), 2, + ACTIONS(744), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(913), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(917), 2, + ACTIONS(766), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(919), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3344), 2, + ACTIONS(3416), 2, sym__ws, sym_comment, - ACTIONS(3346), 3, + ACTIONS(1666), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(630), 3, + STATE(571), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1275), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1238), 19, + STATE(1935), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -67677,78 +67671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(877), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(728), 1, aux_sym_num_lit_token1, - ACTIONS(879), 1, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(881), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(883), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(889), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(891), 1, - anon_sym_LPAREN, - ACTIONS(897), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(899), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(901), 1, + ACTIONS(750), 1, anon_sym_POUND_SQUOTE, - ACTIONS(903), 1, + ACTIONS(752), 1, anon_sym_SQUOTE, - ACTIONS(905), 1, + ACTIONS(754), 1, anon_sym_BQUOTE, - ACTIONS(907), 1, + ACTIONS(756), 1, anon_sym_COMMA_AT, - ACTIONS(909), 1, + ACTIONS(758), 1, anon_sym_COMMA, - ACTIONS(911), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(2034), 1, + ACTIONS(975), 1, anon_sym_POUND, - ACTIONS(3352), 1, + ACTIONS(1798), 1, sym_self_referential_reader_macro, - STATE(1165), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1233), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2140), 1, + STATE(2167), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(895), 2, + ACTIONS(744), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(913), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(917), 2, + ACTIONS(766), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(919), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3350), 3, + ACTIONS(1796), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1275), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1196), 19, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1866), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -67771,84 +67765,84 @@ static const uint16_t ts_small_parse_table[] = { [62505] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, - aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(728), 1, + aux_sym_num_lit_token1, + ACTIONS(730), 1, + anon_sym_COLON, + ACTIONS(732), 1, + anon_sym_COLON_COLON, + ACTIONS(734), 1, + anon_sym_DQUOTE, + ACTIONS(740), 1, + aux_sym_sym_lit_token1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(750), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(752), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(754), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(756), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(758), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(3358), 1, + ACTIONS(975), 1, + anon_sym_POUND, + ACTIONS(1738), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2167), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(744), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(766), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3354), 2, + ACTIONS(3418), 2, sym__ws, sym_comment, - ACTIONS(3356), 3, + ACTIONS(1736), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(601), 3, + STATE(353), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(302), 19, + STATE(1936), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -67877,78 +67871,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(877), 1, + ACTIONS(604), 1, aux_sym_num_lit_token1, - ACTIONS(879), 1, + ACTIONS(606), 1, anon_sym_COLON, - ACTIONS(881), 1, + ACTIONS(608), 1, anon_sym_COLON_COLON, - ACTIONS(883), 1, + ACTIONS(610), 1, anon_sym_DQUOTE, - ACTIONS(889), 1, + ACTIONS(612), 1, aux_sym_sym_lit_token1, - ACTIONS(891), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(897), 1, + ACTIONS(618), 1, anon_sym_POUND_QMARK, - ACTIONS(899), 1, + ACTIONS(620), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(901), 1, + ACTIONS(622), 1, anon_sym_POUND_SQUOTE, - ACTIONS(903), 1, + ACTIONS(624), 1, anon_sym_SQUOTE, - ACTIONS(905), 1, + ACTIONS(626), 1, anon_sym_BQUOTE, - ACTIONS(907), 1, + ACTIONS(628), 1, anon_sym_COMMA_AT, - ACTIONS(909), 1, + ACTIONS(630), 1, anon_sym_COMMA, - ACTIONS(911), 1, + ACTIONS(632), 1, anon_sym_cl, - ACTIONS(2034), 1, - anon_sym_POUND, - ACTIONS(3362), 1, + ACTIONS(1498), 1, sym_self_referential_reader_macro, - STATE(1165), 1, - sym_sym_lit, - STATE(1233), 1, - sym__bare_set_lit, - STATE(2140), 1, + ACTIONS(3080), 1, + anon_sym_POUND, + STATE(2151), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(895), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(913), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2380), 1, + sym_sym_lit, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(917), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(919), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(616), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(634), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(3420), 2, sym__ws, sym_comment, - ACTIONS(3360), 3, + ACTIONS(1496), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1275), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(557), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1194), 19, + STATE(2282), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2264), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -67977,78 +67971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(586), 1, + ACTIONS(190), 1, + anon_sym_POUND, + ACTIONS(194), 1, aux_sym_num_lit_token1, - ACTIONS(803), 1, + ACTIONS(196), 1, anon_sym_COLON, - ACTIONS(805), 1, + ACTIONS(198), 1, anon_sym_COLON_COLON, - ACTIONS(807), 1, + ACTIONS(200), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(202), 1, aux_sym_sym_lit_token1, - ACTIONS(811), 1, - anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(217), 1, anon_sym_POUND_QMARK, - ACTIONS(815), 1, + ACTIONS(219), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(817), 1, + ACTIONS(221), 1, anon_sym_POUND_SQUOTE, - ACTIONS(819), 1, + ACTIONS(223), 1, anon_sym_SQUOTE, - ACTIONS(821), 1, + ACTIONS(225), 1, anon_sym_BQUOTE, - ACTIONS(823), 1, + ACTIONS(227), 1, anon_sym_COMMA_AT, - ACTIONS(825), 1, + ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(827), 1, + ACTIONS(526), 1, + anon_sym_LPAREN, + ACTIONS(530), 1, anon_sym_cl, - ACTIONS(1712), 1, + ACTIONS(3426), 1, sym_self_referential_reader_macro, - ACTIONS(3046), 1, - anon_sym_POUND, - STATE(2135), 1, + STATE(1072), 1, + sym__bare_set_lit, + STATE(1074), 1, + sym_sym_lit, + STATE(2177), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2373), 1, - sym_sym_lit, - ACTIONS(604), 2, + ACTIONS(215), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(622), 2, + ACTIONS(236), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(628), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(829), 2, + ACTIONS(240), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3364), 2, + ACTIONS(242), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3422), 2, sym__ws, sym_comment, - ACTIONS(1710), 3, + ACTIONS(3424), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(585), 3, + STATE(621), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1073), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2248), 19, + STATE(1049), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -68071,84 +68065,84 @@ static const uint16_t ts_small_parse_table[] = { [62910] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(190), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(194), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(196), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(198), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(200), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(202), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(217), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(219), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(221), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(223), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(225), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(227), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(526), 1, + anon_sym_LPAREN, + ACTIONS(530), 1, anon_sym_cl, - ACTIONS(3368), 1, + ACTIONS(3432), 1, sym_self_referential_reader_macro, - STATE(1506), 1, - sym_sym_lit, - STATE(1511), 1, + STATE(1072), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(1074), 1, + sym_sym_lit, + STATE(2177), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(215), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(236), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(240), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(242), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(3428), 2, sym__ws, sym_comment, - ACTIONS(3366), 3, + ACTIONS(3430), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(622), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(552), 19, + STATE(1073), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1052), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -68177,78 +68171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(586), 1, + ACTIONS(604), 1, aux_sym_num_lit_token1, - ACTIONS(803), 1, + ACTIONS(606), 1, anon_sym_COLON, - ACTIONS(805), 1, + ACTIONS(608), 1, anon_sym_COLON_COLON, - ACTIONS(807), 1, + ACTIONS(610), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(612), 1, aux_sym_sym_lit_token1, - ACTIONS(811), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(618), 1, anon_sym_POUND_QMARK, - ACTIONS(815), 1, + ACTIONS(620), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(817), 1, + ACTIONS(622), 1, anon_sym_POUND_SQUOTE, - ACTIONS(819), 1, + ACTIONS(624), 1, anon_sym_SQUOTE, - ACTIONS(821), 1, + ACTIONS(626), 1, anon_sym_BQUOTE, - ACTIONS(823), 1, + ACTIONS(628), 1, anon_sym_COMMA_AT, - ACTIONS(825), 1, + ACTIONS(630), 1, anon_sym_COMMA, - ACTIONS(827), 1, + ACTIONS(632), 1, anon_sym_cl, - ACTIONS(1816), 1, + ACTIONS(1502), 1, sym_self_referential_reader_macro, - ACTIONS(3046), 1, + ACTIONS(3080), 1, anon_sym_POUND, - STATE(2135), 1, + STATE(2151), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, + STATE(2337), 1, sym__bare_set_lit, - STATE(2373), 1, + STATE(2380), 1, sym_sym_lit, - ACTIONS(604), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(622), 2, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(628), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(829), 2, + ACTIONS(616), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(634), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3370), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(1814), 3, + ACTIONS(1500), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(592), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2249), 19, + STATE(2265), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -68271,84 +68265,84 @@ static const uint16_t ts_small_parse_table[] = { [63180] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(190), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(194), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(196), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(198), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(200), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(202), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(217), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(219), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(221), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(223), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(225), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(227), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(526), 1, + anon_sym_LPAREN, + ACTIONS(530), 1, anon_sym_cl, - ACTIONS(3374), 1, + ACTIONS(3438), 1, sym_self_referential_reader_macro, - STATE(1506), 1, - sym_sym_lit, - STATE(1511), 1, + STATE(1072), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(1074), 1, + sym_sym_lit, + STATE(2177), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(215), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(236), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(240), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(242), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(3434), 2, sym__ws, sym_comment, - ACTIONS(3372), 3, + ACTIONS(3436), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(623), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(555), 19, + STATE(1073), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1053), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -68377,78 +68371,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(803), 1, + ACTIONS(664), 1, + aux_sym_num_lit_token1, + ACTIONS(666), 1, anon_sym_COLON, - ACTIONS(805), 1, + ACTIONS(668), 1, anon_sym_COLON_COLON, - ACTIONS(807), 1, + ACTIONS(670), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(676), 1, aux_sym_sym_lit_token1, - ACTIONS(811), 1, + ACTIONS(678), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(684), 1, anon_sym_POUND_QMARK, - ACTIONS(837), 1, - aux_sym_num_lit_token1, - ACTIONS(847), 1, + ACTIONS(686), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(849), 1, + ACTIONS(688), 1, anon_sym_POUND_SQUOTE, - ACTIONS(851), 1, + ACTIONS(690), 1, anon_sym_SQUOTE, - ACTIONS(853), 1, + ACTIONS(692), 1, anon_sym_BQUOTE, - ACTIONS(855), 1, + ACTIONS(694), 1, anon_sym_COMMA_AT, - ACTIONS(857), 1, + ACTIONS(696), 1, anon_sym_COMMA, - ACTIONS(859), 1, + ACTIONS(698), 1, anon_sym_cl, - ACTIONS(1466), 1, + ACTIONS(1444), 1, anon_sym_POUND, - ACTIONS(3380), 1, + ACTIONS(3444), 1, sym_self_referential_reader_macro, - STATE(1794), 1, + STATE(1167), 1, + sym_sym_lit, + STATE(1175), 1, sym__bare_set_lit, - STATE(2152), 1, + STATE(2160), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2223), 1, - sym_sym_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(312), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(318), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(845), 2, + ACTIONS(682), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(863), 2, + ACTIONS(700), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(704), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3376), 2, + ACTIONS(706), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3440), 2, sym__ws, sym_comment, - ACTIONS(3378), 3, + ACTIONS(3442), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(312), 3, + STATE(641), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1174), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2159), 19, + STATE(1227), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -68471,84 +68465,84 @@ static const uint16_t ts_small_parse_table[] = { [63450] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(586), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(803), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(805), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(807), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(811), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(815), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(817), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(819), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(821), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(823), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(825), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(827), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(2300), 1, + ACTIONS(3448), 1, sym_self_referential_reader_macro, - ACTIONS(3046), 1, - anon_sym_POUND, - STATE(2135), 1, + STATE(1450), 1, + sym_sym_lit, + STATE(1452), 1, + sym__bare_set_lit, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2373), 1, - sym_sym_lit, - ACTIONS(604), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(622), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(628), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(829), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2298), 3, + ACTIONS(3446), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2250), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(635), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -68577,78 +68571,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(586), 1, + ACTIONS(190), 1, + anon_sym_POUND, + ACTIONS(194), 1, aux_sym_num_lit_token1, - ACTIONS(803), 1, + ACTIONS(196), 1, anon_sym_COLON, - ACTIONS(805), 1, + ACTIONS(198), 1, anon_sym_COLON_COLON, - ACTIONS(807), 1, + ACTIONS(200), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(202), 1, aux_sym_sym_lit_token1, - ACTIONS(811), 1, - anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(217), 1, anon_sym_POUND_QMARK, - ACTIONS(815), 1, + ACTIONS(219), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(817), 1, + ACTIONS(221), 1, anon_sym_POUND_SQUOTE, - ACTIONS(819), 1, + ACTIONS(223), 1, anon_sym_SQUOTE, - ACTIONS(821), 1, + ACTIONS(225), 1, anon_sym_BQUOTE, - ACTIONS(823), 1, + ACTIONS(227), 1, anon_sym_COMMA_AT, - ACTIONS(825), 1, + ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(827), 1, + ACTIONS(526), 1, + anon_sym_LPAREN, + ACTIONS(530), 1, anon_sym_cl, - ACTIONS(3046), 1, - anon_sym_POUND, - ACTIONS(3380), 1, + ACTIONS(3454), 1, sym_self_referential_reader_macro, - STATE(2135), 1, + STATE(1072), 1, + sym__bare_set_lit, + STATE(1074), 1, + sym_sym_lit, + STATE(2177), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2373), 1, - sym_sym_lit, - ACTIONS(604), 2, + ACTIONS(215), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(622), 2, + ACTIONS(236), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(628), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(829), 2, + ACTIONS(240), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3382), 2, + ACTIONS(242), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3450), 2, sym__ws, sym_comment, - ACTIONS(3378), 3, + ACTIONS(3452), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(698), 3, + STATE(624), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1073), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2159), 19, + STATE(1054), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -68677,78 +68671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(586), 1, + ACTIONS(190), 1, + anon_sym_POUND, + ACTIONS(194), 1, aux_sym_num_lit_token1, - ACTIONS(803), 1, + ACTIONS(196), 1, anon_sym_COLON, - ACTIONS(805), 1, + ACTIONS(198), 1, anon_sym_COLON_COLON, - ACTIONS(807), 1, + ACTIONS(200), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(202), 1, aux_sym_sym_lit_token1, - ACTIONS(811), 1, - anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(217), 1, anon_sym_POUND_QMARK, - ACTIONS(815), 1, + ACTIONS(219), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(817), 1, + ACTIONS(221), 1, anon_sym_POUND_SQUOTE, - ACTIONS(819), 1, + ACTIONS(223), 1, anon_sym_SQUOTE, - ACTIONS(821), 1, + ACTIONS(225), 1, anon_sym_BQUOTE, - ACTIONS(823), 1, + ACTIONS(227), 1, anon_sym_COMMA_AT, - ACTIONS(825), 1, + ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(827), 1, + ACTIONS(526), 1, + anon_sym_LPAREN, + ACTIONS(530), 1, anon_sym_cl, - ACTIONS(2304), 1, + ACTIONS(3460), 1, sym_self_referential_reader_macro, - ACTIONS(3046), 1, - anon_sym_POUND, - STATE(2135), 1, + STATE(1072), 1, + sym__bare_set_lit, + STATE(1074), 1, + sym_sym_lit, + STATE(2177), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2373), 1, - sym_sym_lit, - ACTIONS(604), 2, + ACTIONS(215), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(622), 2, + ACTIONS(236), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(628), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(829), 2, + ACTIONS(240), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(242), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3456), 2, sym__ws, sym_comment, - ACTIONS(2302), 3, + ACTIONS(3458), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(625), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1073), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2251), 19, + STATE(1055), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -68777,78 +68771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(586), 1, + ACTIONS(664), 1, aux_sym_num_lit_token1, - ACTIONS(803), 1, + ACTIONS(666), 1, anon_sym_COLON, - ACTIONS(805), 1, + ACTIONS(668), 1, anon_sym_COLON_COLON, - ACTIONS(807), 1, + ACTIONS(670), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(676), 1, aux_sym_sym_lit_token1, - ACTIONS(811), 1, + ACTIONS(678), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(684), 1, anon_sym_POUND_QMARK, - ACTIONS(815), 1, + ACTIONS(686), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(817), 1, + ACTIONS(688), 1, anon_sym_POUND_SQUOTE, - ACTIONS(819), 1, + ACTIONS(690), 1, anon_sym_SQUOTE, - ACTIONS(821), 1, + ACTIONS(692), 1, anon_sym_BQUOTE, - ACTIONS(823), 1, + ACTIONS(694), 1, anon_sym_COMMA_AT, - ACTIONS(825), 1, + ACTIONS(696), 1, anon_sym_COMMA, - ACTIONS(827), 1, + ACTIONS(698), 1, anon_sym_cl, - ACTIONS(2308), 1, - sym_self_referential_reader_macro, - ACTIONS(3046), 1, + ACTIONS(1444), 1, anon_sym_POUND, - STATE(2135), 1, + ACTIONS(3464), 1, + sym_self_referential_reader_macro, + STATE(1167), 1, + sym_sym_lit, + STATE(1175), 1, + sym__bare_set_lit, + STATE(2160), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2373), 1, - sym_sym_lit, - ACTIONS(604), 2, + ACTIONS(682), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(622), 2, + ACTIONS(700), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(628), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(829), 2, + ACTIONS(704), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(706), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2306), 3, + ACTIONS(3462), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1174), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2252), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1244), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -68907,19 +68901,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3388), 1, + ACTIONS(3470), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -68933,22 +68927,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3384), 2, + ACTIONS(3466), 2, sym__ws, sym_comment, - ACTIONS(3386), 3, + ACTIONS(3468), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(643), 3, + STATE(604), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(662), 19, + STATE(559), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -68977,78 +68971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(586), 1, + ACTIONS(664), 1, aux_sym_num_lit_token1, - ACTIONS(803), 1, + ACTIONS(666), 1, anon_sym_COLON, - ACTIONS(805), 1, + ACTIONS(668), 1, anon_sym_COLON_COLON, - ACTIONS(807), 1, + ACTIONS(670), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(676), 1, aux_sym_sym_lit_token1, - ACTIONS(811), 1, + ACTIONS(678), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(684), 1, anon_sym_POUND_QMARK, - ACTIONS(815), 1, + ACTIONS(686), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(817), 1, + ACTIONS(688), 1, anon_sym_POUND_SQUOTE, - ACTIONS(819), 1, + ACTIONS(690), 1, anon_sym_SQUOTE, - ACTIONS(821), 1, + ACTIONS(692), 1, anon_sym_BQUOTE, - ACTIONS(823), 1, + ACTIONS(694), 1, anon_sym_COMMA_AT, - ACTIONS(825), 1, + ACTIONS(696), 1, anon_sym_COMMA, - ACTIONS(827), 1, + ACTIONS(698), 1, anon_sym_cl, - ACTIONS(2316), 1, - sym_self_referential_reader_macro, - ACTIONS(3046), 1, + ACTIONS(1444), 1, anon_sym_POUND, - STATE(2135), 1, + ACTIONS(3474), 1, + sym_self_referential_reader_macro, + STATE(1167), 1, + sym_sym_lit, + STATE(1175), 1, + sym__bare_set_lit, + STATE(2160), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2373), 1, - sym_sym_lit, - ACTIONS(604), 2, + ACTIONS(682), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(622), 2, + ACTIONS(700), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(628), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(829), 2, + ACTIONS(704), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3390), 2, + ACTIONS(706), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2314), 3, + ACTIONS(3472), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(615), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1174), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2255), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1245), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -69077,78 +69071,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(586), 1, + ACTIONS(604), 1, aux_sym_num_lit_token1, - ACTIONS(803), 1, + ACTIONS(606), 1, anon_sym_COLON, - ACTIONS(805), 1, + ACTIONS(608), 1, anon_sym_COLON_COLON, - ACTIONS(807), 1, + ACTIONS(610), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(612), 1, aux_sym_sym_lit_token1, - ACTIONS(811), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(618), 1, anon_sym_POUND_QMARK, - ACTIONS(815), 1, + ACTIONS(620), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(817), 1, + ACTIONS(622), 1, anon_sym_POUND_SQUOTE, - ACTIONS(819), 1, + ACTIONS(624), 1, anon_sym_SQUOTE, - ACTIONS(821), 1, + ACTIONS(626), 1, anon_sym_BQUOTE, - ACTIONS(823), 1, + ACTIONS(628), 1, anon_sym_COMMA_AT, - ACTIONS(825), 1, + ACTIONS(630), 1, anon_sym_COMMA, - ACTIONS(827), 1, + ACTIONS(632), 1, anon_sym_cl, - ACTIONS(2320), 1, - sym_self_referential_reader_macro, - ACTIONS(3046), 1, + ACTIONS(3080), 1, anon_sym_POUND, - STATE(2135), 1, + ACTIONS(3480), 1, + sym_self_referential_reader_macro, + STATE(2151), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, + STATE(2337), 1, sym__bare_set_lit, - STATE(2373), 1, + STATE(2380), 1, sym_sym_lit, - ACTIONS(604), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(622), 2, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(628), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(829), 2, + ACTIONS(616), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(634), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(3476), 2, sym__ws, sym_comment, - ACTIONS(2318), 3, + ACTIONS(3478), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(753), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2256), 19, + STATE(2157), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -69207,19 +69201,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3394), 1, + ACTIONS(3486), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -69233,22 +69227,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(3482), 2, sym__ws, sym_comment, - ACTIONS(3392), 3, + ACTIONS(3484), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(607), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(641), 19, + STATE(1451), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(683), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -69271,84 +69265,84 @@ static const uint16_t ts_small_parse_table[] = { [64530] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(61), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(65), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(67), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(69), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(73), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(77), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(79), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(81), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(87), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(89), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(830), 1, + anon_sym_LPAREN, + ACTIONS(834), 1, anon_sym_cl, - ACTIONS(3400), 1, + ACTIONS(3490), 1, sym_self_referential_reader_macro, - STATE(1506), 1, - sym_sym_lit, - STATE(1511), 1, + STATE(927), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(929), 1, + sym_sym_lit, + STATE(2169), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(75), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(93), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(97), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(99), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3396), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3398), 3, + ACTIONS(3488), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(647), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(928), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(633), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(840), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -69407,19 +69401,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3406), 1, + ACTIONS(3494), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -69433,22 +69427,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3402), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3404), 3, + ACTIONS(3492), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(648), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(631), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(650), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -69471,84 +69465,84 @@ static const uint16_t ts_small_parse_table[] = { [64800] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, + anon_sym_COLON_COLON, + ACTIONS(21), 1, + anon_sym_DQUOTE, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, + anon_sym_POUND_QMARK, + ACTIONS(35), 1, + anon_sym_POUND_QMARK_AT, ACTIONS(47), 1, sym_block_comment, - ACTIONS(61), 1, - anon_sym_POUND, - ACTIONS(65), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(854), 1, aux_sym_num_lit_token1, - ACTIONS(67), 1, - anon_sym_COLON, - ACTIONS(69), 1, - anon_sym_COLON_COLON, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - aux_sym_sym_lit_token1, - ACTIONS(77), 1, - anon_sym_POUND_QMARK, - ACTIONS(79), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(81), 1, + ACTIONS(858), 1, anon_sym_POUND_SQUOTE, - ACTIONS(83), 1, + ACTIONS(860), 1, anon_sym_SQUOTE, - ACTIONS(85), 1, + ACTIONS(862), 1, anon_sym_BQUOTE, - ACTIONS(87), 1, + ACTIONS(864), 1, anon_sym_COMMA_AT, - ACTIONS(89), 1, + ACTIONS(866), 1, anon_sym_COMMA, - ACTIONS(658), 1, - anon_sym_LPAREN, - ACTIONS(662), 1, - anon_sym_cl, - ACTIONS(3412), 1, + ACTIONS(2074), 1, + anon_sym_POUND, + ACTIONS(2708), 1, sym_self_referential_reader_macro, - STATE(822), 1, + STATE(1450), 1, sym_sym_lit, - STATE(824), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2149), 1, + STATE(2146), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(75), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(93), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(97), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(99), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3408), 2, + ACTIONS(856), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(868), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(3496), 2, sym__ws, sym_comment, - ACTIONS(3410), 3, + ACTIONS(2706), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(694), 3, + STATE(677), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(823), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(886), 19, + STATE(1498), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -69571,10 +69565,6 @@ static const uint16_t ts_small_parse_table[] = { [64935] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, - aux_sym_num_lit_token1, ACTIONS(17), 1, anon_sym_COLON, ACTIONS(19), 1, @@ -69593,62 +69583,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(854), 1, + aux_sym_num_lit_token1, + ACTIONS(858), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(860), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(862), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(864), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(866), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(3416), 1, + ACTIONS(1478), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + ACTIONS(2074), 1, + anon_sym_POUND, + STATE(1450), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2146), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(856), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(868), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3414), 3, + ACTIONS(1476), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(590), 19, + STATE(1505), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -69671,84 +69665,84 @@ static const uint16_t ts_small_parse_table[] = { [65070] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(604), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(606), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(608), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(610), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(612), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(618), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(620), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(622), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(624), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(626), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(628), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(630), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(632), 1, anon_sym_cl, - ACTIONS(3420), 1, + ACTIONS(1594), 1, sym_self_referential_reader_macro, - STATE(1506), 1, - sym_sym_lit, - STATE(1511), 1, - sym__bare_set_lit, - STATE(2137), 1, + ACTIONS(3080), 1, + anon_sym_POUND, + STATE(2151), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2380), 1, + sym_sym_lit, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(616), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(634), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3418), 3, + ACTIONS(1592), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(582), 19, + STATE(2282), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2267), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -69807,19 +69801,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(2168), 1, + ACTIONS(3502), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -69833,22 +69827,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3422), 2, + ACTIONS(3498), 2, sym__ws, sym_comment, - ACTIONS(2166), 3, + ACTIONS(3500), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(500), 3, + STATE(656), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1529), 19, + STATE(716), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -69871,84 +69865,84 @@ static const uint16_t ts_small_parse_table[] = { [65340] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(524), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(854), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(858), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(860), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(862), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(864), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(866), 1, anon_sym_COMMA, - ACTIONS(1436), 1, - anon_sym_POUND, - ACTIONS(3428), 1, + ACTIONS(1484), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + ACTIONS(2074), 1, + anon_sym_POUND, + STATE(1450), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2146), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(856), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(868), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3424), 2, + ACTIONS(3504), 2, sym__ws, sym_comment, - ACTIONS(3426), 3, + ACTIONS(1482), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(718), 3, + STATE(693), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1984), 19, + STATE(1506), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -69977,78 +69971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(927), 1, - aux_sym_num_lit_token1, - ACTIONS(929), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(931), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(933), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(939), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(941), 1, - anon_sym_LPAREN, - ACTIONS(947), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(949), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(951), 1, + ACTIONS(760), 1, + anon_sym_cl, + ACTIONS(838), 1, + aux_sym_num_lit_token1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(953), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(955), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(957), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(959), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(961), 1, - anon_sym_cl, - ACTIONS(1740), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(3432), 1, + ACTIONS(3510), 1, sym_self_referential_reader_macro, - STATE(1687), 1, - sym__bare_set_lit, - STATE(1689), 1, + STATE(1848), 1, sym_sym_lit, - STATE(2148), 1, + STATE(1925), 1, + sym__bare_set_lit, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(945), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(963), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(967), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(969), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(840), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(852), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(3506), 2, sym__ws, sym_comment, - ACTIONS(3430), 3, + ACTIONS(3508), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(719), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1570), 19, + STATE(2057), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -70071,10 +70065,6 @@ static const uint16_t ts_small_parse_table[] = { [65610] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, - aux_sym_num_lit_token1, ACTIONS(17), 1, anon_sym_COLON, ACTIONS(19), 1, @@ -70093,62 +70083,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(854), 1, + aux_sym_num_lit_token1, + ACTIONS(858), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(860), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(862), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(864), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(866), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(2158), 1, + ACTIONS(1514), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + ACTIONS(2074), 1, + anon_sym_POUND, + STATE(1450), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2146), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3434), 2, + ACTIONS(856), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(868), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2156), 3, + ACTIONS(1512), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(496), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1524), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1509), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -70171,84 +70165,84 @@ static const uint16_t ts_small_parse_table[] = { [65745] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(61), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(65), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(67), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(69), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(73), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(77), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(79), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(81), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(87), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(89), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(830), 1, + anon_sym_LPAREN, + ACTIONS(834), 1, anon_sym_cl, - ACTIONS(2152), 1, + ACTIONS(3514), 1, sym_self_referential_reader_macro, - STATE(1506), 1, - sym_sym_lit, - STATE(1511), 1, + STATE(927), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(929), 1, + sym_sym_lit, + STATE(2169), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(75), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(93), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(97), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(99), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3436), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2150), 3, + ACTIONS(3512), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(470), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(928), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1521), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(839), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -70277,78 +70271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(61), 1, + anon_sym_POUND, + ACTIONS(65), 1, + aux_sym_num_lit_token1, + ACTIONS(67), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(69), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(73), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(77), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(79), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, - anon_sym_cl, - ACTIONS(783), 1, - aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(81), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(87), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(89), 1, anon_sym_COMMA, - ACTIONS(1436), 1, - anon_sym_POUND, - ACTIONS(3440), 1, + ACTIONS(830), 1, + anon_sym_LPAREN, + ACTIONS(834), 1, + anon_sym_cl, + ACTIONS(3520), 1, sym_self_referential_reader_macro, - STATE(1825), 1, - sym_sym_lit, - STATE(1887), 1, + STATE(927), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(929), 1, + sym_sym_lit, + STATE(2169), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(564), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(75), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(93), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(97), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(99), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3516), 2, sym__ws, sym_comment, - ACTIONS(3438), 3, + ACTIONS(3518), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(685), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(928), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1983), 19, + STATE(836), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -70377,78 +70371,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(586), 1, - aux_sym_num_lit_token1, - ACTIONS(803), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(805), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(807), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(811), 1, - anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(815), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(817), 1, + ACTIONS(760), 1, + anon_sym_cl, + ACTIONS(838), 1, + aux_sym_num_lit_token1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(819), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(821), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(823), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(825), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(827), 1, - anon_sym_cl, - ACTIONS(2354), 1, - sym_self_referential_reader_macro, - ACTIONS(3046), 1, + ACTIONS(1664), 1, anon_sym_POUND, - STATE(2135), 1, + ACTIONS(3524), 1, + sym_self_referential_reader_macro, + STATE(1848), 1, + sym_sym_lit, + STATE(1925), 1, + sym__bare_set_lit, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2373), 1, - sym_sym_lit, - ACTIONS(604), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(622), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(628), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(829), 2, + ACTIONS(840), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3442), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2352), 3, + ACTIONS(3522), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(636), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2263), 19, + STATE(2058), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -70471,84 +70465,84 @@ static const uint16_t ts_small_parse_table[] = { [66150] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(524), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, - anon_sym_cl, - ACTIONS(783), 1, - aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(1436), 1, - anon_sym_POUND, - ACTIONS(3448), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(3528), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(564), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3444), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3446), 3, + ACTIONS(3526), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(723), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1982), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(681), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -70577,78 +70571,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(586), 1, - aux_sym_num_lit_token1, - ACTIONS(803), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(805), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(807), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(811), 1, - anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(815), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(817), 1, + ACTIONS(760), 1, + anon_sym_cl, + ACTIONS(838), 1, + aux_sym_num_lit_token1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(819), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(821), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(823), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(825), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(827), 1, - anon_sym_cl, - ACTIONS(2364), 1, - sym_self_referential_reader_macro, - ACTIONS(3046), 1, + ACTIONS(1664), 1, anon_sym_POUND, - STATE(2135), 1, + ACTIONS(3534), 1, + sym_self_referential_reader_macro, + STATE(1848), 1, + sym_sym_lit, + STATE(1925), 1, + sym__bare_set_lit, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2373), 1, - sym_sym_lit, - ACTIONS(604), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(622), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(628), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(829), 2, + ACTIONS(840), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3450), 2, + ACTIONS(3530), 2, sym__ws, sym_comment, - ACTIONS(2362), 3, + ACTIONS(3532), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(638), 3, + STATE(724), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2266), 19, + STATE(2060), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -70671,84 +70665,84 @@ static const uint16_t ts_small_parse_table[] = { [66420] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(586), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(803), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(805), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(807), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(811), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(815), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(817), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(819), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(821), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(823), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(825), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(827), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(2374), 1, + ACTIONS(3540), 1, sym_self_referential_reader_macro, - ACTIONS(3046), 1, - anon_sym_POUND, - STATE(2135), 1, + STATE(1450), 1, + sym_sym_lit, + STATE(1452), 1, + sym__bare_set_lit, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2373), 1, - sym_sym_lit, - ACTIONS(604), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(622), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(628), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(829), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3452), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3536), 2, sym__ws, sym_comment, - ACTIONS(2372), 3, + ACTIONS(3538), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(639), 3, + STATE(689), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2271), 19, + STATE(665), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -70777,78 +70771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(604), 1, + aux_sym_num_lit_token1, + ACTIONS(606), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(608), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(610), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(612), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(618), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(620), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, - anon_sym_cl, - ACTIONS(783), 1, - aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(622), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(624), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(626), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(628), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(630), 1, anon_sym_COMMA, - ACTIONS(1436), 1, - anon_sym_POUND, - ACTIONS(3456), 1, + ACTIONS(632), 1, + anon_sym_cl, + ACTIONS(1680), 1, sym_self_referential_reader_macro, - STATE(1825), 1, - sym_sym_lit, - STATE(1887), 1, - sym__bare_set_lit, - STATE(2138), 1, + ACTIONS(3080), 1, + anon_sym_POUND, + STATE(2151), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2380), 1, + sym_sym_lit, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(616), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(634), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(3542), 2, sym__ws, sym_comment, - ACTIONS(3454), 3, + ACTIONS(1678), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(599), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1981), 19, + STATE(2268), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -70871,84 +70865,84 @@ static const uint16_t ts_small_parse_table[] = { [66690] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, - aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(730), 1, + anon_sym_COLON, + ACTIONS(732), 1, + anon_sym_COLON_COLON, + ACTIONS(734), 1, + anon_sym_DQUOTE, + ACTIONS(740), 1, + aux_sym_sym_lit_token1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(760), 1, + anon_sym_cl, + ACTIONS(838), 1, + aux_sym_num_lit_token1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(2146), 1, + ACTIONS(1664), 1, + anon_sym_POUND, + ACTIONS(3546), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3458), 2, + ACTIONS(840), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(852), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2144), 3, + ACTIONS(3544), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(468), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1484), 19, + STATE(2061), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -70977,78 +70971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(61), 1, + anon_sym_POUND, + ACTIONS(65), 1, + aux_sym_num_lit_token1, + ACTIONS(67), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(69), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(73), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(77), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(79), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, - anon_sym_cl, - ACTIONS(783), 1, - aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(81), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(87), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(89), 1, anon_sym_COMMA, - ACTIONS(1436), 1, - anon_sym_POUND, - ACTIONS(3464), 1, + ACTIONS(830), 1, + anon_sym_LPAREN, + ACTIONS(834), 1, + anon_sym_cl, + ACTIONS(3552), 1, sym_self_referential_reader_macro, - STATE(1825), 1, - sym_sym_lit, - STATE(1887), 1, + STATE(927), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(929), 1, + sym_sym_lit, + STATE(2169), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(564), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(75), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(93), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(97), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3460), 2, + ACTIONS(99), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3548), 2, sym__ws, sym_comment, - ACTIONS(3462), 3, + ACTIONS(3550), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(728), 3, + STATE(700), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(928), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1980), 19, + STATE(830), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -71077,78 +71071,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(586), 1, - aux_sym_num_lit_token1, - ACTIONS(803), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(805), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(807), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(811), 1, - anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(815), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(817), 1, + ACTIONS(760), 1, + anon_sym_cl, + ACTIONS(838), 1, + aux_sym_num_lit_token1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(819), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(821), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(823), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(825), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(827), 1, - anon_sym_cl, - ACTIONS(2394), 1, - sym_self_referential_reader_macro, - ACTIONS(3046), 1, + ACTIONS(1664), 1, anon_sym_POUND, - STATE(2135), 1, + ACTIONS(3558), 1, + sym_self_referential_reader_macro, + STATE(1848), 1, + sym_sym_lit, + STATE(1925), 1, + sym__bare_set_lit, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2373), 1, - sym_sym_lit, - ACTIONS(604), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(622), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(628), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(829), 2, + ACTIONS(840), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3466), 2, + ACTIONS(3554), 2, sym__ws, sym_comment, - ACTIONS(2392), 3, + ACTIONS(3556), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(642), 3, + STATE(729), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2240), 19, + STATE(2083), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -71207,19 +71201,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3470), 1, + ACTIONS(3564), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -71233,22 +71227,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(3560), 2, sym__ws, sym_comment, - ACTIONS(3468), 3, + ACTIONS(3562), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(645), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(342), 19, + STATE(1451), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(576), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -71303,23 +71297,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(89), 1, anon_sym_COMMA, - ACTIONS(658), 1, + ACTIONS(830), 1, anon_sym_LPAREN, - ACTIONS(662), 1, + ACTIONS(834), 1, anon_sym_cl, - ACTIONS(3476), 1, + ACTIONS(3570), 1, sym_self_referential_reader_macro, - STATE(822), 1, - sym_sym_lit, - STATE(824), 1, + STATE(927), 1, sym__bare_set_lit, - STATE(2149), 1, + STATE(929), 1, + sym_sym_lit, + STATE(2169), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, ACTIONS(75), 2, anon_sym_POUND0A, @@ -71333,22 +71327,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(99), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3472), 2, + ACTIONS(3566), 2, sym__ws, sym_comment, - ACTIONS(3474), 3, + ACTIONS(3568), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(727), 3, + STATE(708), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(823), 3, + STATE(928), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(894), 19, + STATE(826), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -71377,78 +71371,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(604), 1, + aux_sym_num_lit_token1, + ACTIONS(606), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(608), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(610), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(612), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(618), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(620), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, - anon_sym_cl, - ACTIONS(783), 1, - aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(622), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(624), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(626), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(628), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(630), 1, anon_sym_COMMA, - ACTIONS(1436), 1, - anon_sym_POUND, - ACTIONS(3480), 1, + ACTIONS(632), 1, + anon_sym_cl, + ACTIONS(1686), 1, sym_self_referential_reader_macro, - STATE(1825), 1, - sym_sym_lit, - STATE(1887), 1, - sym__bare_set_lit, - STATE(2138), 1, + ACTIONS(3080), 1, + anon_sym_POUND, + STATE(2151), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2380), 1, + sym_sym_lit, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(616), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(634), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(3572), 2, sym__ws, sym_comment, - ACTIONS(3478), 3, + ACTIONS(1684), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(633), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1979), 19, + STATE(2269), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -71471,84 +71465,84 @@ static const uint16_t ts_small_parse_table[] = { [67500] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, - aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(730), 1, + anon_sym_COLON, + ACTIONS(732), 1, + anon_sym_COLON_COLON, + ACTIONS(734), 1, + anon_sym_DQUOTE, + ACTIONS(740), 1, + aux_sym_sym_lit_token1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(760), 1, + anon_sym_cl, + ACTIONS(838), 1, + aux_sym_num_lit_token1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(3484), 1, + ACTIONS(1664), 1, + anon_sym_POUND, + ACTIONS(3576), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(840), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(852), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3482), 3, + ACTIONS(3574), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(344), 19, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2062), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -71571,84 +71565,84 @@ static const uint16_t ts_small_parse_table[] = { [67635] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(524), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(854), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(858), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(860), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(862), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(864), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(866), 1, anon_sym_COMMA, - ACTIONS(1436), 1, - anon_sym_POUND, - ACTIONS(3490), 1, + ACTIONS(1524), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + ACTIONS(2074), 1, + anon_sym_POUND, + STATE(1450), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2146), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(856), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(868), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3486), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3488), 3, + ACTIONS(1522), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(735), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1978), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1510), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -71677,78 +71671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(472), 1, - aux_sym_num_lit_token1, - ACTIONS(474), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(492), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(494), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(496), 1, + ACTIONS(760), 1, + anon_sym_cl, + ACTIONS(838), 1, + aux_sym_num_lit_token1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(498), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(500), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(502), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(504), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(506), 1, - anon_sym_cl, - ACTIONS(2614), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(3496), 1, + ACTIONS(3582), 1, sym_self_referential_reader_macro, - STATE(1302), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1304), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2160), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(490), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(508), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(512), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(514), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3492), 2, + ACTIONS(840), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(852), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(3578), 2, sym__ws, sym_comment, - ACTIONS(3494), 3, + ACTIONS(3580), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(474), 3, + STATE(736), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1303), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1305), 19, + STATE(2063), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -71777,78 +71771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(586), 1, - aux_sym_num_lit_token1, - ACTIONS(803), 1, + ACTIONS(606), 1, anon_sym_COLON, - ACTIONS(805), 1, + ACTIONS(608), 1, anon_sym_COLON_COLON, - ACTIONS(807), 1, + ACTIONS(610), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(612), 1, aux_sym_sym_lit_token1, - ACTIONS(811), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(618), 1, anon_sym_POUND_QMARK, - ACTIONS(815), 1, + ACTIONS(951), 1, + aux_sym_num_lit_token1, + ACTIONS(955), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(817), 1, + ACTIONS(957), 1, anon_sym_POUND_SQUOTE, - ACTIONS(819), 1, + ACTIONS(959), 1, anon_sym_SQUOTE, - ACTIONS(821), 1, + ACTIONS(961), 1, anon_sym_BQUOTE, - ACTIONS(823), 1, + ACTIONS(963), 1, anon_sym_COMMA_AT, - ACTIONS(825), 1, + ACTIONS(965), 1, anon_sym_COMMA, - ACTIONS(827), 1, + ACTIONS(967), 1, anon_sym_cl, - ACTIONS(2400), 1, - sym_self_referential_reader_macro, - ACTIONS(3046), 1, + ACTIONS(1452), 1, anon_sym_POUND, - STATE(2135), 1, + ACTIONS(3480), 1, + sym_self_referential_reader_macro, + STATE(1801), 1, + sym__bare_set_lit, + STATE(2149), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, - sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2373), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2244), 1, sym_sym_lit, - ACTIONS(604), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(622), 2, + STATE(2258), 1, + sym__metadata_lit, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(628), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(829), 2, + ACTIONS(953), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(969), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(3584), 2, sym__ws, sym_comment, - ACTIONS(2398), 3, + ACTIONS(3478), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(393), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1800), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2281), 19, + STATE(2157), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -71877,78 +71871,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(604), 1, + aux_sym_num_lit_token1, + ACTIONS(606), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(608), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(610), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(612), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(618), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(620), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, - anon_sym_cl, - ACTIONS(783), 1, - aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(622), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(624), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(626), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(628), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(630), 1, anon_sym_COMMA, - ACTIONS(1436), 1, - anon_sym_POUND, - ACTIONS(3502), 1, + ACTIONS(632), 1, + anon_sym_cl, + ACTIONS(1728), 1, sym_self_referential_reader_macro, - STATE(1825), 1, - sym_sym_lit, - STATE(1887), 1, - sym__bare_set_lit, - STATE(2138), 1, + ACTIONS(3080), 1, + anon_sym_POUND, + STATE(2151), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2380), 1, + sym_sym_lit, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(616), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(634), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3498), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3500), 3, + ACTIONS(1726), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(740), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1977), 19, + STATE(2270), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -71971,84 +71965,84 @@ static const uint16_t ts_small_parse_table[] = { [68175] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, - aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(730), 1, + anon_sym_COLON, + ACTIONS(732), 1, + anon_sym_COLON_COLON, + ACTIONS(734), 1, + anon_sym_DQUOTE, + ACTIONS(740), 1, + aux_sym_sym_lit_token1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(760), 1, + anon_sym_cl, + ACTIONS(838), 1, + aux_sym_num_lit_token1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(2140), 1, + ACTIONS(1664), 1, + anon_sym_POUND, + ACTIONS(3590), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3504), 2, + ACTIONS(840), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(852), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(3586), 2, sym__ws, sym_comment, - ACTIONS(2138), 3, + ACTIONS(3588), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(464), 3, + STATE(741), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1480), 19, + STATE(2064), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -72077,78 +72071,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(927), 1, + ACTIONS(61), 1, + anon_sym_POUND, + ACTIONS(65), 1, aux_sym_num_lit_token1, - ACTIONS(929), 1, + ACTIONS(67), 1, anon_sym_COLON, - ACTIONS(931), 1, + ACTIONS(69), 1, anon_sym_COLON_COLON, - ACTIONS(933), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(939), 1, + ACTIONS(73), 1, aux_sym_sym_lit_token1, - ACTIONS(941), 1, - anon_sym_LPAREN, - ACTIONS(947), 1, + ACTIONS(77), 1, anon_sym_POUND_QMARK, - ACTIONS(949), 1, + ACTIONS(79), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(951), 1, + ACTIONS(81), 1, anon_sym_POUND_SQUOTE, - ACTIONS(953), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(955), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(957), 1, + ACTIONS(87), 1, anon_sym_COMMA_AT, - ACTIONS(959), 1, + ACTIONS(89), 1, anon_sym_COMMA, - ACTIONS(961), 1, + ACTIONS(830), 1, + anon_sym_LPAREN, + ACTIONS(834), 1, anon_sym_cl, - ACTIONS(1740), 1, - anon_sym_POUND, - ACTIONS(3510), 1, + ACTIONS(3596), 1, sym_self_referential_reader_macro, - STATE(1687), 1, + STATE(927), 1, sym__bare_set_lit, - STATE(1689), 1, + STATE(929), 1, sym_sym_lit, - STATE(2148), 1, + STATE(2169), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(945), 2, + ACTIONS(75), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(963), 2, + ACTIONS(93), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(967), 2, + ACTIONS(97), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(969), 2, + ACTIONS(99), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3506), 2, + ACTIONS(3592), 2, sym__ws, sym_comment, - ACTIONS(3508), 3, + ACTIONS(3594), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(587), 3, + STATE(709), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(928), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1635), 19, + STATE(822), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -72171,84 +72165,84 @@ static const uint16_t ts_small_parse_table[] = { [68445] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(927), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(929), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(931), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(933), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(939), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(941), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(947), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(949), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(951), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(953), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(955), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(957), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(959), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(961), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1740), 1, - anon_sym_POUND, - ACTIONS(3514), 1, + ACTIONS(3602), 1, sym_self_referential_reader_macro, - STATE(1687), 1, - sym__bare_set_lit, - STATE(1689), 1, + STATE(1450), 1, sym_sym_lit, - STATE(2148), 1, + STATE(1452), 1, + sym__bare_set_lit, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(945), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(963), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(967), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(969), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(3598), 2, sym__ws, sym_comment, - ACTIONS(3512), 3, + ACTIONS(3600), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(690), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1636), 19, + STATE(659), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -72277,78 +72271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(604), 1, + aux_sym_num_lit_token1, + ACTIONS(606), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(608), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(610), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(612), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(618), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(620), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, - anon_sym_cl, - ACTIONS(783), 1, - aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(622), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(624), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(626), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(628), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(630), 1, anon_sym_COMMA, - ACTIONS(1436), 1, - anon_sym_POUND, - ACTIONS(3518), 1, + ACTIONS(632), 1, + anon_sym_cl, + ACTIONS(1746), 1, sym_self_referential_reader_macro, - STATE(1825), 1, - sym_sym_lit, - STATE(1887), 1, - sym__bare_set_lit, - STATE(2138), 1, + ACTIONS(3080), 1, + anon_sym_POUND, + STATE(2151), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2380), 1, + sym_sym_lit, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(616), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(634), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3516), 3, + ACTIONS(1744), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1976), 19, + STATE(2271), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -72377,78 +72371,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(3524), 1, + ACTIONS(3606), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3520), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3522), 3, + ACTIONS(3604), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(746), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1975), 19, + STATE(2065), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -72477,78 +72471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(586), 1, - aux_sym_num_lit_token1, - ACTIONS(803), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(805), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(807), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(811), 1, - anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(815), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(817), 1, + ACTIONS(760), 1, + anon_sym_cl, + ACTIONS(838), 1, + aux_sym_num_lit_token1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(819), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(821), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(823), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(825), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(827), 1, - anon_sym_cl, - ACTIONS(2408), 1, - sym_self_referential_reader_macro, - ACTIONS(3046), 1, + ACTIONS(1664), 1, anon_sym_POUND, - STATE(2135), 1, + ACTIONS(3612), 1, + sym_self_referential_reader_macro, + STATE(1848), 1, + sym_sym_lit, + STATE(1925), 1, + sym__bare_set_lit, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2373), 1, - sym_sym_lit, - ACTIONS(604), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(622), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(628), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(829), 2, + ACTIONS(840), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(3608), 2, sym__ws, sym_comment, - ACTIONS(2406), 3, + ACTIONS(3610), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(747), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2284), 19, + STATE(2066), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -72571,84 +72565,84 @@ static const uint16_t ts_small_parse_table[] = { [68985] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(586), 1, - aux_sym_num_lit_token1, - ACTIONS(803), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(805), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(807), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(811), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(815), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(817), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(854), 1, + aux_sym_num_lit_token1, + ACTIONS(858), 1, anon_sym_POUND_SQUOTE, - ACTIONS(819), 1, + ACTIONS(860), 1, anon_sym_SQUOTE, - ACTIONS(821), 1, + ACTIONS(862), 1, anon_sym_BQUOTE, - ACTIONS(823), 1, + ACTIONS(864), 1, anon_sym_COMMA_AT, - ACTIONS(825), 1, + ACTIONS(866), 1, anon_sym_COMMA, - ACTIONS(827), 1, - anon_sym_cl, - ACTIONS(2418), 1, + ACTIONS(1534), 1, sym_self_referential_reader_macro, - ACTIONS(3046), 1, + ACTIONS(2074), 1, anon_sym_POUND, - STATE(2135), 1, + STATE(1450), 1, + sym_sym_lit, + STATE(1452), 1, + sym__bare_set_lit, + STATE(2146), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2373), 1, - sym_sym_lit, - ACTIONS(604), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(622), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(628), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(829), 2, + ACTIONS(856), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(868), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2416), 3, + ACTIONS(1532), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2288), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1517), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -72677,78 +72671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(604), 1, + aux_sym_num_lit_token1, + ACTIONS(606), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(608), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(610), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(612), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(618), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(620), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, - anon_sym_cl, - ACTIONS(783), 1, - aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(622), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(624), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(626), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(628), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(630), 1, anon_sym_COMMA, - ACTIONS(1436), 1, - anon_sym_POUND, - ACTIONS(3528), 1, + ACTIONS(632), 1, + anon_sym_cl, + ACTIONS(1764), 1, sym_self_referential_reader_macro, - STATE(1825), 1, - sym_sym_lit, - STATE(1887), 1, - sym__bare_set_lit, - STATE(2138), 1, + ACTIONS(3080), 1, + anon_sym_POUND, + STATE(2151), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2380), 1, + sym_sym_lit, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(616), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(634), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3526), 3, + ACTIONS(1762), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1974), 19, + STATE(2272), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -72777,78 +72771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(3534), 1, + ACTIONS(3616), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3530), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3532), 3, + ACTIONS(3614), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(749), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1973), 19, + STATE(2067), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -72871,84 +72865,84 @@ static const uint16_t ts_small_parse_table[] = { [69390] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, - aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(730), 1, + anon_sym_COLON, + ACTIONS(732), 1, + anon_sym_COLON_COLON, + ACTIONS(734), 1, + anon_sym_DQUOTE, + ACTIONS(740), 1, + aux_sym_sym_lit_token1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(760), 1, + anon_sym_cl, + ACTIONS(838), 1, + aux_sym_num_lit_token1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(3540), 1, + ACTIONS(1664), 1, + anon_sym_POUND, + ACTIONS(3622), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3536), 2, + ACTIONS(840), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(852), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(3618), 2, sym__ws, sym_comment, - ACTIONS(3538), 3, + ACTIONS(3620), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(687), 3, + STATE(750), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(463), 19, + STATE(2068), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -72977,78 +72971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(586), 1, + ACTIONS(604), 1, aux_sym_num_lit_token1, - ACTIONS(803), 1, + ACTIONS(606), 1, anon_sym_COLON, - ACTIONS(805), 1, + ACTIONS(608), 1, anon_sym_COLON_COLON, - ACTIONS(807), 1, + ACTIONS(610), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(612), 1, aux_sym_sym_lit_token1, - ACTIONS(811), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(618), 1, anon_sym_POUND_QMARK, - ACTIONS(815), 1, + ACTIONS(620), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(817), 1, + ACTIONS(622), 1, anon_sym_POUND_SQUOTE, - ACTIONS(819), 1, + ACTIONS(624), 1, anon_sym_SQUOTE, - ACTIONS(821), 1, + ACTIONS(626), 1, anon_sym_BQUOTE, - ACTIONS(823), 1, + ACTIONS(628), 1, anon_sym_COMMA_AT, - ACTIONS(825), 1, + ACTIONS(630), 1, anon_sym_COMMA, - ACTIONS(827), 1, + ACTIONS(632), 1, anon_sym_cl, - ACTIONS(2428), 1, + ACTIONS(1788), 1, sym_self_referential_reader_macro, - ACTIONS(3046), 1, + ACTIONS(3080), 1, anon_sym_POUND, - STATE(2135), 1, + STATE(2151), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, + STATE(2337), 1, sym__bare_set_lit, - STATE(2373), 1, + STATE(2380), 1, sym_sym_lit, - ACTIONS(604), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(622), 2, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(628), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(829), 2, + ACTIONS(616), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(634), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(3624), 2, sym__ws, sym_comment, - ACTIONS(2426), 3, + ACTIONS(1786), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(648), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2289), 19, + STATE(2283), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -73077,78 +73071,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(586), 1, + ACTIONS(604), 1, aux_sym_num_lit_token1, - ACTIONS(803), 1, + ACTIONS(606), 1, anon_sym_COLON, - ACTIONS(805), 1, + ACTIONS(608), 1, anon_sym_COLON_COLON, - ACTIONS(807), 1, + ACTIONS(610), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(612), 1, aux_sym_sym_lit_token1, - ACTIONS(811), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(618), 1, anon_sym_POUND_QMARK, - ACTIONS(815), 1, + ACTIONS(620), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(817), 1, + ACTIONS(622), 1, anon_sym_POUND_SQUOTE, - ACTIONS(819), 1, + ACTIONS(624), 1, anon_sym_SQUOTE, - ACTIONS(821), 1, + ACTIONS(626), 1, anon_sym_BQUOTE, - ACTIONS(823), 1, + ACTIONS(628), 1, anon_sym_COMMA_AT, - ACTIONS(825), 1, + ACTIONS(630), 1, anon_sym_COMMA, - ACTIONS(827), 1, + ACTIONS(632), 1, anon_sym_cl, - ACTIONS(2438), 1, + ACTIONS(1792), 1, sym_self_referential_reader_macro, - ACTIONS(3046), 1, + ACTIONS(3080), 1, anon_sym_POUND, - STATE(2135), 1, + STATE(2151), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, + STATE(2337), 1, sym__bare_set_lit, - STATE(2373), 1, + STATE(2380), 1, sym_sym_lit, - ACTIONS(604), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(622), 2, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(628), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(829), 2, + ACTIONS(616), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(634), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2436), 3, + ACTIONS(1790), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2293), 19, + STATE(2285), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -73171,84 +73165,84 @@ static const uint16_t ts_small_parse_table[] = { [69795] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(524), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(854), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(858), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(860), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(862), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(864), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(866), 1, anon_sym_COMMA, - ACTIONS(1436), 1, - anon_sym_POUND, - ACTIONS(3544), 1, + ACTIONS(1540), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + ACTIONS(2074), 1, + anon_sym_POUND, + STATE(1450), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2146), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(856), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(868), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(3626), 2, sym__ws, sym_comment, - ACTIONS(3542), 3, + ACTIONS(1538), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(697), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1972), 19, + STATE(1512), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -73271,84 +73265,84 @@ static const uint16_t ts_small_parse_table[] = { [69930] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, - aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(730), 1, + anon_sym_COLON, + ACTIONS(732), 1, + anon_sym_COLON_COLON, + ACTIONS(734), 1, + anon_sym_DQUOTE, + ACTIONS(740), 1, + aux_sym_sym_lit_token1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(760), 1, + anon_sym_cl, + ACTIONS(838), 1, + aux_sym_num_lit_token1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(3550), 1, + ACTIONS(1664), 1, + anon_sym_POUND, + ACTIONS(3630), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3546), 2, + ACTIONS(840), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(852), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3548), 3, + ACTIONS(3628), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(453), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(456), 19, + STATE(2069), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -73377,78 +73371,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(61), 1, + anon_sym_POUND, + ACTIONS(65), 1, + aux_sym_num_lit_token1, + ACTIONS(67), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(69), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(73), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(77), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(79), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, - anon_sym_cl, - ACTIONS(783), 1, - aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(81), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(87), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(89), 1, anon_sym_COMMA, - ACTIONS(1436), 1, - anon_sym_POUND, - ACTIONS(3554), 1, + ACTIONS(830), 1, + anon_sym_LPAREN, + ACTIONS(834), 1, + anon_sym_cl, + ACTIONS(3634), 1, sym_self_referential_reader_macro, - STATE(1825), 1, - sym_sym_lit, - STATE(1887), 1, + STATE(927), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(929), 1, + sym_sym_lit, + STATE(2169), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(564), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(75), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(93), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(97), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(99), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3552), 3, + ACTIONS(3632), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(928), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1971), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(834), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -73477,78 +73471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(3560), 1, + ACTIONS(3638), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3556), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3558), 3, + ACTIONS(3636), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(754), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1970), 19, + STATE(2070), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -73569,6 +73563,106 @@ static const uint16_t ts_small_parse_table[] = { sym_include_reader_macro, sym_complex_num_lit, [70335] = 35, + ACTIONS(9), 1, + anon_sym_POUND_, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, + anon_sym_COLON, + ACTIONS(732), 1, + anon_sym_COLON_COLON, + ACTIONS(734), 1, + anon_sym_DQUOTE, + ACTIONS(740), 1, + aux_sym_sym_lit_token1, + ACTIONS(746), 1, + anon_sym_POUND_QMARK, + ACTIONS(748), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(760), 1, + anon_sym_cl, + ACTIONS(838), 1, + aux_sym_num_lit_token1, + ACTIONS(842), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(844), 1, + anon_sym_SQUOTE, + ACTIONS(846), 1, + anon_sym_BQUOTE, + ACTIONS(848), 1, + anon_sym_COMMA_AT, + ACTIONS(850), 1, + anon_sym_COMMA, + ACTIONS(1664), 1, + anon_sym_POUND, + ACTIONS(3644), 1, + sym_self_referential_reader_macro, + STATE(1848), 1, + sym_sym_lit, + STATE(1925), 1, + sym__bare_set_lit, + STATE(2154), 1, + aux_sym_list_lit_repeat1, + STATE(2221), 1, + sym_old_meta_lit, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, + sym__metadata_lit, + ACTIONS(762), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(768), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(840), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(852), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(3640), 2, + sym__ws, + sym_comment, + ACTIONS(3642), 3, + anon_sym_DOT, + sym_nil_lit, + sym_fancy_literal, + STATE(755), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2071), 19, + sym__form, + sym_num_lit, + sym_kwd_lit, + sym_str_lit, + sym_char_lit, + sym_list_lit, + sym_vec_lit, + sym_set_lit, + sym_read_cond_lit, + sym_splicing_read_cond_lit, + sym_var_quoting_lit, + sym_quoting_lit, + sym_syn_quoting_lit, + sym_unquote_splicing_lit, + sym_unquoting_lit, + sym_path_lit, + sym_package_lit, + sym_include_reader_macro, + sym_complex_num_lit, + [70470] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -73607,19 +73701,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3564), 1, + ACTIONS(3650), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -73633,22 +73727,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(3646), 2, sym__ws, sym_comment, - ACTIONS(3562), 3, + ACTIONS(3648), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(694), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(455), 19, + STATE(1451), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1453), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -73668,87 +73762,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [70470] = 35, + [70605] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(190), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(194), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(196), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(198), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(200), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(202), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(217), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(219), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(221), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(223), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(227), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(229), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_LPAREN, - ACTIONS(644), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3570), 1, + ACTIONS(3654), 1, sym_self_referential_reader_macro, - STATE(1012), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1017), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2139), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(215), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(236), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(240), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(242), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3566), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3568), 3, + ACTIONS(3652), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(732), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1015), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1140), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(630), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -73768,87 +73862,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [70605] = 35, + [70740] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(190), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(194), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(196), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(198), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(200), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(202), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(217), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(219), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(221), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(223), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(227), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(229), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_LPAREN, - ACTIONS(644), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3576), 1, + ACTIONS(3658), 1, sym_self_referential_reader_macro, - STATE(1012), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1017), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2139), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(215), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(236), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(240), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(242), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3572), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3574), 3, + ACTIONS(3656), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(733), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1015), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1138), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(582), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -73868,7 +73962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [70740] = 35, + [70875] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -73877,78 +73971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(3580), 1, + ACTIONS(3662), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3578), 3, + ACTIONS(3660), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1969), 19, + STATE(2072), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -73968,7 +74062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [70875] = 35, + [71010] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -73977,78 +74071,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(3586), 1, + ACTIONS(3668), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3582), 2, + ACTIONS(3664), 2, sym__ws, sym_comment, - ACTIONS(3584), 3, + ACTIONS(3666), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(758), 3, + STATE(759), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1968), 19, + STATE(2073), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -74068,13 +74162,9 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [71010] = 35, + [71145] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, - aux_sym_num_lit_token1, ACTIONS(17), 1, anon_sym_COLON, ACTIONS(19), 1, @@ -74093,62 +74183,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(854), 1, + aux_sym_num_lit_token1, + ACTIONS(858), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(860), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(862), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(864), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(866), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(3592), 1, + ACTIONS(1864), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + ACTIONS(2074), 1, + anon_sym_POUND, + STATE(1450), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2146), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3588), 2, + ACTIONS(856), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(868), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3590), 3, + ACTIONS(1862), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(264), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(443), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1518), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -74168,7 +74262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [71145] = 35, + [71280] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -74207,19 +74301,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3598), 1, + ACTIONS(2078), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -74233,22 +74327,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3594), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3596), 3, + ACTIONS(2076), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(258), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(442), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1475), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -74268,7 +74362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [71280] = 35, + [71415] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -74303,23 +74397,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA_AT, ACTIONS(89), 1, anon_sym_COMMA, - ACTIONS(658), 1, + ACTIONS(830), 1, anon_sym_LPAREN, - ACTIONS(662), 1, + ACTIONS(834), 1, anon_sym_cl, - ACTIONS(3602), 1, + ACTIONS(3674), 1, sym_self_referential_reader_macro, - STATE(822), 1, - sym_sym_lit, - STATE(824), 1, + STATE(927), 1, sym__bare_set_lit, - STATE(2149), 1, + STATE(929), 1, + sym_sym_lit, + STATE(2169), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, ACTIONS(75), 2, anon_sym_POUND0A, @@ -74333,22 +74427,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(99), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(3670), 2, sym__ws, sym_comment, - ACTIONS(3600), 3, + ACTIONS(3672), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(823), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(735), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(895), 19, + STATE(928), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(833), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -74368,7 +74462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [71415] = 35, + [71550] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -74377,78 +74471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(3606), 1, + ACTIONS(3678), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3604), 3, + ACTIONS(3676), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1967), 19, + STATE(2074), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -74468,87 +74562,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [71550] = 35, + [71685] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, + anon_sym_COLON_COLON, + ACTIONS(21), 1, + anon_sym_DQUOTE, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, + anon_sym_POUND_QMARK, + ACTIONS(35), 1, + anon_sym_POUND_QMARK_AT, ACTIONS(47), 1, sym_block_comment, - ACTIONS(61), 1, - anon_sym_POUND, - ACTIONS(65), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(854), 1, aux_sym_num_lit_token1, - ACTIONS(67), 1, - anon_sym_COLON, - ACTIONS(69), 1, - anon_sym_COLON_COLON, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - aux_sym_sym_lit_token1, - ACTIONS(77), 1, - anon_sym_POUND_QMARK, - ACTIONS(79), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(81), 1, + ACTIONS(858), 1, anon_sym_POUND_SQUOTE, - ACTIONS(83), 1, + ACTIONS(860), 1, anon_sym_SQUOTE, - ACTIONS(85), 1, + ACTIONS(862), 1, anon_sym_BQUOTE, - ACTIONS(87), 1, + ACTIONS(864), 1, anon_sym_COMMA_AT, - ACTIONS(89), 1, + ACTIONS(866), 1, anon_sym_COMMA, - ACTIONS(658), 1, - anon_sym_LPAREN, - ACTIONS(662), 1, - anon_sym_cl, - ACTIONS(3612), 1, + ACTIONS(1912), 1, sym_self_referential_reader_macro, - STATE(822), 1, + ACTIONS(2074), 1, + anon_sym_POUND, + STATE(1450), 1, sym_sym_lit, - STATE(824), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2149), 1, + STATE(2146), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(75), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(93), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(97), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(99), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3608), 2, + ACTIONS(856), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(868), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3610), 3, + ACTIONS(1910), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(609), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(823), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(885), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1520), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -74568,7 +74662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [71685] = 35, + [71820] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -74577,78 +74671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(3618), 1, + ACTIONS(3684), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3614), 2, + ACTIONS(3680), 2, sym__ws, sym_comment, - ACTIONS(3616), 3, + ACTIONS(3682), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(763), 3, + STATE(764), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1966), 19, + STATE(2075), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -74668,87 +74762,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [71820] = 35, + [71955] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(586), 1, - aux_sym_num_lit_token1, - ACTIONS(803), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(805), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(807), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(811), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(815), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(817), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(854), 1, + aux_sym_num_lit_token1, + ACTIONS(858), 1, anon_sym_POUND_SQUOTE, - ACTIONS(819), 1, + ACTIONS(860), 1, anon_sym_SQUOTE, - ACTIONS(821), 1, + ACTIONS(862), 1, anon_sym_BQUOTE, - ACTIONS(823), 1, + ACTIONS(864), 1, anon_sym_COMMA_AT, - ACTIONS(825), 1, + ACTIONS(866), 1, anon_sym_COMMA, - ACTIONS(827), 1, - anon_sym_cl, - ACTIONS(2128), 1, + ACTIONS(1918), 1, sym_self_referential_reader_macro, - ACTIONS(3046), 1, + ACTIONS(2074), 1, anon_sym_POUND, - STATE(2135), 1, + STATE(1450), 1, + sym_sym_lit, + STATE(1452), 1, + sym__bare_set_lit, + STATE(2146), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2373), 1, - sym_sym_lit, - ACTIONS(604), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(622), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(628), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(829), 2, + ACTIONS(856), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(868), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(3686), 2, sym__ws, sym_comment, - ACTIONS(2126), 3, + ACTIONS(1916), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(722), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2147), 19, + STATE(1521), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -74768,87 +74862,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [71955] = 35, + [72090] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(61), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(65), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(67), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(69), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(73), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(77), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(79), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(81), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(87), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(89), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(830), 1, + anon_sym_LPAREN, + ACTIONS(834), 1, anon_sym_cl, - ACTIONS(3622), 1, + ACTIONS(3690), 1, sym_self_referential_reader_macro, - STATE(1506), 1, - sym_sym_lit, - STATE(1511), 1, + STATE(927), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(929), 1, + sym_sym_lit, + STATE(2169), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(75), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(93), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(97), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(99), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3620), 3, + ACTIONS(3688), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, + STATE(928), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(627), 19, + STATE(825), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -74868,7 +74962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [72090] = 35, + [72225] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -74877,78 +74971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(3626), 1, + ACTIONS(3694), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3624), 3, + ACTIONS(3692), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1965), 19, + STATE(2076), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -74968,87 +75062,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [72225] = 35, + [72360] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(556), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(558), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(560), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(562), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(568), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(570), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(576), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(578), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(580), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(582), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(584), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(586), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(588), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(590), 1, anon_sym_cl, - ACTIONS(1900), 1, + ACTIONS(1436), 1, + anon_sym_POUND, + ACTIONS(3700), 1, sym_self_referential_reader_macro, - STATE(1506), 1, - sym_sym_lit, - STATE(1511), 1, + STATE(1386), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(1388), 1, + sym_sym_lit, + STATE(2172), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(574), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(592), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(596), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(598), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3628), 2, + ACTIONS(3696), 2, sym__ws, sym_comment, - ACTIONS(1898), 3, + ACTIONS(3698), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(348), 3, + STATE(388), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(1387), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1479), 19, + STATE(1385), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -75068,7 +75162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [72360] = 35, + [72495] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -75077,78 +75171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(3632), 1, + ACTIONS(3704), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3630), 3, + ACTIONS(3702), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1964), 19, + STATE(2077), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -75168,7 +75262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [72495] = 35, + [72630] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -75177,78 +75271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(3638), 1, + ACTIONS(3710), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3634), 2, + ACTIONS(3706), 2, sym__ws, sym_comment, - ACTIONS(3636), 3, + ACTIONS(3708), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(767), 3, + STATE(768), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1963), 19, + STATE(2078), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -75268,87 +75362,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [72630] = 35, + [72765] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, + anon_sym_COLON_COLON, + ACTIONS(21), 1, + anon_sym_DQUOTE, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, + anon_sym_POUND_QMARK, + ACTIONS(35), 1, + anon_sym_POUND_QMARK_AT, ACTIONS(47), 1, sym_block_comment, - ACTIONS(61), 1, - anon_sym_POUND, - ACTIONS(65), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(854), 1, aux_sym_num_lit_token1, - ACTIONS(67), 1, - anon_sym_COLON, - ACTIONS(69), 1, - anon_sym_COLON_COLON, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - aux_sym_sym_lit_token1, - ACTIONS(77), 1, - anon_sym_POUND_QMARK, - ACTIONS(79), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(81), 1, + ACTIONS(858), 1, anon_sym_POUND_SQUOTE, - ACTIONS(83), 1, + ACTIONS(860), 1, anon_sym_SQUOTE, - ACTIONS(85), 1, + ACTIONS(862), 1, anon_sym_BQUOTE, - ACTIONS(87), 1, + ACTIONS(864), 1, anon_sym_COMMA_AT, - ACTIONS(89), 1, + ACTIONS(866), 1, anon_sym_COMMA, - ACTIONS(658), 1, - anon_sym_LPAREN, - ACTIONS(662), 1, - anon_sym_cl, - ACTIONS(3644), 1, + ACTIONS(1926), 1, sym_self_referential_reader_macro, - STATE(822), 1, + ACTIONS(2074), 1, + anon_sym_POUND, + STATE(1450), 1, sym_sym_lit, - STATE(824), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2149), 1, + STATE(2146), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(75), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(93), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(97), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(99), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3640), 2, + ACTIONS(856), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(868), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3642), 3, + ACTIONS(1924), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(771), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(823), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(896), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1522), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -75368,87 +75462,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [72765] = 35, + [72900] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(586), 1, - aux_sym_num_lit_token1, - ACTIONS(803), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(805), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(807), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(811), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(815), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(817), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(854), 1, + aux_sym_num_lit_token1, + ACTIONS(858), 1, anon_sym_POUND_SQUOTE, - ACTIONS(819), 1, + ACTIONS(860), 1, anon_sym_SQUOTE, - ACTIONS(821), 1, + ACTIONS(862), 1, anon_sym_BQUOTE, - ACTIONS(823), 1, + ACTIONS(864), 1, anon_sym_COMMA_AT, - ACTIONS(825), 1, + ACTIONS(866), 1, anon_sym_COMMA, - ACTIONS(827), 1, - anon_sym_cl, - ACTIONS(2578), 1, + ACTIONS(1932), 1, sym_self_referential_reader_macro, - ACTIONS(3046), 1, + ACTIONS(2074), 1, anon_sym_POUND, - STATE(2135), 1, + STATE(1450), 1, + sym_sym_lit, + STATE(1452), 1, + sym__bare_set_lit, + STATE(2146), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2373), 1, - sym_sym_lit, - ACTIONS(604), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(622), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(628), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(829), 2, + ACTIONS(856), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(868), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3646), 2, + ACTIONS(3712), 2, sym__ws, sym_comment, - ACTIONS(2576), 3, + ACTIONS(1930), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(669), 3, + STATE(737), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2319), 19, + STATE(1523), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -75468,87 +75562,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [72900] = 35, + [73035] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(586), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(803), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(805), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(807), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(811), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(815), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(817), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(819), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(821), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(823), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(825), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(827), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(2588), 1, + ACTIONS(3718), 1, sym_self_referential_reader_macro, - ACTIONS(3046), 1, - anon_sym_POUND, - STATE(2135), 1, + STATE(1450), 1, + sym_sym_lit, + STATE(1452), 1, + sym__bare_set_lit, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2373), 1, - sym_sym_lit, - ACTIONS(604), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(622), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(628), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(829), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3648), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3714), 2, sym__ws, sym_comment, - ACTIONS(2586), 3, + ACTIONS(3716), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(676), 3, + STATE(715), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2313), 19, + STATE(378), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -75568,7 +75662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [73035] = 35, + [73170] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -75577,78 +75671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(586), 1, + ACTIONS(61), 1, + anon_sym_POUND, + ACTIONS(65), 1, aux_sym_num_lit_token1, - ACTIONS(803), 1, + ACTIONS(67), 1, anon_sym_COLON, - ACTIONS(805), 1, + ACTIONS(69), 1, anon_sym_COLON_COLON, - ACTIONS(807), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(73), 1, aux_sym_sym_lit_token1, - ACTIONS(811), 1, - anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(77), 1, anon_sym_POUND_QMARK, - ACTIONS(815), 1, + ACTIONS(79), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(817), 1, + ACTIONS(81), 1, anon_sym_POUND_SQUOTE, - ACTIONS(819), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(821), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(823), 1, + ACTIONS(87), 1, anon_sym_COMMA_AT, - ACTIONS(825), 1, + ACTIONS(89), 1, anon_sym_COMMA, - ACTIONS(827), 1, + ACTIONS(830), 1, + anon_sym_LPAREN, + ACTIONS(834), 1, anon_sym_cl, - ACTIONS(2594), 1, + ACTIONS(3722), 1, sym_self_referential_reader_macro, - ACTIONS(3046), 1, - anon_sym_POUND, - STATE(2135), 1, + STATE(927), 1, + sym__bare_set_lit, + STATE(929), 1, + sym_sym_lit, + STATE(2169), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2373), 1, - sym_sym_lit, - ACTIONS(604), 2, + ACTIONS(75), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(622), 2, + ACTIONS(93), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(628), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(829), 2, + ACTIONS(97), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3650), 2, + ACTIONS(99), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2592), 3, + ACTIONS(3720), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(677), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(928), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2309), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(835), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -75668,7 +75762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [73170] = 35, + [73305] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -75677,78 +75771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(586), 1, + ACTIONS(61), 1, + anon_sym_POUND, + ACTIONS(65), 1, aux_sym_num_lit_token1, - ACTIONS(803), 1, + ACTIONS(67), 1, anon_sym_COLON, - ACTIONS(805), 1, + ACTIONS(69), 1, anon_sym_COLON_COLON, - ACTIONS(807), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(73), 1, aux_sym_sym_lit_token1, - ACTIONS(811), 1, - anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(77), 1, anon_sym_POUND_QMARK, - ACTIONS(815), 1, + ACTIONS(79), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(817), 1, + ACTIONS(81), 1, anon_sym_POUND_SQUOTE, - ACTIONS(819), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(821), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(823), 1, + ACTIONS(87), 1, anon_sym_COMMA_AT, - ACTIONS(825), 1, + ACTIONS(89), 1, anon_sym_COMMA, - ACTIONS(827), 1, + ACTIONS(830), 1, + anon_sym_LPAREN, + ACTIONS(834), 1, anon_sym_cl, - ACTIONS(2600), 1, + ACTIONS(3726), 1, sym_self_referential_reader_macro, - ACTIONS(3046), 1, - anon_sym_POUND, - STATE(2135), 1, + STATE(927), 1, + sym__bare_set_lit, + STATE(929), 1, + sym_sym_lit, + STATE(2169), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2373), 1, - sym_sym_lit, - ACTIONS(604), 2, + ACTIONS(75), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(622), 2, + ACTIONS(93), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(628), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(829), 2, + ACTIONS(97), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3652), 2, + ACTIONS(99), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2598), 3, + ACTIONS(3724), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(681), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(928), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2308), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(844), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -75768,7 +75862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [73305] = 35, + [73440] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -75777,78 +75871,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(586), 1, + ACTIONS(604), 1, aux_sym_num_lit_token1, - ACTIONS(803), 1, + ACTIONS(606), 1, anon_sym_COLON, - ACTIONS(805), 1, + ACTIONS(608), 1, anon_sym_COLON_COLON, - ACTIONS(807), 1, + ACTIONS(610), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(612), 1, aux_sym_sym_lit_token1, - ACTIONS(811), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(618), 1, anon_sym_POUND_QMARK, - ACTIONS(815), 1, + ACTIONS(620), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(817), 1, + ACTIONS(622), 1, anon_sym_POUND_SQUOTE, - ACTIONS(819), 1, + ACTIONS(624), 1, anon_sym_SQUOTE, - ACTIONS(821), 1, + ACTIONS(626), 1, anon_sym_BQUOTE, - ACTIONS(823), 1, + ACTIONS(628), 1, anon_sym_COMMA_AT, - ACTIONS(825), 1, + ACTIONS(630), 1, anon_sym_COMMA, - ACTIONS(827), 1, + ACTIONS(632), 1, anon_sym_cl, - ACTIONS(2606), 1, + ACTIONS(1832), 1, sym_self_referential_reader_macro, - ACTIONS(3046), 1, + ACTIONS(3080), 1, anon_sym_POUND, - STATE(2135), 1, + STATE(2151), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, + STATE(2337), 1, sym__bare_set_lit, - STATE(2373), 1, + STATE(2380), 1, sym_sym_lit, - ACTIONS(604), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(622), 2, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(628), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(829), 2, + ACTIONS(616), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(634), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3654), 2, + ACTIONS(3728), 2, sym__ws, sym_comment, - ACTIONS(2604), 3, + ACTIONS(1830), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(682), 3, + STATE(670), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2301), 19, + STATE(2348), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -75868,87 +75962,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [73440] = 35, + [73575] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(61), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(65), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(67), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(69), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(73), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(77), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(79), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(81), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(87), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(89), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(830), 1, + anon_sym_LPAREN, + ACTIONS(834), 1, anon_sym_cl, - ACTIONS(3660), 1, + ACTIONS(3734), 1, sym_self_referential_reader_macro, - STATE(1506), 1, - sym_sym_lit, - STATE(1511), 1, + STATE(927), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(929), 1, + sym_sym_lit, + STATE(2169), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(75), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(93), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(97), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(99), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3656), 2, + ACTIONS(3730), 2, sym__ws, sym_comment, - ACTIONS(3658), 3, + ACTIONS(3732), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(663), 3, + STATE(749), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(928), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(351), 19, + STATE(841), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -75968,87 +76062,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [73575] = 35, + [73710] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(604), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(606), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(608), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(610), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(612), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(618), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(620), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(622), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(624), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(626), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(628), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(630), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(632), 1, anon_sym_cl, - ACTIONS(3666), 1, + ACTIONS(1848), 1, sym_self_referential_reader_macro, - STATE(1506), 1, - sym_sym_lit, - STATE(1511), 1, - sym__bare_set_lit, - STATE(2137), 1, + ACTIONS(3080), 1, + anon_sym_POUND, + STATE(2151), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2380), 1, + sym_sym_lit, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3662), 2, + ACTIONS(616), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(634), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(3736), 2, sym__ws, sym_comment, - ACTIONS(3664), 3, + ACTIONS(1846), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(699), 3, + STATE(674), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(620), 19, + STATE(2302), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -76068,7 +76162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [73710] = 35, + [73845] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -76077,78 +76171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(588), 1, + ACTIONS(604), 1, + aux_sym_num_lit_token1, + ACTIONS(606), 1, anon_sym_COLON, - ACTIONS(590), 1, + ACTIONS(608), 1, anon_sym_COLON_COLON, - ACTIONS(592), 1, + ACTIONS(610), 1, anon_sym_DQUOTE, - ACTIONS(598), 1, + ACTIONS(612), 1, aux_sym_sym_lit_token1, - ACTIONS(620), 1, - anon_sym_cl, - ACTIONS(670), 1, - aux_sym_num_lit_token1, - ACTIONS(674), 1, + ACTIONS(614), 1, + anon_sym_LPAREN, + ACTIONS(618), 1, anon_sym_POUND_QMARK, - ACTIONS(676), 1, + ACTIONS(620), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(678), 1, + ACTIONS(622), 1, anon_sym_POUND_SQUOTE, - ACTIONS(680), 1, + ACTIONS(624), 1, anon_sym_SQUOTE, - ACTIONS(682), 1, + ACTIONS(626), 1, anon_sym_BQUOTE, - ACTIONS(684), 1, + ACTIONS(628), 1, anon_sym_COMMA_AT, - ACTIONS(686), 1, + ACTIONS(630), 1, anon_sym_COMMA, - ACTIONS(1588), 1, - anon_sym_POUND, - ACTIONS(2308), 1, + ACTIONS(632), 1, + anon_sym_cl, + ACTIONS(1854), 1, sym_self_referential_reader_macro, - STATE(2150), 1, + ACTIONS(3080), 1, + anon_sym_POUND, + STATE(2151), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, + STATE(2337), 1, sym__bare_set_lit, - STATE(2428), 1, + STATE(2380), 1, sym_sym_lit, - ACTIONS(622), 2, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(628), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(672), 2, + ACTIONS(616), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(688), 2, + ACTIONS(634), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(3738), 2, sym__ws, sym_comment, - ACTIONS(2306), 3, + ACTIONS(1852), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(678), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2252), 19, + STATE(2303), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -76168,7 +76262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [73845] = 35, + [73980] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -76177,78 +76271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(588), 1, + ACTIONS(61), 1, + anon_sym_POUND, + ACTIONS(65), 1, + aux_sym_num_lit_token1, + ACTIONS(67), 1, anon_sym_COLON, - ACTIONS(590), 1, + ACTIONS(69), 1, anon_sym_COLON_COLON, - ACTIONS(592), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(598), 1, + ACTIONS(73), 1, aux_sym_sym_lit_token1, - ACTIONS(620), 1, - anon_sym_cl, - ACTIONS(670), 1, - aux_sym_num_lit_token1, - ACTIONS(674), 1, + ACTIONS(77), 1, anon_sym_POUND_QMARK, - ACTIONS(676), 1, + ACTIONS(79), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(678), 1, + ACTIONS(81), 1, anon_sym_POUND_SQUOTE, - ACTIONS(680), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(682), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(684), 1, + ACTIONS(87), 1, anon_sym_COMMA_AT, - ACTIONS(686), 1, + ACTIONS(89), 1, anon_sym_COMMA, - ACTIONS(1588), 1, - anon_sym_POUND, - ACTIONS(2316), 1, + ACTIONS(830), 1, + anon_sym_LPAREN, + ACTIONS(834), 1, + anon_sym_cl, + ACTIONS(3744), 1, sym_self_referential_reader_macro, - STATE(2150), 1, + STATE(927), 1, + sym__bare_set_lit, + STATE(929), 1, + sym_sym_lit, + STATE(2169), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2428), 1, - sym_sym_lit, - ACTIONS(622), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(628), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(672), 2, + ACTIONS(75), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(688), 2, + ACTIONS(93), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(97), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3668), 2, + ACTIONS(99), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3740), 2, sym__ws, sym_comment, - ACTIONS(2314), 3, + ACTIONS(3742), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(254), 3, + STATE(754), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(928), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2255), 19, + STATE(852), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -76268,7 +76362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [73980] = 35, + [74115] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -76307,19 +76401,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3674), 1, + ACTIONS(3748), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -76333,22 +76427,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3670), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3672), 3, + ACTIONS(3746), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(743), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1526), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(368), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -76368,87 +76462,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [74115] = 35, + [74250] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(604), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(606), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(608), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(610), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(612), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(618), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(620), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(622), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(624), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(626), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(628), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(630), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(632), 1, anon_sym_cl, - ACTIONS(3680), 1, + ACTIONS(1860), 1, sym_self_referential_reader_macro, - STATE(1506), 1, - sym_sym_lit, - STATE(1511), 1, - sym__bare_set_lit, - STATE(2137), 1, + ACTIONS(3080), 1, + anon_sym_POUND, + STATE(2151), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2380), 1, + sym_sym_lit, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3676), 2, + ACTIONS(616), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(634), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(3750), 2, sym__ws, sym_comment, - ACTIONS(3678), 3, + ACTIONS(1858), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(666), 3, + STATE(682), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(355), 19, + STATE(2306), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -76468,87 +76562,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [74250] = 35, + [74385] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, + anon_sym_COLON_COLON, + ACTIONS(21), 1, + anon_sym_DQUOTE, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(536), 1, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(588), 1, - anon_sym_COLON, - ACTIONS(590), 1, - anon_sym_COLON_COLON, - ACTIONS(592), 1, - anon_sym_DQUOTE, - ACTIONS(598), 1, - aux_sym_sym_lit_token1, - ACTIONS(620), 1, - anon_sym_cl, - ACTIONS(670), 1, - aux_sym_num_lit_token1, - ACTIONS(674), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(676), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(678), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(680), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(682), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(684), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(686), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(1588), 1, - anon_sym_POUND, - ACTIONS(2320), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(3756), 1, sym_self_referential_reader_macro, - STATE(2150), 1, + STATE(1450), 1, + sym_sym_lit, + STATE(1452), 1, + sym__bare_set_lit, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2428), 1, - sym_sym_lit, - ACTIONS(622), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(628), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(672), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(688), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3752), 2, sym__ws, sym_comment, - ACTIONS(2318), 3, + ACTIONS(3754), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(744), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2256), 19, + STATE(350), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -76568,87 +76662,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [74385] = 35, + [74520] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(524), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, - anon_sym_cl, - ACTIONS(783), 1, - aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(1436), 1, - anon_sym_POUND, - ACTIONS(3684), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(3762), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(564), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3758), 2, sym__ws, sym_comment, - ACTIONS(3682), 3, + ACTIONS(3760), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(745), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2083), 19, + STATE(344), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -76668,7 +76762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [74520] = 35, + [74655] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -76677,78 +76771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(3688), 1, + ACTIONS(3766), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3686), 3, + ACTIONS(3764), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1962), 19, + STATE(2080), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -76768,7 +76862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [74655] = 35, + [74790] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -76777,78 +76871,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(3694), 1, + ACTIONS(3772), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3690), 2, + ACTIONS(3768), 2, sym__ws, sym_comment, - ACTIONS(3692), 3, + ACTIONS(3770), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(772), 3, + STATE(773), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1961), 19, + STATE(2018), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -76868,7 +76962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [74790] = 35, + [74925] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -76877,78 +76971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(588), 1, + ACTIONS(604), 1, + aux_sym_num_lit_token1, + ACTIONS(606), 1, anon_sym_COLON, - ACTIONS(590), 1, + ACTIONS(608), 1, anon_sym_COLON_COLON, - ACTIONS(592), 1, + ACTIONS(610), 1, anon_sym_DQUOTE, - ACTIONS(598), 1, + ACTIONS(612), 1, aux_sym_sym_lit_token1, - ACTIONS(620), 1, - anon_sym_cl, - ACTIONS(670), 1, - aux_sym_num_lit_token1, - ACTIONS(674), 1, + ACTIONS(614), 1, + anon_sym_LPAREN, + ACTIONS(618), 1, anon_sym_POUND_QMARK, - ACTIONS(676), 1, + ACTIONS(620), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(678), 1, + ACTIONS(622), 1, anon_sym_POUND_SQUOTE, - ACTIONS(680), 1, + ACTIONS(624), 1, anon_sym_SQUOTE, - ACTIONS(682), 1, + ACTIONS(626), 1, anon_sym_BQUOTE, - ACTIONS(684), 1, + ACTIONS(628), 1, anon_sym_COMMA_AT, - ACTIONS(686), 1, + ACTIONS(630), 1, anon_sym_COMMA, - ACTIONS(1588), 1, - anon_sym_POUND, - ACTIONS(2354), 1, + ACTIONS(632), 1, + anon_sym_cl, + ACTIONS(1886), 1, sym_self_referential_reader_macro, - STATE(2150), 1, + ACTIONS(3080), 1, + anon_sym_POUND, + STATE(2151), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, + STATE(2337), 1, sym__bare_set_lit, - STATE(2428), 1, + STATE(2380), 1, sym_sym_lit, - ACTIONS(622), 2, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(628), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(672), 2, + ACTIONS(616), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(688), 2, + ACTIONS(634), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3696), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2352), 3, + ACTIONS(1884), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(397), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2263), 19, + STATE(2310), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -76968,13 +77062,9 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [74925] = 35, + [75060] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, - aux_sym_num_lit_token1, ACTIONS(17), 1, anon_sym_COLON, ACTIONS(19), 1, @@ -76993,62 +77083,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(854), 1, + aux_sym_num_lit_token1, + ACTIONS(858), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(860), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(862), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(864), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(866), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(3700), 1, + ACTIONS(2074), 1, + anon_sym_POUND, + ACTIONS(2304), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2146), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(856), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(868), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3698), 3, + ACTIONS(2302), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(360), 19, + STATE(1530), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -77068,7 +77162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [75060] = 35, + [75195] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -77077,78 +77171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(190), 1, - anon_sym_POUND, - ACTIONS(194), 1, + ACTIONS(604), 1, aux_sym_num_lit_token1, - ACTIONS(196), 1, + ACTIONS(606), 1, anon_sym_COLON, - ACTIONS(198), 1, + ACTIONS(608), 1, anon_sym_COLON_COLON, - ACTIONS(200), 1, + ACTIONS(610), 1, anon_sym_DQUOTE, - ACTIONS(202), 1, + ACTIONS(612), 1, aux_sym_sym_lit_token1, - ACTIONS(217), 1, + ACTIONS(614), 1, + anon_sym_LPAREN, + ACTIONS(618), 1, anon_sym_POUND_QMARK, - ACTIONS(219), 1, + ACTIONS(620), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(221), 1, + ACTIONS(622), 1, anon_sym_POUND_SQUOTE, - ACTIONS(223), 1, + ACTIONS(624), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, + ACTIONS(626), 1, anon_sym_BQUOTE, - ACTIONS(227), 1, + ACTIONS(628), 1, anon_sym_COMMA_AT, - ACTIONS(229), 1, + ACTIONS(630), 1, anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_LPAREN, - ACTIONS(644), 1, + ACTIONS(632), 1, anon_sym_cl, - ACTIONS(3704), 1, + ACTIONS(1894), 1, sym_self_referential_reader_macro, - STATE(1012), 1, - sym_sym_lit, - STATE(1017), 1, - sym__bare_set_lit, - STATE(2139), 1, + ACTIONS(3080), 1, + anon_sym_POUND, + STATE(2151), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(215), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(236), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2380), 1, + sym_sym_lit, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(240), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(242), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(616), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(634), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3702), 3, + ACTIONS(1892), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1015), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1128), 19, + STATE(2282), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2311), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -77168,7 +77262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [75195] = 35, + [75330] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -77177,78 +77271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(3708), 1, + ACTIONS(3776), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3706), 3, + ACTIONS(3774), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1960), 19, + STATE(2084), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -77268,7 +77362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [75330] = 35, + [75465] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -77277,78 +77371,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(3714), 1, + ACTIONS(3782), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3710), 2, + ACTIONS(3778), 2, sym__ws, sym_comment, - ACTIONS(3712), 3, + ACTIONS(3780), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(776), 3, + STATE(777), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2074), 19, + STATE(2085), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -77368,7 +77462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [75465] = 35, + [75600] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -77377,78 +77471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(190), 1, - anon_sym_POUND, - ACTIONS(194), 1, + ACTIONS(604), 1, aux_sym_num_lit_token1, - ACTIONS(196), 1, + ACTIONS(606), 1, anon_sym_COLON, - ACTIONS(198), 1, + ACTIONS(608), 1, anon_sym_COLON_COLON, - ACTIONS(200), 1, + ACTIONS(610), 1, anon_sym_DQUOTE, - ACTIONS(202), 1, + ACTIONS(612), 1, aux_sym_sym_lit_token1, - ACTIONS(217), 1, + ACTIONS(614), 1, + anon_sym_LPAREN, + ACTIONS(618), 1, anon_sym_POUND_QMARK, - ACTIONS(219), 1, + ACTIONS(620), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(221), 1, + ACTIONS(622), 1, anon_sym_POUND_SQUOTE, - ACTIONS(223), 1, + ACTIONS(624), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, + ACTIONS(626), 1, anon_sym_BQUOTE, - ACTIONS(227), 1, + ACTIONS(628), 1, anon_sym_COMMA_AT, - ACTIONS(229), 1, + ACTIONS(630), 1, anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_LPAREN, - ACTIONS(644), 1, + ACTIONS(632), 1, anon_sym_cl, - ACTIONS(3720), 1, + ACTIONS(1898), 1, sym_self_referential_reader_macro, - STATE(1012), 1, - sym_sym_lit, - STATE(1017), 1, - sym__bare_set_lit, - STATE(2139), 1, + ACTIONS(3080), 1, + anon_sym_POUND, + STATE(2151), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(215), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(236), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2380), 1, + sym_sym_lit, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(240), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(242), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3716), 2, + ACTIONS(616), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(634), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3718), 3, + ACTIONS(1896), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(768), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1015), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1127), 19, + STATE(2312), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -77468,87 +77562,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [75600] = 35, + [75735] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(190), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(194), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(196), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(198), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(200), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(202), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(217), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(219), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(221), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(223), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(227), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(229), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_LPAREN, - ACTIONS(644), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3724), 1, + ACTIONS(3786), 1, sym_self_referential_reader_macro, - STATE(1012), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1017), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2139), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(215), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(236), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(240), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(242), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3722), 3, + ACTIONS(3784), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1015), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1124), 19, + STATE(171), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -77568,7 +77662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [75735] = 35, + [75870] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -77577,78 +77671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(61), 1, - anon_sym_POUND, - ACTIONS(65), 1, + ACTIONS(604), 1, aux_sym_num_lit_token1, - ACTIONS(67), 1, + ACTIONS(606), 1, anon_sym_COLON, - ACTIONS(69), 1, + ACTIONS(608), 1, anon_sym_COLON_COLON, - ACTIONS(71), 1, + ACTIONS(610), 1, anon_sym_DQUOTE, - ACTIONS(73), 1, + ACTIONS(612), 1, aux_sym_sym_lit_token1, - ACTIONS(77), 1, + ACTIONS(614), 1, + anon_sym_LPAREN, + ACTIONS(618), 1, anon_sym_POUND_QMARK, - ACTIONS(79), 1, + ACTIONS(620), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(81), 1, + ACTIONS(622), 1, anon_sym_POUND_SQUOTE, - ACTIONS(83), 1, + ACTIONS(624), 1, anon_sym_SQUOTE, - ACTIONS(85), 1, + ACTIONS(626), 1, anon_sym_BQUOTE, - ACTIONS(87), 1, + ACTIONS(628), 1, anon_sym_COMMA_AT, - ACTIONS(89), 1, + ACTIONS(630), 1, anon_sym_COMMA, - ACTIONS(658), 1, - anon_sym_LPAREN, - ACTIONS(662), 1, + ACTIONS(632), 1, anon_sym_cl, - ACTIONS(3728), 1, + ACTIONS(1936), 1, sym_self_referential_reader_macro, - STATE(822), 1, - sym_sym_lit, - STATE(824), 1, - sym__bare_set_lit, - STATE(2149), 1, + ACTIONS(3080), 1, + anon_sym_POUND, + STATE(2151), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(75), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(93), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2380), 1, + sym_sym_lit, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(97), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(99), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(616), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(634), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3726), 3, + ACTIONS(1934), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(823), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(902), 19, + STATE(2282), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2313), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -77668,7 +77762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [75870] = 35, + [76005] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -77677,78 +77771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(3732), 1, + ACTIONS(3790), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3730), 3, + ACTIONS(3788), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2053), 19, + STATE(2086), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -77768,7 +77862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [76005] = 35, + [76140] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -77807,19 +77901,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3738), 1, + ACTIONS(3794), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -77833,22 +77927,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3734), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3736), 3, + ACTIONS(3792), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(738), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(578), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(176), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -77868,7 +77962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [76140] = 35, + [76275] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -77877,78 +77971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(3744), 1, + ACTIONS(3800), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3740), 2, + ACTIONS(3796), 2, sym__ws, sym_comment, - ACTIONS(3742), 3, + ACTIONS(3798), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(166), 3, + STATE(782), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2048), 19, + STATE(2087), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -77968,7 +78062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [76275] = 35, + [76410] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -77977,78 +78071,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(3750), 1, + ACTIONS(3806), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3746), 2, + ACTIONS(3802), 2, sym__ws, sym_comment, - ACTIONS(3748), 3, + ACTIONS(3804), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(783), 3, + STATE(784), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2041), 19, + STATE(2089), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -78068,7 +78162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [76410] = 35, + [76545] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -78077,78 +78171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(190), 1, - anon_sym_POUND, - ACTIONS(194), 1, + ACTIONS(604), 1, aux_sym_num_lit_token1, - ACTIONS(196), 1, + ACTIONS(606), 1, anon_sym_COLON, - ACTIONS(198), 1, + ACTIONS(608), 1, anon_sym_COLON_COLON, - ACTIONS(200), 1, + ACTIONS(610), 1, anon_sym_DQUOTE, - ACTIONS(202), 1, + ACTIONS(612), 1, aux_sym_sym_lit_token1, - ACTIONS(217), 1, + ACTIONS(614), 1, + anon_sym_LPAREN, + ACTIONS(618), 1, anon_sym_POUND_QMARK, - ACTIONS(219), 1, + ACTIONS(620), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(221), 1, + ACTIONS(622), 1, anon_sym_POUND_SQUOTE, - ACTIONS(223), 1, + ACTIONS(624), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, + ACTIONS(626), 1, anon_sym_BQUOTE, - ACTIONS(227), 1, + ACTIONS(628), 1, anon_sym_COMMA_AT, - ACTIONS(229), 1, + ACTIONS(630), 1, anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_LPAREN, - ACTIONS(644), 1, + ACTIONS(632), 1, anon_sym_cl, - ACTIONS(3754), 1, + ACTIONS(1940), 1, sym_self_referential_reader_macro, - STATE(1012), 1, - sym_sym_lit, - STATE(1017), 1, - sym__bare_set_lit, - STATE(2139), 1, + ACTIONS(3080), 1, + anon_sym_POUND, + STATE(2151), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(215), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(236), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2380), 1, + sym_sym_lit, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(240), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(242), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(616), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(634), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3752), 3, + ACTIONS(1938), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1015), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1123), 19, + STATE(2282), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2314), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -78168,87 +78262,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [76545] = 35, + [76680] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(190), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(194), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(196), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(198), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(200), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(202), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(217), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(219), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(221), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(223), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(227), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(229), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_LPAREN, - ACTIONS(644), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3758), 1, + ACTIONS(3812), 1, sym_self_referential_reader_macro, - STATE(1012), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1017), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2139), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(215), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(236), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(240), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(242), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(3808), 2, sym__ws, sym_comment, - ACTIONS(3756), 3, + ACTIONS(3810), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1015), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(465), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1122), 19, + STATE(1451), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(467), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -78268,7 +78362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [76680] = 35, + [76815] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -78277,78 +78371,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(61), 1, + anon_sym_POUND, + ACTIONS(65), 1, + aux_sym_num_lit_token1, + ACTIONS(67), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(69), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(73), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(77), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(79), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, - anon_sym_cl, - ACTIONS(783), 1, - aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(81), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(87), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(89), 1, anon_sym_COMMA, - ACTIONS(1436), 1, - anon_sym_POUND, - ACTIONS(3764), 1, + ACTIONS(830), 1, + anon_sym_LPAREN, + ACTIONS(834), 1, + anon_sym_cl, + ACTIONS(3816), 1, sym_self_referential_reader_macro, - STATE(1825), 1, - sym_sym_lit, - STATE(1887), 1, + STATE(927), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(929), 1, + sym_sym_lit, + STATE(2169), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(564), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(75), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(93), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(97), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3760), 2, + ACTIONS(99), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3762), 3, + ACTIONS(3814), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(717), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(928), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2088), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(862), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -78368,7 +78462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [76815] = 35, + [76950] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -78377,78 +78471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(3768), 1, + ACTIONS(3820), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3766), 3, + ACTIONS(3818), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2036), 19, + STATE(2090), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -78468,87 +78562,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [76950] = 35, + [77085] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(524), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(854), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(858), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(860), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(862), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(864), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(866), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(2074), 1, anon_sym_POUND, - ACTIONS(3772), 1, + ACTIONS(2318), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2146), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(856), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(868), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3770), 3, + ACTIONS(2316), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2069), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1531), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -78568,7 +78662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [77085] = 35, + [77220] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -78577,78 +78671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3826), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3774), 2, + ACTIONS(3822), 2, sym__ws, sym_comment, - ACTIONS(3776), 3, + ACTIONS(3824), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(788), 3, + STATE(789), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2003), 19, + STATE(2091), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -78668,7 +78762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [77220] = 35, + [77355] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -78707,19 +78801,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3782), 1, + ACTIONS(2398), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -78733,22 +78827,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(3828), 2, sym__ws, sym_comment, - ACTIONS(3780), 3, + ACTIONS(2396), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(471), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(599), 19, + STATE(1451), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1471), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -78768,87 +78862,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [77355] = 35, + [77490] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(927), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(929), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(931), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(933), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(939), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(941), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(947), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(949), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(951), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(953), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(955), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(957), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(959), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(961), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1740), 1, - anon_sym_POUND, - ACTIONS(3788), 1, + ACTIONS(2382), 1, sym_self_referential_reader_macro, - STATE(1687), 1, - sym__bare_set_lit, - STATE(1689), 1, + STATE(1450), 1, sym_sym_lit, - STATE(2148), 1, + STATE(1452), 1, + sym__bare_set_lit, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(945), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(963), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(967), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(969), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3784), 2, + ACTIONS(3830), 2, sym__ws, sym_comment, - ACTIONS(3786), 3, + ACTIONS(2380), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(619), 3, + STATE(492), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1643), 19, + STATE(1470), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -78868,7 +78962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [77490] = 35, + [77625] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -78877,78 +78971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(3792), 1, + ACTIONS(3834), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3790), 3, + ACTIONS(3832), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2004), 19, + STATE(2092), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -78968,7 +79062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [77625] = 35, + [77760] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -79007,19 +79101,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3798), 1, + ACTIONS(2372), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -79033,22 +79127,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3794), 2, + ACTIONS(3836), 2, sym__ws, sym_comment, - ACTIONS(3796), 3, + ACTIONS(2370), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(721), 3, + STATE(501), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(377), 19, + STATE(1469), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -79068,7 +79162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [77760] = 35, + [77895] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -79077,78 +79171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(3804), 1, + ACTIONS(3842), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3800), 2, + ACTIONS(3838), 2, sym__ws, sym_comment, - ACTIONS(3802), 3, + ACTIONS(3840), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(793), 3, + STATE(794), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2005), 19, + STATE(2093), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -79168,7 +79262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [77895] = 35, + [78030] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -79207,19 +79301,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(2548), 1, + ACTIONS(3846), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -79233,22 +79327,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2546), 3, + ACTIONS(3844), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1493), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1459), 19, + STATE(338), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -79268,87 +79362,187 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [78030] = 35, + [78165] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, + anon_sym_COLON_COLON, + ACTIONS(21), 1, + anon_sym_DQUOTE, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, + anon_sym_POUND_QMARK, + ACTIONS(35), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(37), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(39), 1, + anon_sym_SQUOTE, + ACTIONS(41), 1, + anon_sym_BQUOTE, + ACTIONS(43), 1, + anon_sym_COMMA_AT, + ACTIONS(45), 1, + anon_sym_COMMA, ACTIONS(47), 1, sym_block_comment, - ACTIONS(927), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(3850), 1, + sym_self_referential_reader_macro, + STATE(1450), 1, + sym_sym_lit, + STATE(1452), 1, + sym__bare_set_lit, + STATE(2178), 1, + aux_sym_list_lit_repeat1, + STATE(2221), 1, + sym_old_meta_lit, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, + sym__metadata_lit, + ACTIONS(31), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1450), 2, + sym__ws, + sym_comment, + ACTIONS(3848), 3, + anon_sym_DOT, + sym_nil_lit, + sym_fancy_literal, + STATE(1451), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(334), 19, + sym__form, + sym_num_lit, + sym_kwd_lit, + sym_str_lit, + sym_char_lit, + sym_list_lit, + sym_vec_lit, + sym_set_lit, + sym_read_cond_lit, + sym_splicing_read_cond_lit, + sym_var_quoting_lit, + sym_quoting_lit, + sym_syn_quoting_lit, + sym_unquote_splicing_lit, + sym_unquoting_lit, + sym_path_lit, + sym_package_lit, + sym_include_reader_macro, + sym_complex_num_lit, + [78300] = 35, + ACTIONS(9), 1, + anon_sym_POUND_, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(929), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(931), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(933), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(939), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(941), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(947), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(949), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(951), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(953), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(955), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(957), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(959), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(961), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1740), 1, - anon_sym_POUND, - ACTIONS(3810), 1, + ACTIONS(2362), 1, sym_self_referential_reader_macro, - STATE(1687), 1, - sym__bare_set_lit, - STATE(1689), 1, + STATE(1450), 1, sym_sym_lit, - STATE(2148), 1, + STATE(1452), 1, + sym__bare_set_lit, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(945), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(963), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(967), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(969), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3806), 2, + ACTIONS(3852), 2, sym__ws, sym_comment, - ACTIONS(3808), 3, + ACTIONS(2360), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(621), 3, + STATE(509), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1644), 19, + STATE(1468), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -79368,7 +79562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [78165] = 35, + [78435] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -79377,78 +79571,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(927), 1, - aux_sym_num_lit_token1, - ACTIONS(929), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(931), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(933), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(939), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(941), 1, - anon_sym_LPAREN, - ACTIONS(947), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(949), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(951), 1, + ACTIONS(760), 1, + anon_sym_cl, + ACTIONS(838), 1, + aux_sym_num_lit_token1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(953), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(955), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(957), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(959), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(961), 1, - anon_sym_cl, - ACTIONS(1740), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(3816), 1, + ACTIONS(3856), 1, sym_self_referential_reader_macro, - STATE(1687), 1, - sym__bare_set_lit, - STATE(1689), 1, + STATE(1848), 1, sym_sym_lit, - STATE(2148), 1, + STATE(1925), 1, + sym__bare_set_lit, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(945), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(963), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(967), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(969), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3812), 2, + ACTIONS(840), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(852), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3814), 3, + ACTIONS(3854), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(651), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1645), 19, + STATE(2094), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -79468,87 +79662,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [78300] = 35, + [78570] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(524), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, - anon_sym_cl, - ACTIONS(783), 1, - aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(1436), 1, - anon_sym_POUND, - ACTIONS(3820), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(2356), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(564), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3858), 2, sym__ws, sym_comment, - ACTIONS(3818), 3, + ACTIONS(2354), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(537), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2006), 19, + STATE(1467), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -79568,7 +79762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [78435] = 35, + [78705] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -79577,78 +79771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(927), 1, + ACTIONS(61), 1, + anon_sym_POUND, + ACTIONS(65), 1, aux_sym_num_lit_token1, - ACTIONS(929), 1, + ACTIONS(67), 1, anon_sym_COLON, - ACTIONS(931), 1, + ACTIONS(69), 1, anon_sym_COLON_COLON, - ACTIONS(933), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(939), 1, + ACTIONS(73), 1, aux_sym_sym_lit_token1, - ACTIONS(941), 1, - anon_sym_LPAREN, - ACTIONS(947), 1, + ACTIONS(77), 1, anon_sym_POUND_QMARK, - ACTIONS(949), 1, + ACTIONS(79), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(951), 1, + ACTIONS(81), 1, anon_sym_POUND_SQUOTE, - ACTIONS(953), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(955), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(957), 1, + ACTIONS(87), 1, anon_sym_COMMA_AT, - ACTIONS(959), 1, + ACTIONS(89), 1, anon_sym_COMMA, - ACTIONS(961), 1, + ACTIONS(830), 1, + anon_sym_LPAREN, + ACTIONS(834), 1, anon_sym_cl, - ACTIONS(1740), 1, - anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(3862), 1, sym_self_referential_reader_macro, - STATE(1687), 1, + STATE(927), 1, sym__bare_set_lit, - STATE(1689), 1, + STATE(929), 1, sym_sym_lit, - STATE(2148), 1, + STATE(2169), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(945), 2, + ACTIONS(75), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(963), 2, + ACTIONS(93), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(967), 2, + ACTIONS(97), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(969), 2, + ACTIONS(99), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3822), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3824), 3, + ACTIONS(3860), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(673), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(928), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1648), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(864), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -79668,7 +79862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [78570] = 35, + [78840] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -79677,78 +79871,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(190), 1, - anon_sym_POUND, - ACTIONS(194), 1, - aux_sym_num_lit_token1, - ACTIONS(196), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(198), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(200), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(202), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(217), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(219), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(221), 1, + ACTIONS(760), 1, + anon_sym_cl, + ACTIONS(838), 1, + aux_sym_num_lit_token1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(223), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(227), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(229), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_LPAREN, - ACTIONS(644), 1, - anon_sym_cl, - ACTIONS(3832), 1, + ACTIONS(1664), 1, + anon_sym_POUND, + ACTIONS(3866), 1, sym_self_referential_reader_macro, - STATE(1012), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1017), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2139), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(215), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(236), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(240), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(242), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3828), 2, + ACTIONS(840), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(852), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3830), 3, + ACTIONS(3864), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(769), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1015), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1121), 19, + STATE(2095), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -79768,7 +79962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [78705] = 35, + [78975] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -79777,78 +79971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3872), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(3868), 2, sym__ws, sym_comment, - ACTIONS(3834), 3, + ACTIONS(3870), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(797), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2020), 19, + STATE(2096), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -79868,7 +80062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [78840] = 35, + [79110] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -79877,78 +80071,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(61), 1, + anon_sym_POUND, + ACTIONS(65), 1, + aux_sym_num_lit_token1, + ACTIONS(67), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(69), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(73), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(77), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(79), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, - anon_sym_cl, - ACTIONS(783), 1, - aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(81), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(87), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(89), 1, anon_sym_COMMA, - ACTIONS(1436), 1, - anon_sym_POUND, - ACTIONS(3842), 1, + ACTIONS(830), 1, + anon_sym_LPAREN, + ACTIONS(834), 1, + anon_sym_cl, + ACTIONS(3878), 1, sym_self_referential_reader_macro, - STATE(1825), 1, - sym_sym_lit, - STATE(1887), 1, + STATE(927), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(929), 1, + sym_sym_lit, + STATE(2169), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(564), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(75), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(93), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(97), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3838), 2, + ACTIONS(99), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3874), 2, sym__ws, sym_comment, - ACTIONS(3840), 3, + ACTIONS(3876), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(799), 3, + STATE(762), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(928), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2021), 19, + STATE(865), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -79968,7 +80162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [78975] = 35, + [79245] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -79977,78 +80171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(927), 1, + ACTIONS(604), 1, aux_sym_num_lit_token1, - ACTIONS(929), 1, + ACTIONS(606), 1, anon_sym_COLON, - ACTIONS(931), 1, + ACTIONS(608), 1, anon_sym_COLON_COLON, - ACTIONS(933), 1, + ACTIONS(610), 1, anon_sym_DQUOTE, - ACTIONS(939), 1, + ACTIONS(612), 1, aux_sym_sym_lit_token1, - ACTIONS(941), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(947), 1, + ACTIONS(618), 1, anon_sym_POUND_QMARK, - ACTIONS(949), 1, + ACTIONS(620), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(951), 1, + ACTIONS(622), 1, anon_sym_POUND_SQUOTE, - ACTIONS(953), 1, + ACTIONS(624), 1, anon_sym_SQUOTE, - ACTIONS(955), 1, + ACTIONS(626), 1, anon_sym_BQUOTE, - ACTIONS(957), 1, + ACTIONS(628), 1, anon_sym_COMMA_AT, - ACTIONS(959), 1, + ACTIONS(630), 1, anon_sym_COMMA, - ACTIONS(961), 1, + ACTIONS(632), 1, anon_sym_cl, - ACTIONS(1740), 1, - anon_sym_POUND, - ACTIONS(3846), 1, + ACTIONS(2516), 1, sym_self_referential_reader_macro, - STATE(1687), 1, - sym__bare_set_lit, - STATE(1689), 1, - sym_sym_lit, - STATE(2148), 1, + ACTIONS(3080), 1, + anon_sym_POUND, + STATE(2151), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(945), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(963), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2380), 1, + sym_sym_lit, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(967), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(969), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(616), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(634), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3844), 3, + ACTIONS(2514), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1650), 19, + STATE(2173), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -80068,7 +80262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [79110] = 35, + [79380] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -80077,78 +80271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(190), 1, + ACTIONS(61), 1, anon_sym_POUND, - ACTIONS(194), 1, + ACTIONS(65), 1, aux_sym_num_lit_token1, - ACTIONS(196), 1, + ACTIONS(67), 1, anon_sym_COLON, - ACTIONS(198), 1, + ACTIONS(69), 1, anon_sym_COLON_COLON, - ACTIONS(200), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(202), 1, + ACTIONS(73), 1, aux_sym_sym_lit_token1, - ACTIONS(217), 1, + ACTIONS(77), 1, anon_sym_POUND_QMARK, - ACTIONS(219), 1, + ACTIONS(79), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(221), 1, + ACTIONS(81), 1, anon_sym_POUND_SQUOTE, - ACTIONS(223), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(227), 1, + ACTIONS(87), 1, anon_sym_COMMA_AT, - ACTIONS(229), 1, + ACTIONS(89), 1, anon_sym_COMMA, - ACTIONS(640), 1, + ACTIONS(830), 1, anon_sym_LPAREN, - ACTIONS(644), 1, + ACTIONS(834), 1, anon_sym_cl, - ACTIONS(3852), 1, + ACTIONS(3882), 1, sym_self_referential_reader_macro, - STATE(1012), 1, - sym_sym_lit, - STATE(1017), 1, + STATE(927), 1, sym__bare_set_lit, - STATE(2139), 1, + STATE(929), 1, + sym_sym_lit, + STATE(2169), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(215), 2, + ACTIONS(75), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(236), 2, + ACTIONS(93), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(240), 2, + ACTIONS(97), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(242), 2, + ACTIONS(99), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3848), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3850), 3, + ACTIONS(3880), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(775), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1015), 3, + STATE(928), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1119), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(866), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -80168,7 +80362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [79245] = 35, + [79515] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -80177,78 +80371,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(927), 1, - aux_sym_num_lit_token1, - ACTIONS(929), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(931), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(933), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(939), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(941), 1, - anon_sym_LPAREN, - ACTIONS(947), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(949), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(951), 1, + ACTIONS(760), 1, + anon_sym_cl, + ACTIONS(838), 1, + aux_sym_num_lit_token1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(953), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(955), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(957), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(959), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(961), 1, - anon_sym_cl, - ACTIONS(1740), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(3856), 1, + ACTIONS(3886), 1, sym_self_referential_reader_macro, - STATE(1687), 1, - sym__bare_set_lit, - STATE(1689), 1, + STATE(1848), 1, sym_sym_lit, - STATE(2148), 1, + STATE(1925), 1, + sym__bare_set_lit, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(945), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(963), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(967), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(969), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(840), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(852), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3854), 3, + ACTIONS(3884), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1651), 19, + STATE(2097), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -80268,7 +80462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [79380] = 35, + [79650] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -80277,78 +80471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(3860), 1, + ACTIONS(3892), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(3888), 2, sym__ws, sym_comment, - ACTIONS(3858), 3, + ACTIONS(3890), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(799), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2038), 19, + STATE(2098), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -80368,87 +80562,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [79515] = 35, + [79785] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(524), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(854), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(858), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(860), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(862), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(864), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(866), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(2074), 1, anon_sym_POUND, - ACTIONS(3866), 1, + ACTIONS(3650), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2146), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(856), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(868), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3862), 2, + ACTIONS(3894), 2, sym__ws, sym_comment, - ACTIONS(3864), 3, + ACTIONS(3648), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(800), 3, + STATE(298), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2024), 19, + STATE(1453), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -80468,7 +80662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [79650] = 35, + [79920] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -80477,78 +80671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(3870), 1, + ACTIONS(2628), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3868), 3, + ACTIONS(2626), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2023), 19, + STATE(1879), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -80568,7 +80762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [79785] = 35, + [80055] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -80577,78 +80771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(927), 1, - aux_sym_num_lit_token1, - ACTIONS(929), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(931), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(933), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(939), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(941), 1, - anon_sym_LPAREN, - ACTIONS(947), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(949), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(951), 1, + ACTIONS(760), 1, + anon_sym_cl, + ACTIONS(838), 1, + aux_sym_num_lit_token1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(953), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(955), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(957), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(959), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(961), 1, - anon_sym_cl, - ACTIONS(1740), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(3874), 1, + ACTIONS(3898), 1, sym_self_referential_reader_macro, - STATE(1687), 1, - sym__bare_set_lit, - STATE(1689), 1, + STATE(1848), 1, sym_sym_lit, - STATE(2148), 1, + STATE(1925), 1, + sym__bare_set_lit, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(945), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(963), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(967), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(969), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(840), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(852), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3872), 3, + ACTIONS(3896), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1652), 19, + STATE(2099), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -80668,7 +80862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [79920] = 35, + [80190] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -80677,78 +80871,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(3878), 1, + ACTIONS(3904), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(3900), 2, sym__ws, sym_comment, - ACTIONS(3876), 3, + ACTIONS(3902), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(800), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2025), 19, + STATE(2100), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -80768,7 +80962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [80055] = 35, + [80325] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -80777,78 +80971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(61), 1, + anon_sym_POUND, + ACTIONS(65), 1, + aux_sym_num_lit_token1, + ACTIONS(67), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(69), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(73), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(77), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(79), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, - anon_sym_cl, - ACTIONS(783), 1, - aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(81), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(87), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(89), 1, anon_sym_COMMA, - ACTIONS(1436), 1, - anon_sym_POUND, - ACTIONS(3884), 1, + ACTIONS(830), 1, + anon_sym_LPAREN, + ACTIONS(834), 1, + anon_sym_cl, + ACTIONS(3910), 1, sym_self_referential_reader_macro, - STATE(1825), 1, - sym_sym_lit, - STATE(1887), 1, + STATE(927), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(929), 1, + sym_sym_lit, + STATE(2169), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(564), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(75), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(93), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(97), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3880), 2, + ACTIONS(99), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3906), 2, sym__ws, sym_comment, - ACTIONS(3882), 3, + ACTIONS(3908), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(802), 3, + STATE(766), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(928), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2026), 19, + STATE(868), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -80868,7 +81062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [80190] = 35, + [80460] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -80877,78 +81071,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(588), 1, + ACTIONS(61), 1, + anon_sym_POUND, + ACTIONS(65), 1, + aux_sym_num_lit_token1, + ACTIONS(67), 1, anon_sym_COLON, - ACTIONS(590), 1, + ACTIONS(69), 1, anon_sym_COLON_COLON, - ACTIONS(592), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(598), 1, + ACTIONS(73), 1, aux_sym_sym_lit_token1, - ACTIONS(620), 1, - anon_sym_cl, - ACTIONS(670), 1, - aux_sym_num_lit_token1, - ACTIONS(674), 1, + ACTIONS(77), 1, anon_sym_POUND_QMARK, - ACTIONS(676), 1, + ACTIONS(79), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(678), 1, + ACTIONS(81), 1, anon_sym_POUND_SQUOTE, - ACTIONS(680), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(682), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(684), 1, + ACTIONS(87), 1, anon_sym_COMMA_AT, - ACTIONS(686), 1, + ACTIONS(89), 1, anon_sym_COMMA, - ACTIONS(1588), 1, - anon_sym_POUND, - ACTIONS(2364), 1, + ACTIONS(830), 1, + anon_sym_LPAREN, + ACTIONS(834), 1, + anon_sym_cl, + ACTIONS(3914), 1, sym_self_referential_reader_macro, - STATE(2150), 1, + STATE(927), 1, + sym__bare_set_lit, + STATE(929), 1, + sym_sym_lit, + STATE(2169), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2428), 1, - sym_sym_lit, - ACTIONS(622), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(628), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(672), 2, + ACTIONS(75), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(688), 2, + ACTIONS(93), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(97), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3886), 2, + ACTIONS(99), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2362), 3, + ACTIONS(3912), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(411), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(928), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2266), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(878), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -80968,87 +81162,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [80325] = 35, + [80595] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, + anon_sym_COLON_COLON, + ACTIONS(21), 1, + anon_sym_DQUOTE, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(536), 1, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(588), 1, - anon_sym_COLON, - ACTIONS(590), 1, - anon_sym_COLON_COLON, - ACTIONS(592), 1, - anon_sym_DQUOTE, - ACTIONS(598), 1, - aux_sym_sym_lit_token1, - ACTIONS(620), 1, - anon_sym_cl, - ACTIONS(670), 1, - aux_sym_num_lit_token1, - ACTIONS(674), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(676), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(678), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(680), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(682), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(684), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(686), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(1588), 1, - anon_sym_POUND, - ACTIONS(2374), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(3920), 1, sym_self_referential_reader_macro, - STATE(2150), 1, + STATE(1450), 1, + sym_sym_lit, + STATE(1452), 1, + sym__bare_set_lit, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2428), 1, - sym_sym_lit, - ACTIONS(622), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(628), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(672), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(688), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3888), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3916), 2, sym__ws, sym_comment, - ACTIONS(2372), 3, + ACTIONS(3918), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(712), 3, + STATE(795), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2271), 19, + STATE(250), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -81068,7 +81262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [80460] = 35, + [80730] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -81077,78 +81271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(927), 1, - aux_sym_num_lit_token1, - ACTIONS(929), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(931), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(933), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(939), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(941), 1, - anon_sym_LPAREN, - ACTIONS(947), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(949), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(951), 1, + ACTIONS(760), 1, + anon_sym_cl, + ACTIONS(838), 1, + aux_sym_num_lit_token1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(953), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(955), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(957), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(959), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(961), 1, - anon_sym_cl, - ACTIONS(1740), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(3892), 1, + ACTIONS(3924), 1, sym_self_referential_reader_macro, - STATE(1687), 1, - sym__bare_set_lit, - STATE(1689), 1, + STATE(1848), 1, sym_sym_lit, - STATE(2148), 1, + STATE(1925), 1, + sym__bare_set_lit, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(945), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(963), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(967), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(969), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(840), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(852), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3890), 3, + ACTIONS(3922), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1653), 19, + STATE(2101), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -81168,7 +81362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [80595] = 35, + [80865] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -81177,78 +81371,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(3896), 1, + ACTIONS(2624), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3894), 3, + ACTIONS(2622), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2027), 19, + STATE(1878), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -81268,7 +81462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [80730] = 35, + [81000] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -81277,78 +81471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(61), 1, + anon_sym_POUND, + ACTIONS(65), 1, + aux_sym_num_lit_token1, + ACTIONS(67), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(69), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(73), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(77), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(79), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, - anon_sym_cl, - ACTIONS(783), 1, - aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(81), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(87), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(89), 1, anon_sym_COMMA, - ACTIONS(1436), 1, - anon_sym_POUND, - ACTIONS(3900), 1, + ACTIONS(830), 1, + anon_sym_LPAREN, + ACTIONS(834), 1, + anon_sym_cl, + ACTIONS(3928), 1, sym_self_referential_reader_macro, - STATE(1825), 1, - sym_sym_lit, - STATE(1887), 1, + STATE(927), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(929), 1, + sym_sym_lit, + STATE(2169), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(564), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(75), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(93), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(97), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(99), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3898), 3, + ACTIONS(3926), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(928), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2030), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(882), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -81368,7 +81562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [80865] = 35, + [81135] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -81377,78 +81571,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(927), 1, + ACTIONS(604), 1, aux_sym_num_lit_token1, - ACTIONS(929), 1, + ACTIONS(606), 1, anon_sym_COLON, - ACTIONS(931), 1, + ACTIONS(608), 1, anon_sym_COLON_COLON, - ACTIONS(933), 1, + ACTIONS(610), 1, anon_sym_DQUOTE, - ACTIONS(939), 1, + ACTIONS(612), 1, aux_sym_sym_lit_token1, - ACTIONS(941), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(947), 1, + ACTIONS(618), 1, anon_sym_POUND_QMARK, - ACTIONS(949), 1, + ACTIONS(620), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(951), 1, + ACTIONS(622), 1, anon_sym_POUND_SQUOTE, - ACTIONS(953), 1, + ACTIONS(624), 1, anon_sym_SQUOTE, - ACTIONS(955), 1, + ACTIONS(626), 1, anon_sym_BQUOTE, - ACTIONS(957), 1, + ACTIONS(628), 1, anon_sym_COMMA_AT, - ACTIONS(959), 1, + ACTIONS(630), 1, anon_sym_COMMA, - ACTIONS(961), 1, + ACTIONS(632), 1, anon_sym_cl, - ACTIONS(1740), 1, - anon_sym_POUND, - ACTIONS(3904), 1, + ACTIONS(2134), 1, sym_self_referential_reader_macro, - STATE(1687), 1, - sym__bare_set_lit, - STATE(1689), 1, - sym_sym_lit, - STATE(2148), 1, + ACTIONS(3080), 1, + anon_sym_POUND, + STATE(2151), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(945), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(963), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2380), 1, + sym_sym_lit, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(967), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(969), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(616), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(634), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(3930), 2, sym__ws, sym_comment, - ACTIONS(3902), 3, + ACTIONS(2132), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(721), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1654), 19, + STATE(2330), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -81468,7 +81662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [81000] = 35, + [81270] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -81477,78 +81671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(588), 1, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(590), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(592), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(598), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(620), 1, - anon_sym_cl, - ACTIONS(670), 1, - aux_sym_num_lit_token1, - ACTIONS(674), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(676), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(678), 1, + ACTIONS(760), 1, + anon_sym_cl, + ACTIONS(838), 1, + aux_sym_num_lit_token1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(680), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(682), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(684), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(686), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1588), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(2394), 1, + ACTIONS(3934), 1, sym_self_referential_reader_macro, - STATE(2150), 1, + STATE(1848), 1, + sym_sym_lit, + STATE(1925), 1, + sym__bare_set_lit, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2428), 1, - sym_sym_lit, - ACTIONS(622), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(628), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(672), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(688), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3906), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2392), 3, + ACTIONS(3932), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(716), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2240), 19, + STATE(2102), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -81568,7 +81762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [81135] = 35, + [81405] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -81577,78 +81771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(604), 1, + aux_sym_num_lit_token1, + ACTIONS(606), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(608), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(610), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(612), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(618), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(620), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, - anon_sym_cl, - ACTIONS(783), 1, - aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(622), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(624), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(626), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(628), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(630), 1, anon_sym_COMMA, - ACTIONS(1436), 1, - anon_sym_POUND, - ACTIONS(3910), 1, + ACTIONS(632), 1, + anon_sym_cl, + ACTIONS(2162), 1, sym_self_referential_reader_macro, - STATE(1825), 1, - sym_sym_lit, - STATE(1887), 1, - sym__bare_set_lit, - STATE(2138), 1, + ACTIONS(3080), 1, + anon_sym_POUND, + STATE(2151), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2380), 1, + sym_sym_lit, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(616), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(634), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(3936), 2, sym__ws, sym_comment, - ACTIONS(3908), 3, + ACTIONS(2160), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(723), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2028), 19, + STATE(2329), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -81668,7 +81862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [81270] = 35, + [81540] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -81677,78 +81871,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(190), 1, - anon_sym_POUND, - ACTIONS(194), 1, + ACTIONS(604), 1, aux_sym_num_lit_token1, - ACTIONS(196), 1, + ACTIONS(606), 1, anon_sym_COLON, - ACTIONS(198), 1, + ACTIONS(608), 1, anon_sym_COLON_COLON, - ACTIONS(200), 1, + ACTIONS(610), 1, anon_sym_DQUOTE, - ACTIONS(202), 1, + ACTIONS(612), 1, aux_sym_sym_lit_token1, - ACTIONS(217), 1, + ACTIONS(614), 1, + anon_sym_LPAREN, + ACTIONS(618), 1, anon_sym_POUND_QMARK, - ACTIONS(219), 1, + ACTIONS(620), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(221), 1, + ACTIONS(622), 1, anon_sym_POUND_SQUOTE, - ACTIONS(223), 1, + ACTIONS(624), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, + ACTIONS(626), 1, anon_sym_BQUOTE, - ACTIONS(227), 1, + ACTIONS(628), 1, anon_sym_COMMA_AT, - ACTIONS(229), 1, + ACTIONS(630), 1, anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_LPAREN, - ACTIONS(644), 1, + ACTIONS(632), 1, anon_sym_cl, - ACTIONS(3914), 1, + ACTIONS(2168), 1, sym_self_referential_reader_macro, - STATE(1012), 1, - sym_sym_lit, - STATE(1017), 1, - sym__bare_set_lit, - STATE(2139), 1, + ACTIONS(3080), 1, + anon_sym_POUND, + STATE(2151), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(215), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(236), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2380), 1, + sym_sym_lit, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(240), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(242), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(616), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(634), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(3938), 2, sym__ws, sym_comment, - ACTIONS(3912), 3, + ACTIONS(2166), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1015), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(726), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1115), 19, + STATE(2282), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2327), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -81768,7 +81962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [81405] = 35, + [81675] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -81777,78 +81971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(190), 1, - anon_sym_POUND, - ACTIONS(194), 1, + ACTIONS(604), 1, aux_sym_num_lit_token1, - ACTIONS(196), 1, + ACTIONS(606), 1, anon_sym_COLON, - ACTIONS(198), 1, + ACTIONS(608), 1, anon_sym_COLON_COLON, - ACTIONS(200), 1, + ACTIONS(610), 1, anon_sym_DQUOTE, - ACTIONS(202), 1, + ACTIONS(612), 1, aux_sym_sym_lit_token1, - ACTIONS(217), 1, + ACTIONS(614), 1, + anon_sym_LPAREN, + ACTIONS(618), 1, anon_sym_POUND_QMARK, - ACTIONS(219), 1, + ACTIONS(620), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(221), 1, + ACTIONS(622), 1, anon_sym_POUND_SQUOTE, - ACTIONS(223), 1, + ACTIONS(624), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, + ACTIONS(626), 1, anon_sym_BQUOTE, - ACTIONS(227), 1, + ACTIONS(628), 1, anon_sym_COMMA_AT, - ACTIONS(229), 1, + ACTIONS(630), 1, anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_LPAREN, - ACTIONS(644), 1, + ACTIONS(632), 1, anon_sym_cl, - ACTIONS(3918), 1, + ACTIONS(2174), 1, sym_self_referential_reader_macro, - STATE(1012), 1, - sym_sym_lit, - STATE(1017), 1, - sym__bare_set_lit, - STATE(2139), 1, + ACTIONS(3080), 1, + anon_sym_POUND, + STATE(2151), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(215), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(236), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2380), 1, + sym_sym_lit, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(240), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(242), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(616), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(634), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(3940), 2, sym__ws, sym_comment, - ACTIONS(3916), 3, + ACTIONS(2172), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1015), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(728), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1112), 19, + STATE(2282), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2325), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -81868,7 +82062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [81540] = 35, + [81810] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -81877,78 +82071,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(604), 1, + aux_sym_num_lit_token1, + ACTIONS(606), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(608), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(610), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(612), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(618), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(620), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, - anon_sym_cl, - ACTIONS(783), 1, - aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(622), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(624), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(626), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(628), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(630), 1, anon_sym_COMMA, - ACTIONS(1436), 1, - anon_sym_POUND, - ACTIONS(3922), 1, + ACTIONS(632), 1, + anon_sym_cl, + ACTIONS(2186), 1, sym_self_referential_reader_macro, - STATE(1825), 1, - sym_sym_lit, - STATE(1887), 1, - sym__bare_set_lit, - STATE(2138), 1, + ACTIONS(3080), 1, + anon_sym_POUND, + STATE(2151), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2380), 1, + sym_sym_lit, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(616), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(634), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(3942), 2, sym__ws, sym_comment, - ACTIONS(3920), 3, + ACTIONS(2184), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(733), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2042), 19, + STATE(2324), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -81968,7 +82162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [81675] = 35, + [81945] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -81977,78 +82171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(61), 1, - anon_sym_POUND, - ACTIONS(65), 1, - aux_sym_num_lit_token1, - ACTIONS(67), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(69), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(71), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(73), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(77), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(79), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(81), 1, + ACTIONS(760), 1, + anon_sym_cl, + ACTIONS(838), 1, + aux_sym_num_lit_token1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(83), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(85), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(87), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(89), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(658), 1, - anon_sym_LPAREN, - ACTIONS(662), 1, - anon_sym_cl, - ACTIONS(3926), 1, + ACTIONS(1664), 1, + anon_sym_POUND, + ACTIONS(3946), 1, sym_self_referential_reader_macro, - STATE(822), 1, + STATE(1848), 1, sym_sym_lit, - STATE(824), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2149), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(75), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(93), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(97), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(99), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(840), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(852), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3924), 3, + ACTIONS(3944), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(823), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(903), 19, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2103), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -82068,7 +82262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [81810] = 35, + [82080] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -82077,78 +82271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(3930), 1, + ACTIONS(3952), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(3948), 2, sym__ws, sym_comment, - ACTIONS(3928), 3, + ACTIONS(3950), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(802), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2040), 19, + STATE(1975), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -82168,7 +82362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [81945] = 35, + [82215] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -82177,78 +82371,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(472), 1, + aux_sym_num_lit_token1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(492), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(494), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, - anon_sym_cl, - ACTIONS(783), 1, - aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(496), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(498), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(500), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(502), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(504), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(506), 1, + anon_sym_cl, + ACTIONS(1794), 1, anon_sym_POUND, - ACTIONS(3936), 1, + ACTIONS(2186), 1, sym_self_referential_reader_macro, - STATE(1825), 1, - sym_sym_lit, - STATE(1887), 1, - sym__bare_set_lit, - STATE(2138), 1, + STATE(2168), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(564), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(785), 2, + STATE(2337), 1, + sym__bare_set_lit, + STATE(2454), 1, + sym_sym_lit, + ACTIONS(490), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(508), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(512), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3932), 2, + ACTIONS(514), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3954), 2, sym__ws, sym_comment, - ACTIONS(3934), 3, + ACTIONS(2184), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(808), 3, + STATE(345), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2031), 19, + STATE(2324), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -82268,7 +82462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [82080] = 35, + [82350] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -82277,78 +82471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(190), 1, - anon_sym_POUND, - ACTIONS(194), 1, - aux_sym_num_lit_token1, - ACTIONS(196), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(198), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(200), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(202), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(217), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(219), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(221), 1, + ACTIONS(760), 1, + anon_sym_cl, + ACTIONS(838), 1, + aux_sym_num_lit_token1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(223), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(227), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(229), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_LPAREN, - ACTIONS(644), 1, - anon_sym_cl, - ACTIONS(3942), 1, + ACTIONS(1664), 1, + anon_sym_POUND, + ACTIONS(3958), 1, sym_self_referential_reader_macro, - STATE(1012), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1017), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2139), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(215), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(236), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(240), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(242), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3938), 2, + ACTIONS(840), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(852), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3940), 3, + ACTIONS(3956), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(292), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1015), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1111), 19, + STATE(1987), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -82368,7 +82562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [82215] = 35, + [82485] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -82377,78 +82571,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(190), 1, - anon_sym_POUND, - ACTIONS(194), 1, - aux_sym_num_lit_token1, - ACTIONS(196), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(198), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(200), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(202), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(217), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(219), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(221), 1, + ACTIONS(760), 1, + anon_sym_cl, + ACTIONS(838), 1, + aux_sym_num_lit_token1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(223), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(227), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(229), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_LPAREN, - ACTIONS(644), 1, - anon_sym_cl, - ACTIONS(3946), 1, + ACTIONS(1664), 1, + anon_sym_POUND, + ACTIONS(3962), 1, sym_self_referential_reader_macro, - STATE(1012), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1017), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2139), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(215), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(236), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(240), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(242), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(840), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(852), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3944), 3, + ACTIONS(3960), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1015), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1109), 19, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2104), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -82468,7 +82662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [82350] = 35, + [82620] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -82477,78 +82671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(3950), 1, + ACTIONS(3968), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(3964), 2, sym__ws, sym_comment, - ACTIONS(3948), 3, + ACTIONS(3966), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(803), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2043), 19, + STATE(2105), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -82568,7 +82762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [82485] = 35, + [82755] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -82577,78 +82771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(3956), 1, + ACTIONS(2620), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3952), 2, + ACTIONS(3970), 2, sym__ws, sym_comment, - ACTIONS(3954), 3, + ACTIONS(2618), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(810), 3, + STATE(758), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2051), 19, + STATE(1948), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -82668,7 +82862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [82620] = 35, + [82890] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -82677,78 +82871,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(588), 1, + ACTIONS(472), 1, + aux_sym_num_lit_token1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(590), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(592), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(598), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(620), 1, - anon_sym_cl, - ACTIONS(670), 1, - aux_sym_num_lit_token1, - ACTIONS(674), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(492), 1, anon_sym_POUND_QMARK, - ACTIONS(676), 1, + ACTIONS(494), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(678), 1, + ACTIONS(496), 1, anon_sym_POUND_SQUOTE, - ACTIONS(680), 1, + ACTIONS(498), 1, anon_sym_SQUOTE, - ACTIONS(682), 1, + ACTIONS(500), 1, anon_sym_BQUOTE, - ACTIONS(684), 1, + ACTIONS(502), 1, anon_sym_COMMA_AT, - ACTIONS(686), 1, + ACTIONS(504), 1, anon_sym_COMMA, - ACTIONS(1588), 1, + ACTIONS(506), 1, + anon_sym_cl, + ACTIONS(1794), 1, anon_sym_POUND, - ACTIONS(2606), 1, + ACTIONS(2174), 1, sym_self_referential_reader_macro, - STATE(2150), 1, + STATE(2168), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, + STATE(2337), 1, sym__bare_set_lit, - STATE(2428), 1, + STATE(2454), 1, sym_sym_lit, - ACTIONS(622), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(628), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(672), 2, + ACTIONS(490), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(688), 2, + ACTIONS(508), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(512), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3958), 2, + ACTIONS(514), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3972), 2, sym__ws, sym_comment, - ACTIONS(2604), 3, + ACTIONS(2172), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(402), 3, + STATE(389), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2301), 19, + STATE(2325), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -82768,87 +82962,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [82755] = 35, + [83025] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(730), 1, + anon_sym_COLON, + ACTIONS(732), 1, + anon_sym_COLON_COLON, + ACTIONS(734), 1, + anon_sym_DQUOTE, + ACTIONS(740), 1, + aux_sym_sym_lit_token1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(690), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(694), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(696), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(698), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(700), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(702), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1882), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(3674), 1, + ACTIONS(2614), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2126), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(51), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(57), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(692), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(704), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3960), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3672), 3, + ACTIONS(2612), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(415), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1493), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1526), 19, + STATE(1926), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -82868,7 +83062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [82890] = 35, + [83160] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -82877,78 +83071,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(588), 1, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(590), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(592), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(598), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(620), 1, - anon_sym_cl, - ACTIONS(670), 1, - aux_sym_num_lit_token1, - ACTIONS(674), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(676), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(678), 1, + ACTIONS(760), 1, + anon_sym_cl, + ACTIONS(838), 1, + aux_sym_num_lit_token1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(680), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(682), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(684), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(686), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1588), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(2600), 1, + ACTIONS(3976), 1, sym_self_referential_reader_macro, - STATE(2150), 1, + STATE(1848), 1, + sym_sym_lit, + STATE(1925), 1, + sym__bare_set_lit, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2428), 1, - sym_sym_lit, - ACTIONS(622), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(628), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(672), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(688), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3962), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2598), 3, + ACTIONS(3974), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(493), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2308), 19, + STATE(2088), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -82968,7 +83162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [83025] = 35, + [83295] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -82977,78 +83171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(803), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(805), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(807), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(811), 1, - anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(837), 1, - aux_sym_num_lit_token1, - ACTIONS(847), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(849), 1, + ACTIONS(760), 1, + anon_sym_cl, + ACTIONS(838), 1, + aux_sym_num_lit_token1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(851), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(853), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(855), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(857), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(859), 1, - anon_sym_cl, - ACTIONS(1466), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(3026), 1, + ACTIONS(3982), 1, sym_self_referential_reader_macro, - STATE(1794), 1, + STATE(1848), 1, + sym_sym_lit, + STATE(1925), 1, sym__bare_set_lit, - STATE(2152), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2223), 1, - sym_sym_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(312), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(318), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(845), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(863), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(3978), 2, sym__ws, sym_comment, - ACTIONS(3024), 3, + ACTIONS(3980), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(776), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1805), 19, + STATE(1989), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -83068,7 +83262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [83160] = 35, + [83430] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -83077,78 +83271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(588), 1, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(590), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(592), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(598), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(620), 1, - anon_sym_cl, - ACTIONS(670), 1, - aux_sym_num_lit_token1, - ACTIONS(674), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(676), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(678), 1, + ACTIONS(760), 1, + anon_sym_cl, + ACTIONS(838), 1, + aux_sym_num_lit_token1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(680), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(682), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(684), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(686), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1588), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(2594), 1, + ACTIONS(3986), 1, sym_self_referential_reader_macro, - STATE(2150), 1, + STATE(1848), 1, + sym_sym_lit, + STATE(1925), 1, + sym__bare_set_lit, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2428), 1, - sym_sym_lit, - ACTIONS(622), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(628), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(672), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(688), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3964), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2592), 3, + ACTIONS(3984), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(792), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2309), 19, + STATE(2079), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -83168,7 +83362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [83295] = 35, + [83565] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -83177,78 +83371,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(3968), 1, + ACTIONS(3992), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(3988), 2, sym__ws, sym_comment, - ACTIONS(3966), 3, + ACTIONS(3990), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(808), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2055), 19, + STATE(2059), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -83268,7 +83462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [83430] = 35, + [83700] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -83277,78 +83471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(3974), 1, + ACTIONS(2610), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3970), 2, + ACTIONS(3994), 2, sym__ws, sym_comment, - ACTIONS(3972), 3, + ACTIONS(2608), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(305), 3, + STATE(765), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1959), 19, + STATE(1923), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -83368,87 +83562,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [83565] = 35, + [83835] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(190), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(194), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(196), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(198), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(200), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(202), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(217), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(219), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(221), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(223), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(227), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(229), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_LPAREN, - ACTIONS(644), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3980), 1, + ACTIONS(4000), 1, sym_self_referential_reader_macro, - STATE(1012), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1017), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2139), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(215), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(236), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(240), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(242), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3976), 2, + ACTIONS(3996), 2, sym__ws, sym_comment, - ACTIONS(3978), 3, + ACTIONS(3998), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(306), 3, + STATE(727), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1015), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1108), 19, + STATE(212), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -83468,7 +83662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [83700] = 35, + [83970] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -83477,178 +83671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(588), 1, - anon_sym_COLON, - ACTIONS(590), 1, - anon_sym_COLON_COLON, - ACTIONS(592), 1, - anon_sym_DQUOTE, - ACTIONS(598), 1, - aux_sym_sym_lit_token1, - ACTIONS(620), 1, - anon_sym_cl, - ACTIONS(670), 1, - aux_sym_num_lit_token1, - ACTIONS(674), 1, - anon_sym_POUND_QMARK, - ACTIONS(676), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(678), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(680), 1, - anon_sym_SQUOTE, - ACTIONS(682), 1, - anon_sym_BQUOTE, - ACTIONS(684), 1, - anon_sym_COMMA_AT, - ACTIONS(686), 1, - anon_sym_COMMA, - ACTIONS(1588), 1, - anon_sym_POUND, - ACTIONS(2400), 1, - sym_self_referential_reader_macro, - STATE(2150), 1, - aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, - sym_old_meta_lit, - STATE(2239), 1, - sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2428), 1, - sym_sym_lit, - ACTIONS(622), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(628), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(672), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(688), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1434), 2, - sym__ws, - sym_comment, - ACTIONS(2398), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1564), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2269), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2281), 19, - sym__form, - sym_num_lit, - sym_kwd_lit, - sym_str_lit, - sym_char_lit, - sym_list_lit, - sym_vec_lit, - sym_set_lit, - sym_read_cond_lit, - sym_splicing_read_cond_lit, - sym_var_quoting_lit, - sym_quoting_lit, - sym_syn_quoting_lit, - sym_unquote_splicing_lit, - sym_unquoting_lit, - sym_path_lit, - sym_package_lit, - sym_include_reader_macro, - sym_complex_num_lit, - [83835] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(524), 1, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(3984), 1, + ACTIONS(2456), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3982), 3, + ACTIONS(2454), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2049), 19, + STATE(1922), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -83668,7 +83762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [83970] = 35, + [84105] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -83677,78 +83771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(3988), 1, + ACTIONS(4004), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(3986), 3, + ACTIONS(4002), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2057), 19, + STATE(2046), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -83768,7 +83862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [84105] = 35, + [84240] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -83777,78 +83871,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(3994), 1, + ACTIONS(4010), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3990), 2, + ACTIONS(4006), 2, sym__ws, sym_comment, - ACTIONS(3992), 3, + ACTIONS(4008), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(796), 3, + STATE(811), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2058), 19, + STATE(2045), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -83868,7 +83962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [84240] = 35, + [84375] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -83877,78 +83971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(588), 1, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(590), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(592), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(598), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(620), 1, - anon_sym_cl, - ACTIONS(670), 1, - aux_sym_num_lit_token1, - ACTIONS(674), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(676), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(678), 1, + ACTIONS(760), 1, + anon_sym_cl, + ACTIONS(838), 1, + aux_sym_num_lit_token1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(680), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(682), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(684), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(686), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1588), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(2408), 1, + ACTIONS(4014), 1, sym_self_referential_reader_macro, - STATE(2150), 1, + STATE(1848), 1, + sym_sym_lit, + STATE(1925), 1, + sym__bare_set_lit, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2428), 1, - sym_sym_lit, - ACTIONS(622), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(628), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(672), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(688), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2406), 3, + ACTIONS(4012), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2284), 19, + STATE(1990), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -83968,7 +84062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [84375] = 35, + [84510] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -84007,19 +84101,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(4000), 1, + ACTIONS(4020), 1, sym_self_referential_reader_macro, - STATE(1506), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1511), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -84033,122 +84127,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3996), 2, + ACTIONS(4016), 2, sym__ws, sym_comment, - ACTIONS(3998), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(196), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1493), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(614), 19, - sym__form, - sym_num_lit, - sym_kwd_lit, - sym_str_lit, - sym_char_lit, - sym_list_lit, - sym_vec_lit, - sym_set_lit, - sym_read_cond_lit, - sym_splicing_read_cond_lit, - sym_var_quoting_lit, - sym_quoting_lit, - sym_syn_quoting_lit, - sym_unquote_splicing_lit, - sym_unquoting_lit, - sym_path_lit, - sym_package_lit, - sym_include_reader_macro, - sym_complex_num_lit, - [84510] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(588), 1, - anon_sym_COLON, - ACTIONS(590), 1, - anon_sym_COLON_COLON, - ACTIONS(592), 1, - anon_sym_DQUOTE, - ACTIONS(598), 1, - aux_sym_sym_lit_token1, - ACTIONS(620), 1, - anon_sym_cl, - ACTIONS(670), 1, - aux_sym_num_lit_token1, - ACTIONS(674), 1, - anon_sym_POUND_QMARK, - ACTIONS(676), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(678), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(680), 1, - anon_sym_SQUOTE, - ACTIONS(682), 1, - anon_sym_BQUOTE, - ACTIONS(684), 1, - anon_sym_COMMA_AT, - ACTIONS(686), 1, - anon_sym_COMMA, - ACTIONS(1588), 1, - anon_sym_POUND, - ACTIONS(2418), 1, - sym_self_referential_reader_macro, - STATE(2150), 1, - aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, - sym_old_meta_lit, - STATE(2239), 1, - sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2428), 1, - sym_sym_lit, - ACTIONS(622), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(628), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(672), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(688), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1434), 2, - sym__ws, - sym_comment, - ACTIONS(2416), 3, + ACTIONS(4018), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(730), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2288), 19, + STATE(213), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -84177,78 +84171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(4004), 1, + ACTIONS(4024), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(4002), 3, + ACTIONS(4022), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2063), 19, + STATE(1991), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -84277,78 +84271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(4010), 1, + ACTIONS(4028), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4006), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(4008), 3, + ACTIONS(4026), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(736), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2052), 19, + STATE(2031), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -84371,84 +84365,84 @@ static const uint16_t ts_small_parse_table[] = { [84915] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(524), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, - anon_sym_cl, - ACTIONS(783), 1, - aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(1436), 1, - anon_sym_POUND, - ACTIONS(4016), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(4032), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1450), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1452), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2178), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(564), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4012), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(4014), 3, + ACTIONS(4030), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(787), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2064), 19, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(236), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -84477,78 +84471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(4020), 1, + ACTIONS(4038), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(4034), 2, sym__ws, sym_comment, - ACTIONS(4018), 3, + ACTIONS(4036), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(403), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2056), 19, + STATE(2029), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -84577,78 +84571,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(586), 1, - aux_sym_num_lit_token1, - ACTIONS(588), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(590), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(592), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(598), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(600), 1, - anon_sym_LPAREN, - ACTIONS(606), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(608), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(610), 1, + ACTIONS(760), 1, + anon_sym_cl, + ACTIONS(838), 1, + aux_sym_num_lit_token1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(612), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(614), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(616), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(618), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(620), 1, - anon_sym_cl, - ACTIONS(1492), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(4024), 1, + ACTIONS(4042), 1, sym_self_referential_reader_macro, - STATE(2125), 1, + STATE(1848), 1, + sym_sym_lit, + STATE(1925), 1, + sym__bare_set_lit, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2428), 1, - sym_sym_lit, - ACTIONS(604), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(622), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(626), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(628), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(840), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(852), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(4022), 3, + ACTIONS(4040), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2416), 19, + STATE(2028), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -84677,78 +84671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(588), 1, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(590), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(592), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(598), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(620), 1, - anon_sym_cl, - ACTIONS(670), 1, - aux_sym_num_lit_token1, - ACTIONS(674), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(676), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(678), 1, + ACTIONS(760), 1, + anon_sym_cl, + ACTIONS(838), 1, + aux_sym_num_lit_token1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(680), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(682), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(684), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(686), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1588), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(2588), 1, + ACTIONS(2420), 1, sym_self_referential_reader_macro, - STATE(2150), 1, + STATE(1848), 1, + sym_sym_lit, + STATE(1925), 1, + sym__bare_set_lit, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2428), 1, - sym_sym_lit, - ACTIONS(622), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(628), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(672), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(688), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4026), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(2586), 3, + ACTIONS(2418), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(790), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2313), 19, + STATE(1962), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -84777,78 +84771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(4030), 1, + ACTIONS(4046), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(4028), 3, + ACTIONS(4044), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2075), 19, + STATE(2023), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -84877,78 +84871,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(4034), 1, + ACTIONS(4050), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(4032), 3, + ACTIONS(4048), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2076), 19, + STATE(2022), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -84977,78 +84971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(927), 1, - aux_sym_num_lit_token1, - ACTIONS(929), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(931), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(933), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(939), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(941), 1, - anon_sym_LPAREN, - ACTIONS(947), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(949), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(951), 1, + ACTIONS(760), 1, + anon_sym_cl, + ACTIONS(838), 1, + aux_sym_num_lit_token1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(953), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(955), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(957), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(959), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(961), 1, - anon_sym_cl, - ACTIONS(1740), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(4040), 1, + ACTIONS(4056), 1, sym_self_referential_reader_macro, - STATE(1687), 1, - sym__bare_set_lit, - STATE(1689), 1, + STATE(1848), 1, sym_sym_lit, - STATE(2148), 1, + STATE(1925), 1, + sym__bare_set_lit, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(945), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(963), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(967), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(969), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4036), 2, + ACTIONS(840), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(852), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4052), 2, sym__ws, sym_comment, - ACTIONS(4038), 3, + ACTIONS(4054), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(751), 3, + STATE(306), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1669), 19, + STATE(2021), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -85077,78 +85071,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(4044), 1, + ACTIONS(4060), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(4042), 3, + ACTIONS(4058), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2077), 19, + STATE(2020), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -85177,78 +85171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(4050), 1, + ACTIONS(4064), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4046), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(4048), 3, + ACTIONS(4062), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(770), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2078), 19, + STATE(2019), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -85277,78 +85271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(927), 1, - aux_sym_num_lit_token1, - ACTIONS(929), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(931), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(933), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(939), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(941), 1, - anon_sym_LPAREN, - ACTIONS(947), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(949), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(951), 1, + ACTIONS(760), 1, + anon_sym_cl, + ACTIONS(838), 1, + aux_sym_num_lit_token1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(953), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(955), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(957), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(959), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(961), 1, - anon_sym_cl, - ACTIONS(1740), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(4056), 1, + ACTIONS(4070), 1, sym_self_referential_reader_macro, - STATE(1687), 1, - sym__bare_set_lit, - STATE(1689), 1, + STATE(1848), 1, sym_sym_lit, - STATE(2148), 1, + STATE(1925), 1, + sym__bare_set_lit, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(945), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(963), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(967), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(969), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4052), 2, + ACTIONS(840), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(852), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4066), 2, sym__ws, sym_comment, - ACTIONS(4054), 3, + ACTIONS(4068), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(753), 3, + STATE(407), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1670), 19, + STATE(2016), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -85377,78 +85371,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(927), 1, - aux_sym_num_lit_token1, - ACTIONS(929), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(931), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(933), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(939), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(941), 1, - anon_sym_LPAREN, - ACTIONS(947), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(949), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(951), 1, + ACTIONS(760), 1, + anon_sym_cl, + ACTIONS(838), 1, + aux_sym_num_lit_token1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(953), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(955), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(957), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(959), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(961), 1, - anon_sym_cl, - ACTIONS(1740), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(4062), 1, + ACTIONS(2210), 1, sym_self_referential_reader_macro, - STATE(1687), 1, - sym__bare_set_lit, - STATE(1689), 1, + STATE(1848), 1, sym_sym_lit, - STATE(2148), 1, + STATE(1925), 1, + sym__bare_set_lit, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(945), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(963), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(967), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(969), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4058), 2, + ACTIONS(840), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(852), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4072), 2, sym__ws, sym_comment, - ACTIONS(4060), 3, + ACTIONS(2208), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(757), 3, + STATE(781), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1671), 19, + STATE(1950), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -85477,78 +85471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(927), 1, - aux_sym_num_lit_token1, - ACTIONS(929), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(931), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(933), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(939), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(941), 1, - anon_sym_LPAREN, - ACTIONS(947), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(949), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(951), 1, + ACTIONS(760), 1, + anon_sym_cl, + ACTIONS(838), 1, + aux_sym_num_lit_token1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(953), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(955), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(957), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(959), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(961), 1, - anon_sym_cl, - ACTIONS(1740), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(4068), 1, + ACTIONS(2204), 1, sym_self_referential_reader_macro, - STATE(1687), 1, - sym__bare_set_lit, - STATE(1689), 1, + STATE(1848), 1, sym_sym_lit, - STATE(2148), 1, + STATE(1925), 1, + sym__bare_set_lit, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(945), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(963), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(967), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(969), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4064), 2, + ACTIONS(840), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(852), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4074), 2, sym__ws, sym_comment, - ACTIONS(4066), 3, + ACTIONS(2202), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(762), 3, + STATE(788), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1672), 19, + STATE(1949), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -85577,78 +85571,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(927), 1, - aux_sym_num_lit_token1, - ACTIONS(929), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(931), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(933), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(939), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(941), 1, - anon_sym_LPAREN, - ACTIONS(947), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(949), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(951), 1, + ACTIONS(760), 1, + anon_sym_cl, + ACTIONS(838), 1, + aux_sym_num_lit_token1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(953), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(955), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(957), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(959), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(961), 1, - anon_sym_cl, - ACTIONS(1740), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(4074), 1, + ACTIONS(2190), 1, sym_self_referential_reader_macro, - STATE(1687), 1, - sym__bare_set_lit, - STATE(1689), 1, + STATE(1848), 1, sym_sym_lit, - STATE(2148), 1, + STATE(1925), 1, + sym__bare_set_lit, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(945), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(963), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(967), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(969), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4070), 2, + ACTIONS(840), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(852), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(4072), 3, + ACTIONS(2188), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(765), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1673), 19, + STATE(1932), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -85677,78 +85671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, ACTIONS(4078), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, ACTIONS(4076), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2079), 19, + STATE(2011), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -85777,78 +85771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(588), 1, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(590), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(592), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(598), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(620), 1, - anon_sym_cl, - ACTIONS(670), 1, - aux_sym_num_lit_token1, - ACTIONS(674), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(676), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(678), 1, + ACTIONS(760), 1, + anon_sym_cl, + ACTIONS(838), 1, + aux_sym_num_lit_token1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(680), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(682), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(684), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(686), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1588), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(2578), 1, + ACTIONS(4084), 1, sym_self_referential_reader_macro, - STATE(2150), 1, + STATE(1848), 1, + sym_sym_lit, + STATE(1925), 1, + sym__bare_set_lit, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2274), 1, - sym__bare_set_lit, - STATE(2428), 1, - sym_sym_lit, - ACTIONS(622), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(628), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(672), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(688), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, ACTIONS(4080), 2, sym__ws, sym_comment, - ACTIONS(2576), 3, + ACTIONS(4082), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(786), 3, + STATE(793), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2269), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2319), 19, + STATE(2003), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -85877,78 +85871,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(4084), 1, + ACTIONS(2048), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1434), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(4082), 3, + ACTIONS(2046), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2080), 19, + STATE(1875), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -85977,78 +85971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(524), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(528), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(544), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(556), 1, + ACTIONS(760), 1, anon_sym_cl, - ACTIONS(783), 1, + ACTIONS(838), 1, aux_sym_num_lit_token1, - ACTIONS(787), 1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(789), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(791), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(793), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(795), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(1436), 1, + ACTIONS(1664), 1, anon_sym_POUND, - ACTIONS(4090), 1, + ACTIONS(4088), 1, sym_self_referential_reader_macro, - STATE(1825), 1, + STATE(1848), 1, sym_sym_lit, - STATE(1887), 1, + STATE(1925), 1, sym__bare_set_lit, - STATE(2138), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(558), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(564), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(785), 2, + ACTIONS(840), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(797), 2, + ACTIONS(852), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4086), 2, + ACTIONS(1450), 2, sym__ws, sym_comment, - ACTIONS(4088), 3, + ACTIONS(4086), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(764), 3, + STATE(1569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2059), 19, + STATE(1998), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -86077,78 +86071,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(927), 1, - aux_sym_num_lit_token1, - ACTIONS(929), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_COLON, - ACTIONS(931), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(933), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(939), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(941), 1, - anon_sym_LPAREN, - ACTIONS(947), 1, + ACTIONS(746), 1, anon_sym_POUND_QMARK, - ACTIONS(949), 1, + ACTIONS(748), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(951), 1, + ACTIONS(760), 1, + anon_sym_cl, + ACTIONS(838), 1, + aux_sym_num_lit_token1, + ACTIONS(842), 1, anon_sym_POUND_SQUOTE, - ACTIONS(953), 1, + ACTIONS(844), 1, anon_sym_SQUOTE, - ACTIONS(955), 1, + ACTIONS(846), 1, anon_sym_BQUOTE, - ACTIONS(957), 1, + ACTIONS(848), 1, anon_sym_COMMA_AT, - ACTIONS(959), 1, + ACTIONS(850), 1, anon_sym_COMMA, - ACTIONS(961), 1, - anon_sym_cl, - ACTIONS(1740), 1, + ACTIONS(1664), 1, anon_sym_POUND, ACTIONS(4094), 1, sym_self_referential_reader_macro, - STATE(1687), 1, - sym__bare_set_lit, - STATE(1689), 1, + STATE(1848), 1, sym_sym_lit, - STATE(2148), 1, + STATE(1925), 1, + sym__bare_set_lit, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2239), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2258), 1, sym__metadata_lit, - ACTIONS(945), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(963), 2, + ACTIONS(762), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(967), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(969), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, + ACTIONS(840), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(852), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4090), 2, sym__ws, sym_comment, ACTIONS(4092), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1564), 3, + STATE(791), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1688), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1665), 19, + STATE(1997), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -86168,17 +86162,19 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [87345] = 4, + [87345] = 6, ACTIONS(47), 1, sym_block_comment, - STATE(817), 3, + ACTIONS(4099), 1, + anon_sym_POUND_, + ACTIONS(4096), 2, + sym__ws, + sym_comment, + STATE(813), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(4096), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, + ACTIONS(4104), 20, anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, @@ -86199,7 +86195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4098), 29, + ACTIONS(4102), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -86229,19 +86225,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87410] = 6, + [87414] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4103), 1, - anon_sym_POUND_, - ACTIONS(4100), 2, - sym__ws, - sym_comment, STATE(813), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(4108), 20, + ACTIONS(4106), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, @@ -86262,7 +86256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4106), 29, + ACTIONS(4108), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -86292,17 +86286,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87479] = 4, + [87479] = 6, ACTIONS(47), 1, sym_block_comment, - STATE(817), 3, + ACTIONS(4113), 1, + anon_sym_POUND_, + ACTIONS(4110), 2, + sym__ws, + sym_comment, + STATE(814), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(4110), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, + ACTIONS(4118), 20, anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, @@ -86323,7 +86319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4112), 29, + ACTIONS(4116), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -86353,19 +86349,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87544] = 6, + [87548] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4117), 1, - anon_sym_POUND_, - ACTIONS(4114), 2, - sym__ws, - sym_comment, - STATE(815), 3, + STATE(813), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(4122), 20, + ACTIONS(4120), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, @@ -86386,7 +86380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4120), 29, + ACTIONS(4122), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -86424,7 +86418,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4124), 2, sym__ws, sym_comment, - STATE(817), 3, + STATE(816), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, @@ -86709,17 +86703,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87925] = 5, + [87925] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4156), 1, - anon_sym_COLON, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(4152), 22, + ACTIONS(4152), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -86739,10 +86730,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4154), 28, + ACTIONS(4154), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, @@ -86768,10 +86760,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87989] = 3, + [87985] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4160), 23, + ACTIONS(4156), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -86795,7 +86787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4162), 29, + ACTIONS(4158), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -86825,10 +86817,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88049] = 3, + [88045] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4164), 23, + ACTIONS(4160), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -86852,7 +86844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4166), 29, + ACTIONS(4162), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -86882,10 +86874,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88109] = 3, + [88105] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4168), 23, + ACTIONS(4164), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -86909,7 +86901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4170), 29, + ACTIONS(4166), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -86939,10 +86931,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88169] = 3, + [88165] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4172), 23, + ACTIONS(4168), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -86966,7 +86958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4174), 29, + ACTIONS(4170), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -86996,17 +86988,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88229] = 5, + [88225] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4156), 1, - anon_sym_COLON, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(4176), 22, + ACTIONS(4172), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -87026,10 +87015,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4178), 28, + ACTIONS(4174), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, @@ -87055,10 +87045,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88293] = 3, + [88285] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4180), 23, + ACTIONS(4176), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -87082,7 +87072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4182), 29, + ACTIONS(4178), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -87112,10 +87102,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88353] = 3, + [88345] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4184), 23, + ACTIONS(4180), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -87139,7 +87129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4186), 29, + ACTIONS(4182), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -87169,10 +87159,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88413] = 3, + [88405] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4188), 23, + ACTIONS(4184), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -87196,7 +87186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4190), 29, + ACTIONS(4186), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -87226,10 +87216,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88473] = 3, + [88465] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4192), 23, + ACTIONS(4188), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -87253,7 +87243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4194), 29, + ACTIONS(4190), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -87283,10 +87273,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88533] = 3, + [88525] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4196), 23, + ACTIONS(4192), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -87310,7 +87300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4198), 29, + ACTIONS(4194), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -87340,10 +87330,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88593] = 3, + [88585] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4200), 23, + ACTIONS(4196), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -87367,7 +87357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4202), 29, + ACTIONS(4198), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -87397,10 +87387,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88653] = 3, + [88645] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4180), 23, + ACTIONS(4200), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -87424,7 +87414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4182), 29, + ACTIONS(4202), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -87454,7 +87444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88713] = 3, + [88705] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(4204), 23, @@ -87511,7 +87501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88773] = 3, + [88765] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(4208), 23, @@ -87568,7 +87558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88833] = 3, + [88825] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(4212), 23, @@ -87625,7 +87615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88893] = 3, + [88885] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(4216), 23, @@ -87682,7 +87672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88953] = 3, + [88945] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(4220), 23, @@ -87739,7 +87729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89013] = 3, + [89005] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(4224), 23, @@ -87796,7 +87786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89073] = 3, + [89065] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(4228), 23, @@ -87853,7 +87843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89133] = 3, + [89125] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(4232), 23, @@ -87910,7 +87900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89193] = 3, + [89185] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(4236), 23, @@ -87967,7 +87957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89253] = 3, + [89245] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(4240), 23, @@ -88024,7 +88014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89313] = 3, + [89305] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(4244), 23, @@ -88081,10 +88071,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89373] = 3, + [89365] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4180), 23, + ACTIONS(4248), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -88108,7 +88098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4182), 29, + ACTIONS(4250), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -88138,10 +88128,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89433] = 3, + [89425] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4248), 23, + ACTIONS(4252), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -88165,7 +88155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4250), 29, + ACTIONS(4254), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -88195,10 +88185,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89493] = 3, + [89485] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4252), 23, + ACTIONS(4256), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -88222,7 +88212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4254), 29, + ACTIONS(4258), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -88252,10 +88242,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89553] = 3, + [89545] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4256), 23, + ACTIONS(4260), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -88279,7 +88269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4258), 29, + ACTIONS(4262), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -88309,10 +88299,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89613] = 3, + [89605] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4260), 23, + ACTIONS(4264), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -88336,7 +88326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4262), 29, + ACTIONS(4266), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -88366,10 +88356,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89673] = 3, + [89665] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4264), 23, + ACTIONS(4268), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -88393,7 +88383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4266), 29, + ACTIONS(4270), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -88423,10 +88413,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89733] = 3, + [89725] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4268), 23, + ACTIONS(4228), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -88450,7 +88440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4270), 29, + ACTIONS(4230), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -88480,7 +88470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89793] = 3, + [89785] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(4272), 23, @@ -88537,7 +88527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89853] = 3, + [89845] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(4276), 23, @@ -88594,7 +88584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89913] = 3, + [89905] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(4280), 23, @@ -88651,7 +88641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89973] = 3, + [89965] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(4284), 23, @@ -88708,7 +88698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90033] = 3, + [90025] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(4288), 23, @@ -88765,7 +88755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90093] = 3, + [90085] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(4292), 23, @@ -88822,7 +88812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90153] = 3, + [90145] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(4296), 23, @@ -88879,7 +88869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90213] = 3, + [90205] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(4300), 23, @@ -88936,10 +88926,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90273] = 3, + [90265] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4276), 23, + ACTIONS(4300), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -88963,7 +88953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4278), 29, + ACTIONS(4302), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -88993,7 +88983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90333] = 3, + [90325] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(4304), 23, @@ -89050,7 +89040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90393] = 3, + [90385] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(4308), 23, @@ -89107,7 +89097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90453] = 3, + [90445] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(4312), 23, @@ -89164,7 +89154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90513] = 3, + [90505] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(4316), 23, @@ -89221,10 +89211,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90573] = 3, + [90565] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4320), 23, + ACTIONS(4312), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -89248,7 +89238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4322), 29, + ACTIONS(4314), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -89278,10 +89268,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90633] = 3, + [90625] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4324), 23, + ACTIONS(4320), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -89305,7 +89295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4326), 29, + ACTIONS(4322), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -89335,10 +89325,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90693] = 3, + [90685] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4176), 23, + ACTIONS(4316), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -89362,7 +89352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4178), 29, + ACTIONS(4318), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -89392,10 +89382,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90753] = 3, + [90745] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4328), 23, + ACTIONS(4324), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -89419,7 +89409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4330), 29, + ACTIONS(4326), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -89449,10 +89439,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90813] = 3, + [90805] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4332), 23, + ACTIONS(4328), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -89476,7 +89466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4334), 29, + ACTIONS(4330), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -89506,10 +89496,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90873] = 3, + [90865] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4140), 23, + ACTIONS(4332), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -89533,7 +89523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4142), 29, + ACTIONS(4334), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -89563,7 +89553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90933] = 3, + [90925] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(4336), 23, @@ -89620,7 +89610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90993] = 3, + [90985] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(4340), 23, @@ -89677,7 +89667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91053] = 3, + [91045] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(4344), 23, @@ -89734,7 +89724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91113] = 3, + [91105] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(4348), 23, @@ -89791,7 +89781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91173] = 3, + [91165] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(4352), 23, @@ -89848,7 +89838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91233] = 3, + [91225] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(4356), 23, @@ -89905,7 +89895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91293] = 3, + [91285] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(4360), 23, @@ -89962,7 +89952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91353] = 3, + [91345] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(4364), 23, @@ -90019,7 +90009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91413] = 3, + [91405] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(4368), 23, @@ -90076,10 +90066,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91473] = 3, + [91465] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4372), 23, + ACTIONS(4144), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -90103,7 +90093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4374), 29, + ACTIONS(4146), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -90133,10 +90123,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91533] = 3, + [91525] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4376), 23, + ACTIONS(4360), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -90160,7 +90150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4378), 29, + ACTIONS(4362), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -90190,10 +90180,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91593] = 3, + [91585] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4380), 23, + ACTIONS(4372), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -90217,7 +90207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4382), 29, + ACTIONS(4374), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -90247,10 +90237,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91653] = 3, + [91645] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4384), 23, + ACTIONS(4376), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -90274,7 +90264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4386), 29, + ACTIONS(4378), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -90304,10 +90294,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91713] = 3, + [91705] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4388), 23, + ACTIONS(4380), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -90331,7 +90321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4390), 29, + ACTIONS(4382), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -90361,10 +90351,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91773] = 3, + [91765] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4388), 23, + ACTIONS(4372), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -90388,7 +90378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4390), 29, + ACTIONS(4374), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -90418,10 +90408,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91833] = 3, + [91825] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4392), 23, + ACTIONS(4384), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -90445,7 +90435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4394), 29, + ACTIONS(4386), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -90475,10 +90465,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91893] = 3, + [91885] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4396), 23, + ACTIONS(4388), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -90502,7 +90492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4398), 29, + ACTIONS(4390), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -90532,10 +90522,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91953] = 3, + [91945] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4144), 23, + ACTIONS(4392), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -90559,7 +90549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4146), 29, + ACTIONS(4394), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -90589,10 +90579,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92013] = 3, + [92005] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4400), 23, + ACTIONS(4292), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -90616,7 +90606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4402), 29, + ACTIONS(4294), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -90646,10 +90636,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92073] = 3, + [92065] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4404), 23, + ACTIONS(4396), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -90673,7 +90663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4406), 29, + ACTIONS(4398), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -90703,10 +90693,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92133] = 3, + [92125] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4408), 23, + ACTIONS(4400), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -90730,7 +90720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4410), 29, + ACTIONS(4402), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -90760,10 +90750,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92193] = 3, + [92185] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4412), 23, + ACTIONS(4404), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -90787,7 +90777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4414), 29, + ACTIONS(4406), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -90817,10 +90807,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92253] = 3, + [92245] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4416), 23, + ACTIONS(4408), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -90844,7 +90834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4418), 29, + ACTIONS(4410), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -90874,7 +90864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92313] = 3, + [92305] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(4412), 23, @@ -90931,7 +90921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92373] = 3, + [92365] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(4416), 23, @@ -90988,7 +90978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92433] = 3, + [92425] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(4420), 23, @@ -91045,7 +91035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92493] = 3, + [92485] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(4424), 23, @@ -91102,7 +91092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92553] = 3, + [92545] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(4428), 23, @@ -91159,7 +91149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92613] = 3, + [92605] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(4432), 23, @@ -91216,10 +91206,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92673] = 3, + [92665] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4436), 23, + ACTIONS(4432), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -91243,7 +91233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4438), 29, + ACTIONS(4434), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -91273,10 +91263,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92733] = 3, + [92725] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4440), 23, + ACTIONS(4416), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -91300,7 +91290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4442), 29, + ACTIONS(4418), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -91330,10 +91320,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92793] = 3, + [92785] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4440), 23, + ACTIONS(4420), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -91357,7 +91347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4442), 29, + ACTIONS(4422), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -91387,10 +91377,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92853] = 3, + [92845] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4444), 23, + ACTIONS(4432), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -91414,7 +91404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4446), 29, + ACTIONS(4434), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -91444,10 +91434,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92913] = 3, + [92905] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4444), 23, + ACTIONS(4436), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -91471,7 +91461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4446), 29, + ACTIONS(4438), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -91501,10 +91491,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92973] = 3, + [92965] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4448), 23, + ACTIONS(4440), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -91528,7 +91518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4450), 29, + ACTIONS(4442), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -91558,10 +91548,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [93033] = 3, + [93025] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4452), 23, + ACTIONS(4432), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -91585,7 +91575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4454), 29, + ACTIONS(4434), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -91615,10 +91605,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [93093] = 3, + [93085] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4456), 23, + ACTIONS(4444), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -91642,7 +91632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4458), 29, + ACTIONS(4446), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -91672,10 +91662,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [93153] = 3, + [93145] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4460), 23, + ACTIONS(4448), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -91699,7 +91689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4462), 29, + ACTIONS(4450), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -91729,10 +91719,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [93213] = 3, + [93205] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4464), 23, + ACTIONS(4452), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -91756,7 +91746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4466), 29, + ACTIONS(4454), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -91786,10 +91776,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [93273] = 3, + [93265] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4468), 23, + ACTIONS(4456), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -91813,7 +91803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4470), 29, + ACTIONS(4458), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -91843,10 +91833,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [93333] = 3, + [93325] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4472), 23, + ACTIONS(4144), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -91870,7 +91860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4474), 29, + ACTIONS(4146), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -91900,10 +91890,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [93393] = 3, + [93385] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4476), 23, + ACTIONS(4460), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -91927,7 +91917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4478), 29, + ACTIONS(4462), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -91957,14 +91947,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [93453] = 3, + [93445] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4480), 23, + ACTIONS(4468), 1, + anon_sym_COLON, + ACTIONS(4470), 1, + anon_sym_COLON_COLON, + ACTIONS(4464), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -91984,11 +91977,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4482), 29, + ACTIONS(4466), 28, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, @@ -92014,10 +92006,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [93513] = 3, + [93509] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4480), 23, + ACTIONS(4472), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -92041,7 +92033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4482), 29, + ACTIONS(4474), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -92071,10 +92063,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [93573] = 3, + [93569] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4472), 23, + ACTIONS(4476), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -92098,7 +92090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4474), 29, + ACTIONS(4478), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -92128,7 +92120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [93633] = 3, + [93629] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(4460), 23, @@ -92185,10 +92177,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [93693] = 3, + [93689] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4400), 23, + ACTIONS(4476), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -92212,7 +92204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4402), 29, + ACTIONS(4478), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -92242,10 +92234,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [93753] = 3, + [93749] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4476), 23, + ACTIONS(4464), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -92269,7 +92261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4478), 29, + ACTIONS(4466), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -92299,7 +92291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [93813] = 3, + [93809] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(4480), 23, @@ -92356,10 +92348,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [93873] = 3, + [93869] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4480), 23, + ACTIONS(4484), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -92383,7 +92375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4482), 29, + ACTIONS(4486), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -92413,10 +92405,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [93933] = 3, + [93929] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4484), 23, + ACTIONS(4456), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -92440,7 +92432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4486), 29, + ACTIONS(4458), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -92470,10 +92462,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [93993] = 3, + [93989] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4488), 23, + ACTIONS(4400), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -92497,7 +92489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4490), 29, + ACTIONS(4402), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -92527,10 +92519,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [94053] = 3, + [94049] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4492), 23, + ACTIONS(4460), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -92554,7 +92546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4494), 29, + ACTIONS(4462), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -92584,10 +92576,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [94113] = 3, + [94109] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4496), 23, + ACTIONS(4476), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -92611,7 +92603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4498), 29, + ACTIONS(4478), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -92641,10 +92633,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [94173] = 3, + [94169] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4500), 23, + ACTIONS(4460), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -92668,7 +92660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4502), 29, + ACTIONS(4462), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -92698,10 +92690,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [94233] = 3, + [94229] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4504), 23, + ACTIONS(4488), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -92725,7 +92717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4506), 29, + ACTIONS(4490), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -92755,10 +92747,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [94293] = 3, + [94289] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4500), 23, + ACTIONS(4492), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -92782,7 +92774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4502), 29, + ACTIONS(4494), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -92812,14 +92804,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [94353] = 3, + [94349] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4504), 23, + ACTIONS(4468), 1, + anon_sym_COLON, + ACTIONS(4470), 1, + anon_sym_COLON_COLON, + ACTIONS(4496), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -92839,11 +92834,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4506), 29, + ACTIONS(4498), 28, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, @@ -92869,14 +92863,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [94413] = 3, + [94413] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4508), 23, + ACTIONS(4468), 1, + anon_sym_COLON, + ACTIONS(4470), 1, + anon_sym_COLON_COLON, + ACTIONS(4500), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -92896,11 +92893,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4510), 29, + ACTIONS(4502), 28, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, @@ -92926,10 +92922,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [94473] = 3, + [94477] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4496), 23, + ACTIONS(4476), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -92953,7 +92949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4498), 29, + ACTIONS(4478), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -92983,10 +92979,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [94533] = 3, + [94537] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4500), 23, + ACTIONS(4484), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -93010,7 +93006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4502), 29, + ACTIONS(4486), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -93040,7 +93036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [94593] = 3, + [94597] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(4504), 23, @@ -93097,10 +93093,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [94653] = 3, + [94657] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4500), 23, + ACTIONS(4508), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -93124,7 +93120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4502), 29, + ACTIONS(4510), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -93154,10 +93150,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [94713] = 3, + [94717] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4504), 23, + ACTIONS(4508), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -93181,7 +93177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4506), 29, + ACTIONS(4510), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -93211,10 +93207,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [94773] = 3, + [94777] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4508), 23, + ACTIONS(4512), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -93238,7 +93234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4510), 29, + ACTIONS(4514), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -93268,10 +93264,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [94833] = 3, + [94837] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4512), 23, + ACTIONS(4424), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -93295,7 +93291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4514), 29, + ACTIONS(4426), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -93325,10 +93321,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [94893] = 3, + [94897] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4460), 23, + ACTIONS(4516), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -93352,7 +93348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4462), 29, + ACTIONS(4518), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -93382,10 +93378,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [94953] = 3, + [94957] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4460), 23, + ACTIONS(4508), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -93409,7 +93405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4462), 29, + ACTIONS(4510), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -93439,24 +93435,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [95013] = 6, + [95017] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4519), 1, - anon_sym_POUND_, - ACTIONS(4516), 2, + ACTIONS(4508), 23, sym__ws, sym_comment, - STATE(940), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(4132), 20, + anon_sym_POUND_, anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -93464,7 +93455,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, anon_sym_POUNDP, anon_sym_POUNDp, sym_self_referential_reader_macro, @@ -93472,7 +93462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4130), 25, + ACTIONS(4510), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -93483,30 +93473,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [95078] = 4, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [95077] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4522), 1, - aux_sym_num_lit_token2, - ACTIONS(4134), 23, + ACTIONS(4523), 1, + anon_sym_POUND_, + ACTIONS(4520), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(941), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(4104), 20, anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, @@ -93527,7 +93525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4136), 25, + ACTIONS(4102), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -93553,28 +93551,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [95137] = 12, + [95142] = 12, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4527), 1, + ACTIONS(4529), 1, anon_sym_POUND_, - ACTIONS(4532), 1, + ACTIONS(4534), 1, anon_sym_cl, - ACTIONS(4535), 1, + ACTIONS(4537), 1, anon_sym_do, - STATE(290), 1, + STATE(293), 1, sym_for_clause_word, - STATE(949), 1, + STATE(943), 1, aux_sym_for_clause_repeat1, - STATE(1188), 1, + STATE(1189), 1, sym__for_part, ACTIONS(308), 2, anon_sym_in, anon_sym_being, - ACTIONS(4524), 2, + ACTIONS(4526), 2, sym__ws, sym_comment, - STATE(2103), 3, + STATE(2128), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, @@ -93593,7 +93591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(4530), 22, + ACTIONS(4532), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -93616,32 +93614,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [95212] = 12, + [95217] = 12, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4540), 1, + ACTIONS(4542), 1, anon_sym_POUND_, - ACTIONS(4545), 1, + ACTIONS(4547), 1, anon_sym_cl, - ACTIONS(4548), 1, + ACTIONS(4556), 1, anon_sym_do, - STATE(290), 1, + STATE(293), 1, sym_for_clause_word, - STATE(949), 1, + STATE(943), 1, aux_sym_for_clause_repeat1, - STATE(1188), 1, + STATE(1189), 1, sym__for_part, - ACTIONS(308), 2, - anon_sym_in, - anon_sym_being, - ACTIONS(4537), 2, + ACTIONS(4539), 2, sym__ws, sym_comment, - STATE(2103), 3, + ACTIONS(4550), 2, + anon_sym_in, + anon_sym_being, + STATE(2128), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(310), 14, + ACTIONS(4553), 14, anon_sym_across, anon_sym_using, aux_sym_for_clause_word_token1, @@ -93656,7 +93654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(4543), 22, + ACTIONS(4545), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -93679,28 +93677,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [95287] = 12, + [95292] = 12, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4553), 1, + ACTIONS(4561), 1, anon_sym_POUND_, - ACTIONS(4558), 1, + ACTIONS(4566), 1, anon_sym_cl, - ACTIONS(4561), 1, + ACTIONS(4569), 1, anon_sym_do, - STATE(290), 1, + STATE(293), 1, sym_for_clause_word, - STATE(949), 1, + STATE(943), 1, aux_sym_for_clause_repeat1, - STATE(1188), 1, + STATE(1189), 1, sym__for_part, ACTIONS(308), 2, anon_sym_in, anon_sym_being, - ACTIONS(4550), 2, + ACTIONS(4558), 2, sym__ws, sym_comment, - STATE(2103), 3, + STATE(2128), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, @@ -93719,7 +93717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(4556), 22, + ACTIONS(4564), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -93742,28 +93740,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [95362] = 12, + [95367] = 12, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4566), 1, + ACTIONS(4574), 1, anon_sym_POUND_, - ACTIONS(4571), 1, + ACTIONS(4579), 1, anon_sym_cl, - ACTIONS(4574), 1, + ACTIONS(4582), 1, anon_sym_do, - STATE(290), 1, + STATE(293), 1, sym_for_clause_word, - STATE(949), 1, + STATE(943), 1, aux_sym_for_clause_repeat1, - STATE(1188), 1, + STATE(1189), 1, sym__for_part, ACTIONS(308), 2, anon_sym_in, anon_sym_being, - ACTIONS(4563), 2, + ACTIONS(4571), 2, sym__ws, sym_comment, - STATE(2103), 3, + STATE(2128), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, @@ -93782,7 +93780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(4569), 22, + ACTIONS(4577), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -93805,28 +93803,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [95437] = 12, + [95442] = 12, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4579), 1, + ACTIONS(4587), 1, anon_sym_POUND_, - ACTIONS(4584), 1, + ACTIONS(4592), 1, anon_sym_cl, - ACTIONS(4587), 1, + ACTIONS(4595), 1, anon_sym_do, - STATE(290), 1, + STATE(293), 1, sym_for_clause_word, - STATE(949), 1, + STATE(943), 1, aux_sym_for_clause_repeat1, - STATE(1188), 1, + STATE(1189), 1, sym__for_part, ACTIONS(308), 2, anon_sym_in, anon_sym_being, - ACTIONS(4576), 2, + ACTIONS(4584), 2, sym__ws, sym_comment, - STATE(2103), 3, + STATE(2128), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, @@ -93845,7 +93843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(4582), 22, + ACTIONS(4590), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -93868,28 +93866,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [95512] = 12, + [95517] = 12, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4566), 1, + ACTIONS(4600), 1, anon_sym_POUND_, - ACTIONS(4571), 1, + ACTIONS(4605), 1, anon_sym_cl, - ACTIONS(4574), 1, + ACTIONS(4608), 1, anon_sym_do, - STATE(290), 1, + STATE(293), 1, sym_for_clause_word, - STATE(949), 1, + STATE(943), 1, aux_sym_for_clause_repeat1, - STATE(1188), 1, + STATE(1189), 1, sym__for_part, ACTIONS(308), 2, anon_sym_in, anon_sym_being, - ACTIONS(4563), 2, + ACTIONS(4597), 2, sym__ws, sym_comment, - STATE(2103), 3, + STATE(2128), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, @@ -93908,7 +93906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(4569), 22, + ACTIONS(4603), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -93931,28 +93929,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [95587] = 12, + [95592] = 12, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4592), 1, + ACTIONS(4574), 1, anon_sym_POUND_, - ACTIONS(4597), 1, + ACTIONS(4579), 1, anon_sym_cl, - ACTIONS(4600), 1, + ACTIONS(4582), 1, anon_sym_do, - STATE(290), 1, + STATE(293), 1, sym_for_clause_word, - STATE(949), 1, + STATE(943), 1, aux_sym_for_clause_repeat1, - STATE(1188), 1, + STATE(1189), 1, sym__for_part, ACTIONS(308), 2, anon_sym_in, anon_sym_being, - ACTIONS(4589), 2, + ACTIONS(4571), 2, sym__ws, sym_comment, - STATE(2103), 3, + STATE(2128), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, @@ -93971,70 +93969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(4595), 22, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [95662] = 12, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4605), 1, - anon_sym_POUND_, - ACTIONS(4610), 1, - anon_sym_cl, - ACTIONS(4619), 1, - anon_sym_do, - STATE(290), 1, - sym_for_clause_word, - STATE(949), 1, - aux_sym_for_clause_repeat1, - STATE(1188), 1, - sym__for_part, - ACTIONS(4602), 2, - sym__ws, - sym_comment, - ACTIONS(4613), 2, - anon_sym_in, - anon_sym_being, - STATE(2103), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(4616), 14, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - ACTIONS(4608), 22, + ACTIONS(4577), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -94057,28 +93992,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [95737] = 12, + [95667] = 12, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4540), 1, + ACTIONS(4561), 1, anon_sym_POUND_, - ACTIONS(4545), 1, + ACTIONS(4566), 1, anon_sym_cl, - ACTIONS(4548), 1, + ACTIONS(4569), 1, anon_sym_do, - STATE(290), 1, + STATE(293), 1, sym_for_clause_word, - STATE(949), 1, + STATE(943), 1, aux_sym_for_clause_repeat1, - STATE(1188), 1, + STATE(1189), 1, sym__for_part, ACTIONS(308), 2, anon_sym_in, anon_sym_being, - ACTIONS(4537), 2, + ACTIONS(4558), 2, sym__ws, sym_comment, - STATE(2103), 3, + STATE(2128), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, @@ -94097,7 +94032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(4543), 22, + ACTIONS(4564), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -94120,28 +94055,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [95812] = 12, + [95742] = 12, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4624), 1, + ACTIONS(4613), 1, anon_sym_POUND_, - ACTIONS(4629), 1, + ACTIONS(4618), 1, anon_sym_cl, - ACTIONS(4632), 1, + ACTIONS(4621), 1, anon_sym_do, - STATE(290), 1, + STATE(293), 1, sym_for_clause_word, - STATE(949), 1, + STATE(943), 1, aux_sym_for_clause_repeat1, - STATE(1188), 1, + STATE(1189), 1, sym__for_part, ACTIONS(308), 2, anon_sym_in, anon_sym_being, - ACTIONS(4621), 2, + ACTIONS(4610), 2, sym__ws, sym_comment, - STATE(2103), 3, + STATE(2128), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, @@ -94160,7 +94095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(4627), 22, + ACTIONS(4616), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -94183,28 +94118,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [95887] = 12, + [95817] = 12, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4579), 1, + ACTIONS(4626), 1, anon_sym_POUND_, - ACTIONS(4584), 1, + ACTIONS(4631), 1, anon_sym_cl, - ACTIONS(4587), 1, + ACTIONS(4634), 1, anon_sym_do, - STATE(290), 1, + STATE(293), 1, sym_for_clause_word, - STATE(949), 1, + STATE(943), 1, aux_sym_for_clause_repeat1, - STATE(1188), 1, + STATE(1189), 1, sym__for_part, ACTIONS(308), 2, anon_sym_in, anon_sym_being, - ACTIONS(4576), 2, + ACTIONS(4623), 2, sym__ws, sym_comment, - STATE(2103), 3, + STATE(2128), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, @@ -94223,7 +94158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(4582), 22, + ACTIONS(4629), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -94246,28 +94181,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [95962] = 12, + [95892] = 4, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4636), 1, + aux_sym_num_lit_token2, + ACTIONS(4134), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4136), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [95951] = 12, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4637), 1, + ACTIONS(4641), 1, anon_sym_POUND_, - ACTIONS(4642), 1, + ACTIONS(4646), 1, anon_sym_cl, - ACTIONS(4645), 1, + ACTIONS(4649), 1, anon_sym_do, - STATE(290), 1, + STATE(293), 1, sym_for_clause_word, - STATE(949), 1, + STATE(943), 1, aux_sym_for_clause_repeat1, - STATE(1188), 1, + STATE(1189), 1, sym__for_part, ACTIONS(308), 2, anon_sym_in, anon_sym_being, - ACTIONS(4634), 2, + ACTIONS(4638), 2, sym__ws, sym_comment, - STATE(2103), 3, + STATE(2128), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, @@ -94286,7 +94276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(4640), 22, + ACTIONS(4644), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -94309,28 +94299,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [96037] = 12, + [96026] = 12, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4650), 1, + ACTIONS(4641), 1, anon_sym_POUND_, - ACTIONS(4655), 1, + ACTIONS(4646), 1, anon_sym_cl, - ACTIONS(4658), 1, + ACTIONS(4649), 1, anon_sym_do, - STATE(290), 1, + STATE(293), 1, sym_for_clause_word, - STATE(949), 1, + STATE(943), 1, aux_sym_for_clause_repeat1, - STATE(1188), 1, + STATE(1189), 1, sym__for_part, ACTIONS(308), 2, anon_sym_in, anon_sym_being, - ACTIONS(4647), 2, + ACTIONS(4638), 2, sym__ws, sym_comment, - STATE(2103), 3, + STATE(2128), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, @@ -94349,7 +94339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(4653), 22, + ACTIONS(4644), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -94372,28 +94362,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [96112] = 12, + [96101] = 12, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4663), 1, + ACTIONS(4529), 1, anon_sym_POUND_, - ACTIONS(4668), 1, + ACTIONS(4534), 1, anon_sym_cl, - ACTIONS(4671), 1, + ACTIONS(4537), 1, anon_sym_do, - STATE(290), 1, + STATE(293), 1, sym_for_clause_word, - STATE(949), 1, + STATE(943), 1, aux_sym_for_clause_repeat1, - STATE(1188), 1, + STATE(1189), 1, sym__for_part, ACTIONS(308), 2, anon_sym_in, anon_sym_being, - ACTIONS(4660), 2, + ACTIONS(4526), 2, sym__ws, sym_comment, - STATE(2103), 3, + STATE(2128), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, @@ -94412,7 +94402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(4666), 22, + ACTIONS(4532), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -94435,28 +94425,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [96187] = 12, + [96176] = 12, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4650), 1, + ACTIONS(4654), 1, anon_sym_POUND_, - ACTIONS(4655), 1, + ACTIONS(4659), 1, anon_sym_cl, - ACTIONS(4658), 1, + ACTIONS(4662), 1, anon_sym_do, - STATE(290), 1, + STATE(293), 1, sym_for_clause_word, - STATE(949), 1, + STATE(943), 1, aux_sym_for_clause_repeat1, - STATE(1188), 1, + STATE(1189), 1, sym__for_part, ACTIONS(308), 2, anon_sym_in, anon_sym_being, - ACTIONS(4647), 2, + ACTIONS(4651), 2, sym__ws, sym_comment, - STATE(2103), 3, + STATE(2128), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, @@ -94475,7 +94465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(4653), 22, + ACTIONS(4657), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -94498,28 +94488,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [96262] = 12, + [96251] = 12, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4637), 1, + ACTIONS(4667), 1, anon_sym_POUND_, - ACTIONS(4642), 1, + ACTIONS(4672), 1, anon_sym_cl, - ACTIONS(4645), 1, + ACTIONS(4675), 1, anon_sym_do, - STATE(290), 1, + STATE(293), 1, sym_for_clause_word, - STATE(949), 1, + STATE(943), 1, aux_sym_for_clause_repeat1, - STATE(1188), 1, + STATE(1189), 1, sym__for_part, ACTIONS(308), 2, anon_sym_in, anon_sym_being, - ACTIONS(4634), 2, + ACTIONS(4664), 2, sym__ws, sym_comment, - STATE(2103), 3, + STATE(2128), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, @@ -94538,7 +94528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(4640), 22, + ACTIONS(4670), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -94561,28 +94551,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [96337] = 12, + [96326] = 12, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4676), 1, + ACTIONS(4680), 1, anon_sym_POUND_, - ACTIONS(4681), 1, + ACTIONS(4685), 1, anon_sym_cl, - ACTIONS(4684), 1, + ACTIONS(4688), 1, anon_sym_do, - STATE(290), 1, + STATE(293), 1, sym_for_clause_word, - STATE(949), 1, + STATE(943), 1, aux_sym_for_clause_repeat1, - STATE(1188), 1, + STATE(1189), 1, sym__for_part, ACTIONS(308), 2, anon_sym_in, anon_sym_being, - ACTIONS(4673), 2, + ACTIONS(4677), 2, sym__ws, sym_comment, - STATE(2103), 3, + STATE(2128), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, @@ -94601,7 +94591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(4679), 22, + ACTIONS(4683), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -94624,28 +94614,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [96412] = 12, + [96401] = 12, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4689), 1, + ACTIONS(4654), 1, anon_sym_POUND_, - ACTIONS(4694), 1, + ACTIONS(4659), 1, anon_sym_cl, - ACTIONS(4697), 1, + ACTIONS(4662), 1, anon_sym_do, - STATE(290), 1, + STATE(293), 1, sym_for_clause_word, - STATE(949), 1, + STATE(943), 1, aux_sym_for_clause_repeat1, - STATE(1188), 1, + STATE(1189), 1, sym__for_part, ACTIONS(308), 2, anon_sym_in, anon_sym_being, - ACTIONS(4686), 2, + ACTIONS(4651), 2, sym__ws, sym_comment, - STATE(2103), 3, + STATE(2128), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, @@ -94664,7 +94654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(4692), 22, + ACTIONS(4657), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -94687,28 +94677,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [96487] = 12, + [96476] = 12, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4663), 1, + ACTIONS(4613), 1, anon_sym_POUND_, - ACTIONS(4668), 1, + ACTIONS(4618), 1, anon_sym_cl, - ACTIONS(4671), 1, + ACTIONS(4621), 1, anon_sym_do, - STATE(290), 1, + STATE(293), 1, sym_for_clause_word, - STATE(949), 1, + STATE(943), 1, aux_sym_for_clause_repeat1, - STATE(1188), 1, + STATE(1189), 1, sym__for_part, ACTIONS(308), 2, anon_sym_in, anon_sym_being, - ACTIONS(4660), 2, + ACTIONS(4610), 2, sym__ws, sym_comment, - STATE(2103), 3, + STATE(2128), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, @@ -94727,7 +94717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(4666), 22, + ACTIONS(4616), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -94750,10 +94740,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [96562] = 3, + [96551] = 12, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4280), 23, + ACTIONS(4693), 1, + anon_sym_POUND_, + ACTIONS(4698), 1, + anon_sym_cl, + ACTIONS(4701), 1, + anon_sym_do, + STATE(293), 1, + sym_for_clause_word, + STATE(943), 1, + aux_sym_for_clause_repeat1, + STATE(1189), 1, + sym__for_part, + ACTIONS(308), 2, + anon_sym_in, + anon_sym_being, + ACTIONS(4690), 2, + sym__ws, + sym_comment, + STATE(2128), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(310), 14, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + ACTIONS(4696), 22, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [96626] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4240), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -94777,7 +94830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4282), 25, + ACTIONS(4242), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -94803,10 +94856,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [96618] = 3, + [96682] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4460), 23, + ACTIONS(4436), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -94830,7 +94883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4462), 25, + ACTIONS(4438), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -94856,57 +94909,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [96674] = 26, + [96738] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(4701), 1, + ACTIONS(4705), 1, anon_sym_POUND_, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - ACTIONS(4707), 1, + ACTIONS(4711), 1, anon_sym_RPAREN, - ACTIONS(4709), 1, + ACTIONS(4713), 1, anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, anon_sym_and, - ACTIONS(4717), 1, + ACTIONS(4721), 1, anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, ACTIONS(4723), 1, - anon_sym_repeat, + anon_sym_do, ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, anon_sym_else, - STATE(170), 1, + STATE(247), 1, sym_accumulation_verb, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2417), 1, + STATE(2421), 1, aux_sym_list_lit_repeat1, - ACTIONS(4699), 2, + ACTIONS(4703), 2, sym__ws, sym_comment, - ACTIONS(4713), 2, + ACTIONS(4717), 2, anon_sym_for, anon_sym_as, - ACTIONS(4721), 2, + ACTIONS(4725), 2, anon_sym_while, anon_sym_until, - ACTIONS(4729), 3, + ACTIONS(4733), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, @@ -94915,14 +94968,14 @@ static const uint16_t ts_small_parse_table[] = { sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, + ACTIONS(4729), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2050), 9, + STATE(2081), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -94932,73 +94985,202 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [96776] = 26, + [96840] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(4701), 1, + ACTIONS(4705), 1, anon_sym_POUND_, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(4713), 1, anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, anon_sym_and, - ACTIONS(4717), 1, + ACTIONS(4721), 1, anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, ACTIONS(4723), 1, + anon_sym_do, + ACTIONS(4727), 1, anon_sym_repeat, + ACTIONS(4731), 1, + anon_sym_else, + ACTIONS(4737), 1, + anon_sym_RPAREN, + STATE(247), 1, + sym_accumulation_verb, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2421), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4717), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4725), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4735), 2, + sym__ws, + sym_comment, + ACTIONS(4733), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1130), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4729), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2081), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [96942] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4328), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4330), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [96998] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(4705), 1, + anon_sym_POUND_, + ACTIONS(4707), 1, + anon_sym_CARET, + ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(4713), 1, + anon_sym_cl, + ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, + anon_sym_and, + ACTIONS(4721), 1, + anon_sym_with, + ACTIONS(4723), 1, + anon_sym_do, ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, anon_sym_else, - ACTIONS(4733), 1, + ACTIONS(4741), 1, anon_sym_RPAREN, - STATE(170), 1, + STATE(247), 1, sym_accumulation_verb, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2417), 1, + STATE(2421), 1, aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, + ACTIONS(4717), 2, anon_sym_for, anon_sym_as, - ACTIONS(4721), 2, + ACTIONS(4725), 2, anon_sym_while, anon_sym_until, - ACTIONS(4731), 2, + ACTIONS(4739), 2, sym__ws, sym_comment, - ACTIONS(4729), 3, + ACTIONS(4733), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1064), 4, + STATE(969), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, + ACTIONS(4729), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2050), 9, + STATE(2081), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -95008,73 +95190,126 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [96878] = 26, + [97100] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(4701), 1, + ACTIONS(4316), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(4703), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(4705), 1, anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4318), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [97156] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(4705), 1, + anon_sym_POUND_, + ACTIONS(4707), 1, + anon_sym_CARET, ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(4713), 1, anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, anon_sym_and, - ACTIONS(4717), 1, + ACTIONS(4721), 1, anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, ACTIONS(4723), 1, - anon_sym_repeat, + anon_sym_do, ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, anon_sym_else, - ACTIONS(4737), 1, + ACTIONS(4743), 1, anon_sym_RPAREN, - STATE(170), 1, + STATE(247), 1, sym_accumulation_verb, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2417), 1, + STATE(2421), 1, aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, + ACTIONS(4717), 2, anon_sym_for, anon_sym_as, - ACTIONS(4721), 2, + ACTIONS(4725), 2, anon_sym_while, anon_sym_until, ACTIONS(4735), 2, sym__ws, sym_comment, - ACTIONS(4729), 3, + ACTIONS(4733), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1036), 4, + STATE(1130), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, + ACTIONS(4729), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2050), 9, + STATE(2081), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -95084,73 +95319,73 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [96980] = 26, + [97258] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(4701), 1, + ACTIONS(4705), 1, anon_sym_POUND_, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(4713), 1, anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, anon_sym_and, - ACTIONS(4717), 1, + ACTIONS(4721), 1, anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, ACTIONS(4723), 1, - anon_sym_repeat, + anon_sym_do, ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, anon_sym_else, - ACTIONS(4741), 1, + ACTIONS(4747), 1, anon_sym_RPAREN, - STATE(170), 1, + STATE(247), 1, sym_accumulation_verb, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2417), 1, + STATE(2421), 1, aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, + ACTIONS(4717), 2, anon_sym_for, anon_sym_as, - ACTIONS(4721), 2, + ACTIONS(4725), 2, anon_sym_while, anon_sym_until, - ACTIONS(4739), 2, + ACTIONS(4745), 2, sym__ws, sym_comment, - ACTIONS(4729), 3, + ACTIONS(4733), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(984), 4, + STATE(1058), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, + ACTIONS(4729), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2050), 9, + STATE(2081), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -95160,73 +95395,73 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [97082] = 26, + [97360] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(4701), 1, + ACTIONS(4705), 1, anon_sym_POUND_, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(4713), 1, anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, anon_sym_and, - ACTIONS(4717), 1, + ACTIONS(4721), 1, anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, ACTIONS(4723), 1, - anon_sym_repeat, + anon_sym_do, ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, anon_sym_else, - ACTIONS(4745), 1, + ACTIONS(4751), 1, anon_sym_RPAREN, - STATE(170), 1, + STATE(247), 1, sym_accumulation_verb, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2417), 1, + STATE(2421), 1, aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, + ACTIONS(4717), 2, anon_sym_for, anon_sym_as, - ACTIONS(4721), 2, + ACTIONS(4725), 2, anon_sym_while, anon_sym_until, - ACTIONS(4743), 2, + ACTIONS(4749), 2, sym__ws, sym_comment, - ACTIONS(4729), 3, + ACTIONS(4733), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1021), 4, + STATE(979), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, + ACTIONS(4729), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2050), 9, + STATE(2081), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -95236,73 +95471,73 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [97184] = 26, + [97462] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(4701), 1, + ACTIONS(4705), 1, anon_sym_POUND_, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(4713), 1, anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, anon_sym_and, - ACTIONS(4717), 1, + ACTIONS(4721), 1, anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, ACTIONS(4723), 1, - anon_sym_repeat, + anon_sym_do, ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, anon_sym_else, - ACTIONS(4747), 1, + ACTIONS(4755), 1, anon_sym_RPAREN, - STATE(170), 1, + STATE(247), 1, sym_accumulation_verb, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2417), 1, + STATE(2421), 1, aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, + ACTIONS(4717), 2, anon_sym_for, anon_sym_as, - ACTIONS(4721), 2, + ACTIONS(4725), 2, anon_sym_while, anon_sym_until, - ACTIONS(4735), 2, + ACTIONS(4753), 2, sym__ws, sym_comment, - ACTIONS(4729), 3, + ACTIONS(4733), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1036), 4, + STATE(1154), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, + ACTIONS(4729), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2050), 9, + STATE(2081), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -95312,73 +95547,232 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [97286] = 26, + [97564] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, + ACTIONS(4384), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, anon_sym_LPAREN, - ACTIONS(4701), 1, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4386), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [97620] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4312), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(4703), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4314), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [97676] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4316), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(4705), 1, anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4318), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [97732] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(4705), 1, + anon_sym_POUND_, + ACTIONS(4707), 1, + anon_sym_CARET, ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(4713), 1, anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, anon_sym_and, - ACTIONS(4717), 1, + ACTIONS(4721), 1, anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, ACTIONS(4723), 1, - anon_sym_repeat, + anon_sym_do, ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, anon_sym_else, - ACTIONS(4747), 1, + ACTIONS(4751), 1, anon_sym_RPAREN, - STATE(170), 1, + STATE(247), 1, sym_accumulation_verb, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2417), 1, + STATE(2421), 1, aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, + ACTIONS(4717), 2, anon_sym_for, anon_sym_as, - ACTIONS(4721), 2, + ACTIONS(4725), 2, anon_sym_while, anon_sym_until, - ACTIONS(4749), 2, + ACTIONS(4735), 2, sym__ws, sym_comment, - ACTIONS(4729), 3, + ACTIONS(4733), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(977), 4, + STATE(1130), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, + ACTIONS(4729), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2050), 9, + STATE(2081), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -95388,73 +95782,179 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [97388] = 26, + [97834] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, + ACTIONS(4312), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, anon_sym_LPAREN, - ACTIONS(4701), 1, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4314), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [97890] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4308), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(4703), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(4705), 1, anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4310), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [97946] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(4705), 1, + anon_sym_POUND_, + ACTIONS(4707), 1, + anon_sym_CARET, ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(4713), 1, anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, anon_sym_and, - ACTIONS(4717), 1, + ACTIONS(4721), 1, anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, ACTIONS(4723), 1, - anon_sym_repeat, + anon_sym_do, ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, anon_sym_else, - ACTIONS(4753), 1, + ACTIONS(4757), 1, anon_sym_RPAREN, - STATE(170), 1, + STATE(247), 1, sym_accumulation_verb, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2417), 1, + STATE(2421), 1, aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, + ACTIONS(4717), 2, anon_sym_for, anon_sym_as, - ACTIONS(4721), 2, + ACTIONS(4725), 2, anon_sym_while, anon_sym_until, - ACTIONS(4751), 2, + ACTIONS(4735), 2, sym__ws, sym_comment, - ACTIONS(4729), 3, + ACTIONS(4733), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1038), 4, + STATE(1130), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, + ACTIONS(4729), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2050), 9, + STATE(2081), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -95464,73 +95964,73 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [97490] = 26, + [98048] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(4701), 1, + ACTIONS(4705), 1, anon_sym_POUND_, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(4713), 1, anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, anon_sym_and, - ACTIONS(4717), 1, + ACTIONS(4721), 1, anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, ACTIONS(4723), 1, - anon_sym_repeat, + anon_sym_do, ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, anon_sym_else, ACTIONS(4757), 1, anon_sym_RPAREN, - STATE(170), 1, + STATE(247), 1, sym_accumulation_verb, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2417), 1, + STATE(2421), 1, aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, + ACTIONS(4717), 2, anon_sym_for, anon_sym_as, - ACTIONS(4721), 2, + ACTIONS(4725), 2, anon_sym_while, anon_sym_until, - ACTIONS(4755), 2, + ACTIONS(4759), 2, sym__ws, sym_comment, - ACTIONS(4729), 3, + ACTIONS(4733), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1053), 4, + STATE(982), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, + ACTIONS(4729), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2050), 9, + STATE(2081), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -95540,73 +96040,126 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [97592] = 26, + [98150] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(4701), 1, + ACTIONS(4372), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(4703), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(4705), 1, anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4374), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [98206] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(4705), 1, + anon_sym_POUND_, + ACTIONS(4707), 1, + anon_sym_CARET, ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(4713), 1, anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, anon_sym_and, - ACTIONS(4717), 1, + ACTIONS(4721), 1, anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, ACTIONS(4723), 1, - anon_sym_repeat, + anon_sym_do, ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, anon_sym_else, - ACTIONS(4759), 1, + ACTIONS(4761), 1, anon_sym_RPAREN, - STATE(170), 1, + STATE(247), 1, sym_accumulation_verb, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2417), 1, + STATE(2421), 1, aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, + ACTIONS(4717), 2, anon_sym_for, anon_sym_as, - ACTIONS(4721), 2, + ACTIONS(4725), 2, anon_sym_while, anon_sym_until, ACTIONS(4735), 2, sym__ws, sym_comment, - ACTIONS(4729), 3, + ACTIONS(4733), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1036), 4, + STATE(1130), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, + ACTIONS(4729), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2050), 9, + STATE(2081), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -95616,73 +96169,338 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [97694] = 26, + [98308] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4304), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4306), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [98364] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, + ACTIONS(4300), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, anon_sym_LPAREN, - ACTIONS(4701), 1, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4302), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [98420] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4348), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(4703), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4350), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [98476] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4332), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4334), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [98532] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4300), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(4705), 1, anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4302), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [98588] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(4705), 1, + anon_sym_POUND_, + ACTIONS(4707), 1, + anon_sym_CARET, ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(4713), 1, anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, anon_sym_and, - ACTIONS(4717), 1, + ACTIONS(4721), 1, anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, ACTIONS(4723), 1, - anon_sym_repeat, + anon_sym_do, ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, anon_sym_else, - ACTIONS(4741), 1, + ACTIONS(4763), 1, anon_sym_RPAREN, - STATE(170), 1, + STATE(247), 1, sym_accumulation_verb, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2417), 1, + STATE(2421), 1, aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, + ACTIONS(4717), 2, anon_sym_for, anon_sym_as, - ACTIONS(4721), 2, + ACTIONS(4725), 2, anon_sym_while, anon_sym_until, ACTIONS(4735), 2, sym__ws, sym_comment, - ACTIONS(4729), 3, + ACTIONS(4733), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1036), 4, + STATE(1130), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, + ACTIONS(4729), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2050), 9, + STATE(2081), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -95692,73 +96510,285 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [97796] = 26, + [98690] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, + ACTIONS(4296), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, anon_sym_LPAREN, - ACTIONS(4701), 1, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4298), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [98746] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4276), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(4703), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4278), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [98802] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4228), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(4705), 1, anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4230), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [98858] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4228), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4230), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [98914] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(4705), 1, + anon_sym_POUND_, + ACTIONS(4707), 1, + anon_sym_CARET, ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(4713), 1, anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, anon_sym_and, - ACTIONS(4717), 1, + ACTIONS(4721), 1, anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, ACTIONS(4723), 1, - anon_sym_repeat, + anon_sym_do, ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, anon_sym_else, - ACTIONS(4737), 1, + ACTIONS(4763), 1, anon_sym_RPAREN, - STATE(170), 1, + STATE(247), 1, sym_accumulation_verb, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2417), 1, + STATE(2421), 1, aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, + ACTIONS(4717), 2, anon_sym_for, anon_sym_as, - ACTIONS(4721), 2, + ACTIONS(4725), 2, anon_sym_while, anon_sym_until, - ACTIONS(4761), 2, + ACTIONS(4765), 2, sym__ws, sym_comment, - ACTIONS(4729), 3, + ACTIONS(4733), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1002), 4, + STATE(1065), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, + ACTIONS(4729), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2050), 9, + STATE(2081), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -95768,149 +96798,73 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [97898] = 26, + [99016] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(4701), 1, + ACTIONS(4705), 1, anon_sym_POUND_, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(4713), 1, anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, anon_sym_and, - ACTIONS(4717), 1, + ACTIONS(4721), 1, anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, ACTIONS(4723), 1, - anon_sym_repeat, - ACTIONS(4727), 1, - anon_sym_else, - ACTIONS(4765), 1, - anon_sym_RPAREN, - STATE(170), 1, - sym_accumulation_verb, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2417), 1, - aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(4721), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(4763), 2, - sym__ws, - sym_comment, - ACTIONS(4729), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1886), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1003), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2050), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [98000] = 26, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(4701), 1, - anon_sym_POUND_, - ACTIONS(4703), 1, - anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, - ACTIONS(4709), 1, - anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(4715), 1, - anon_sym_and, - ACTIONS(4717), 1, - anon_sym_with, - ACTIONS(4719), 1, anon_sym_do, - ACTIONS(4723), 1, - anon_sym_repeat, ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, anon_sym_else, ACTIONS(4769), 1, anon_sym_RPAREN, - STATE(170), 1, + STATE(247), 1, sym_accumulation_verb, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2417), 1, + STATE(2421), 1, aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, + ACTIONS(4717), 2, anon_sym_for, anon_sym_as, - ACTIONS(4721), 2, + ACTIONS(4725), 2, anon_sym_while, anon_sym_until, ACTIONS(4767), 2, sym__ws, sym_comment, - ACTIONS(4729), 3, + ACTIONS(4733), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(981), 4, + STATE(999), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, + ACTIONS(4729), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2050), 9, + STATE(2081), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -95920,73 +96874,73 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [98102] = 26, + [99118] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(4701), 1, + ACTIONS(4705), 1, anon_sym_POUND_, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(4713), 1, anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, anon_sym_and, - ACTIONS(4717), 1, + ACTIONS(4721), 1, anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, ACTIONS(4723), 1, - anon_sym_repeat, + anon_sym_do, ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, anon_sym_else, - ACTIONS(4769), 1, + ACTIONS(4773), 1, anon_sym_RPAREN, - STATE(170), 1, + STATE(247), 1, sym_accumulation_verb, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2417), 1, + STATE(2421), 1, aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, + ACTIONS(4717), 2, anon_sym_for, anon_sym_as, - ACTIONS(4721), 2, + ACTIONS(4725), 2, anon_sym_while, anon_sym_until, - ACTIONS(4735), 2, + ACTIONS(4771), 2, sym__ws, sym_comment, - ACTIONS(4729), 3, + ACTIONS(4733), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1036), 4, + STATE(988), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, + ACTIONS(4729), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2050), 9, + STATE(2081), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -95996,149 +96950,126 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [98204] = 26, + [99220] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(4701), 1, + ACTIONS(4204), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(4703), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(4705), 1, anon_sym_POUND_CARET, - ACTIONS(4709), 1, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4206), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(4715), 1, - anon_sym_and, - ACTIONS(4717), 1, - anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, - ACTIONS(4723), 1, - anon_sym_repeat, - ACTIONS(4727), 1, - anon_sym_else, - ACTIONS(4745), 1, - anon_sym_RPAREN, - STATE(170), 1, - sym_accumulation_verb, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2417), 1, - aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(4721), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(4735), 2, - sym__ws, - sym_comment, - ACTIONS(4729), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1886), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1036), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2050), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [98306] = 26, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [99276] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(4701), 1, + ACTIONS(4705), 1, anon_sym_POUND_, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(4713), 1, anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, anon_sym_and, - ACTIONS(4717), 1, + ACTIONS(4721), 1, anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, ACTIONS(4723), 1, - anon_sym_repeat, + anon_sym_do, ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, anon_sym_else, - ACTIONS(4733), 1, + ACTIONS(4773), 1, anon_sym_RPAREN, - STATE(170), 1, + STATE(247), 1, sym_accumulation_verb, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2417), 1, + STATE(2421), 1, aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, + ACTIONS(4717), 2, anon_sym_for, anon_sym_as, - ACTIONS(4721), 2, + ACTIONS(4725), 2, anon_sym_while, anon_sym_until, ACTIONS(4735), 2, sym__ws, sym_comment, - ACTIONS(4729), 3, + ACTIONS(4733), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1036), 4, + STATE(1130), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, + ACTIONS(4729), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2050), 9, + STATE(2081), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -96148,149 +97079,126 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [98408] = 26, + [99378] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(4701), 1, + ACTIONS(4164), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(4703), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(4705), 1, anon_sym_POUND_CARET, - ACTIONS(4709), 1, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4166), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(4715), 1, - anon_sym_and, - ACTIONS(4717), 1, - anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, - ACTIONS(4723), 1, - anon_sym_repeat, - ACTIONS(4727), 1, - anon_sym_else, - ACTIONS(4773), 1, - anon_sym_RPAREN, - STATE(170), 1, - sym_accumulation_verb, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2417), 1, - aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(4721), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(4771), 2, - sym__ws, - sym_comment, - ACTIONS(4729), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1886), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(972), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2050), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [98510] = 26, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [99434] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(4701), 1, + ACTIONS(4705), 1, anon_sym_POUND_, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(4713), 1, anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, anon_sym_and, - ACTIONS(4717), 1, + ACTIONS(4721), 1, anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, ACTIONS(4723), 1, - anon_sym_repeat, + anon_sym_do, ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, anon_sym_else, ACTIONS(4775), 1, anon_sym_RPAREN, - STATE(170), 1, + STATE(247), 1, sym_accumulation_verb, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2417), 1, + STATE(2421), 1, aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, + ACTIONS(4717), 2, anon_sym_for, anon_sym_as, - ACTIONS(4721), 2, + ACTIONS(4725), 2, anon_sym_while, anon_sym_until, ACTIONS(4735), 2, sym__ws, sym_comment, - ACTIONS(4729), 3, + ACTIONS(4733), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1036), 4, + STATE(1130), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, + ACTIONS(4729), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2050), 9, + STATE(2081), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -96300,149 +97208,126 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [98612] = 26, + [99536] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(4701), 1, + ACTIONS(4180), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(4703), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(4705), 1, anon_sym_POUND_CARET, - ACTIONS(4709), 1, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4182), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(4715), 1, - anon_sym_and, - ACTIONS(4717), 1, - anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, - ACTIONS(4723), 1, - anon_sym_repeat, - ACTIONS(4727), 1, - anon_sym_else, - ACTIONS(4779), 1, - anon_sym_RPAREN, - STATE(170), 1, - sym_accumulation_verb, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2417), 1, - aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(4721), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(4777), 2, - sym__ws, - sym_comment, - ACTIONS(4729), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1886), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1005), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2050), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [98714] = 26, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [99592] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(4701), 1, + ACTIONS(4705), 1, anon_sym_POUND_, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(4713), 1, anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, anon_sym_and, - ACTIONS(4717), 1, + ACTIONS(4721), 1, anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, ACTIONS(4723), 1, - anon_sym_repeat, + anon_sym_do, ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, anon_sym_else, ACTIONS(4775), 1, anon_sym_RPAREN, - STATE(170), 1, + STATE(247), 1, sym_accumulation_verb, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2417), 1, + STATE(2421), 1, aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, + ACTIONS(4717), 2, anon_sym_for, anon_sym_as, - ACTIONS(4721), 2, + ACTIONS(4725), 2, anon_sym_while, anon_sym_until, - ACTIONS(4781), 2, + ACTIONS(4777), 2, sym__ws, sym_comment, - ACTIONS(4729), 3, + ACTIONS(4733), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(987), 4, + STATE(1004), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, + ACTIONS(4729), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2050), 9, + STATE(2081), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -96452,73 +97337,73 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [98816] = 26, + [99694] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(4701), 1, + ACTIONS(4705), 1, anon_sym_POUND_, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(4713), 1, anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, anon_sym_and, - ACTIONS(4717), 1, + ACTIONS(4721), 1, anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, ACTIONS(4723), 1, - anon_sym_repeat, + anon_sym_do, ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, anon_sym_else, - ACTIONS(4765), 1, + ACTIONS(4781), 1, anon_sym_RPAREN, - STATE(170), 1, + STATE(247), 1, sym_accumulation_verb, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2417), 1, + STATE(2421), 1, aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, + ACTIONS(4717), 2, anon_sym_for, anon_sym_as, - ACTIONS(4721), 2, + ACTIONS(4725), 2, anon_sym_while, anon_sym_until, - ACTIONS(4735), 2, + ACTIONS(4779), 2, sym__ws, sym_comment, - ACTIONS(4729), 3, + ACTIONS(4733), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1036), 4, + STATE(1006), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, + ACTIONS(4729), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2050), 9, + STATE(2081), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -96528,149 +97413,126 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [98918] = 26, + [99796] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(4701), 1, + ACTIONS(4216), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(4703), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(4705), 1, anon_sym_POUND_CARET, - ACTIONS(4709), 1, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4218), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(4715), 1, - anon_sym_and, - ACTIONS(4717), 1, - anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, - ACTIONS(4723), 1, - anon_sym_repeat, - ACTIONS(4727), 1, - anon_sym_else, - ACTIONS(4785), 1, - anon_sym_RPAREN, - STATE(170), 1, - sym_accumulation_verb, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2417), 1, - aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(4721), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(4783), 2, - sym__ws, - sym_comment, - ACTIONS(4729), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1886), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(978), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2050), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [99020] = 26, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [99852] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(4701), 1, + ACTIONS(4705), 1, anon_sym_POUND_, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(4713), 1, anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, anon_sym_and, - ACTIONS(4717), 1, + ACTIONS(4721), 1, anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, ACTIONS(4723), 1, - anon_sym_repeat, + anon_sym_do, ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, anon_sym_else, - ACTIONS(4787), 1, + ACTIONS(4781), 1, anon_sym_RPAREN, - STATE(170), 1, + STATE(247), 1, sym_accumulation_verb, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2417), 1, + STATE(2421), 1, aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, + ACTIONS(4717), 2, anon_sym_for, anon_sym_as, - ACTIONS(4721), 2, + ACTIONS(4725), 2, anon_sym_while, anon_sym_until, ACTIONS(4735), 2, sym__ws, sym_comment, - ACTIONS(4729), 3, + ACTIONS(4733), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1036), 4, + STATE(1130), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, + ACTIONS(4729), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2050), 9, + STATE(2081), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -96680,73 +97542,126 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [99122] = 26, + [99954] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(4701), 1, + ACTIONS(4196), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(4703), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(4705), 1, anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4198), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [100010] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(4705), 1, + anon_sym_POUND_, + ACTIONS(4707), 1, + anon_sym_CARET, ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(4713), 1, anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, anon_sym_and, - ACTIONS(4717), 1, + ACTIONS(4721), 1, anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, ACTIONS(4723), 1, - anon_sym_repeat, + anon_sym_do, ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, anon_sym_else, - ACTIONS(4789), 1, + ACTIONS(4783), 1, anon_sym_RPAREN, - STATE(170), 1, + STATE(247), 1, sym_accumulation_verb, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2417), 1, + STATE(2421), 1, aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, + ACTIONS(4717), 2, anon_sym_for, anon_sym_as, - ACTIONS(4721), 2, + ACTIONS(4725), 2, anon_sym_while, anon_sym_until, ACTIONS(4735), 2, sym__ws, sym_comment, - ACTIONS(4729), 3, + ACTIONS(4733), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1036), 4, + STATE(1130), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, + ACTIONS(4729), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2050), 9, + STATE(2081), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -96756,149 +97671,179 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [99224] = 26, + [100112] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(4701), 1, + ACTIONS(4200), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(4703), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(4705), 1, anon_sym_POUND_CARET, - ACTIONS(4709), 1, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4202), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(4715), 1, - anon_sym_and, - ACTIONS(4717), 1, - anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, - ACTIONS(4723), 1, - anon_sym_repeat, - ACTIONS(4727), 1, - anon_sym_else, - ACTIONS(4793), 1, - anon_sym_RPAREN, - STATE(170), 1, - sym_accumulation_verb, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2417), 1, - aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(4721), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(4791), 2, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [100168] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4516), 23, sym__ws, sym_comment, - ACTIONS(4729), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1886), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(993), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2050), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [99326] = 26, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4518), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [100224] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(4701), 1, + ACTIONS(4705), 1, anon_sym_POUND_, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(4713), 1, anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, anon_sym_and, - ACTIONS(4717), 1, + ACTIONS(4721), 1, anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, ACTIONS(4723), 1, - anon_sym_repeat, + anon_sym_do, ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, anon_sym_else, - ACTIONS(4793), 1, + ACTIONS(4783), 1, anon_sym_RPAREN, - STATE(170), 1, + STATE(247), 1, sym_accumulation_verb, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2417), 1, + STATE(2421), 1, aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, + ACTIONS(4717), 2, anon_sym_for, anon_sym_as, - ACTIONS(4721), 2, + ACTIONS(4725), 2, anon_sym_while, anon_sym_until, - ACTIONS(4735), 2, + ACTIONS(4785), 2, sym__ws, sym_comment, - ACTIONS(4729), 3, + ACTIONS(4733), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1036), 4, + STATE(1010), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, + ACTIONS(4729), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2050), 9, + STATE(2081), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -96908,73 +97853,73 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [99428] = 26, + [100326] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(4701), 1, + ACTIONS(4705), 1, anon_sym_POUND_, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(4713), 1, anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, anon_sym_and, - ACTIONS(4717), 1, + ACTIONS(4721), 1, anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, ACTIONS(4723), 1, - anon_sym_repeat, + anon_sym_do, ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, anon_sym_else, - ACTIONS(4773), 1, + ACTIONS(4787), 1, anon_sym_RPAREN, - STATE(170), 1, + STATE(247), 1, sym_accumulation_verb, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2417), 1, + STATE(2421), 1, aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, + ACTIONS(4717), 2, anon_sym_for, anon_sym_as, - ACTIONS(4721), 2, + ACTIONS(4725), 2, anon_sym_while, anon_sym_until, ACTIONS(4735), 2, sym__ws, sym_comment, - ACTIONS(4729), 3, + ACTIONS(4733), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1036), 4, + STATE(1130), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, + ACTIONS(4729), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2050), 9, + STATE(2081), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -96984,149 +97929,179 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [99530] = 26, + [100428] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(4701), 1, + ACTIONS(4148), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(4703), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(4705), 1, anon_sym_POUND_CARET, - ACTIONS(4709), 1, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4150), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(4715), 1, - anon_sym_and, - ACTIONS(4717), 1, - anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, - ACTIONS(4723), 1, - anon_sym_repeat, - ACTIONS(4727), 1, - anon_sym_else, - ACTIONS(4795), 1, - anon_sym_RPAREN, - STATE(170), 1, - sym_accumulation_verb, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2417), 1, - aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(4721), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(4735), 2, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [100484] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4156), 23, sym__ws, sym_comment, - ACTIONS(4729), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1886), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1036), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2050), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [99632] = 26, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4158), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [100540] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(4701), 1, + ACTIONS(4705), 1, anon_sym_POUND_, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(4713), 1, anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, anon_sym_and, - ACTIONS(4717), 1, + ACTIONS(4721), 1, anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, ACTIONS(4723), 1, - anon_sym_repeat, + anon_sym_do, ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, anon_sym_else, - ACTIONS(4799), 1, + ACTIONS(4791), 1, anon_sym_RPAREN, - STATE(170), 1, + STATE(247), 1, sym_accumulation_verb, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2417), 1, + STATE(2421), 1, aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, + ACTIONS(4717), 2, anon_sym_for, anon_sym_as, - ACTIONS(4721), 2, + ACTIONS(4725), 2, anon_sym_while, anon_sym_until, - ACTIONS(4797), 2, + ACTIONS(4789), 2, sym__ws, sym_comment, - ACTIONS(4729), 3, + ACTIONS(4733), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(986), 4, + STATE(1050), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, + ACTIONS(4729), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2050), 9, + STATE(2081), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -97136,314 +98111,116 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [99734] = 26, + [100642] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(4701), 1, + ACTIONS(4160), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(4703), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(4705), 1, anon_sym_POUND_CARET, - ACTIONS(4709), 1, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4162), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(4715), 1, - anon_sym_and, - ACTIONS(4717), 1, - anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, - ACTIONS(4723), 1, - anon_sym_repeat, - ACTIONS(4727), 1, - anon_sym_else, - ACTIONS(4801), 1, - anon_sym_RPAREN, - STATE(170), 1, - sym_accumulation_verb, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2417), 1, - aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(4721), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(4735), 2, - sym__ws, - sym_comment, - ACTIONS(4729), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1886), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1036), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2050), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [99836] = 26, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [100698] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(4701), 1, - anon_sym_POUND_, - ACTIONS(4703), 1, - anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, - ACTIONS(4709), 1, - anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(4715), 1, - anon_sym_and, - ACTIONS(4717), 1, - anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, - ACTIONS(4723), 1, - anon_sym_repeat, - ACTIONS(4727), 1, - anon_sym_else, - ACTIONS(4805), 1, - anon_sym_RPAREN, - STATE(170), 1, - sym_accumulation_verb, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2417), 1, - aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(4721), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(4803), 2, + ACTIONS(4172), 23, sym__ws, sym_comment, - ACTIONS(4729), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1886), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1013), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2050), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [99938] = 26, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(4701), 1, anon_sym_POUND_, - ACTIONS(4703), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(4705), 1, anon_sym_POUND_CARET, - ACTIONS(4709), 1, - anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(4715), 1, - anon_sym_and, - ACTIONS(4717), 1, - anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, - ACTIONS(4723), 1, - anon_sym_repeat, - ACTIONS(4727), 1, - anon_sym_else, - ACTIONS(4807), 1, - anon_sym_RPAREN, - STATE(170), 1, - sym_accumulation_verb, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2417), 1, - aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(4721), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(4735), 2, - sym__ws, - sym_comment, - ACTIONS(4729), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1886), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1036), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2050), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [100040] = 26, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(4701), 1, - anon_sym_POUND_, - ACTIONS(4703), 1, - anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, - ACTIONS(4709), 1, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4174), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(4715), 1, - anon_sym_and, - ACTIONS(4717), 1, - anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, - ACTIONS(4723), 1, - anon_sym_repeat, - ACTIONS(4727), 1, - anon_sym_else, - ACTIONS(4807), 1, - anon_sym_RPAREN, - STATE(170), 1, - sym_accumulation_verb, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2417), 1, - aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(4721), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(4809), 2, - sym__ws, - sym_comment, - ACTIONS(4729), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1886), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(990), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2050), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [100142] = 3, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [100754] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4392), 23, + ACTIONS(4176), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -97467,7 +98244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4394), 25, + ACTIONS(4178), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -97493,605 +98270,285 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [100198] = 26, + [100810] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(4701), 1, - anon_sym_POUND_, - ACTIONS(4703), 1, - anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, - ACTIONS(4709), 1, - anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(4715), 1, - anon_sym_and, - ACTIONS(4717), 1, - anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, - ACTIONS(4723), 1, - anon_sym_repeat, - ACTIONS(4727), 1, - anon_sym_else, - ACTIONS(4813), 1, - anon_sym_RPAREN, - STATE(170), 1, - sym_accumulation_verb, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2417), 1, - aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(4721), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(4811), 2, + ACTIONS(4152), 23, sym__ws, sym_comment, - ACTIONS(4729), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1886), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(995), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2050), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [100300] = 26, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(4701), 1, anon_sym_POUND_, - ACTIONS(4703), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(4705), 1, anon_sym_POUND_CARET, - ACTIONS(4709), 1, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4154), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(4715), 1, - anon_sym_and, - ACTIONS(4717), 1, - anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, - ACTIONS(4723), 1, - anon_sym_repeat, - ACTIONS(4727), 1, - anon_sym_else, - ACTIONS(4813), 1, - anon_sym_RPAREN, - STATE(170), 1, - sym_accumulation_verb, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2417), 1, - aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(4721), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(4735), 2, - sym__ws, - sym_comment, - ACTIONS(4729), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1886), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1036), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2050), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [100402] = 26, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [100866] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(4701), 1, - anon_sym_POUND_, - ACTIONS(4703), 1, - anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, - ACTIONS(4709), 1, - anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(4715), 1, - anon_sym_and, - ACTIONS(4717), 1, - anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, - ACTIONS(4723), 1, - anon_sym_repeat, - ACTIONS(4727), 1, - anon_sym_else, - ACTIONS(4785), 1, - anon_sym_RPAREN, - STATE(170), 1, - sym_accumulation_verb, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2417), 1, - aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(4721), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(4735), 2, + ACTIONS(4168), 23, sym__ws, sym_comment, - ACTIONS(4729), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1886), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1036), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2050), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [100504] = 26, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(4701), 1, anon_sym_POUND_, - ACTIONS(4703), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(4705), 1, anon_sym_POUND_CARET, - ACTIONS(4709), 1, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4170), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(4715), 1, - anon_sym_and, - ACTIONS(4717), 1, - anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, - ACTIONS(4723), 1, - anon_sym_repeat, - ACTIONS(4727), 1, - anon_sym_else, - ACTIONS(4817), 1, - anon_sym_RPAREN, - STATE(170), 1, - sym_accumulation_verb, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2417), 1, - aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(4721), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(4815), 2, - sym__ws, - sym_comment, - ACTIONS(4729), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1886), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(989), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2050), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [100606] = 26, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [100922] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(4701), 1, - anon_sym_POUND_, - ACTIONS(4703), 1, - anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, - ACTIONS(4709), 1, - anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(4715), 1, - anon_sym_and, - ACTIONS(4717), 1, - anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, - ACTIONS(4723), 1, - anon_sym_repeat, - ACTIONS(4727), 1, - anon_sym_else, - ACTIONS(4817), 1, - anon_sym_RPAREN, - STATE(170), 1, - sym_accumulation_verb, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2417), 1, - aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(4721), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(4735), 2, + ACTIONS(4184), 23, sym__ws, sym_comment, - ACTIONS(4729), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1886), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1036), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2050), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [100708] = 26, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(4701), 1, anon_sym_POUND_, - ACTIONS(4703), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(4705), 1, anon_sym_POUND_CARET, - ACTIONS(4709), 1, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4186), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(4715), 1, - anon_sym_and, - ACTIONS(4717), 1, - anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, - ACTIONS(4723), 1, - anon_sym_repeat, - ACTIONS(4727), 1, - anon_sym_else, - ACTIONS(4819), 1, - anon_sym_RPAREN, - STATE(170), 1, - sym_accumulation_verb, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2417), 1, - aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(4721), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(4735), 2, - sym__ws, - sym_comment, - ACTIONS(4729), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1886), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1036), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2050), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [100810] = 26, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [100978] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(4701), 1, + ACTIONS(4188), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(4703), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(4705), 1, anon_sym_POUND_CARET, - ACTIONS(4709), 1, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4190), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(4715), 1, - anon_sym_and, - ACTIONS(4717), 1, - anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, - ACTIONS(4723), 1, - anon_sym_repeat, - ACTIONS(4727), 1, - anon_sym_else, - ACTIONS(4819), 1, - anon_sym_RPAREN, - STATE(170), 1, - sym_accumulation_verb, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2417), 1, - aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(4721), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(4821), 2, - sym__ws, - sym_comment, - ACTIONS(4729), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1886), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1025), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2050), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [100912] = 26, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [101034] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(4701), 1, + ACTIONS(4705), 1, anon_sym_POUND_, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(4713), 1, anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, anon_sym_and, - ACTIONS(4717), 1, + ACTIONS(4721), 1, anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, ACTIONS(4723), 1, - anon_sym_repeat, + anon_sym_do, ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, anon_sym_else, - ACTIONS(4799), 1, + ACTIONS(4793), 1, anon_sym_RPAREN, - STATE(170), 1, + STATE(247), 1, sym_accumulation_verb, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2417), 1, + STATE(2421), 1, aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, + ACTIONS(4717), 2, anon_sym_for, anon_sym_as, - ACTIONS(4721), 2, + ACTIONS(4725), 2, anon_sym_while, anon_sym_until, ACTIONS(4735), 2, sym__ws, sym_comment, - ACTIONS(4729), 3, + ACTIONS(4733), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1036), 4, + STATE(1130), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, + ACTIONS(4729), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2050), 9, + STATE(2081), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -98101,10 +98558,10 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [101014] = 3, + [101136] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4236), 23, + ACTIONS(4192), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -98128,7 +98585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4238), 25, + ACTIONS(4194), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -98154,162 +98611,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [101070] = 26, + [101192] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(4701), 1, - anon_sym_POUND_, - ACTIONS(4703), 1, - anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, - ACTIONS(4709), 1, - anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(4715), 1, - anon_sym_and, - ACTIONS(4717), 1, - anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, - ACTIONS(4723), 1, - anon_sym_repeat, - ACTIONS(4727), 1, - anon_sym_else, - ACTIONS(4825), 1, - anon_sym_RPAREN, - STATE(170), 1, - sym_accumulation_verb, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2417), 1, - aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(4721), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(4823), 2, + ACTIONS(4208), 23, sym__ws, sym_comment, - ACTIONS(4729), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1886), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(999), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2050), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [101172] = 26, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(4701), 1, anon_sym_POUND_, - ACTIONS(4703), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(4705), 1, anon_sym_POUND_CARET, - ACTIONS(4709), 1, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4210), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(4715), 1, - anon_sym_and, - ACTIONS(4717), 1, - anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, - ACTIONS(4723), 1, - anon_sym_repeat, - ACTIONS(4727), 1, - anon_sym_else, - ACTIONS(4829), 1, - anon_sym_RPAREN, - STATE(170), 1, - sym_accumulation_verb, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2417), 1, - aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(4721), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(4827), 2, - sym__ws, - sym_comment, - ACTIONS(4729), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1886), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(979), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2050), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [101274] = 3, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [101248] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4148), 23, + ACTIONS(4344), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -98333,7 +98691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4150), 25, + ACTIONS(4346), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -98359,170 +98717,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [101330] = 26, + [101304] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(4701), 1, + ACTIONS(4212), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(4703), 1, - anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, - ACTIONS(4709), 1, - anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(4715), 1, - anon_sym_and, - ACTIONS(4717), 1, - anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, - ACTIONS(4723), 1, - anon_sym_repeat, - ACTIONS(4727), 1, - anon_sym_else, - ACTIONS(4833), 1, - anon_sym_RPAREN, - STATE(170), 1, - sym_accumulation_verb, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2417), 1, - aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(4721), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(4831), 2, - sym__ws, - sym_comment, - ACTIONS(4729), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1886), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1000), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2050), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [101432] = 26, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(4701), 1, - anon_sym_POUND_, - ACTIONS(4703), 1, - anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, - ACTIONS(4709), 1, - anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(4715), 1, - anon_sym_and, - ACTIONS(4717), 1, - anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, - ACTIONS(4723), 1, - anon_sym_repeat, - ACTIONS(4727), 1, - anon_sym_else, - ACTIONS(4837), 1, - anon_sym_RPAREN, - STATE(170), 1, - sym_accumulation_verb, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2417), 1, - aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(4721), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(4835), 2, - sym__ws, - sym_comment, - ACTIONS(4729), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1886), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1136), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2050), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [101534] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4839), 1, - anon_sym_COLON, - ACTIONS(4841), 1, - anon_sym_COLON_COLON, - ACTIONS(4152), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_DQUOTE, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -98541,10 +98744,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4154), 24, + ACTIONS(4214), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, @@ -98566,162 +98770,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [101594] = 26, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(4701), 1, - anon_sym_POUND_, - ACTIONS(4703), 1, - anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, - ACTIONS(4709), 1, - anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(4715), 1, - anon_sym_and, - ACTIONS(4717), 1, - anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, - ACTIONS(4723), 1, - anon_sym_repeat, - ACTIONS(4727), 1, - anon_sym_else, - ACTIONS(4843), 1, - anon_sym_RPAREN, - STATE(170), 1, - sym_accumulation_verb, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2417), 1, - aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(4721), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(4735), 2, - sym__ws, - sym_comment, - ACTIONS(4729), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1886), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1036), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2050), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [101696] = 26, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(4701), 1, - anon_sym_POUND_, - ACTIONS(4703), 1, - anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, - ACTIONS(4709), 1, - anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(4715), 1, - anon_sym_and, - ACTIONS(4717), 1, - anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, - ACTIONS(4723), 1, - anon_sym_repeat, - ACTIONS(4727), 1, - anon_sym_else, - ACTIONS(4843), 1, - anon_sym_RPAREN, - STATE(170), 1, - sym_accumulation_verb, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2417), 1, - aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(4721), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(4845), 2, - sym__ws, - sym_comment, - ACTIONS(4729), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1886), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1019), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2050), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [101798] = 3, + [101360] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4160), 23, + ACTIONS(4220), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -98745,7 +98797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4162), 25, + ACTIONS(4222), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -98771,86 +98823,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [101854] = 26, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(4701), 1, - anon_sym_POUND_, - ACTIONS(4703), 1, - anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, - ACTIONS(4709), 1, - anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(4715), 1, - anon_sym_and, - ACTIONS(4717), 1, - anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, - ACTIONS(4723), 1, - anon_sym_repeat, - ACTIONS(4727), 1, - anon_sym_else, - ACTIONS(4847), 1, - anon_sym_RPAREN, - STATE(170), 1, - sym_accumulation_verb, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2417), 1, - aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(4721), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(4735), 2, - sym__ws, - sym_comment, - ACTIONS(4729), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1886), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1036), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2050), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [101956] = 3, + [101416] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4164), 23, + ACTIONS(4224), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -98874,7 +98850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4166), 25, + ACTIONS(4226), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -98900,162 +98876,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [102012] = 26, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(4701), 1, - anon_sym_POUND_, - ACTIONS(4703), 1, - anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, - ACTIONS(4709), 1, - anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(4715), 1, - anon_sym_and, - ACTIONS(4717), 1, - anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, - ACTIONS(4723), 1, - anon_sym_repeat, - ACTIONS(4727), 1, - anon_sym_else, - ACTIONS(4851), 1, - anon_sym_RPAREN, - STATE(170), 1, - sym_accumulation_verb, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2417), 1, - aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(4721), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(4849), 2, - sym__ws, - sym_comment, - ACTIONS(4729), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1886), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1079), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2050), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [102114] = 26, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(4701), 1, - anon_sym_POUND_, - ACTIONS(4703), 1, - anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, - ACTIONS(4709), 1, - anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(4715), 1, - anon_sym_and, - ACTIONS(4717), 1, - anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, - ACTIONS(4723), 1, - anon_sym_repeat, - ACTIONS(4727), 1, - anon_sym_else, - ACTIONS(4851), 1, - anon_sym_RPAREN, - STATE(170), 1, - sym_accumulation_verb, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2417), 1, - aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(4721), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(4735), 2, - sym__ws, - sym_comment, - ACTIONS(4729), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1886), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1036), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2050), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [102216] = 3, + [101472] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4168), 23, + ACTIONS(4232), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -99079,7 +98903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4170), 25, + ACTIONS(4234), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -99105,86 +98929,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [102272] = 26, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(4701), 1, - anon_sym_POUND_, - ACTIONS(4703), 1, - anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, - ACTIONS(4709), 1, - anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(4715), 1, - anon_sym_and, - ACTIONS(4717), 1, - anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, - ACTIONS(4723), 1, - anon_sym_repeat, - ACTIONS(4727), 1, - anon_sym_else, - ACTIONS(4853), 1, - anon_sym_RPAREN, - STATE(170), 1, - sym_accumulation_verb, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2417), 1, - aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(4721), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(4735), 2, - sym__ws, - sym_comment, - ACTIONS(4729), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1886), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1036), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2050), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [102374] = 3, + [101528] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4176), 23, + ACTIONS(4236), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -99208,7 +98956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4178), 25, + ACTIONS(4238), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -99234,10 +98982,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [102430] = 3, + [101584] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4172), 23, + ACTIONS(4248), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -99261,7 +99009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4174), 25, + ACTIONS(4250), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -99287,17 +99035,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [102486] = 5, + [101640] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4839), 1, - anon_sym_COLON, - ACTIONS(4841), 1, - anon_sym_COLON_COLON, - ACTIONS(4176), 22, + ACTIONS(4252), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -99317,10 +99062,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4178), 24, + ACTIONS(4254), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, @@ -99342,390 +99088,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [102546] = 26, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(4701), 1, - anon_sym_POUND_, - ACTIONS(4703), 1, - anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, - ACTIONS(4709), 1, - anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(4715), 1, - anon_sym_and, - ACTIONS(4717), 1, - anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, - ACTIONS(4723), 1, - anon_sym_repeat, - ACTIONS(4727), 1, - anon_sym_else, - ACTIONS(4855), 1, - anon_sym_RPAREN, - STATE(170), 1, - sym_accumulation_verb, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2417), 1, - aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(4721), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(4735), 2, - sym__ws, - sym_comment, - ACTIONS(4729), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1886), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1036), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2050), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [102648] = 26, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(4701), 1, - anon_sym_POUND_, - ACTIONS(4703), 1, - anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, - ACTIONS(4709), 1, - anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(4715), 1, - anon_sym_and, - ACTIONS(4717), 1, - anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, - ACTIONS(4723), 1, - anon_sym_repeat, - ACTIONS(4727), 1, - anon_sym_else, - ACTIONS(4859), 1, - anon_sym_RPAREN, - STATE(170), 1, - sym_accumulation_verb, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2417), 1, - aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(4721), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(4857), 2, - sym__ws, - sym_comment, - ACTIONS(4729), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1886), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1016), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2050), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [102750] = 26, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(4701), 1, - anon_sym_POUND_, - ACTIONS(4703), 1, - anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, - ACTIONS(4709), 1, - anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(4715), 1, - anon_sym_and, - ACTIONS(4717), 1, - anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, - ACTIONS(4723), 1, - anon_sym_repeat, - ACTIONS(4727), 1, - anon_sym_else, - ACTIONS(4859), 1, - anon_sym_RPAREN, - STATE(170), 1, - sym_accumulation_verb, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2417), 1, - aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(4721), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(4735), 2, - sym__ws, - sym_comment, - ACTIONS(4729), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1886), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1036), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2050), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [102852] = 26, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(4701), 1, - anon_sym_POUND_, - ACTIONS(4703), 1, - anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, - ACTIONS(4709), 1, - anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(4715), 1, - anon_sym_and, - ACTIONS(4717), 1, - anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, - ACTIONS(4723), 1, - anon_sym_repeat, - ACTIONS(4727), 1, - anon_sym_else, - ACTIONS(4861), 1, - anon_sym_RPAREN, - STATE(170), 1, - sym_accumulation_verb, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2417), 1, - aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(4721), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(4735), 2, - sym__ws, - sym_comment, - ACTIONS(4729), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1886), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1036), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2050), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [102954] = 26, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(4701), 1, - anon_sym_POUND_, - ACTIONS(4703), 1, - anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, - ACTIONS(4709), 1, - anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(4715), 1, - anon_sym_and, - ACTIONS(4717), 1, - anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, - ACTIONS(4723), 1, - anon_sym_repeat, - ACTIONS(4727), 1, - anon_sym_else, - ACTIONS(4861), 1, - anon_sym_RPAREN, - STATE(170), 1, - sym_accumulation_verb, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2417), 1, - aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(4721), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(4863), 2, - sym__ws, - sym_comment, - ACTIONS(4729), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1886), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1027), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2050), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [103056] = 3, + [101696] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4180), 23, + ACTIONS(4256), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -99749,7 +99115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4182), 25, + ACTIONS(4258), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -99775,10 +99141,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [103112] = 3, + [101752] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4184), 23, + ACTIONS(4260), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -99802,7 +99168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4186), 25, + ACTIONS(4262), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -99828,86 +99194,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [103168] = 26, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(4701), 1, - anon_sym_POUND_, - ACTIONS(4703), 1, - anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, - ACTIONS(4709), 1, - anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(4715), 1, - anon_sym_and, - ACTIONS(4717), 1, - anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, - ACTIONS(4723), 1, - anon_sym_repeat, - ACTIONS(4727), 1, - anon_sym_else, - ACTIONS(4867), 1, - anon_sym_RPAREN, - STATE(170), 1, - sym_accumulation_verb, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2417), 1, - aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(4721), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(4865), 2, - sym__ws, - sym_comment, - ACTIONS(4729), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1886), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1135), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2050), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [103270] = 3, + [101808] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4188), 23, + ACTIONS(4264), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -99931,7 +99221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4190), 25, + ACTIONS(4266), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -99957,10 +99247,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [103326] = 3, + [101864] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4192), 23, + ACTIONS(4268), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -99984,7 +99274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4194), 25, + ACTIONS(4270), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -100010,10 +99300,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [103382] = 3, + [101920] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4196), 23, + ACTIONS(4272), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -100037,7 +99327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4198), 25, + ACTIONS(4274), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -100063,86 +99353,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [103438] = 26, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4872), 1, - anon_sym_POUND_, - ACTIONS(4875), 1, - anon_sym_CARET, - ACTIONS(4878), 1, - anon_sym_POUND_CARET, - ACTIONS(4881), 1, - anon_sym_LPAREN, - ACTIONS(4884), 1, - anon_sym_RPAREN, - ACTIONS(4886), 1, - anon_sym_cl, - ACTIONS(4889), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(4895), 1, - anon_sym_and, - ACTIONS(4898), 1, - anon_sym_with, - ACTIONS(4901), 1, - anon_sym_do, - ACTIONS(4907), 1, - anon_sym_repeat, - ACTIONS(4913), 1, - anon_sym_else, - STATE(170), 1, - sym_accumulation_verb, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2417), 1, - aux_sym_list_lit_repeat1, - ACTIONS(4869), 2, - sym__ws, - sym_comment, - ACTIONS(4892), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(4904), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(4916), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1886), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1036), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(4910), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2050), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [103540] = 3, + [101976] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4200), 23, + ACTIONS(4284), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -100166,7 +99380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4202), 25, + ACTIONS(4286), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -100192,86 +99406,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [103596] = 26, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(4701), 1, - anon_sym_POUND_, - ACTIONS(4703), 1, - anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, - ACTIONS(4709), 1, - anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(4715), 1, - anon_sym_and, - ACTIONS(4717), 1, - anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, - ACTIONS(4723), 1, - anon_sym_repeat, - ACTIONS(4727), 1, - anon_sym_else, - ACTIONS(4867), 1, - anon_sym_RPAREN, - STATE(170), 1, - sym_accumulation_verb, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2417), 1, - aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(4721), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(4735), 2, - sym__ws, - sym_comment, - ACTIONS(4729), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1886), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1036), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2050), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [103698] = 3, + [102032] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4180), 23, + ACTIONS(4288), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -100295,7 +99433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4182), 25, + ACTIONS(4290), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -100321,10 +99459,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [103754] = 3, + [102088] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4204), 23, + ACTIONS(4368), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -100348,7 +99486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4206), 25, + ACTIONS(4370), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -100374,91 +99512,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [103810] = 26, + [102144] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(4701), 1, + ACTIONS(4144), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(4703), 1, - anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, - ACTIONS(4709), 1, - anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(4715), 1, - anon_sym_and, - ACTIONS(4717), 1, - anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, - ACTIONS(4723), 1, - anon_sym_repeat, - ACTIONS(4727), 1, - anon_sym_else, - ACTIONS(4921), 1, - anon_sym_RPAREN, - STATE(170), 1, - sym_accumulation_verb, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2417), 1, - aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(4721), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(4919), 2, - sym__ws, - sym_comment, - ACTIONS(4729), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1886), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(973), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2050), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [103912] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4208), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -100477,7 +99539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4210), 25, + ACTIONS(4146), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -100503,10 +99565,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [103968] = 3, + [102200] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4212), 23, + ACTIONS(4396), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -100530,7 +99592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4214), 25, + ACTIONS(4398), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -100556,86 +99618,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [104024] = 26, + [102256] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(4701), 1, - anon_sym_POUND_, - ACTIONS(4703), 1, - anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, - ACTIONS(4709), 1, - anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(4715), 1, - anon_sym_and, - ACTIONS(4717), 1, - anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, - ACTIONS(4723), 1, - anon_sym_repeat, - ACTIONS(4727), 1, - anon_sym_else, - ACTIONS(4853), 1, - anon_sym_RPAREN, - STATE(170), 1, - sym_accumulation_verb, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2417), 1, - aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(4721), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(4923), 2, - sym__ws, - sym_comment, - ACTIONS(4729), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1886), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(991), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2050), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [104126] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4216), 23, + ACTIONS(4244), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -100659,7 +99645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4218), 25, + ACTIONS(4246), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -100685,10 +99671,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [104182] = 3, + [102312] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4220), 23, + ACTIONS(4280), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -100712,7 +99698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4222), 25, + ACTIONS(4282), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -100738,86 +99724,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [104238] = 26, + [102368] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(4701), 1, - anon_sym_POUND_, - ACTIONS(4703), 1, - anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, - ACTIONS(4709), 1, - anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(4715), 1, - anon_sym_and, - ACTIONS(4717), 1, - anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, - ACTIONS(4723), 1, - anon_sym_repeat, - ACTIONS(4727), 1, - anon_sym_else, - ACTIONS(4927), 1, - anon_sym_RPAREN, - STATE(170), 1, - sym_accumulation_verb, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2417), 1, - aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(4721), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(4925), 2, - sym__ws, - sym_comment, - ACTIONS(4729), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1886), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(968), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2050), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [104340] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4224), 23, + ACTIONS(4320), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -100841,7 +99751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4226), 25, + ACTIONS(4322), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -100867,73 +99777,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [104396] = 26, + [102424] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(4701), 1, + ACTIONS(4705), 1, anon_sym_POUND_, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(4713), 1, anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, anon_sym_and, - ACTIONS(4717), 1, + ACTIONS(4721), 1, anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, ACTIONS(4723), 1, - anon_sym_repeat, + anon_sym_do, ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, anon_sym_else, - ACTIONS(4929), 1, + ACTIONS(4795), 1, anon_sym_RPAREN, - STATE(170), 1, + STATE(247), 1, sym_accumulation_verb, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2417), 1, + STATE(2421), 1, aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, + ACTIONS(4717), 2, anon_sym_for, anon_sym_as, - ACTIONS(4721), 2, + ACTIONS(4725), 2, anon_sym_while, anon_sym_until, ACTIONS(4735), 2, sym__ws, sym_comment, - ACTIONS(4729), 3, + ACTIONS(4733), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1036), 4, + STATE(1130), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, + ACTIONS(4729), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2050), 9, + STATE(2081), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -100943,225 +99853,73 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [104498] = 26, + [102526] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(4701), 1, - anon_sym_POUND_, - ACTIONS(4703), 1, - anon_sym_CARET, ACTIONS(4705), 1, - anon_sym_POUND_CARET, - ACTIONS(4709), 1, - anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(4715), 1, - anon_sym_and, - ACTIONS(4717), 1, - anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, - ACTIONS(4723), 1, - anon_sym_repeat, - ACTIONS(4727), 1, - anon_sym_else, - ACTIONS(4933), 1, - anon_sym_RPAREN, - STATE(170), 1, - sym_accumulation_verb, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2417), 1, - aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(4721), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(4931), 2, - sym__ws, - sym_comment, - ACTIONS(4729), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1886), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1028), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2050), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [104600] = 26, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(4701), 1, anon_sym_POUND_, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, ACTIONS(4709), 1, - anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(4715), 1, - anon_sym_and, - ACTIONS(4717), 1, - anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, - ACTIONS(4723), 1, - anon_sym_repeat, - ACTIONS(4727), 1, - anon_sym_else, - ACTIONS(4937), 1, - anon_sym_RPAREN, - STATE(170), 1, - sym_accumulation_verb, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2417), 1, - aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(4721), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(4935), 2, - sym__ws, - sym_comment, - ACTIONS(4729), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1886), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1049), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2050), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [104702] = 26, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(4701), 1, - anon_sym_POUND_, - ACTIONS(4703), 1, - anon_sym_CARET, - ACTIONS(4705), 1, anon_sym_POUND_CARET, - ACTIONS(4709), 1, + ACTIONS(4713), 1, anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, anon_sym_and, - ACTIONS(4717), 1, + ACTIONS(4721), 1, anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, ACTIONS(4723), 1, - anon_sym_repeat, + anon_sym_do, ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, anon_sym_else, - ACTIONS(4933), 1, + ACTIONS(4799), 1, anon_sym_RPAREN, - STATE(170), 1, + STATE(247), 1, sym_accumulation_verb, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2417), 1, + STATE(2421), 1, aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, + ACTIONS(4717), 2, anon_sym_for, anon_sym_as, - ACTIONS(4721), 2, + ACTIONS(4725), 2, anon_sym_while, anon_sym_until, - ACTIONS(4735), 2, + ACTIONS(4797), 2, sym__ws, sym_comment, - ACTIONS(4729), 3, + ACTIONS(4733), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1036), 4, + STATE(1159), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, + ACTIONS(4729), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2050), 9, + STATE(2081), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -101171,73 +99929,73 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [104804] = 26, + [102628] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(4701), 1, + ACTIONS(4705), 1, anon_sym_POUND_, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(4713), 1, anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, anon_sym_and, - ACTIONS(4717), 1, + ACTIONS(4721), 1, anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, ACTIONS(4723), 1, - anon_sym_repeat, + anon_sym_do, ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, anon_sym_else, - ACTIONS(4753), 1, + ACTIONS(4803), 1, anon_sym_RPAREN, - STATE(170), 1, + STATE(247), 1, sym_accumulation_verb, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2417), 1, + STATE(2421), 1, aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, + ACTIONS(4717), 2, anon_sym_for, anon_sym_as, - ACTIONS(4721), 2, + ACTIONS(4725), 2, anon_sym_while, anon_sym_until, - ACTIONS(4735), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(4729), 3, + ACTIONS(4733), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1036), 4, + STATE(1135), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, + ACTIONS(4729), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2050), 9, + STATE(2081), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -101247,10 +100005,10 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [104906] = 3, + [102730] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4276), 23, + ACTIONS(4324), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -101274,7 +100032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4278), 25, + ACTIONS(4326), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -101300,10 +100058,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [104962] = 3, + [102786] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4276), 23, + ACTIONS(4336), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -101327,7 +100085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4278), 25, + ACTIONS(4338), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -101353,73 +100111,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [105018] = 26, + [102842] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(4701), 1, + ACTIONS(4705), 1, anon_sym_POUND_, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(4713), 1, anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, anon_sym_and, - ACTIONS(4717), 1, + ACTIONS(4721), 1, anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, ACTIONS(4723), 1, - anon_sym_repeat, + anon_sym_do, ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, anon_sym_else, - ACTIONS(4937), 1, + ACTIONS(4805), 1, anon_sym_RPAREN, - STATE(170), 1, + STATE(247), 1, sym_accumulation_verb, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2417), 1, + STATE(2421), 1, aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, + ACTIONS(4717), 2, anon_sym_for, anon_sym_as, - ACTIONS(4721), 2, + ACTIONS(4725), 2, anon_sym_while, anon_sym_until, ACTIONS(4735), 2, sym__ws, sym_comment, - ACTIONS(4729), 3, + ACTIONS(4733), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1036), 4, + STATE(1130), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, + ACTIONS(4729), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2050), 9, + STATE(2081), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -101429,10 +100187,86 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [105120] = 3, + [102944] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4140), 23, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(4705), 1, + anon_sym_POUND_, + ACTIONS(4707), 1, + anon_sym_CARET, + ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(4713), 1, + anon_sym_cl, + ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, + anon_sym_and, + ACTIONS(4721), 1, + anon_sym_with, + ACTIONS(4723), 1, + anon_sym_do, + ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, + anon_sym_else, + ACTIONS(4809), 1, + anon_sym_RPAREN, + STATE(247), 1, + sym_accumulation_verb, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2421), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4717), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4725), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4807), 2, + sym__ws, + sym_comment, + ACTIONS(4733), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1021), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4729), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2081), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [103046] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4340), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -101456,7 +100290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4142), 25, + ACTIONS(4342), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -101482,10 +100316,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [105176] = 3, + [103102] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4400), 23, + ACTIONS(4356), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -101509,7 +100343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4402), 25, + ACTIONS(4358), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -101535,10 +100369,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [105232] = 3, + [103158] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4460), 23, + ACTIONS(4364), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -101562,7 +100396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4462), 25, + ACTIONS(4366), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -101588,10 +100422,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [105288] = 3, + [103214] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4460), 23, + ACTIONS(4376), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -101615,7 +100449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4462), 25, + ACTIONS(4378), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -101641,73 +100475,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [105344] = 26, + [103270] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(4701), 1, + ACTIONS(4705), 1, anon_sym_POUND_, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(4713), 1, anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, anon_sym_and, - ACTIONS(4717), 1, + ACTIONS(4721), 1, anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, ACTIONS(4723), 1, - anon_sym_repeat, + anon_sym_do, ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, anon_sym_else, - ACTIONS(4939), 1, + ACTIONS(4813), 1, anon_sym_RPAREN, - STATE(170), 1, + STATE(247), 1, sym_accumulation_verb, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2417), 1, + STATE(2421), 1, aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, + ACTIONS(4717), 2, anon_sym_for, anon_sym_as, - ACTIONS(4721), 2, + ACTIONS(4725), 2, anon_sym_while, anon_sym_until, - ACTIONS(4735), 2, + ACTIONS(4811), 2, sym__ws, sym_comment, - ACTIONS(4729), 3, + ACTIONS(4733), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1036), 4, + STATE(997), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, + ACTIONS(4729), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2050), 9, + STATE(2081), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -101717,10 +100551,10 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [105446] = 3, + [103372] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4140), 23, + ACTIONS(4380), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -101744,7 +100578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4142), 25, + ACTIONS(4382), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -101770,126 +100604,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [105502] = 3, + [103428] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4400), 23, - sym__ws, - sym_comment, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(4705), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(4707), 1, anon_sym_CARET, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4402), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(4713), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [105558] = 26, + ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, + anon_sym_and, + ACTIONS(4721), 1, + anon_sym_with, + ACTIONS(4723), 1, + anon_sym_do, + ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, + anon_sym_else, + ACTIONS(4815), 1, + anon_sym_RPAREN, + STATE(247), 1, + sym_accumulation_verb, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2421), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4717), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4725), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4735), 2, + sym__ws, + sym_comment, + ACTIONS(4733), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1130), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4729), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2081), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [103530] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(4701), 1, + ACTIONS(4705), 1, anon_sym_POUND_, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(4713), 1, anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, anon_sym_and, - ACTIONS(4717), 1, + ACTIONS(4721), 1, anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, ACTIONS(4723), 1, - anon_sym_repeat, + anon_sym_do, ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, anon_sym_else, - ACTIONS(4779), 1, + ACTIONS(4815), 1, anon_sym_RPAREN, - STATE(170), 1, + STATE(247), 1, sym_accumulation_verb, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2417), 1, + STATE(2421), 1, aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, + ACTIONS(4717), 2, anon_sym_for, anon_sym_as, - ACTIONS(4721), 2, + ACTIONS(4725), 2, anon_sym_while, anon_sym_until, - ACTIONS(4735), 2, + ACTIONS(4817), 2, sym__ws, sym_comment, - ACTIONS(4729), 3, + ACTIONS(4733), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1036), 4, + STATE(1091), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, + ACTIONS(4729), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2050), 9, + STATE(2081), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -101899,10 +100756,10 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [105660] = 3, + [103632] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4460), 23, + ACTIONS(4388), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -101926,7 +100783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4462), 25, + ACTIONS(4390), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -101952,10 +100809,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [105716] = 3, + [103688] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4512), 23, + ACTIONS(4144), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -101979,7 +100836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4514), 25, + ACTIONS(4146), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -102005,10 +100862,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [105772] = 3, + [103744] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4508), 23, + ACTIONS(4408), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -102032,7 +100889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4510), 25, + ACTIONS(4410), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -102058,10 +100915,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [105828] = 3, + [103800] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4504), 23, + ACTIONS(4412), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -102085,7 +100942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4506), 25, + ACTIONS(4414), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -102111,10 +100968,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [105884] = 3, + [103856] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4500), 23, + ACTIONS(4428), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -102138,7 +100995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4502), 25, + ACTIONS(4430), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -102164,10 +101021,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [105940] = 3, + [103912] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4504), 23, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(4705), 1, + anon_sym_POUND_, + ACTIONS(4707), 1, + anon_sym_CARET, + ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(4711), 1, + anon_sym_RPAREN, + ACTIONS(4713), 1, + anon_sym_cl, + ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, + anon_sym_and, + ACTIONS(4721), 1, + anon_sym_with, + ACTIONS(4723), 1, + anon_sym_do, + ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, + anon_sym_else, + STATE(247), 1, + sym_accumulation_verb, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2421), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4717), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4725), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4735), 2, + sym__ws, + sym_comment, + ACTIONS(4733), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1130), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4729), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2081), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [104014] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4440), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -102191,7 +101124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4506), 25, + ACTIONS(4442), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -102217,10 +101150,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [105996] = 3, + [104070] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4500), 23, + ACTIONS(4144), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -102244,7 +101177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4502), 25, + ACTIONS(4146), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -102270,14 +101203,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [106052] = 3, + [104126] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4496), 23, + ACTIONS(4819), 1, + anon_sym_COLON, + ACTIONS(4821), 1, + anon_sym_COLON_COLON, + ACTIONS(4464), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -102297,11 +101233,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4498), 25, + ACTIONS(4466), 24, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, @@ -102323,10 +101258,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [106108] = 3, + [104186] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4508), 23, + ACTIONS(4472), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -102350,7 +101285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4510), 25, + ACTIONS(4474), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -102376,10 +101311,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [106164] = 3, + [104242] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4504), 23, + ACTIONS(4464), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -102403,7 +101338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4506), 25, + ACTIONS(4466), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -102429,10 +101364,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [106220] = 3, + [104298] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4500), 23, + ACTIONS(4480), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -102456,7 +101391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4502), 25, + ACTIONS(4482), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -102482,10 +101417,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [106276] = 3, + [104354] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4504), 23, + ACTIONS(4488), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -102509,7 +101444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4506), 25, + ACTIONS(4490), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -102535,10 +101470,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [106332] = 3, + [104410] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4500), 23, + ACTIONS(4492), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -102562,7 +101497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4502), 25, + ACTIONS(4494), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -102588,14 +101523,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [106388] = 3, + [104466] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4496), 23, + ACTIONS(4819), 1, + anon_sym_COLON, + ACTIONS(4821), 1, + anon_sym_COLON_COLON, + ACTIONS(4496), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -102615,11 +101553,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4498), 25, + ACTIONS(4498), 24, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, @@ -102641,162 +101578,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [106444] = 26, + [104526] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(4701), 1, - anon_sym_POUND_, - ACTIONS(4703), 1, - anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, - ACTIONS(4709), 1, - anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(4715), 1, - anon_sym_and, - ACTIONS(4717), 1, - anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, - ACTIONS(4723), 1, - anon_sym_repeat, - ACTIONS(4727), 1, - anon_sym_else, - ACTIONS(4941), 1, - anon_sym_RPAREN, - STATE(170), 1, - sym_accumulation_verb, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2417), 1, - aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(4721), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(4735), 2, + ACTIONS(4819), 1, + anon_sym_COLON, + ACTIONS(4821), 1, + anon_sym_COLON_COLON, + ACTIONS(4500), 22, sym__ws, sym_comment, - ACTIONS(4729), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1886), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1036), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2050), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [106546] = 26, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(4701), 1, anon_sym_POUND_, - ACTIONS(4703), 1, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(4705), 1, anon_sym_POUND_CARET, - ACTIONS(4709), 1, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4502), 24, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(4715), 1, - anon_sym_and, - ACTIONS(4717), 1, - anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, - ACTIONS(4723), 1, - anon_sym_repeat, - ACTIONS(4727), 1, - anon_sym_else, - ACTIONS(4941), 1, - anon_sym_RPAREN, - STATE(170), 1, - sym_accumulation_verb, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2417), 1, - aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(4721), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(4943), 2, - sym__ws, - sym_comment, - ACTIONS(4729), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1886), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1084), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2050), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [106648] = 3, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [104586] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4492), 23, + ACTIONS(4512), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -102820,7 +101660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4494), 25, + ACTIONS(4514), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -102846,10 +101686,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [106704] = 3, + [104642] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4488), 23, + ACTIONS(4404), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -102873,7 +101713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4490), 25, + ACTIONS(4406), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -102899,10 +101739,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [106760] = 3, + [104698] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4484), 23, + ACTIONS(4140), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -102926,7 +101766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4486), 25, + ACTIONS(4142), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -102952,86 +101792,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [106816] = 26, + [104754] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(4701), 1, + ACTIONS(4416), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(4703), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(4705), 1, anon_sym_POUND_CARET, - ACTIONS(4709), 1, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4418), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(4715), 1, - anon_sym_and, - ACTIONS(4717), 1, - anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, - ACTIONS(4723), 1, - anon_sym_repeat, - ACTIONS(4727), 1, - anon_sym_else, - ACTIONS(4945), 1, - anon_sym_RPAREN, - STATE(170), 1, - sym_accumulation_verb, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2417), 1, - aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(4721), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(4735), 2, - sym__ws, - sym_comment, - ACTIONS(4729), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1886), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1036), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2050), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [106918] = 3, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [104810] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4480), 23, + ACTIONS(4420), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -103055,7 +101872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4482), 25, + ACTIONS(4422), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -103081,10 +101898,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [106974] = 3, + [104866] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4480), 23, + ACTIONS(4432), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -103108,7 +101925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4482), 25, + ACTIONS(4434), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -103134,10 +101951,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [107030] = 3, + [104922] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4476), 23, + ACTIONS(4432), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -103161,7 +101978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4478), 25, + ACTIONS(4434), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -103187,10 +102004,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [107086] = 3, + [104978] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4472), 23, + ACTIONS(4416), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -103214,7 +102031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4474), 25, + ACTIONS(4418), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -103240,86 +102057,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [107142] = 26, + [105034] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(4701), 1, + ACTIONS(4420), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(4703), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(4705), 1, anon_sym_POUND_CARET, - ACTIONS(4709), 1, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4422), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(4715), 1, - anon_sym_and, - ACTIONS(4717), 1, - anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, - ACTIONS(4723), 1, - anon_sym_repeat, - ACTIONS(4727), 1, - anon_sym_else, - ACTIONS(4949), 1, - anon_sym_RPAREN, - STATE(170), 1, - sym_accumulation_verb, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2417), 1, - aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(4721), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(4947), 2, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [105090] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4432), 23, sym__ws, sym_comment, - ACTIONS(4729), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1886), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1110), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2050), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [107244] = 3, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4434), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [105146] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4480), 23, + ACTIONS(4432), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -103343,7 +102190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4482), 25, + ACTIONS(4434), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -103369,10 +102216,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [107300] = 3, + [105202] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4480), 23, + ACTIONS(4444), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -103396,7 +102243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4482), 25, + ACTIONS(4446), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -103422,10 +102269,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [107356] = 3, + [105258] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4476), 23, + ACTIONS(4448), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -103449,7 +102296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4478), 25, + ACTIONS(4450), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -103475,10 +102322,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [107412] = 3, + [105314] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4472), 23, + ACTIONS(4452), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -103502,7 +102349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4474), 25, + ACTIONS(4454), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -103528,63 +102375,238 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [107468] = 3, + [105370] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4468), 23, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(4705), 1, + anon_sym_POUND_, + ACTIONS(4707), 1, + anon_sym_CARET, + ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(4713), 1, + anon_sym_cl, + ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, + anon_sym_and, + ACTIONS(4721), 1, + anon_sym_with, + ACTIONS(4723), 1, + anon_sym_do, + ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, + anon_sym_else, + ACTIONS(4825), 1, + anon_sym_RPAREN, + STATE(247), 1, + sym_accumulation_verb, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2421), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4717), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4725), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4823), 2, sym__ws, sym_comment, + ACTIONS(4733), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1092), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4729), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2081), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [105472] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(4705), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(4707), 1, anon_sym_CARET, + ACTIONS(4709), 1, anon_sym_POUND_CARET, + ACTIONS(4713), 1, + anon_sym_cl, + ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, + anon_sym_and, + ACTIONS(4721), 1, + anon_sym_with, + ACTIONS(4723), 1, + anon_sym_do, + ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, + anon_sym_else, + ACTIONS(4825), 1, + anon_sym_RPAREN, + STATE(247), 1, + sym_accumulation_verb, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2421), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4717), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4725), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4735), 2, + sym__ws, + sym_comment, + ACTIONS(4733), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1130), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4729), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2081), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [105574] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(486), 1, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4470), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(4705), 1, + anon_sym_POUND_, + ACTIONS(4707), 1, + anon_sym_CARET, + ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(4713), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [107524] = 3, + ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, + anon_sym_and, + ACTIONS(4721), 1, + anon_sym_with, + ACTIONS(4723), 1, + anon_sym_do, + ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, + anon_sym_else, + ACTIONS(4827), 1, + anon_sym_RPAREN, + STATE(247), 1, + sym_accumulation_verb, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2421), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4717), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4725), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4735), 2, + sym__ws, + sym_comment, + ACTIONS(4733), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1130), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4729), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2081), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [105676] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4464), 23, + ACTIONS(4456), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -103608,7 +102630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4466), 25, + ACTIONS(4458), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -103634,10 +102656,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [107580] = 3, + [105732] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4456), 23, + ACTIONS(4460), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -103661,7 +102683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4458), 25, + ACTIONS(4462), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -103687,10 +102709,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [107636] = 3, + [105788] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4452), 23, + ACTIONS(4476), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -103714,7 +102736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4454), 25, + ACTIONS(4478), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -103740,10 +102762,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [107692] = 3, + [105844] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4448), 23, + ACTIONS(4460), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -103767,7 +102789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4450), 25, + ACTIONS(4462), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -103793,10 +102815,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [107748] = 3, + [105900] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4444), 23, + ACTIONS(4476), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -103820,7 +102842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4446), 25, + ACTIONS(4478), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -103846,10 +102868,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [107804] = 3, + [105956] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4444), 23, + ACTIONS(4484), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -103873,7 +102895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4446), 25, + ACTIONS(4486), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -103899,10 +102921,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [107860] = 3, + [106012] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4440), 23, + ACTIONS(4456), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -103926,7 +102948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4442), 25, + ACTIONS(4458), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -103952,10 +102974,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [107916] = 3, + [106068] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4440), 23, + ACTIONS(4460), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -103979,7 +103001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4442), 25, + ACTIONS(4462), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -104005,10 +103027,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [107972] = 3, + [106124] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4436), 23, + ACTIONS(4476), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -104032,7 +103054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4438), 25, + ACTIONS(4478), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -104058,10 +103080,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [108028] = 3, + [106180] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4432), 23, + ACTIONS(4460), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -104085,7 +103107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4434), 25, + ACTIONS(4462), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -104111,10 +103133,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [108084] = 3, + [106236] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4428), 23, + ACTIONS(4476), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -104138,7 +103160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4430), 25, + ACTIONS(4478), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -104164,10 +103186,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [108140] = 3, + [106292] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4424), 23, + ACTIONS(4484), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -104191,7 +103213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4426), 25, + ACTIONS(4486), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -104217,10 +103239,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [108196] = 3, + [106348] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4420), 23, + ACTIONS(4504), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -104244,7 +103266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4422), 25, + ACTIONS(4506), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -104270,10 +103292,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [108252] = 3, + [106404] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4416), 23, + ACTIONS(4508), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -104297,7 +103319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4418), 25, + ACTIONS(4510), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -104323,10 +103345,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [108308] = 3, + [106460] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4412), 23, + ACTIONS(4508), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -104350,7 +103372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4414), 25, + ACTIONS(4510), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -104376,73 +103398,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [108364] = 26, + [106516] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(4701), 1, + ACTIONS(4705), 1, anon_sym_POUND_, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(4713), 1, anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, anon_sym_and, - ACTIONS(4717), 1, + ACTIONS(4721), 1, anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, ACTIONS(4723), 1, + anon_sym_do, + ACTIONS(4727), 1, anon_sym_repeat, + ACTIONS(4731), 1, + anon_sym_else, + ACTIONS(4827), 1, + anon_sym_RPAREN, + STATE(247), 1, + sym_accumulation_verb, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2421), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4717), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4725), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4829), 2, + sym__ws, + sym_comment, + ACTIONS(4733), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1109), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4729), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2081), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [106618] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(4705), 1, + anon_sym_POUND_, + ACTIONS(4707), 1, + anon_sym_CARET, + ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(4713), 1, + anon_sym_cl, + ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, + anon_sym_and, + ACTIONS(4721), 1, + anon_sym_with, + ACTIONS(4723), 1, + anon_sym_do, ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, anon_sym_else, - ACTIONS(4951), 1, + ACTIONS(4831), 1, anon_sym_RPAREN, - STATE(170), 1, + STATE(247), 1, sym_accumulation_verb, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2417), 1, + STATE(2421), 1, aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, + ACTIONS(4717), 2, anon_sym_for, anon_sym_as, - ACTIONS(4721), 2, + ACTIONS(4725), 2, anon_sym_while, anon_sym_until, ACTIONS(4735), 2, sym__ws, sym_comment, - ACTIONS(4729), 3, + ACTIONS(4733), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1036), 4, + STATE(1130), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, + ACTIONS(4729), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2050), 9, + STATE(2081), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -104452,10 +103550,10 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [108466] = 3, + [106720] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4416), 23, + ACTIONS(4424), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -104479,7 +103577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4418), 25, + ACTIONS(4426), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -104505,10 +103603,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [108522] = 3, + [106776] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4412), 23, + ACTIONS(4400), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -104532,7 +103630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4414), 25, + ACTIONS(4402), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -104558,86 +103656,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [108578] = 26, + [106832] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(4701), 1, + ACTIONS(4508), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(4703), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(4705), 1, anon_sym_POUND_CARET, - ACTIONS(4709), 1, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4510), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(4715), 1, - anon_sym_and, - ACTIONS(4717), 1, - anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, - ACTIONS(4723), 1, - anon_sym_repeat, - ACTIONS(4727), 1, - anon_sym_else, - ACTIONS(4939), 1, - anon_sym_RPAREN, - STATE(170), 1, - sym_accumulation_verb, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2417), 1, - aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(4721), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(4953), 2, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [106888] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4508), 23, sym__ws, sym_comment, - ACTIONS(4729), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1886), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1056), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2050), 9, - sym_list_lit, - sym_for_clause, - sym_with_clause, - sym_do_clause, - sym_while_clause, - sym_repeat_clause, - sym_condition_clause, - sym_accumulation_clause, - sym_termination_clause, - [108680] = 3, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4510), 25, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [106944] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4408), 23, + ACTIONS(4424), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -104661,7 +103789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4410), 25, + ACTIONS(4426), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -104687,10 +103815,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [108736] = 3, + [107000] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4404), 23, + ACTIONS(4400), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -104714,113 +103842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4406), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [108792] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4144), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4146), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [108848] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4144), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4146), 25, + ACTIONS(4402), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -104846,10 +103868,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [108904] = 3, + [107056] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4396), 23, + ACTIONS(4292), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -104873,7 +103895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4398), 25, + ACTIONS(4294), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -104899,10 +103921,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [108960] = 3, + [107112] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4388), 23, + ACTIONS(4292), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -104926,7 +103948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4390), 25, + ACTIONS(4294), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -104952,73 +103974,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [109016] = 26, + [107168] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(4701), 1, + ACTIONS(4705), 1, anon_sym_POUND_, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(4713), 1, anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, anon_sym_and, - ACTIONS(4717), 1, + ACTIONS(4721), 1, anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, ACTIONS(4723), 1, - anon_sym_repeat, + anon_sym_do, ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, anon_sym_else, - ACTIONS(4957), 1, + ACTIONS(4833), 1, anon_sym_RPAREN, - STATE(170), 1, + STATE(247), 1, sym_accumulation_verb, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2417), 1, + STATE(2421), 1, aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, + ACTIONS(4717), 2, anon_sym_for, anon_sym_as, - ACTIONS(4721), 2, + ACTIONS(4725), 2, anon_sym_while, anon_sym_until, - ACTIONS(4955), 2, + ACTIONS(4735), 2, sym__ws, sym_comment, - ACTIONS(4729), 3, + ACTIONS(4733), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1052), 4, + STATE(1130), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, + ACTIONS(4729), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2050), 9, + STATE(2081), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -105028,222 +104050,10 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [109118] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4388), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4390), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [109174] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4384), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4386), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [109230] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4380), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4382), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [109286] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4376), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4378), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [109342] = 3, + [107270] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4372), 23, + ACTIONS(4352), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -105267,7 +104077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4374), 25, + ACTIONS(4354), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -105293,550 +104103,301 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [109398] = 3, + [107326] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4368), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, + ACTIONS(486), 1, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4370), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [109454] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4364), 23, - sym__ws, - sym_comment, + ACTIONS(4705), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(4707), 1, anon_sym_CARET, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4366), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(4713), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [109510] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4360), 23, + ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, + anon_sym_and, + ACTIONS(4721), 1, + anon_sym_with, + ACTIONS(4723), 1, + anon_sym_do, + ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, + anon_sym_else, + ACTIONS(4837), 1, + anon_sym_RPAREN, + STATE(247), 1, + sym_accumulation_verb, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2421), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4717), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4725), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4835), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4362), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [109566] = 3, + ACTIONS(4733), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1118), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4729), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2081), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [107428] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4356), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, + ACTIONS(486), 1, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4358), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [109622] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4352), 23, - sym__ws, - sym_comment, + ACTIONS(4705), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(4707), 1, anon_sym_CARET, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4354), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(4713), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [109678] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4348), 23, + ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, + anon_sym_and, + ACTIONS(4721), 1, + anon_sym_with, + ACTIONS(4723), 1, + anon_sym_do, + ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, + anon_sym_else, + ACTIONS(4837), 1, + anon_sym_RPAREN, + STATE(247), 1, + sym_accumulation_verb, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2421), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4717), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4725), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4735), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4350), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [109734] = 3, + ACTIONS(4733), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1130), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4729), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2081), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [107530] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4344), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, + ACTIONS(486), 1, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4346), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [109790] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4340), 23, - sym__ws, - sym_comment, + ACTIONS(4705), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(4707), 1, anon_sym_CARET, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4342), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(4713), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [109846] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4336), 23, + ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, + anon_sym_and, + ACTIONS(4721), 1, + anon_sym_with, + ACTIONS(4723), 1, + anon_sym_do, + ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, + anon_sym_else, + ACTIONS(4841), 1, + anon_sym_RPAREN, + STATE(247), 1, + sym_accumulation_verb, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2421), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4717), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4725), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4839), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4338), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [109902] = 26, + ACTIONS(4733), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1132), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4729), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2081), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [107632] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(4701), 1, + ACTIONS(4705), 1, anon_sym_POUND_, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(4713), 1, anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, anon_sym_and, - ACTIONS(4717), 1, + ACTIONS(4721), 1, anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, ACTIONS(4723), 1, - anon_sym_repeat, + anon_sym_do, ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, anon_sym_else, - ACTIONS(4837), 1, + ACTIONS(4843), 1, anon_sym_RPAREN, - STATE(170), 1, + STATE(247), 1, sym_accumulation_verb, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2417), 1, + STATE(2421), 1, aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, + ACTIONS(4717), 2, anon_sym_for, anon_sym_as, - ACTIONS(4721), 2, + ACTIONS(4725), 2, anon_sym_while, anon_sym_until, ACTIONS(4735), 2, sym__ws, sym_comment, - ACTIONS(4729), 3, + ACTIONS(4733), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1036), 4, + STATE(1130), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, + ACTIONS(4729), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2050), 9, + STATE(2081), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -105846,73 +104407,73 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [110004] = 26, + [107734] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(4701), 1, + ACTIONS(4705), 1, anon_sym_POUND_, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(4713), 1, anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, anon_sym_and, - ACTIONS(4717), 1, + ACTIONS(4721), 1, anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, ACTIONS(4723), 1, - anon_sym_repeat, + anon_sym_do, ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, anon_sym_else, - ACTIONS(4959), 1, + ACTIONS(4843), 1, anon_sym_RPAREN, - STATE(170), 1, + STATE(247), 1, sym_accumulation_verb, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2417), 1, + STATE(2421), 1, aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, + ACTIONS(4717), 2, anon_sym_for, anon_sym_as, - ACTIONS(4721), 2, + ACTIONS(4725), 2, anon_sym_while, anon_sym_until, - ACTIONS(4735), 2, + ACTIONS(4845), 2, sym__ws, sym_comment, - ACTIONS(4729), 3, + ACTIONS(4733), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1036), 4, + STATE(1121), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, + ACTIONS(4729), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2050), 9, + STATE(2081), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -105922,444 +104483,605 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [110106] = 3, + [107836] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4240), 23, - sym__ws, - sym_comment, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(4705), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(4707), 1, anon_sym_CARET, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4242), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(4713), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [110162] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4332), 23, + ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, + anon_sym_and, + ACTIONS(4721), 1, + anon_sym_with, + ACTIONS(4723), 1, + anon_sym_do, + ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, + anon_sym_else, + ACTIONS(4849), 1, + anon_sym_RPAREN, + STATE(247), 1, + sym_accumulation_verb, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2421), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4717), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4725), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4847), 2, sym__ws, sym_comment, + ACTIONS(4733), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1123), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4729), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2081), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [107938] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(4705), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(4707), 1, anon_sym_CARET, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4334), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(4713), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [110218] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4228), 23, + ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, + anon_sym_and, + ACTIONS(4721), 1, + anon_sym_with, + ACTIONS(4723), 1, + anon_sym_do, + ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, + anon_sym_else, + ACTIONS(4849), 1, + anon_sym_RPAREN, + STATE(247), 1, + sym_accumulation_verb, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2421), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4717), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4725), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4735), 2, sym__ws, sym_comment, + ACTIONS(4733), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1130), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4729), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2081), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [108040] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(4705), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(4707), 1, anon_sym_CARET, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4230), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(4713), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [110274] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4328), 23, + ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, + anon_sym_and, + ACTIONS(4721), 1, + anon_sym_with, + ACTIONS(4723), 1, + anon_sym_do, + ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, + anon_sym_else, + ACTIONS(4853), 1, + anon_sym_RPAREN, + STATE(247), 1, + sym_accumulation_verb, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2421), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4717), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4725), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4851), 2, sym__ws, sym_comment, + ACTIONS(4733), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1126), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4729), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2081), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [108142] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(4705), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(4707), 1, anon_sym_CARET, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4330), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(4713), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [110330] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4324), 23, + ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, + anon_sym_and, + ACTIONS(4721), 1, + anon_sym_with, + ACTIONS(4723), 1, + anon_sym_do, + ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, + anon_sym_else, + ACTIONS(4743), 1, + anon_sym_RPAREN, + STATE(247), 1, + sym_accumulation_verb, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2421), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4717), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4725), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4855), 2, sym__ws, sym_comment, + ACTIONS(4733), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(976), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4729), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2081), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [108244] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(4705), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(4707), 1, anon_sym_CARET, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4326), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(4713), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [110386] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4320), 23, + ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, + anon_sym_and, + ACTIONS(4721), 1, + anon_sym_with, + ACTIONS(4723), 1, + anon_sym_do, + ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, + anon_sym_else, + ACTIONS(4859), 1, + anon_sym_RPAREN, + STATE(247), 1, + sym_accumulation_verb, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2421), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4717), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4725), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4857), 2, sym__ws, sym_comment, + ACTIONS(4733), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1162), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4729), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2081), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [108346] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4864), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(4867), 1, anon_sym_CARET, + ACTIONS(4870), 1, anon_sym_POUND_CARET, + ACTIONS(4873), 1, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4322), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(4876), 1, + anon_sym_RPAREN, + ACTIONS(4878), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [110442] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4316), 23, + ACTIONS(4881), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4887), 1, + anon_sym_and, + ACTIONS(4890), 1, + anon_sym_with, + ACTIONS(4893), 1, + anon_sym_do, + ACTIONS(4899), 1, + anon_sym_repeat, + ACTIONS(4905), 1, + anon_sym_else, + STATE(247), 1, + sym_accumulation_verb, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2421), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4861), 2, sym__ws, sym_comment, + ACTIONS(4884), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4896), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4908), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1130), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4902), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2081), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [108448] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(4705), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(4707), 1, anon_sym_CARET, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4318), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(4713), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [110498] = 26, + ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, + anon_sym_and, + ACTIONS(4721), 1, + anon_sym_with, + ACTIONS(4723), 1, + anon_sym_do, + ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, + anon_sym_else, + ACTIONS(4911), 1, + anon_sym_RPAREN, + STATE(247), 1, + sym_accumulation_verb, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2421), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4717), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4725), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4735), 2, + sym__ws, + sym_comment, + ACTIONS(4733), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1130), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4729), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2081), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [108550] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(4701), 1, + ACTIONS(4705), 1, anon_sym_POUND_, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(4713), 1, anon_sym_cl, - ACTIONS(4711), 1, - aux_sym_accumulation_verb_token1, ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, anon_sym_and, - ACTIONS(4717), 1, + ACTIONS(4721), 1, anon_sym_with, - ACTIONS(4719), 1, - anon_sym_do, ACTIONS(4723), 1, - anon_sym_repeat, + anon_sym_do, ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, anon_sym_else, - ACTIONS(4951), 1, + ACTIONS(4859), 1, anon_sym_RPAREN, - STATE(170), 1, + STATE(247), 1, sym_accumulation_verb, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2417), 1, + STATE(2421), 1, aux_sym_list_lit_repeat1, - ACTIONS(4713), 2, + ACTIONS(4717), 2, anon_sym_for, anon_sym_as, - ACTIONS(4721), 2, + ACTIONS(4725), 2, anon_sym_while, anon_sym_until, - ACTIONS(4961), 2, + ACTIONS(4735), 2, sym__ws, sym_comment, - ACTIONS(4729), 3, + ACTIONS(4733), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1886), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1061), 4, + STATE(1130), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4725), 6, + ACTIONS(4729), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2050), 9, + STATE(2081), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -106369,63 +105091,86 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [110600] = 3, + [108652] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4312), 23, - sym__ws, - sym_comment, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(4705), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(4707), 1, anon_sym_CARET, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4314), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(4713), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [110656] = 3, + ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, + anon_sym_and, + ACTIONS(4721), 1, + anon_sym_with, + ACTIONS(4723), 1, + anon_sym_do, + ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, + anon_sym_else, + ACTIONS(4913), 1, + anon_sym_RPAREN, + STATE(247), 1, + sym_accumulation_verb, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2421), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4717), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4725), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4735), 2, + sym__ws, + sym_comment, + ACTIONS(4733), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1130), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4729), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2081), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [108754] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4308), 23, + ACTIONS(4360), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -106449,7 +105194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4310), 25, + ACTIONS(4362), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -106475,487 +105220,694 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [110712] = 3, + [108810] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4304), 23, - sym__ws, - sym_comment, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(4705), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(4707), 1, anon_sym_CARET, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4306), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(4713), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [110768] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4300), 23, + ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, + anon_sym_and, + ACTIONS(4721), 1, + anon_sym_with, + ACTIONS(4723), 1, + anon_sym_do, + ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, + anon_sym_else, + ACTIONS(4915), 1, + anon_sym_RPAREN, + STATE(247), 1, + sym_accumulation_verb, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2421), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4717), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4725), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4735), 2, sym__ws, sym_comment, + ACTIONS(4733), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1130), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4729), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2081), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [108912] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(4705), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(4707), 1, anon_sym_CARET, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4302), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(4713), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [110824] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4296), 23, + ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, + anon_sym_and, + ACTIONS(4721), 1, + anon_sym_with, + ACTIONS(4723), 1, + anon_sym_do, + ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, + anon_sym_else, + ACTIONS(4915), 1, + anon_sym_RPAREN, + STATE(247), 1, + sym_accumulation_verb, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2421), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4717), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4725), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4917), 2, sym__ws, sym_comment, + ACTIONS(4733), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1140), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4729), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2081), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [109014] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(4705), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(4707), 1, anon_sym_CARET, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4298), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(4713), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [110880] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4292), 23, + ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, + anon_sym_and, + ACTIONS(4721), 1, + anon_sym_with, + ACTIONS(4723), 1, + anon_sym_do, + ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, + anon_sym_else, + ACTIONS(4795), 1, + anon_sym_RPAREN, + STATE(247), 1, + sym_accumulation_verb, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2421), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4717), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4725), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4919), 2, sym__ws, sym_comment, + ACTIONS(4733), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1133), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4729), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2081), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [109116] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(4705), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(4707), 1, anon_sym_CARET, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4294), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(4713), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [110936] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4288), 23, + ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, + anon_sym_and, + ACTIONS(4721), 1, + anon_sym_with, + ACTIONS(4723), 1, + anon_sym_do, + ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, + anon_sym_else, + ACTIONS(4923), 1, + anon_sym_RPAREN, + STATE(247), 1, + sym_accumulation_verb, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2421), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4717), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4725), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4921), 2, sym__ws, sym_comment, + ACTIONS(4733), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1131), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4729), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2081), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [109218] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(4705), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(4707), 1, anon_sym_CARET, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4290), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(4713), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [110992] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4284), 23, + ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, + anon_sym_and, + ACTIONS(4721), 1, + anon_sym_with, + ACTIONS(4723), 1, + anon_sym_do, + ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, + anon_sym_else, + ACTIONS(4927), 1, + anon_sym_RPAREN, + STATE(247), 1, + sym_accumulation_verb, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2421), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4717), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4725), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4925), 2, sym__ws, sym_comment, + ACTIONS(4733), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1141), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4729), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2081), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [109320] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(4705), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(4707), 1, anon_sym_CARET, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4286), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(4713), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [111048] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4232), 23, + ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, + anon_sym_and, + ACTIONS(4721), 1, + anon_sym_with, + ACTIONS(4723), 1, + anon_sym_do, + ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, + anon_sym_else, + ACTIONS(4927), 1, + anon_sym_RPAREN, + STATE(247), 1, + sym_accumulation_verb, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2421), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4717), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4725), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4735), 2, sym__ws, sym_comment, + ACTIONS(4733), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1130), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4729), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2081), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [109422] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(4705), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(4707), 1, anon_sym_CARET, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4234), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(4713), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [111104] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4272), 23, + ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, + anon_sym_and, + ACTIONS(4721), 1, + anon_sym_with, + ACTIONS(4723), 1, + anon_sym_do, + ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, + anon_sym_else, + ACTIONS(4929), 1, + anon_sym_RPAREN, + STATE(247), 1, + sym_accumulation_verb, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2421), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4717), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4725), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4735), 2, sym__ws, sym_comment, + ACTIONS(4733), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1130), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4729), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2081), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [109524] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(4705), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(4707), 1, anon_sym_CARET, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4274), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(4713), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [111160] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4268), 23, + ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, + anon_sym_and, + ACTIONS(4721), 1, + anon_sym_with, + ACTIONS(4723), 1, + anon_sym_do, + ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, + anon_sym_else, + ACTIONS(4929), 1, + anon_sym_RPAREN, + STATE(247), 1, + sym_accumulation_verb, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2421), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4717), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4725), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4931), 2, sym__ws, sym_comment, + ACTIONS(4733), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1143), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4729), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2081), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [109626] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(4705), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(4707), 1, anon_sym_CARET, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4270), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(4713), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [111216] = 3, + ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, + anon_sym_and, + ACTIONS(4721), 1, + anon_sym_with, + ACTIONS(4723), 1, + anon_sym_do, + ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, + anon_sym_else, + ACTIONS(4933), 1, + anon_sym_RPAREN, + STATE(247), 1, + sym_accumulation_verb, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2421), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4717), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4725), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4735), 2, + sym__ws, + sym_comment, + ACTIONS(4733), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1130), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4729), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2081), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [109728] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4264), 23, + ACTIONS(4360), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -106979,7 +105931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4266), 25, + ACTIONS(4362), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -107005,116 +105957,238 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [111272] = 3, + [109784] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4260), 23, - sym__ws, - sym_comment, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(4705), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(4707), 1, anon_sym_CARET, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4262), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(4713), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [111328] = 3, + ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, + anon_sym_and, + ACTIONS(4721), 1, + anon_sym_with, + ACTIONS(4723), 1, + anon_sym_do, + ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, + anon_sym_else, + ACTIONS(4937), 1, + anon_sym_RPAREN, + STATE(247), 1, + sym_accumulation_verb, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2421), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4717), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4725), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4935), 2, + sym__ws, + sym_comment, + ACTIONS(4733), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1150), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4729), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2081), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [109886] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4256), 23, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(4705), 1, + anon_sym_POUND_, + ACTIONS(4707), 1, + anon_sym_CARET, + ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(4713), 1, + anon_sym_cl, + ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, + anon_sym_and, + ACTIONS(4721), 1, + anon_sym_with, + ACTIONS(4723), 1, + anon_sym_do, + ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, + anon_sym_else, + ACTIONS(4939), 1, + anon_sym_RPAREN, + STATE(247), 1, + sym_accumulation_verb, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2421), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4717), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4725), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4735), 2, sym__ws, sym_comment, + ACTIONS(4733), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1130), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4729), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2081), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [109988] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(4705), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(4707), 1, anon_sym_CARET, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4258), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(4713), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [111384] = 3, + ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, + anon_sym_and, + ACTIONS(4721), 1, + anon_sym_with, + ACTIONS(4723), 1, + anon_sym_do, + ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, + anon_sym_else, + ACTIONS(4939), 1, + anon_sym_RPAREN, + STATE(247), 1, + sym_accumulation_verb, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2421), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4717), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4725), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4941), 2, + sym__ws, + sym_comment, + ACTIONS(4733), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1045), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4729), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2081), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [110090] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4252), 23, + ACTIONS(4392), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -107138,7 +106212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4254), 25, + ACTIONS(4394), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -107164,10 +106238,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [111440] = 3, + [110146] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4248), 23, + ACTIONS(4372), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -107191,7 +106265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4250), 25, + ACTIONS(4374), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -107217,121 +106291,1155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [111496] = 3, + [110202] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4180), 23, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(4705), 1, + anon_sym_POUND_, + ACTIONS(4707), 1, + anon_sym_CARET, + ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(4713), 1, + anon_sym_cl, + ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, + anon_sym_and, + ACTIONS(4721), 1, + anon_sym_with, + ACTIONS(4723), 1, + anon_sym_do, + ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, + anon_sym_else, + ACTIONS(4943), 1, + anon_sym_RPAREN, + STATE(247), 1, + sym_accumulation_verb, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2421), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4717), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4725), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4735), 2, sym__ws, sym_comment, + ACTIONS(4733), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1130), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4729), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2081), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [110304] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(4705), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(4707), 1, anon_sym_CARET, + ACTIONS(4709), 1, anon_sym_POUND_CARET, + ACTIONS(4713), 1, + anon_sym_cl, + ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, + anon_sym_and, + ACTIONS(4721), 1, + anon_sym_with, + ACTIONS(4723), 1, + anon_sym_do, + ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, + anon_sym_else, + ACTIONS(4943), 1, + anon_sym_RPAREN, + STATE(247), 1, + sym_accumulation_verb, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2421), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4717), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4725), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4945), 2, + sym__ws, + sym_comment, + ACTIONS(4733), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1160), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4729), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2081), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [110406] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(486), 1, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4182), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(4705), 1, + anon_sym_POUND_, + ACTIONS(4707), 1, + anon_sym_CARET, + ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(4713), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [111552] = 3, + ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, + anon_sym_and, + ACTIONS(4721), 1, + anon_sym_with, + ACTIONS(4723), 1, + anon_sym_do, + ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, + anon_sym_else, + ACTIONS(4923), 1, + anon_sym_RPAREN, + STATE(247), 1, + sym_accumulation_verb, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2421), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4717), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4725), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4735), 2, + sym__ws, + sym_comment, + ACTIONS(4733), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1130), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4729), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2081), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [110508] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4244), 23, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(4705), 1, + anon_sym_POUND_, + ACTIONS(4707), 1, + anon_sym_CARET, + ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(4713), 1, + anon_sym_cl, + ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, + anon_sym_and, + ACTIONS(4721), 1, + anon_sym_with, + ACTIONS(4723), 1, + anon_sym_do, + ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, + anon_sym_else, + ACTIONS(4949), 1, + anon_sym_RPAREN, + STATE(247), 1, + sym_accumulation_verb, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2421), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4717), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4725), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4947), 2, sym__ws, sym_comment, + ACTIONS(4733), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1146), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4729), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2081), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [110610] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(4705), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(4707), 1, anon_sym_CARET, + ACTIONS(4709), 1, anon_sym_POUND_CARET, + ACTIONS(4713), 1, + anon_sym_cl, + ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, + anon_sym_and, + ACTIONS(4721), 1, + anon_sym_with, + ACTIONS(4723), 1, + anon_sym_do, + ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, + anon_sym_else, + ACTIONS(4949), 1, + anon_sym_RPAREN, + STATE(247), 1, + sym_accumulation_verb, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2421), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4717), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4725), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4735), 2, + sym__ws, + sym_comment, + ACTIONS(4733), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1130), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4729), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2081), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [110712] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(486), 1, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - aux_sym_for_clause_word_token1, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4246), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(4705), 1, + anon_sym_POUND_, + ACTIONS(4707), 1, + anon_sym_CARET, + ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(4713), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [111608] = 3, + ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, + anon_sym_and, + ACTIONS(4721), 1, + anon_sym_with, + ACTIONS(4723), 1, + anon_sym_do, + ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, + anon_sym_else, + ACTIONS(4951), 1, + anon_sym_RPAREN, + STATE(247), 1, + sym_accumulation_verb, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2421), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4717), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4725), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4735), 2, + sym__ws, + sym_comment, + ACTIONS(4733), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1130), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4729), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2081), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [110814] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(4705), 1, + anon_sym_POUND_, + ACTIONS(4707), 1, + anon_sym_CARET, + ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(4713), 1, + anon_sym_cl, + ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, + anon_sym_and, + ACTIONS(4721), 1, + anon_sym_with, + ACTIONS(4723), 1, + anon_sym_do, + ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, + anon_sym_else, + ACTIONS(4951), 1, + anon_sym_RPAREN, + STATE(247), 1, + sym_accumulation_verb, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2421), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4717), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4725), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4953), 2, + sym__ws, + sym_comment, + ACTIONS(4733), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1152), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4729), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2081), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [110916] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(4705), 1, + anon_sym_POUND_, + ACTIONS(4707), 1, + anon_sym_CARET, + ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(4713), 1, + anon_sym_cl, + ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, + anon_sym_and, + ACTIONS(4721), 1, + anon_sym_with, + ACTIONS(4723), 1, + anon_sym_do, + ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, + anon_sym_else, + ACTIONS(4957), 1, + anon_sym_RPAREN, + STATE(247), 1, + sym_accumulation_verb, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2421), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4717), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4725), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4955), 2, + sym__ws, + sym_comment, + ACTIONS(4733), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1161), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4729), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2081), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [111018] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(4705), 1, + anon_sym_POUND_, + ACTIONS(4707), 1, + anon_sym_CARET, + ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(4713), 1, + anon_sym_cl, + ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, + anon_sym_and, + ACTIONS(4721), 1, + anon_sym_with, + ACTIONS(4723), 1, + anon_sym_do, + ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, + anon_sym_else, + ACTIONS(4805), 1, + anon_sym_RPAREN, + STATE(247), 1, + sym_accumulation_verb, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2421), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4717), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4725), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4959), 2, + sym__ws, + sym_comment, + ACTIONS(4733), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1155), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4729), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2081), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [111120] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(4705), 1, + anon_sym_POUND_, + ACTIONS(4707), 1, + anon_sym_CARET, + ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(4713), 1, + anon_sym_cl, + ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, + anon_sym_and, + ACTIONS(4721), 1, + anon_sym_with, + ACTIONS(4723), 1, + anon_sym_do, + ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, + anon_sym_else, + ACTIONS(4841), 1, + anon_sym_RPAREN, + STATE(247), 1, + sym_accumulation_verb, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2421), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4717), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4725), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4735), 2, + sym__ws, + sym_comment, + ACTIONS(4733), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1130), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4729), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2081), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [111222] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(4705), 1, + anon_sym_POUND_, + ACTIONS(4707), 1, + anon_sym_CARET, + ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(4713), 1, + anon_sym_cl, + ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, + anon_sym_and, + ACTIONS(4721), 1, + anon_sym_with, + ACTIONS(4723), 1, + anon_sym_do, + ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, + anon_sym_else, + ACTIONS(4957), 1, + anon_sym_RPAREN, + STATE(247), 1, + sym_accumulation_verb, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2421), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4717), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4725), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4735), 2, + sym__ws, + sym_comment, + ACTIONS(4733), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1130), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4729), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2081), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [111324] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(4705), 1, + anon_sym_POUND_, + ACTIONS(4707), 1, + anon_sym_CARET, + ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(4713), 1, + anon_sym_cl, + ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, + anon_sym_and, + ACTIONS(4721), 1, + anon_sym_with, + ACTIONS(4723), 1, + anon_sym_do, + ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, + anon_sym_else, + ACTIONS(4961), 1, + anon_sym_RPAREN, + STATE(247), 1, + sym_accumulation_verb, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2421), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4717), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4725), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4735), 2, + sym__ws, + sym_comment, + ACTIONS(4733), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1130), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4729), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2081), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [111426] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(4705), 1, + anon_sym_POUND_, + ACTIONS(4707), 1, + anon_sym_CARET, + ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(4713), 1, + anon_sym_cl, + ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, + anon_sym_and, + ACTIONS(4721), 1, + anon_sym_with, + ACTIONS(4723), 1, + anon_sym_do, + ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, + anon_sym_else, + ACTIONS(4809), 1, + anon_sym_RPAREN, + STATE(247), 1, + sym_accumulation_verb, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2421), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4717), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4725), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4735), 2, + sym__ws, + sym_comment, + ACTIONS(4733), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1130), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4729), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2081), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [111528] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(4705), 1, + anon_sym_POUND_, + ACTIONS(4707), 1, + anon_sym_CARET, + ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(4713), 1, + anon_sym_cl, + ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, + anon_sym_and, + ACTIONS(4721), 1, + anon_sym_with, + ACTIONS(4723), 1, + anon_sym_do, + ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, + anon_sym_else, + ACTIONS(4961), 1, + anon_sym_RPAREN, + STATE(247), 1, + sym_accumulation_verb, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2421), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4717), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4725), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4963), 2, + sym__ws, + sym_comment, + ACTIONS(4733), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1164), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4729), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2081), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [111630] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(4705), 1, + anon_sym_POUND_, + ACTIONS(4707), 1, + anon_sym_CARET, + ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(4713), 1, + anon_sym_cl, + ACTIONS(4715), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4719), 1, + anon_sym_and, + ACTIONS(4721), 1, + anon_sym_with, + ACTIONS(4723), 1, + anon_sym_do, + ACTIONS(4727), 1, + anon_sym_repeat, + ACTIONS(4731), 1, + anon_sym_else, + ACTIONS(4965), 1, + anon_sym_RPAREN, + STATE(247), 1, + sym_accumulation_verb, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2421), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4717), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4725), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4735), 2, + sym__ws, + sym_comment, + ACTIONS(4733), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1924), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1130), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4729), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2081), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [111732] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4150), 4, + ACTIONS(4514), 4, anon_sym_COLON, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4148), 41, + ACTIONS(4512), 41, sym__ws, sym_comment, anon_sym_POUND_, @@ -107373,18 +107481,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [111661] = 5, + [111785] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4963), 1, + ACTIONS(4967), 1, anon_sym_COLON, - ACTIONS(4965), 1, + ACTIONS(4969), 1, anon_sym_COLON_COLON, - ACTIONS(4178), 3, + ACTIONS(4466), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4176), 40, + ACTIONS(4464), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -107425,18 +107533,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [111718] = 5, + [111842] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4963), 1, + ACTIONS(4967), 1, anon_sym_COLON, - ACTIONS(4965), 1, + ACTIONS(4969), 1, anon_sym_COLON_COLON, - ACTIONS(4154), 3, + ACTIONS(4498), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4152), 40, + ACTIONS(4496), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -107477,16 +107585,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [111775] = 4, + [111899] = 5, ACTIONS(47), 1, sym_block_comment, ACTIONS(4967), 1, - aux_sym_num_lit_token2, - ACTIONS(4136), 3, + anon_sym_COLON, + ACTIONS(4969), 1, + anon_sym_COLON_COLON, + ACTIONS(4502), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4134), 40, + ACTIONS(4500), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -107527,14 +107637,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [111829] = 3, + [111956] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4254), 3, + ACTIONS(4971), 1, + aux_sym_num_lit_token2, + ACTIONS(4136), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4252), 40, + ACTIONS(4134), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -107575,14 +107687,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [111880] = 3, + [112010] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4426), 3, + ACTIONS(4462), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4424), 40, + ACTIONS(4460), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -107623,14 +107735,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [111931] = 3, + [112061] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4282), 3, + ACTIONS(4330), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4280), 40, + ACTIONS(4328), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -107671,14 +107783,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [111982] = 3, + [112112] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4278), 3, + ACTIONS(4975), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4276), 40, + ACTIONS(4973), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -107719,14 +107831,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [112033] = 3, + [112163] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4450), 3, + ACTIONS(4162), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4448), 40, + ACTIONS(4160), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -107767,14 +107879,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [112084] = 3, + [112214] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4454), 3, + ACTIONS(4494), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4452), 40, + ACTIONS(4492), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -107815,14 +107927,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [112135] = 3, + [112265] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4362), 3, + ACTIONS(4490), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4360), 40, + ACTIONS(4488), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -107863,14 +107975,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [112186] = 3, + [112316] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4458), 3, + ACTIONS(4979), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4456), 40, + ACTIONS(4977), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -107911,14 +108023,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [112237] = 3, + [112367] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4478), 3, + ACTIONS(4466), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4476), 40, + ACTIONS(4464), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -107959,14 +108071,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [112288] = 3, + [112418] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4278), 3, + ACTIONS(4474), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4276), 40, + ACTIONS(4472), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -108007,14 +108119,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [112339] = 3, + [112469] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4470), 3, + ACTIONS(4146), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4468), 40, + ACTIONS(4144), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -108055,14 +108167,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [112390] = 3, + [112520] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4474), 3, + ACTIONS(4178), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4472), 40, + ACTIONS(4176), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -108103,14 +108215,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [112441] = 3, + [112571] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4478), 3, + ACTIONS(4174), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4476), 40, + ACTIONS(4172), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -108151,14 +108263,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [112492] = 3, + [112622] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4482), 3, + ACTIONS(4158), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4480), 40, + ACTIONS(4156), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -108199,14 +108311,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [112543] = 3, + [112673] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4482), 3, + ACTIONS(4150), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4480), 40, + ACTIONS(4148), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -108247,14 +108359,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [112594] = 3, + [112724] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4474), 3, + ACTIONS(4518), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4472), 40, + ACTIONS(4516), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -108295,14 +108407,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [112645] = 3, + [112775] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4514), 3, + ACTIONS(4202), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4512), 40, + ACTIONS(4200), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -108343,14 +108455,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [112696] = 3, + [112826] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4482), 3, + ACTIONS(4198), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4480), 40, + ACTIONS(4196), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -108391,14 +108503,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [112747] = 3, + [112877] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4482), 3, + ACTIONS(4182), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4480), 40, + ACTIONS(4180), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -108439,14 +108551,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [112798] = 3, + [112928] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4486), 3, + ACTIONS(4166), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4484), 40, + ACTIONS(4164), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -108487,14 +108599,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [112849] = 3, + [112979] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4142), 3, + ACTIONS(4983), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4140), 40, + ACTIONS(4981), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -108535,14 +108647,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [112900] = 3, + [113030] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4971), 3, + ACTIONS(4442), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4969), 40, + ACTIONS(4440), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -108583,14 +108695,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [112951] = 3, + [113081] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4262), 3, + ACTIONS(4206), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4260), 40, + ACTIONS(4204), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -108631,14 +108743,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [113002] = 3, + [113132] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4366), 3, + ACTIONS(4242), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4364), 40, + ACTIONS(4240), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -108679,14 +108791,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [113053] = 3, + [113183] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4490), 3, + ACTIONS(4230), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4488), 40, + ACTIONS(4228), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -108727,14 +108839,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [113104] = 3, + [113234] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4446), 3, + ACTIONS(4979), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4444), 40, + ACTIONS(4977), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -108775,14 +108887,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [113155] = 3, + [113285] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4466), 3, + ACTIONS(4410), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4464), 40, + ACTIONS(4408), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -108823,14 +108935,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [113206] = 3, + [113336] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4442), 3, + ACTIONS(4230), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4440), 40, + ACTIONS(4228), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -108871,14 +108983,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [113257] = 3, + [113387] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4494), 3, + ACTIONS(4214), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4492), 40, + ACTIONS(4212), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -108919,14 +109031,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [113308] = 3, + [113438] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4442), 3, + ACTIONS(4194), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4440), 40, + ACTIONS(4192), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -108967,14 +109079,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [113359] = 3, + [113489] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4498), 3, + ACTIONS(4146), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4496), 40, + ACTIONS(4144), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -109015,14 +109127,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [113410] = 3, + [113540] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4258), 3, + ACTIONS(4186), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4256), 40, + ACTIONS(4184), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -109063,14 +109175,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [113461] = 3, + [113591] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4358), 3, + ACTIONS(4170), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4356), 40, + ACTIONS(4168), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -109111,14 +109223,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [113512] = 3, + [113642] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4402), 3, + ACTIONS(4382), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4400), 40, + ACTIONS(4380), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -109159,14 +109271,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [113563] = 3, + [113693] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4502), 3, + ACTIONS(4378), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4500), 40, + ACTIONS(4376), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -109207,14 +109319,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [113614] = 3, + [113744] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4354), 3, + ACTIONS(4278), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4352), 40, + ACTIONS(4276), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -109255,14 +109367,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [113665] = 3, + [113795] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4350), 3, + ACTIONS(4366), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4348), 40, + ACTIONS(4364), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -109303,14 +109415,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [113716] = 3, + [113846] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4294), 3, + ACTIONS(4298), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4292), 40, + ACTIONS(4296), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -109351,14 +109463,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [113767] = 3, + [113897] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4506), 3, + ACTIONS(4302), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4504), 40, + ACTIONS(4300), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -109399,14 +109511,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [113818] = 3, + [113948] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4975), 3, + ACTIONS(4302), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4973), 40, + ACTIONS(4300), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -109447,14 +109559,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [113869] = 3, + [113999] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4342), 3, + ACTIONS(4306), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4340), 40, + ACTIONS(4304), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -109495,14 +109607,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [113920] = 3, + [114050] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4358), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4336), 40, + ACTIONS(4356), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -109543,14 +109655,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [113971] = 3, + [114101] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4502), 3, + ACTIONS(4342), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4500), 40, + ACTIONS(4340), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -109591,14 +109703,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [114022] = 3, + [114152] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4506), 3, + ACTIONS(4310), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4504), 40, + ACTIONS(4308), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -109639,14 +109751,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [114073] = 3, + [114203] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4510), 3, + ACTIONS(4314), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4508), 40, + ACTIONS(4312), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -109687,14 +109799,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [114124] = 3, + [114254] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4438), 3, + ACTIONS(4318), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4436), 40, + ACTIONS(4316), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -109735,14 +109847,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [114175] = 3, + [114305] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4334), 3, + ACTIONS(4222), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4332), 40, + ACTIONS(4220), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -109783,14 +109895,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [114226] = 3, + [114356] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4462), 3, + ACTIONS(4338), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4460), 40, + ACTIONS(4336), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -109831,14 +109943,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [114277] = 3, + [114407] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4370), 3, + ACTIONS(4326), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4368), 40, + ACTIONS(4324), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -109879,14 +109991,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [114328] = 3, + [114458] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4434), 3, + ACTIONS(4322), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4432), 40, + ACTIONS(4320), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -109927,14 +110039,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [114379] = 3, + [114509] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4498), 3, + ACTIONS(4282), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4496), 40, + ACTIONS(4280), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -109975,14 +110087,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [114430] = 3, + [114560] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4250), 3, + ACTIONS(4146), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4248), 40, + ACTIONS(4144), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -110023,14 +110135,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [114481] = 3, + [114611] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4182), 3, + ACTIONS(4370), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4180), 40, + ACTIONS(4368), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -110071,14 +110183,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [114532] = 3, + [114662] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4502), 3, + ACTIONS(4290), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4500), 40, + ACTIONS(4288), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -110119,14 +110231,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [114583] = 3, + [114713] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4242), 3, + ACTIONS(4314), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4240), 40, + ACTIONS(4312), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -110167,14 +110279,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [114634] = 3, + [114764] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4238), 3, + ACTIONS(4286), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4236), 40, + ACTIONS(4284), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -110215,14 +110327,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [114685] = 3, + [114815] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4234), 3, + ACTIONS(4258), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4232), 40, + ACTIONS(4256), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -110263,14 +110375,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [114736] = 3, + [114866] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4190), 3, + ACTIONS(4274), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4188), 40, + ACTIONS(4272), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -110311,14 +110423,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [114787] = 3, + [114917] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4194), 3, + ACTIONS(4318), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4192), 40, + ACTIONS(4316), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -110359,14 +110471,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [114838] = 3, + [114968] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(4210), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4196), 40, + ACTIONS(4208), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -110407,14 +110519,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [114889] = 3, + [115019] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4206), 3, + ACTIONS(4226), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4204), 40, + ACTIONS(4224), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -110455,14 +110567,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [114940] = 3, + [115070] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4430), 3, + ACTIONS(4218), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4428), 40, + ACTIONS(4216), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -110503,14 +110615,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [114991] = 3, + [115121] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4230), 3, + ACTIONS(4270), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4228), 40, + ACTIONS(4268), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -110551,14 +110663,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [115042] = 3, + [115172] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4979), 3, + ACTIONS(4266), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4977), 40, + ACTIONS(4264), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -110599,14 +110711,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [115093] = 3, + [115223] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4979), 3, + ACTIONS(4510), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4977), 40, + ACTIONS(4508), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -110647,14 +110759,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [115144] = 3, + [115274] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4374), 3, + ACTIONS(4510), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4372), 40, + ACTIONS(4508), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -110695,14 +110807,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [115195] = 3, + [115325] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4166), 3, + ACTIONS(4262), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4164), 40, + ACTIONS(4260), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -110743,14 +110855,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [115246] = 3, + [115376] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4226), 3, + ACTIONS(4190), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4224), 40, + ACTIONS(4188), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -110791,14 +110903,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [115297] = 3, + [115427] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4298), 3, + ACTIONS(4390), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4296), 40, + ACTIONS(4388), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -110839,14 +110951,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [115348] = 3, + [115478] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4422), 3, + ACTIONS(4486), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4420), 40, + ACTIONS(4484), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -110887,14 +110999,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [115399] = 3, + [115529] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4506), 3, + ACTIONS(4334), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4504), 40, + ACTIONS(4332), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -110935,14 +111047,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [115450] = 3, + [115580] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4418), 3, + ACTIONS(4414), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4416), 40, + ACTIONS(4412), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -110983,14 +111095,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [115501] = 3, + [115631] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4414), 3, + ACTIONS(4346), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4412), 40, + ACTIONS(4344), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -111031,14 +111143,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [115552] = 3, + [115682] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4462), 3, + ACTIONS(4350), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4460), 40, + ACTIONS(4348), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -111079,14 +111191,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [115603] = 3, + [115733] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4222), 3, + ACTIONS(4354), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4220), 40, + ACTIONS(4352), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -111127,14 +111239,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [115654] = 3, + [115784] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4218), 3, + ACTIONS(4362), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4216), 40, + ACTIONS(4360), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -111175,14 +111287,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [115705] = 3, + [115835] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4142), 3, + ACTIONS(4362), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4140), 40, + ACTIONS(4360), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -111223,14 +111335,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [115756] = 3, + [115886] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4402), 3, + ACTIONS(4374), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4400), 40, + ACTIONS(4372), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -111271,14 +111383,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [115807] = 3, + [115937] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4418), 3, + ACTIONS(4374), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4416), 40, + ACTIONS(4372), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -111319,14 +111431,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [115858] = 3, + [115988] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4414), 3, + ACTIONS(4254), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4412), 40, + ACTIONS(4252), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -111367,14 +111479,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [115909] = 3, + [116039] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4318), 3, + ACTIONS(4430), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4316), 40, + ACTIONS(4428), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -111415,14 +111527,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [115960] = 3, + [116090] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4410), 3, + ACTIONS(4438), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4408), 40, + ACTIONS(4436), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -111463,14 +111575,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [116011] = 3, + [116141] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4346), 3, + ACTIONS(4386), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4344), 40, + ACTIONS(4384), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -111511,14 +111623,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [116062] = 3, + [116192] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4406), 3, + ACTIONS(4394), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4404), 40, + ACTIONS(4392), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -111559,14 +111671,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [116113] = 3, + [116243] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4146), 3, + ACTIONS(4250), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4144), 40, + ACTIONS(4248), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -111607,14 +111719,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [116164] = 3, + [116294] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4146), 3, + ACTIONS(4294), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4144), 40, + ACTIONS(4292), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -111655,7 +111767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [116215] = 3, + [116345] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(4398), 3, @@ -111703,14 +111815,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [116266] = 3, + [116396] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4394), 3, + ACTIONS(4987), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4392), 40, + ACTIONS(4985), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -111751,14 +111863,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [116317] = 3, + [116447] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4390), 3, + ACTIONS(4294), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4388), 40, + ACTIONS(4292), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -111799,14 +111911,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [116368] = 3, + [116498] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4214), 3, + ACTIONS(4402), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4212), 40, + ACTIONS(4400), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -111847,14 +111959,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [116419] = 3, + [116549] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4502), 3, + ACTIONS(4406), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4500), 40, + ACTIONS(4404), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -111895,14 +112007,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [116470] = 3, + [116600] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4506), 3, + ACTIONS(4142), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4504), 40, + ACTIONS(4140), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -111943,14 +112055,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [116521] = 3, + [116651] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4510), 3, + ACTIONS(4418), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4508), 40, + ACTIONS(4416), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -111991,14 +112103,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [116572] = 3, + [116702] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4462), 3, + ACTIONS(4422), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4460), 40, + ACTIONS(4420), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -112039,14 +112151,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [116623] = 3, + [116753] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4462), 3, + ACTIONS(4434), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4460), 40, + ACTIONS(4432), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -112087,14 +112199,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [116674] = 3, + [116804] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4330), 3, + ACTIONS(4434), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4328), 40, + ACTIONS(4432), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -112135,14 +112247,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [116725] = 3, + [116855] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4210), 3, + ACTIONS(4238), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4208), 40, + ACTIONS(4236), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -112183,14 +112295,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [116776] = 3, + [116906] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4266), 3, + ACTIONS(4418), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4264), 40, + ACTIONS(4416), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -112231,14 +112343,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [116827] = 3, + [116957] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4182), 3, + ACTIONS(4234), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4180), 40, + ACTIONS(4232), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -112279,14 +112391,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [116878] = 3, + [117008] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4202), 3, + ACTIONS(4422), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4200), 40, + ACTIONS(4420), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -112327,14 +112439,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [116929] = 3, + [117059] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4186), 3, + ACTIONS(4434), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4184), 40, + ACTIONS(4432), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -112375,14 +112487,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [116980] = 3, + [117110] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4326), 3, + ACTIONS(4434), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4324), 40, + ACTIONS(4432), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -112423,14 +112535,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [117031] = 3, + [117161] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4270), 3, + ACTIONS(4446), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4268), 40, + ACTIONS(4444), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -112471,14 +112583,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [117082] = 3, + [117212] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4182), 3, + ACTIONS(4450), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4180), 40, + ACTIONS(4448), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -112519,14 +112631,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [117133] = 3, + [117263] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4174), 3, + ACTIONS(4454), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4172), 40, + ACTIONS(4452), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -112567,14 +112679,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [117184] = 3, + [117314] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4322), 3, + ACTIONS(4458), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4320), 40, + ACTIONS(4456), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -112615,14 +112727,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [117235] = 3, + [117365] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4178), 3, + ACTIONS(4462), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4176), 40, + ACTIONS(4460), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -112663,14 +112775,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [117286] = 3, + [117416] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4302), 3, + ACTIONS(4478), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4300), 40, + ACTIONS(4476), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -112711,14 +112823,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [117337] = 3, + [117467] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4162), 3, + ACTIONS(4462), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4160), 40, + ACTIONS(4460), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -112759,14 +112871,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [117388] = 3, + [117518] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4446), 3, + ACTIONS(4478), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4444), 40, + ACTIONS(4476), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -112807,14 +112919,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [117439] = 3, + [117569] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4274), 3, + ACTIONS(4486), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4272), 40, + ACTIONS(4484), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -112855,14 +112967,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [117490] = 3, + [117620] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4390), 3, + ACTIONS(4426), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4388), 40, + ACTIONS(4424), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -112903,14 +113015,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [117541] = 3, + [117671] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4386), 3, + ACTIONS(4510), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4384), 40, + ACTIONS(4508), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -112951,14 +113063,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [117592] = 3, + [117722] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4382), 3, + ACTIONS(4154), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4380), 40, + ACTIONS(4152), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -112999,14 +113111,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [117643] = 3, + [117773] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4378), 3, + ACTIONS(4458), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4376), 40, + ACTIONS(4456), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -113047,14 +113159,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [117694] = 3, + [117824] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4290), 3, + ACTIONS(4506), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4288), 40, + ACTIONS(4504), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -113095,14 +113207,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [117745] = 3, + [117875] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4286), 3, + ACTIONS(4462), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4284), 40, + ACTIONS(4460), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -113143,14 +113255,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [117796] = 3, + [117926] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4314), 3, + ACTIONS(4478), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4312), 40, + ACTIONS(4476), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -113191,14 +113303,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [117847] = 3, + [117977] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4310), 3, + ACTIONS(4510), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4308), 40, + ACTIONS(4508), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -113239,14 +113351,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [117898] = 3, + [118028] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4983), 3, + ACTIONS(4478), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4981), 40, + ACTIONS(4476), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -113287,14 +113399,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [117949] = 3, + [118079] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4306), 3, + ACTIONS(4402), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(4304), 40, + ACTIONS(4400), 40, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_cl, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [118130] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4426), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(4424), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -113335,25 +113495,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [118000] = 9, + [118181] = 9, ACTIONS(47), 1, sym_block_comment, ACTIONS(390), 1, anon_sym_lambda, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_cl, - ACTIONS(4991), 1, + ACTIONS(4995), 1, anon_sym_loop, - STATE(63), 1, + STATE(152), 1, sym_defun_header, - STATE(554), 1, + STATE(568), 1, sym_defun_keyword, ACTIONS(388), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - ACTIONS(4987), 9, + ACTIONS(4991), 9, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -113363,7 +113523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(4985), 23, + ACTIONS(4989), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -113387,25 +113547,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [118061] = 9, + [118242] = 9, ACTIONS(47), 1, sym_block_comment, ACTIONS(390), 1, anon_sym_lambda, - ACTIONS(4993), 1, + ACTIONS(4997), 1, anon_sym_cl, - ACTIONS(4995), 1, + ACTIONS(4999), 1, anon_sym_loop, - STATE(152), 1, + STATE(46), 1, sym_defun_header, - STATE(554), 1, + STATE(568), 1, sym_defun_keyword, ACTIONS(388), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - ACTIONS(4987), 9, + ACTIONS(4991), 9, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -113415,7 +113575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(4985), 23, + ACTIONS(4989), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -113439,25 +113599,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [118122] = 9, + [118303] = 9, ACTIONS(47), 1, sym_block_comment, ACTIONS(390), 1, anon_sym_lambda, - ACTIONS(4997), 1, + ACTIONS(5001), 1, anon_sym_cl, - ACTIONS(4999), 1, + ACTIONS(5003), 1, anon_sym_loop, - STATE(76), 1, + STATE(129), 1, sym_defun_header, - STATE(554), 1, + STATE(568), 1, sym_defun_keyword, ACTIONS(388), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - ACTIONS(4987), 9, + ACTIONS(4991), 9, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -113467,7 +113627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(4985), 23, + ACTIONS(4989), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -113491,25 +113651,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [118183] = 9, + [118364] = 9, ACTIONS(47), 1, sym_block_comment, ACTIONS(390), 1, anon_sym_lambda, - ACTIONS(5001), 1, + ACTIONS(5005), 1, anon_sym_cl, - ACTIONS(5003), 1, + ACTIONS(5007), 1, anon_sym_loop, - STATE(92), 1, + STATE(131), 1, sym_defun_header, - STATE(554), 1, + STATE(568), 1, sym_defun_keyword, ACTIONS(388), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - ACTIONS(4987), 9, + ACTIONS(4991), 9, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -113519,7 +113679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(4985), 23, + ACTIONS(4989), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -113543,25 +113703,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [118244] = 9, + [118425] = 9, ACTIONS(47), 1, sym_block_comment, ACTIONS(390), 1, anon_sym_lambda, - ACTIONS(5005), 1, + ACTIONS(5009), 1, anon_sym_cl, - ACTIONS(5007), 1, + ACTIONS(5011), 1, anon_sym_loop, - STATE(49), 1, + STATE(58), 1, sym_defun_header, - STATE(554), 1, + STATE(568), 1, sym_defun_keyword, ACTIONS(388), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - ACTIONS(4987), 9, + ACTIONS(4991), 9, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -113571,7 +113731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(4985), 23, + ACTIONS(4989), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -113595,25 +113755,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [118305] = 9, + [118486] = 9, ACTIONS(47), 1, sym_block_comment, ACTIONS(390), 1, anon_sym_lambda, - ACTIONS(5009), 1, + ACTIONS(5013), 1, anon_sym_cl, - ACTIONS(5011), 1, + ACTIONS(5015), 1, anon_sym_loop, - STATE(113), 1, + STATE(72), 1, sym_defun_header, - STATE(554), 1, + STATE(568), 1, sym_defun_keyword, ACTIONS(388), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - ACTIONS(4987), 9, + ACTIONS(4991), 9, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -113623,7 +113783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(4985), 23, + ACTIONS(4989), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -113647,25 +113807,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [118366] = 9, + [118547] = 9, ACTIONS(47), 1, sym_block_comment, ACTIONS(390), 1, anon_sym_lambda, - ACTIONS(5013), 1, + ACTIONS(5017), 1, anon_sym_cl, - ACTIONS(5015), 1, + ACTIONS(5019), 1, anon_sym_loop, - STATE(150), 1, + STATE(89), 1, sym_defun_header, - STATE(554), 1, + STATE(568), 1, sym_defun_keyword, ACTIONS(388), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - ACTIONS(4987), 9, + ACTIONS(4991), 9, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -113675,7 +113835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(4985), 23, + ACTIONS(4989), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -113699,25 +113859,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [118427] = 9, + [118608] = 9, ACTIONS(47), 1, sym_block_comment, ACTIONS(390), 1, anon_sym_lambda, - ACTIONS(5017), 1, + ACTIONS(5021), 1, anon_sym_cl, - ACTIONS(5019), 1, + ACTIONS(5023), 1, anon_sym_loop, - STATE(149), 1, + STATE(110), 1, sym_defun_header, - STATE(554), 1, + STATE(568), 1, sym_defun_keyword, ACTIONS(388), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - ACTIONS(4987), 9, + ACTIONS(4991), 9, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -113727,7 +113887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(4985), 23, + ACTIONS(4989), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -113751,25 +113911,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [118488] = 9, + [118669] = 9, ACTIONS(47), 1, sym_block_comment, ACTIONS(390), 1, anon_sym_lambda, - ACTIONS(5021), 1, + ACTIONS(5025), 1, anon_sym_cl, - ACTIONS(5023), 1, + ACTIONS(5027), 1, anon_sym_loop, - STATE(108), 1, + STATE(138), 1, sym_defun_header, - STATE(554), 1, + STATE(568), 1, sym_defun_keyword, ACTIONS(388), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - ACTIONS(4987), 9, + ACTIONS(4991), 9, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -113779,7 +113939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(4985), 23, + ACTIONS(4989), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -113803,25 +113963,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [118549] = 9, + [118730] = 9, ACTIONS(47), 1, sym_block_comment, ACTIONS(390), 1, anon_sym_lambda, - ACTIONS(5025), 1, + ACTIONS(5029), 1, anon_sym_cl, - ACTIONS(5027), 1, + ACTIONS(5031), 1, anon_sym_loop, - STATE(154), 1, + STATE(162), 1, sym_defun_header, - STATE(554), 1, + STATE(568), 1, sym_defun_keyword, ACTIONS(388), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - ACTIONS(4987), 9, + ACTIONS(4991), 9, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -113831,7 +113991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(4985), 23, + ACTIONS(4989), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -113855,10 +114015,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [118610] = 4, + [118791] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5029), 1, + ACTIONS(5033), 1, aux_sym_num_lit_token2, ACTIONS(4136), 16, anon_sym_POUND, @@ -113901,10 +114061,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [118660] = 3, + [118841] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4146), 16, + ACTIONS(4218), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -113921,7 +114081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4144), 23, + ACTIONS(4216), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -113945,10 +114105,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [118707] = 3, + [118888] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4210), 16, + ACTIONS(4390), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -113965,7 +114125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4208), 23, + ACTIONS(4388), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -113989,10 +114149,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [118754] = 3, + [118935] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4150), 16, + ACTIONS(4206), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114009,7 +114169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4148), 23, + ACTIONS(4204), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114033,17 +114193,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [118801] = 5, + [118982] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5031), 1, - anon_sym_COLON, - ACTIONS(5033), 1, - anon_sym_COLON_COLON, - ACTIONS(4154), 15, + ACTIONS(4166), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, @@ -114056,10 +114213,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4152), 22, + ACTIONS(4164), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -114079,10 +114237,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [118852] = 3, + [119029] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4162), 16, + ACTIONS(4182), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114099,7 +114257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4160), 23, + ACTIONS(4180), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114123,10 +114281,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [118899] = 3, + [119076] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4166), 16, + ACTIONS(4510), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114143,7 +114301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4164), 23, + ACTIONS(4508), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114167,10 +114325,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [118946] = 3, + [119123] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4170), 16, + ACTIONS(4198), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114187,7 +114345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4168), 23, + ACTIONS(4196), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114211,10 +114369,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [118993] = 3, + [119170] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4178), 16, + ACTIONS(4202), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114231,7 +114389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4176), 23, + ACTIONS(4200), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114255,10 +114413,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119040] = 3, + [119217] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4174), 16, + ACTIONS(4518), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114275,7 +114433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4172), 23, + ACTIONS(4516), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114299,17 +114457,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119087] = 5, + [119264] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5031), 1, + ACTIONS(4150), 16, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, anon_sym_COLON, - ACTIONS(5033), 1, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4148), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_COLON_COLON, - ACTIONS(4178), 15, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [119311] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4158), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, @@ -114322,10 +114521,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4176), 22, + ACTIONS(4156), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -114345,10 +114545,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119138] = 3, + [119358] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4182), 16, + ACTIONS(4162), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114365,7 +114565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4180), 23, + ACTIONS(4160), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114389,10 +114589,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119185] = 3, + [119405] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4186), 16, + ACTIONS(4174), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114409,7 +114609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4184), 23, + ACTIONS(4172), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114433,10 +114633,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119232] = 3, + [119452] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4190), 16, + ACTIONS(4178), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114453,7 +114653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4188), 23, + ACTIONS(4176), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114477,10 +114677,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119279] = 3, + [119499] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4194), 16, + ACTIONS(4154), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114497,7 +114697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4192), 23, + ACTIONS(4152), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114521,10 +114721,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119326] = 3, + [119546] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4198), 16, + ACTIONS(4230), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114541,7 +114741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4196), 23, + ACTIONS(4228), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114565,10 +114765,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119373] = 3, + [119593] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4202), 16, + ACTIONS(4170), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114585,7 +114785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4200), 23, + ACTIONS(4168), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114609,10 +114809,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119420] = 3, + [119640] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4182), 16, + ACTIONS(4230), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114629,7 +114829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4180), 23, + ACTIONS(4228), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114653,10 +114853,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119467] = 3, + [119687] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4206), 16, + ACTIONS(4186), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114673,7 +114873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4204), 23, + ACTIONS(4184), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114697,10 +114897,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119514] = 3, + [119734] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4214), 16, + ACTIONS(4190), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114717,7 +114917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4212), 23, + ACTIONS(4188), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114741,10 +114941,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119561] = 3, + [119781] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4218), 16, + ACTIONS(4194), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114761,7 +114961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4216), 23, + ACTIONS(4192), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114785,10 +114985,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119608] = 3, + [119828] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4222), 16, + ACTIONS(4426), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114805,7 +115005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4220), 23, + ACTIONS(4424), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114829,10 +115029,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119655] = 3, + [119875] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4226), 16, + ACTIONS(4278), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114849,7 +115049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4224), 23, + ACTIONS(4276), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114873,10 +115073,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119702] = 3, + [119922] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4230), 16, + ACTIONS(4210), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114893,7 +115093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4228), 23, + ACTIONS(4208), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114917,10 +115117,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119749] = 3, + [119969] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4234), 16, + ACTIONS(4214), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114937,7 +115137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4232), 23, + ACTIONS(4212), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114961,10 +115161,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119796] = 3, + [120016] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4238), 16, + ACTIONS(4222), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114981,7 +115181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4236), 23, + ACTIONS(4220), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -115005,10 +115205,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119843] = 3, + [120063] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4242), 16, + ACTIONS(4302), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -115025,7 +115225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4240), 23, + ACTIONS(4300), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -115049,10 +115249,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119890] = 3, + [120110] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4246), 16, + ACTIONS(4226), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -115069,7 +115269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4244), 23, + ACTIONS(4224), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -115093,10 +115293,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119937] = 3, + [120157] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4182), 16, + ACTIONS(4302), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -115113,7 +115313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4180), 23, + ACTIONS(4300), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -115137,10 +115337,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119984] = 3, + [120204] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4250), 16, + ACTIONS(4306), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -115157,7 +115357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4248), 23, + ACTIONS(4304), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -115181,10 +115381,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [120031] = 3, + [120251] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4254), 16, + ACTIONS(4310), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -115201,7 +115401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4252), 23, + ACTIONS(4308), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -115225,10 +115425,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [120078] = 3, + [120298] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4258), 16, + ACTIONS(4402), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -115245,7 +115445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4256), 23, + ACTIONS(4400), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -115269,10 +115469,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [120125] = 3, + [120345] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4262), 16, + ACTIONS(4314), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -115289,7 +115489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4260), 23, + ACTIONS(4312), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -115313,10 +115513,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [120172] = 3, + [120392] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4266), 16, + ACTIONS(4318), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -115333,7 +115533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4264), 23, + ACTIONS(4316), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -115357,10 +115557,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [120219] = 3, + [120439] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4270), 16, + ACTIONS(4234), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -115377,7 +115577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4268), 23, + ACTIONS(4232), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -115401,10 +115601,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [120266] = 3, + [120486] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4274), 16, + ACTIONS(4238), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -115421,7 +115621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4272), 23, + ACTIONS(4236), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -115445,10 +115645,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [120313] = 3, + [120533] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4282), 16, + ACTIONS(4250), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -115465,7 +115665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4280), 23, + ACTIONS(4248), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -115489,10 +115689,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [120360] = 3, + [120580] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4286), 16, + ACTIONS(4254), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -115509,7 +115709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4284), 23, + ACTIONS(4252), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -115533,10 +115733,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [120407] = 3, + [120627] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4290), 16, + ACTIONS(4258), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -115553,7 +115753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4288), 23, + ACTIONS(4256), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -115577,10 +115777,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [120454] = 3, + [120674] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4294), 16, + ACTIONS(4314), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -115597,7 +115797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4292), 23, + ACTIONS(4312), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -115621,10 +115821,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [120501] = 3, + [120721] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4298), 16, + ACTIONS(4262), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -115641,7 +115841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4296), 23, + ACTIONS(4260), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -115665,10 +115865,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [120548] = 3, + [120768] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4302), 16, + ACTIONS(4266), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -115685,7 +115885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4300), 23, + ACTIONS(4264), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -115709,10 +115909,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [120595] = 3, + [120815] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4306), 16, + ACTIONS(4270), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -115729,7 +115929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4304), 23, + ACTIONS(4268), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -115753,10 +115953,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [120642] = 3, + [120862] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4310), 16, + ACTIONS(4274), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -115773,7 +115973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4308), 23, + ACTIONS(4272), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -115797,10 +115997,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [120689] = 3, + [120909] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4314), 16, + ACTIONS(4286), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -115817,7 +116017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4312), 23, + ACTIONS(4284), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -115841,10 +116041,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [120736] = 3, + [120956] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4318), 16, + ACTIONS(4290), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -115861,7 +116061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4316), 23, + ACTIONS(4288), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -115885,10 +116085,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [120783] = 3, + [121003] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4322), 16, + ACTIONS(4370), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -115905,7 +116105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4320), 23, + ACTIONS(4368), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -115929,10 +116129,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [120830] = 3, + [121050] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4326), 16, + ACTIONS(4146), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -115949,7 +116149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4324), 23, + ACTIONS(4144), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -115973,10 +116173,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [120877] = 3, + [121097] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4330), 16, + ACTIONS(4318), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -115993,7 +116193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4328), 23, + ACTIONS(4316), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -116017,10 +116217,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [120924] = 3, + [121144] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4334), 16, + ACTIONS(4246), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -116037,7 +116237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4332), 23, + ACTIONS(4244), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -116061,10 +116261,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [120971] = 3, + [121191] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4338), 16, + ACTIONS(4282), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -116081,7 +116281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4336), 23, + ACTIONS(4280), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -116105,10 +116305,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [121018] = 3, + [121238] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4370), 16, + ACTIONS(4322), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -116125,7 +116325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4368), 23, + ACTIONS(4320), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -116149,10 +116349,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [121065] = 3, + [121285] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4346), 16, + ACTIONS(4510), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -116169,7 +116369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4344), 23, + ACTIONS(4508), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -116193,10 +116393,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [121112] = 3, + [121332] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4350), 16, + ACTIONS(4330), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -116213,7 +116413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4348), 23, + ACTIONS(4328), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -116237,10 +116437,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [121159] = 3, + [121379] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4354), 16, + ACTIONS(4326), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -116257,7 +116457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4352), 23, + ACTIONS(4324), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -116281,10 +116481,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [121206] = 3, + [121426] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4358), 16, + ACTIONS(4334), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -116301,7 +116501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4356), 23, + ACTIONS(4332), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -116325,10 +116525,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [121253] = 3, + [121473] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4362), 16, + ACTIONS(4346), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -116345,7 +116545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4360), 23, + ACTIONS(4344), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -116369,10 +116569,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [121300] = 3, + [121520] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4366), 16, + ACTIONS(4510), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -116389,7 +116589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4364), 23, + ACTIONS(4508), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -116413,10 +116613,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [121347] = 3, + [121567] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4342), 16, + ACTIONS(4350), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -116433,7 +116633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4340), 23, + ACTIONS(4348), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -116457,10 +116657,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [121394] = 3, + [121614] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4374), 16, + ACTIONS(4338), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -116477,7 +116677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4372), 23, + ACTIONS(4336), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -116501,10 +116701,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [121441] = 3, + [121661] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4378), 16, + ACTIONS(4342), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -116521,7 +116721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4376), 23, + ACTIONS(4340), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -116545,10 +116745,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [121488] = 3, + [121708] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4382), 16, + ACTIONS(4426), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -116565,7 +116765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4380), 23, + ACTIONS(4424), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -116589,10 +116789,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [121535] = 3, + [121755] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4278), 16, + ACTIONS(4402), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -116609,7 +116809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4276), 23, + ACTIONS(4400), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -116633,10 +116833,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [121582] = 3, + [121802] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4278), 16, + ACTIONS(4354), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -116653,7 +116853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4276), 23, + ACTIONS(4352), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -116677,10 +116877,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [121629] = 3, + [121849] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4386), 16, + ACTIONS(4362), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -116697,7 +116897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4384), 23, + ACTIONS(4360), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -116721,10 +116921,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [121676] = 3, + [121896] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4142), 16, + ACTIONS(4362), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -116741,7 +116941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4140), 23, + ACTIONS(4360), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -116765,10 +116965,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [121723] = 3, + [121943] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4402), 16, + ACTIONS(4374), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -116785,7 +116985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4400), 23, + ACTIONS(4372), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -116809,10 +117009,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [121770] = 3, + [121990] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4462), 16, + ACTIONS(4358), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -116829,7 +117029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4460), 23, + ACTIONS(4356), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -116853,10 +117053,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [121817] = 3, + [122037] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4462), 16, + ACTIONS(4366), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -116873,7 +117073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4460), 23, + ACTIONS(4364), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -116897,10 +117097,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [121864] = 3, + [122084] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4142), 16, + ACTIONS(4378), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -116917,7 +117117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4140), 23, + ACTIONS(4376), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -116941,10 +117141,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [121911] = 3, + [122131] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4402), 16, + ACTIONS(4382), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -116961,7 +117161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4400), 23, + ACTIONS(4380), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -116985,10 +117185,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [121958] = 3, + [122178] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4390), 16, + ACTIONS(4242), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117005,7 +117205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4388), 23, + ACTIONS(4240), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -117029,10 +117229,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122005] = 3, + [122225] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4462), 16, + ACTIONS(4146), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117049,7 +117249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4460), 23, + ACTIONS(4144), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -117073,10 +117273,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122052] = 3, + [122272] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4462), 16, + ACTIONS(4410), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117093,7 +117293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4460), 23, + ACTIONS(4408), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -117117,10 +117317,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122099] = 3, + [122319] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4514), 16, + ACTIONS(4414), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117137,7 +117337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4512), 23, + ACTIONS(4412), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -117161,10 +117361,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122146] = 3, + [122366] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4510), 16, + ACTIONS(4430), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117181,7 +117381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4508), 23, + ACTIONS(4428), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -117205,10 +117405,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122193] = 3, + [122413] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4506), 16, + ACTIONS(4438), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117225,7 +117425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4504), 23, + ACTIONS(4436), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -117249,10 +117449,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122240] = 3, + [122460] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4502), 16, + ACTIONS(4442), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117269,7 +117469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4500), 23, + ACTIONS(4440), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -117293,10 +117493,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122287] = 3, + [122507] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4506), 16, + ACTIONS(4146), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117313,7 +117513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4504), 23, + ACTIONS(4144), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -117337,14 +117537,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122334] = 3, + [122554] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4502), 16, + ACTIONS(5035), 1, + anon_sym_COLON, + ACTIONS(5037), 1, + anon_sym_COLON_COLON, + ACTIONS(4466), 15, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, @@ -117357,11 +117560,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4500), 23, + ACTIONS(4464), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -117381,10 +117583,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122381] = 3, + [122605] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4498), 16, + ACTIONS(4474), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117401,7 +117603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4496), 23, + ACTIONS(4472), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -117425,10 +117627,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122428] = 3, + [122652] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4510), 16, + ACTIONS(4466), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117445,7 +117647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4508), 23, + ACTIONS(4464), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -117469,10 +117671,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122475] = 3, + [122699] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4506), 16, + ACTIONS(4294), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117489,7 +117691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4504), 23, + ACTIONS(4292), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -117513,10 +117715,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122522] = 3, + [122746] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4502), 16, + ACTIONS(4482), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117533,7 +117735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4500), 23, + ACTIONS(4480), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -117557,10 +117759,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122569] = 3, + [122793] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4506), 16, + ACTIONS(4490), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117577,7 +117779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4504), 23, + ACTIONS(4488), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -117601,10 +117803,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122616] = 3, + [122840] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4502), 16, + ACTIONS(4494), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117621,7 +117823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4500), 23, + ACTIONS(4492), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -117645,14 +117847,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122663] = 3, + [122887] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4498), 16, + ACTIONS(5035), 1, + anon_sym_COLON, + ACTIONS(5037), 1, + anon_sym_COLON_COLON, + ACTIONS(4498), 15, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, @@ -117665,11 +117870,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4496), 23, + ACTIONS(4496), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -117689,14 +117893,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122710] = 3, + [122938] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4494), 16, + ACTIONS(5035), 1, + anon_sym_COLON, + ACTIONS(5037), 1, + anon_sym_COLON_COLON, + ACTIONS(4502), 15, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, @@ -117709,11 +117916,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4492), 23, + ACTIONS(4500), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -117733,10 +117939,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122757] = 3, + [122989] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4490), 16, + ACTIONS(4374), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117753,7 +117959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4488), 23, + ACTIONS(4372), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -117777,10 +117983,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122804] = 3, + [123036] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4390), 16, + ACTIONS(4386), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117797,7 +118003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4388), 23, + ACTIONS(4384), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -117821,10 +118027,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122851] = 3, + [123083] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4486), 16, + ACTIONS(4394), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117841,7 +118047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4484), 23, + ACTIONS(4392), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -117865,10 +118071,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122898] = 3, + [123130] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4482), 16, + ACTIONS(4398), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117885,7 +118091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4480), 23, + ACTIONS(4396), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -117909,10 +118115,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122945] = 3, + [123177] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4482), 16, + ACTIONS(4294), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117929,7 +118135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4480), 23, + ACTIONS(4292), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -117953,10 +118159,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122992] = 3, + [123224] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4478), 16, + ACTIONS(4406), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117973,7 +118179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4476), 23, + ACTIONS(4404), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -117997,10 +118203,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123039] = 3, + [123271] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4394), 16, + ACTIONS(4142), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118017,7 +118223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4392), 23, + ACTIONS(4140), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -118041,10 +118247,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123086] = 3, + [123318] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4474), 16, + ACTIONS(4514), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118061,7 +118267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4472), 23, + ACTIONS(4512), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -118085,10 +118291,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123133] = 3, + [123365] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4482), 16, + ACTIONS(4298), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118105,7 +118311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4480), 23, + ACTIONS(4296), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -118129,10 +118335,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123180] = 3, + [123412] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4482), 16, + ACTIONS(4418), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118149,7 +118355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4480), 23, + ACTIONS(4416), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -118173,10 +118379,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123227] = 3, + [123459] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4478), 16, + ACTIONS(4422), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118193,7 +118399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4476), 23, + ACTIONS(4420), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -118217,10 +118423,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123274] = 3, + [123506] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4474), 16, + ACTIONS(4434), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118237,7 +118443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4472), 23, + ACTIONS(4432), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -118261,10 +118467,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123321] = 3, + [123553] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4470), 16, + ACTIONS(4434), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118281,7 +118487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4468), 23, + ACTIONS(4432), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -118305,10 +118511,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123368] = 3, + [123600] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4466), 16, + ACTIONS(4418), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118325,7 +118531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4464), 23, + ACTIONS(4416), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -118349,10 +118555,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123415] = 3, + [123647] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4458), 16, + ACTIONS(4422), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118369,7 +118575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4456), 23, + ACTIONS(4420), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -118393,10 +118599,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123462] = 3, + [123694] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4454), 16, + ACTIONS(4434), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118413,7 +118619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4452), 23, + ACTIONS(4432), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -118437,10 +118643,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123509] = 3, + [123741] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4450), 16, + ACTIONS(4434), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118457,7 +118663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4448), 23, + ACTIONS(4432), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -118481,7 +118687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123556] = 3, + [123788] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(4446), 16, @@ -118525,10 +118731,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123603] = 3, + [123835] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4446), 16, + ACTIONS(4450), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118545,7 +118751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4444), 23, + ACTIONS(4448), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -118569,10 +118775,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123650] = 3, + [123882] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4442), 16, + ACTIONS(4454), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118589,7 +118795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4440), 23, + ACTIONS(4452), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -118613,10 +118819,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123697] = 3, + [123929] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4442), 16, + ACTIONS(4458), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118633,7 +118839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4440), 23, + ACTIONS(4456), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -118657,10 +118863,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123744] = 3, + [123976] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4398), 16, + ACTIONS(4462), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118677,7 +118883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4396), 23, + ACTIONS(4460), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -118701,10 +118907,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123791] = 3, + [124023] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4438), 16, + ACTIONS(4478), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118721,7 +118927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4436), 23, + ACTIONS(4476), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -118745,10 +118951,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123838] = 3, + [124070] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4434), 16, + ACTIONS(4462), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118765,7 +118971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4432), 23, + ACTIONS(4460), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -118789,10 +118995,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123885] = 3, + [124117] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4430), 16, + ACTIONS(4478), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118809,7 +119015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4428), 23, + ACTIONS(4476), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -118833,10 +119039,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123932] = 3, + [124164] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4426), 16, + ACTIONS(4510), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118853,7 +119059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4424), 23, + ACTIONS(4508), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -118877,10 +119083,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123979] = 3, + [124211] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4422), 16, + ACTIONS(4486), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118897,7 +119103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4420), 23, + ACTIONS(4484), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -118921,10 +119127,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [124026] = 3, + [124258] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4146), 16, + ACTIONS(4458), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118941,7 +119147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4144), 23, + ACTIONS(4456), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -118965,10 +119171,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [124073] = 3, + [124305] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4406), 16, + ACTIONS(4462), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118985,7 +119191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4404), 23, + ACTIONS(4460), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -119009,10 +119215,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [124120] = 3, + [124352] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4418), 16, + ACTIONS(4478), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -119029,7 +119235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4416), 23, + ACTIONS(4476), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -119053,10 +119259,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [124167] = 3, + [124399] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4414), 16, + ACTIONS(4462), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -119073,7 +119279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4412), 23, + ACTIONS(4460), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -119097,10 +119303,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [124214] = 3, + [124446] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4410), 16, + ACTIONS(4478), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -119117,7 +119323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4408), 23, + ACTIONS(4476), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -119141,10 +119347,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [124261] = 3, + [124493] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4414), 16, + ACTIONS(4486), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -119161,7 +119367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4412), 23, + ACTIONS(4484), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -119185,10 +119391,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [124308] = 3, + [124540] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4418), 16, + ACTIONS(4506), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -119205,7 +119411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(4416), 23, + ACTIONS(4504), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -119229,153 +119435,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [124355] = 16, + [124587] = 16, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5035), 1, + ACTIONS(5039), 1, anon_sym_POUND, - ACTIONS(5037), 1, - aux_sym_num_lit_token1, ACTIONS(5041), 1, - anon_sym_DQUOTE, - ACTIONS(5045), 1, - anon_sym_SQUOTE, - ACTIONS(5047), 1, - anon_sym_COMMA, - ACTIONS(5053), 1, - anon_sym_SLASH, - STATE(1691), 1, - sym_format_prefix_parameters, - STATE(1956), 1, - sym_format_modifiers, - STATE(2335), 1, - sym__format_token, - STATE(2408), 1, - aux_sym_format_modifiers_repeat1, - STATE(3371), 1, - sym_format_directive_type, - ACTIONS(5039), 2, - anon_sym_COLON, - anon_sym_AT, - ACTIONS(5049), 2, - anon_sym_v, - anon_sym_V, - ACTIONS(5051), 2, - anon_sym_AT_COLON, - anon_sym_COLON_AT, - ACTIONS(5043), 21, - anon_sym_TILDE, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - aux_sym_format_directive_type_token1, - aux_sym_format_directive_type_token2, - anon_sym_LF, - anon_sym_CR, - aux_sym_format_directive_type_token3, - aux_sym_format_directive_type_token4, - aux_sym_format_directive_type_token5, - aux_sym_format_directive_type_token6, - anon_sym__, - aux_sym_format_directive_type_token7, - aux_sym_format_directive_type_token8, - aux_sym_format_directive_type_token9, - aux_sym_format_directive_type_token10, - anon_sym_SEMI, - anon_sym_QMARK, - anon_sym_Newline, - aux_sym_format_directive_type_token11, - [124427] = 16, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5035), 1, - anon_sym_POUND, - ACTIONS(5037), 1, aux_sym_num_lit_token1, ACTIONS(5045), 1, - anon_sym_SQUOTE, - ACTIONS(5047), 1, - anon_sym_COMMA, - ACTIONS(5053), 1, - anon_sym_SLASH, - ACTIONS(5055), 1, anon_sym_DQUOTE, - STATE(1691), 1, - sym_format_prefix_parameters, - STATE(1956), 1, - sym_format_modifiers, - STATE(2335), 1, - sym__format_token, - STATE(2408), 1, - aux_sym_format_modifiers_repeat1, - STATE(3371), 1, - sym_format_directive_type, - ACTIONS(5039), 2, - anon_sym_COLON, - anon_sym_AT, - ACTIONS(5049), 2, - anon_sym_v, - anon_sym_V, - ACTIONS(5051), 2, - anon_sym_AT_COLON, - anon_sym_COLON_AT, - ACTIONS(5043), 21, - anon_sym_TILDE, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - aux_sym_format_directive_type_token1, - aux_sym_format_directive_type_token2, - anon_sym_LF, - anon_sym_CR, - aux_sym_format_directive_type_token3, - aux_sym_format_directive_type_token4, - aux_sym_format_directive_type_token5, - aux_sym_format_directive_type_token6, - anon_sym__, - aux_sym_format_directive_type_token7, - aux_sym_format_directive_type_token8, - aux_sym_format_directive_type_token9, - aux_sym_format_directive_type_token10, - anon_sym_SEMI, - anon_sym_QMARK, - anon_sym_Newline, - aux_sym_format_directive_type_token11, - [124499] = 16, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5035), 1, - anon_sym_POUND, - ACTIONS(5037), 1, - aux_sym_num_lit_token1, - ACTIONS(5045), 1, + ACTIONS(5049), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5051), 1, anon_sym_COMMA, - ACTIONS(5053), 1, - anon_sym_SLASH, ACTIONS(5057), 1, - anon_sym_DQUOTE, - STATE(1691), 1, + anon_sym_SLASH, + STATE(1730), 1, sym_format_prefix_parameters, - STATE(1956), 1, + STATE(1973), 1, sym_format_modifiers, - STATE(2335), 1, + STATE(2333), 1, sym__format_token, - STATE(2408), 1, + STATE(2437), 1, aux_sym_format_modifiers_repeat1, - STATE(3371), 1, + STATE(3393), 1, sym_format_directive_type, - ACTIONS(5039), 2, + ACTIONS(5043), 2, anon_sym_COLON, anon_sym_AT, - ACTIONS(5049), 2, + ACTIONS(5053), 2, anon_sym_v, anon_sym_V, - ACTIONS(5051), 2, + ACTIONS(5055), 2, anon_sym_AT_COLON, anon_sym_COLON_AT, - ACTIONS(5043), 21, + ACTIONS(5047), 21, anon_sym_TILDE, anon_sym_PERCENT, anon_sym_AMP, @@ -119397,41 +119491,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_Newline, aux_sym_format_directive_type_token11, - [124571] = 16, + [124659] = 16, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5035), 1, + ACTIONS(5039), 1, anon_sym_POUND, - ACTIONS(5037), 1, + ACTIONS(5041), 1, aux_sym_num_lit_token1, - ACTIONS(5045), 1, + ACTIONS(5049), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5051), 1, anon_sym_COMMA, - ACTIONS(5053), 1, + ACTIONS(5057), 1, anon_sym_SLASH, ACTIONS(5059), 1, anon_sym_DQUOTE, - STATE(1691), 1, + STATE(1730), 1, sym_format_prefix_parameters, - STATE(1956), 1, + STATE(1973), 1, sym_format_modifiers, - STATE(2335), 1, + STATE(2333), 1, sym__format_token, - STATE(2408), 1, + STATE(2437), 1, aux_sym_format_modifiers_repeat1, - STATE(3371), 1, + STATE(3393), 1, sym_format_directive_type, - ACTIONS(5039), 2, + ACTIONS(5043), 2, anon_sym_COLON, anon_sym_AT, - ACTIONS(5049), 2, + ACTIONS(5053), 2, anon_sym_v, anon_sym_V, - ACTIONS(5051), 2, + ACTIONS(5055), 2, anon_sym_AT_COLON, anon_sym_COLON_AT, - ACTIONS(5043), 21, + ACTIONS(5047), 21, anon_sym_TILDE, anon_sym_PERCENT, anon_sym_AMP, @@ -119453,41 +119547,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_Newline, aux_sym_format_directive_type_token11, - [124643] = 16, + [124731] = 16, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5035), 1, + ACTIONS(5039), 1, anon_sym_POUND, - ACTIONS(5037), 1, + ACTIONS(5041), 1, aux_sym_num_lit_token1, - ACTIONS(5045), 1, + ACTIONS(5049), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5051), 1, anon_sym_COMMA, - ACTIONS(5053), 1, + ACTIONS(5057), 1, anon_sym_SLASH, ACTIONS(5061), 1, anon_sym_DQUOTE, - STATE(1691), 1, + STATE(1730), 1, sym_format_prefix_parameters, - STATE(1956), 1, + STATE(1973), 1, sym_format_modifiers, - STATE(2335), 1, + STATE(2333), 1, sym__format_token, - STATE(2408), 1, + STATE(2437), 1, aux_sym_format_modifiers_repeat1, - STATE(3371), 1, + STATE(3393), 1, sym_format_directive_type, - ACTIONS(5039), 2, + ACTIONS(5043), 2, anon_sym_COLON, anon_sym_AT, - ACTIONS(5049), 2, + ACTIONS(5053), 2, anon_sym_v, anon_sym_V, - ACTIONS(5051), 2, + ACTIONS(5055), 2, anon_sym_AT_COLON, anon_sym_COLON_AT, - ACTIONS(5043), 21, + ACTIONS(5047), 21, anon_sym_TILDE, anon_sym_PERCENT, anon_sym_AMP, @@ -119509,41 +119603,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_Newline, aux_sym_format_directive_type_token11, - [124715] = 16, + [124803] = 16, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5035), 1, + ACTIONS(5039), 1, anon_sym_POUND, - ACTIONS(5037), 1, + ACTIONS(5041), 1, aux_sym_num_lit_token1, - ACTIONS(5045), 1, + ACTIONS(5049), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5051), 1, anon_sym_COMMA, - ACTIONS(5053), 1, + ACTIONS(5057), 1, anon_sym_SLASH, ACTIONS(5063), 1, anon_sym_DQUOTE, - STATE(1691), 1, + STATE(1730), 1, sym_format_prefix_parameters, - STATE(1956), 1, + STATE(1973), 1, sym_format_modifiers, - STATE(2335), 1, + STATE(2333), 1, sym__format_token, - STATE(2408), 1, + STATE(2437), 1, aux_sym_format_modifiers_repeat1, - STATE(3371), 1, + STATE(3393), 1, sym_format_directive_type, - ACTIONS(5039), 2, + ACTIONS(5043), 2, anon_sym_COLON, anon_sym_AT, - ACTIONS(5049), 2, + ACTIONS(5053), 2, anon_sym_v, anon_sym_V, - ACTIONS(5051), 2, + ACTIONS(5055), 2, anon_sym_AT_COLON, anon_sym_COLON_AT, - ACTIONS(5043), 21, + ACTIONS(5047), 21, anon_sym_TILDE, anon_sym_PERCENT, anon_sym_AMP, @@ -119565,41 +119659,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_Newline, aux_sym_format_directive_type_token11, - [124787] = 16, + [124875] = 16, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5035), 1, + ACTIONS(5039), 1, anon_sym_POUND, - ACTIONS(5037), 1, + ACTIONS(5041), 1, aux_sym_num_lit_token1, - ACTIONS(5045), 1, + ACTIONS(5049), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5051), 1, anon_sym_COMMA, - ACTIONS(5053), 1, + ACTIONS(5057), 1, anon_sym_SLASH, ACTIONS(5065), 1, anon_sym_DQUOTE, - STATE(1691), 1, + STATE(1730), 1, sym_format_prefix_parameters, - STATE(1956), 1, + STATE(1973), 1, sym_format_modifiers, - STATE(2335), 1, + STATE(2333), 1, sym__format_token, - STATE(2408), 1, + STATE(2437), 1, aux_sym_format_modifiers_repeat1, - STATE(3371), 1, + STATE(3393), 1, sym_format_directive_type, - ACTIONS(5039), 2, + ACTIONS(5043), 2, anon_sym_COLON, anon_sym_AT, - ACTIONS(5049), 2, + ACTIONS(5053), 2, anon_sym_v, anon_sym_V, - ACTIONS(5051), 2, + ACTIONS(5055), 2, anon_sym_AT_COLON, anon_sym_COLON_AT, - ACTIONS(5043), 21, + ACTIONS(5047), 21, anon_sym_TILDE, anon_sym_PERCENT, anon_sym_AMP, @@ -119621,41 +119715,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_Newline, aux_sym_format_directive_type_token11, - [124859] = 16, + [124947] = 16, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5035), 1, + ACTIONS(5039), 1, anon_sym_POUND, - ACTIONS(5037), 1, + ACTIONS(5041), 1, aux_sym_num_lit_token1, - ACTIONS(5045), 1, + ACTIONS(5049), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5051), 1, anon_sym_COMMA, - ACTIONS(5053), 1, + ACTIONS(5057), 1, anon_sym_SLASH, ACTIONS(5067), 1, anon_sym_DQUOTE, - STATE(1691), 1, + STATE(1730), 1, sym_format_prefix_parameters, - STATE(1956), 1, + STATE(1973), 1, sym_format_modifiers, - STATE(2335), 1, + STATE(2333), 1, sym__format_token, - STATE(2408), 1, + STATE(2437), 1, aux_sym_format_modifiers_repeat1, - STATE(3371), 1, + STATE(3393), 1, sym_format_directive_type, - ACTIONS(5039), 2, + ACTIONS(5043), 2, anon_sym_COLON, anon_sym_AT, - ACTIONS(5049), 2, + ACTIONS(5053), 2, anon_sym_v, anon_sym_V, - ACTIONS(5051), 2, + ACTIONS(5055), 2, anon_sym_AT_COLON, anon_sym_COLON_AT, - ACTIONS(5043), 21, + ACTIONS(5047), 21, anon_sym_TILDE, anon_sym_PERCENT, anon_sym_AMP, @@ -119677,41 +119771,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_Newline, aux_sym_format_directive_type_token11, - [124931] = 16, + [125019] = 16, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5035), 1, + ACTIONS(5039), 1, anon_sym_POUND, - ACTIONS(5037), 1, + ACTIONS(5041), 1, aux_sym_num_lit_token1, - ACTIONS(5045), 1, + ACTIONS(5049), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5051), 1, anon_sym_COMMA, - ACTIONS(5053), 1, + ACTIONS(5057), 1, anon_sym_SLASH, ACTIONS(5069), 1, anon_sym_DQUOTE, - STATE(1691), 1, + STATE(1730), 1, sym_format_prefix_parameters, - STATE(1956), 1, + STATE(1973), 1, sym_format_modifiers, - STATE(2335), 1, + STATE(2333), 1, sym__format_token, - STATE(2408), 1, + STATE(2437), 1, aux_sym_format_modifiers_repeat1, - STATE(3371), 1, + STATE(3393), 1, sym_format_directive_type, - ACTIONS(5039), 2, + ACTIONS(5043), 2, anon_sym_COLON, anon_sym_AT, - ACTIONS(5049), 2, + ACTIONS(5053), 2, anon_sym_v, anon_sym_V, - ACTIONS(5051), 2, + ACTIONS(5055), 2, anon_sym_AT_COLON, anon_sym_COLON_AT, - ACTIONS(5043), 21, + ACTIONS(5047), 21, anon_sym_TILDE, anon_sym_PERCENT, anon_sym_AMP, @@ -119733,41 +119827,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_Newline, aux_sym_format_directive_type_token11, - [125003] = 16, + [125091] = 16, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5035), 1, + ACTIONS(5039), 1, anon_sym_POUND, - ACTIONS(5037), 1, + ACTIONS(5041), 1, aux_sym_num_lit_token1, - ACTIONS(5045), 1, + ACTIONS(5049), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5051), 1, anon_sym_COMMA, - ACTIONS(5053), 1, + ACTIONS(5057), 1, anon_sym_SLASH, ACTIONS(5071), 1, anon_sym_DQUOTE, - STATE(1691), 1, + STATE(1730), 1, sym_format_prefix_parameters, - STATE(1956), 1, + STATE(1973), 1, sym_format_modifiers, - STATE(2335), 1, + STATE(2333), 1, sym__format_token, - STATE(2408), 1, + STATE(2437), 1, aux_sym_format_modifiers_repeat1, - STATE(3371), 1, + STATE(3393), 1, sym_format_directive_type, - ACTIONS(5039), 2, + ACTIONS(5043), 2, anon_sym_COLON, anon_sym_AT, - ACTIONS(5049), 2, + ACTIONS(5053), 2, anon_sym_v, anon_sym_V, - ACTIONS(5051), 2, + ACTIONS(5055), 2, anon_sym_AT_COLON, anon_sym_COLON_AT, - ACTIONS(5043), 21, + ACTIONS(5047), 21, anon_sym_TILDE, anon_sym_PERCENT, anon_sym_AMP, @@ -119789,41 +119883,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_Newline, aux_sym_format_directive_type_token11, - [125075] = 16, + [125163] = 16, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5035), 1, + ACTIONS(5039), 1, anon_sym_POUND, - ACTIONS(5037), 1, + ACTIONS(5041), 1, aux_sym_num_lit_token1, - ACTIONS(5045), 1, + ACTIONS(5049), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5051), 1, anon_sym_COMMA, - ACTIONS(5053), 1, + ACTIONS(5057), 1, anon_sym_SLASH, ACTIONS(5073), 1, anon_sym_DQUOTE, - STATE(1691), 1, + STATE(1730), 1, sym_format_prefix_parameters, - STATE(1956), 1, + STATE(1973), 1, sym_format_modifiers, - STATE(2335), 1, + STATE(2333), 1, sym__format_token, - STATE(2408), 1, + STATE(2437), 1, aux_sym_format_modifiers_repeat1, - STATE(3371), 1, + STATE(3393), 1, sym_format_directive_type, - ACTIONS(5039), 2, + ACTIONS(5043), 2, anon_sym_COLON, anon_sym_AT, - ACTIONS(5049), 2, + ACTIONS(5053), 2, anon_sym_v, anon_sym_V, - ACTIONS(5051), 2, + ACTIONS(5055), 2, anon_sym_AT_COLON, anon_sym_COLON_AT, - ACTIONS(5043), 21, + ACTIONS(5047), 21, anon_sym_TILDE, anon_sym_PERCENT, anon_sym_AMP, @@ -119845,41 +119939,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_Newline, aux_sym_format_directive_type_token11, - [125147] = 16, + [125235] = 16, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5035), 1, + ACTIONS(5039), 1, anon_sym_POUND, - ACTIONS(5037), 1, + ACTIONS(5041), 1, aux_sym_num_lit_token1, - ACTIONS(5045), 1, + ACTIONS(5049), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5051), 1, anon_sym_COMMA, - ACTIONS(5053), 1, + ACTIONS(5057), 1, anon_sym_SLASH, ACTIONS(5075), 1, anon_sym_DQUOTE, - STATE(1691), 1, + STATE(1730), 1, sym_format_prefix_parameters, - STATE(1956), 1, + STATE(1973), 1, sym_format_modifiers, - STATE(2335), 1, + STATE(2333), 1, sym__format_token, - STATE(2408), 1, + STATE(2437), 1, aux_sym_format_modifiers_repeat1, - STATE(3371), 1, + STATE(3393), 1, sym_format_directive_type, - ACTIONS(5039), 2, + ACTIONS(5043), 2, anon_sym_COLON, anon_sym_AT, - ACTIONS(5049), 2, + ACTIONS(5053), 2, anon_sym_v, anon_sym_V, - ACTIONS(5051), 2, + ACTIONS(5055), 2, anon_sym_AT_COLON, anon_sym_COLON_AT, - ACTIONS(5043), 21, + ACTIONS(5047), 21, anon_sym_TILDE, anon_sym_PERCENT, anon_sym_AMP, @@ -119901,41 +119995,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_Newline, aux_sym_format_directive_type_token11, - [125219] = 16, + [125307] = 16, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5035), 1, + ACTIONS(5039), 1, anon_sym_POUND, - ACTIONS(5037), 1, + ACTIONS(5041), 1, aux_sym_num_lit_token1, - ACTIONS(5045), 1, + ACTIONS(5049), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5051), 1, anon_sym_COMMA, - ACTIONS(5053), 1, + ACTIONS(5057), 1, anon_sym_SLASH, ACTIONS(5077), 1, anon_sym_DQUOTE, - STATE(1691), 1, + STATE(1730), 1, sym_format_prefix_parameters, - STATE(1956), 1, + STATE(1973), 1, sym_format_modifiers, - STATE(2335), 1, + STATE(2333), 1, sym__format_token, - STATE(2408), 1, + STATE(2437), 1, aux_sym_format_modifiers_repeat1, - STATE(3371), 1, + STATE(3393), 1, sym_format_directive_type, - ACTIONS(5039), 2, + ACTIONS(5043), 2, anon_sym_COLON, anon_sym_AT, - ACTIONS(5049), 2, + ACTIONS(5053), 2, anon_sym_v, anon_sym_V, - ACTIONS(5051), 2, + ACTIONS(5055), 2, anon_sym_AT_COLON, anon_sym_COLON_AT, - ACTIONS(5043), 21, + ACTIONS(5047), 21, anon_sym_TILDE, anon_sym_PERCENT, anon_sym_AMP, @@ -119957,41 +120051,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_Newline, aux_sym_format_directive_type_token11, - [125291] = 16, + [125379] = 16, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5035), 1, + ACTIONS(5039), 1, anon_sym_POUND, - ACTIONS(5037), 1, + ACTIONS(5041), 1, aux_sym_num_lit_token1, - ACTIONS(5045), 1, + ACTIONS(5049), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5051), 1, anon_sym_COMMA, - ACTIONS(5053), 1, + ACTIONS(5057), 1, anon_sym_SLASH, ACTIONS(5079), 1, anon_sym_DQUOTE, - STATE(1691), 1, + STATE(1730), 1, sym_format_prefix_parameters, - STATE(1956), 1, + STATE(1973), 1, sym_format_modifiers, - STATE(2335), 1, + STATE(2333), 1, sym__format_token, - STATE(2408), 1, + STATE(2437), 1, aux_sym_format_modifiers_repeat1, - STATE(3371), 1, + STATE(3393), 1, sym_format_directive_type, - ACTIONS(5039), 2, + ACTIONS(5043), 2, anon_sym_COLON, anon_sym_AT, - ACTIONS(5049), 2, + ACTIONS(5053), 2, anon_sym_v, anon_sym_V, - ACTIONS(5051), 2, + ACTIONS(5055), 2, anon_sym_AT_COLON, anon_sym_COLON_AT, - ACTIONS(5043), 21, + ACTIONS(5047), 21, anon_sym_TILDE, anon_sym_PERCENT, anon_sym_AMP, @@ -120013,41 +120107,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_Newline, aux_sym_format_directive_type_token11, - [125363] = 16, + [125451] = 16, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5035), 1, + ACTIONS(5039), 1, anon_sym_POUND, - ACTIONS(5037), 1, + ACTIONS(5041), 1, aux_sym_num_lit_token1, - ACTIONS(5045), 1, + ACTIONS(5049), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5051), 1, anon_sym_COMMA, - ACTIONS(5053), 1, + ACTIONS(5057), 1, anon_sym_SLASH, ACTIONS(5081), 1, anon_sym_DQUOTE, - STATE(1691), 1, + STATE(1730), 1, sym_format_prefix_parameters, - STATE(1956), 1, + STATE(1973), 1, sym_format_modifiers, - STATE(2335), 1, + STATE(2333), 1, sym__format_token, - STATE(2408), 1, + STATE(2437), 1, aux_sym_format_modifiers_repeat1, - STATE(3371), 1, + STATE(3393), 1, sym_format_directive_type, - ACTIONS(5039), 2, + ACTIONS(5043), 2, anon_sym_COLON, anon_sym_AT, - ACTIONS(5049), 2, + ACTIONS(5053), 2, anon_sym_v, anon_sym_V, - ACTIONS(5051), 2, + ACTIONS(5055), 2, anon_sym_AT_COLON, anon_sym_COLON_AT, - ACTIONS(5043), 21, + ACTIONS(5047), 21, anon_sym_TILDE, anon_sym_PERCENT, anon_sym_AMP, @@ -120069,41 +120163,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_Newline, aux_sym_format_directive_type_token11, - [125435] = 16, + [125523] = 16, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5035), 1, + ACTIONS(5039), 1, anon_sym_POUND, - ACTIONS(5037), 1, + ACTIONS(5041), 1, aux_sym_num_lit_token1, - ACTIONS(5045), 1, + ACTIONS(5049), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5051), 1, anon_sym_COMMA, - ACTIONS(5053), 1, + ACTIONS(5057), 1, anon_sym_SLASH, ACTIONS(5083), 1, anon_sym_DQUOTE, - STATE(1691), 1, + STATE(1730), 1, sym_format_prefix_parameters, - STATE(1956), 1, + STATE(1973), 1, sym_format_modifiers, - STATE(2335), 1, + STATE(2333), 1, sym__format_token, - STATE(2408), 1, + STATE(2437), 1, aux_sym_format_modifiers_repeat1, - STATE(3371), 1, + STATE(3393), 1, sym_format_directive_type, - ACTIONS(5039), 2, + ACTIONS(5043), 2, anon_sym_COLON, anon_sym_AT, - ACTIONS(5049), 2, + ACTIONS(5053), 2, anon_sym_v, anon_sym_V, - ACTIONS(5051), 2, + ACTIONS(5055), 2, anon_sym_AT_COLON, anon_sym_COLON_AT, - ACTIONS(5043), 21, + ACTIONS(5047), 21, anon_sym_TILDE, anon_sym_PERCENT, anon_sym_AMP, @@ -120125,41 +120219,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_Newline, aux_sym_format_directive_type_token11, - [125507] = 16, + [125595] = 16, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5035), 1, + ACTIONS(5039), 1, anon_sym_POUND, - ACTIONS(5037), 1, + ACTIONS(5041), 1, aux_sym_num_lit_token1, - ACTIONS(5045), 1, + ACTIONS(5049), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5051), 1, anon_sym_COMMA, - ACTIONS(5053), 1, + ACTIONS(5057), 1, anon_sym_SLASH, ACTIONS(5085), 1, anon_sym_DQUOTE, - STATE(1691), 1, + STATE(1730), 1, sym_format_prefix_parameters, - STATE(1956), 1, + STATE(1973), 1, sym_format_modifiers, - STATE(2335), 1, + STATE(2333), 1, sym__format_token, - STATE(2408), 1, + STATE(2437), 1, aux_sym_format_modifiers_repeat1, - STATE(3371), 1, + STATE(3393), 1, sym_format_directive_type, - ACTIONS(5039), 2, + ACTIONS(5043), 2, anon_sym_COLON, anon_sym_AT, - ACTIONS(5049), 2, + ACTIONS(5053), 2, anon_sym_v, anon_sym_V, - ACTIONS(5051), 2, + ACTIONS(5055), 2, anon_sym_AT_COLON, anon_sym_COLON_AT, - ACTIONS(5043), 21, + ACTIONS(5047), 21, anon_sym_TILDE, anon_sym_PERCENT, anon_sym_AMP, @@ -120181,41 +120275,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_Newline, aux_sym_format_directive_type_token11, - [125579] = 16, + [125667] = 16, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5035), 1, + ACTIONS(5039), 1, anon_sym_POUND, - ACTIONS(5037), 1, + ACTIONS(5041), 1, aux_sym_num_lit_token1, - ACTIONS(5045), 1, + ACTIONS(5049), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5051), 1, anon_sym_COMMA, - ACTIONS(5053), 1, + ACTIONS(5057), 1, anon_sym_SLASH, ACTIONS(5087), 1, anon_sym_DQUOTE, - STATE(1691), 1, + STATE(1730), 1, sym_format_prefix_parameters, - STATE(1956), 1, + STATE(1973), 1, sym_format_modifiers, - STATE(2335), 1, + STATE(2333), 1, sym__format_token, - STATE(2408), 1, + STATE(2437), 1, aux_sym_format_modifiers_repeat1, - STATE(3371), 1, + STATE(3393), 1, sym_format_directive_type, - ACTIONS(5039), 2, + ACTIONS(5043), 2, anon_sym_COLON, anon_sym_AT, - ACTIONS(5049), 2, + ACTIONS(5053), 2, anon_sym_v, anon_sym_V, - ACTIONS(5051), 2, + ACTIONS(5055), 2, anon_sym_AT_COLON, anon_sym_COLON_AT, - ACTIONS(5043), 21, + ACTIONS(5047), 21, anon_sym_TILDE, anon_sym_PERCENT, anon_sym_AMP, @@ -120237,41 +120331,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_Newline, aux_sym_format_directive_type_token11, - [125651] = 16, + [125739] = 16, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5035), 1, + ACTIONS(5039), 1, anon_sym_POUND, - ACTIONS(5037), 1, + ACTIONS(5041), 1, aux_sym_num_lit_token1, - ACTIONS(5045), 1, + ACTIONS(5049), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5051), 1, anon_sym_COMMA, - ACTIONS(5053), 1, + ACTIONS(5057), 1, anon_sym_SLASH, ACTIONS(5089), 1, anon_sym_DQUOTE, - STATE(1691), 1, + STATE(1730), 1, sym_format_prefix_parameters, - STATE(1956), 1, + STATE(1973), 1, sym_format_modifiers, - STATE(2335), 1, + STATE(2333), 1, sym__format_token, - STATE(2408), 1, + STATE(2437), 1, aux_sym_format_modifiers_repeat1, - STATE(3371), 1, + STATE(3393), 1, sym_format_directive_type, - ACTIONS(5039), 2, + ACTIONS(5043), 2, anon_sym_COLON, anon_sym_AT, - ACTIONS(5049), 2, + ACTIONS(5053), 2, anon_sym_v, anon_sym_V, - ACTIONS(5051), 2, + ACTIONS(5055), 2, anon_sym_AT_COLON, anon_sym_COLON_AT, - ACTIONS(5043), 21, + ACTIONS(5047), 21, anon_sym_TILDE, anon_sym_PERCENT, anon_sym_AMP, @@ -120293,41 +120387,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_Newline, aux_sym_format_directive_type_token11, - [125723] = 16, + [125811] = 16, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5035), 1, + ACTIONS(5039), 1, anon_sym_POUND, - ACTIONS(5037), 1, + ACTIONS(5041), 1, aux_sym_num_lit_token1, - ACTIONS(5045), 1, + ACTIONS(5049), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5051), 1, anon_sym_COMMA, - ACTIONS(5053), 1, + ACTIONS(5057), 1, anon_sym_SLASH, ACTIONS(5091), 1, anon_sym_DQUOTE, - STATE(1691), 1, + STATE(1730), 1, sym_format_prefix_parameters, - STATE(1956), 1, + STATE(1973), 1, sym_format_modifiers, - STATE(2335), 1, + STATE(2333), 1, sym__format_token, - STATE(2408), 1, + STATE(2437), 1, aux_sym_format_modifiers_repeat1, - STATE(3371), 1, + STATE(3393), 1, sym_format_directive_type, - ACTIONS(5039), 2, + ACTIONS(5043), 2, anon_sym_COLON, anon_sym_AT, - ACTIONS(5049), 2, + ACTIONS(5053), 2, anon_sym_v, anon_sym_V, - ACTIONS(5051), 2, + ACTIONS(5055), 2, anon_sym_AT_COLON, anon_sym_COLON_AT, - ACTIONS(5043), 21, + ACTIONS(5047), 21, anon_sym_TILDE, anon_sym_PERCENT, anon_sym_AMP, @@ -120349,39 +120443,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_Newline, aux_sym_format_directive_type_token11, - [125795] = 15, + [125883] = 16, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5035), 1, + ACTIONS(5039), 1, anon_sym_POUND, - ACTIONS(5037), 1, + ACTIONS(5041), 1, aux_sym_num_lit_token1, - ACTIONS(5045), 1, + ACTIONS(5049), 1, anon_sym_SQUOTE, - ACTIONS(5047), 1, + ACTIONS(5051), 1, anon_sym_COMMA, - ACTIONS(5053), 1, + ACTIONS(5057), 1, anon_sym_SLASH, - STATE(1691), 1, + ACTIONS(5093), 1, + anon_sym_DQUOTE, + STATE(1730), 1, sym_format_prefix_parameters, - STATE(1956), 1, + STATE(1973), 1, sym_format_modifiers, - STATE(2335), 1, + STATE(2333), 1, sym__format_token, - STATE(2408), 1, + STATE(2437), 1, aux_sym_format_modifiers_repeat1, - STATE(3371), 1, + STATE(3393), 1, sym_format_directive_type, - ACTIONS(5039), 2, + ACTIONS(5043), 2, anon_sym_COLON, anon_sym_AT, - ACTIONS(5049), 2, + ACTIONS(5053), 2, anon_sym_v, anon_sym_V, - ACTIONS(5051), 2, + ACTIONS(5055), 2, anon_sym_AT_COLON, anon_sym_COLON_AT, - ACTIONS(5043), 21, + ACTIONS(5047), 21, anon_sym_TILDE, anon_sym_PERCENT, anon_sym_AMP, @@ -120403,10 +120499,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_Newline, aux_sym_format_directive_type_token11, - [125864] = 3, + [125955] = 16, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4502), 10, + ACTIONS(5039), 1, + anon_sym_POUND, + ACTIONS(5041), 1, + aux_sym_num_lit_token1, + ACTIONS(5049), 1, + anon_sym_SQUOTE, + ACTIONS(5051), 1, + anon_sym_COMMA, + ACTIONS(5057), 1, + anon_sym_SLASH, + ACTIONS(5095), 1, + anon_sym_DQUOTE, + STATE(1730), 1, + sym_format_prefix_parameters, + STATE(1973), 1, + sym_format_modifiers, + STATE(2333), 1, + sym__format_token, + STATE(2437), 1, + aux_sym_format_modifiers_repeat1, + STATE(3393), 1, + sym_format_directive_type, + ACTIONS(5043), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(5053), 2, + anon_sym_v, + anon_sym_V, + ACTIONS(5055), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(5047), 21, + anon_sym_TILDE, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + aux_sym_format_directive_type_token1, + aux_sym_format_directive_type_token2, + anon_sym_LF, + anon_sym_CR, + aux_sym_format_directive_type_token3, + aux_sym_format_directive_type_token4, + aux_sym_format_directive_type_token5, + aux_sym_format_directive_type_token6, + anon_sym__, + aux_sym_format_directive_type_token7, + aux_sym_format_directive_type_token8, + aux_sym_format_directive_type_token9, + aux_sym_format_directive_type_token10, + anon_sym_SEMI, + anon_sym_QMARK, + anon_sym_Newline, + aux_sym_format_directive_type_token11, + [126027] = 15, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5039), 1, + anon_sym_POUND, + ACTIONS(5041), 1, + aux_sym_num_lit_token1, + ACTIONS(5049), 1, + anon_sym_SQUOTE, + ACTIONS(5051), 1, + anon_sym_COMMA, + ACTIONS(5057), 1, + anon_sym_SLASH, + STATE(1730), 1, + sym_format_prefix_parameters, + STATE(1973), 1, + sym_format_modifiers, + STATE(2333), 1, + sym__format_token, + STATE(2437), 1, + aux_sym_format_modifiers_repeat1, + STATE(3393), 1, + sym_format_directive_type, + ACTIONS(5043), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(5053), 2, + anon_sym_v, + anon_sym_V, + ACTIONS(5055), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(5047), 21, + anon_sym_TILDE, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + aux_sym_format_directive_type_token1, + aux_sym_format_directive_type_token2, + anon_sym_LF, + anon_sym_CR, + aux_sym_format_directive_type_token3, + aux_sym_format_directive_type_token4, + aux_sym_format_directive_type_token5, + aux_sym_format_directive_type_token6, + anon_sym__, + aux_sym_format_directive_type_token7, + aux_sym_format_directive_type_token8, + aux_sym_format_directive_type_token9, + aux_sym_format_directive_type_token10, + anon_sym_SEMI, + anon_sym_QMARK, + anon_sym_Newline, + aux_sym_format_directive_type_token11, + [126096] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4398), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120417,7 +120623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4500), 26, + ACTIONS(4396), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -120444,10 +120650,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [125908] = 3, + [126140] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4262), 10, + ACTIONS(4182), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120458,7 +120664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4260), 26, + ACTIONS(4180), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -120485,10 +120691,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [125952] = 3, + [126184] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4442), 10, + ACTIONS(5100), 1, + anon_sym_POUND_, + ACTIONS(5097), 2, + sym__ws, + sym_comment, + STATE(1447), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(4102), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120499,7 +120714,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4440), 26, + anon_sym_EQ, + ACTIONS(4104), 19, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [126234] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4514), 10, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + ACTIONS(4512), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -120526,36 +120776,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [125996] = 6, + [126278] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5096), 1, - anon_sym_POUND_, - ACTIONS(5093), 2, - sym__ws, - sym_comment, - STATE(1444), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(4130), 11, + ACTIONS(5103), 1, + anon_sym_COLON, + ACTIONS(5105), 1, + anon_sym_COLON_COLON, + ACTIONS(4502), 9, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_EQ, - ACTIONS(4132), 19, - anon_sym_COLON_COLON, + ACTIONS(4500), 25, + ts_builtin_sym_end, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -120570,26 +120819,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [126046] = 3, + [126326] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4182), 10, + ACTIONS(5103), 1, + anon_sym_COLON, + ACTIONS(5105), 1, + anon_sym_COLON_COLON, + ACTIONS(4498), 9, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4180), 26, + ACTIONS(4496), 25, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -120611,10 +120862,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [126090] = 3, + [126374] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4426), 10, + ACTIONS(4494), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120625,7 +120876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4424), 26, + ACTIONS(4492), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -120652,10 +120903,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [126134] = 3, + [126418] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4238), 10, + ACTIONS(4490), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120666,7 +120917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4236), 26, + ACTIONS(4488), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -120693,10 +120944,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [126178] = 3, + [126462] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4242), 10, + ACTIONS(4482), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120707,7 +120958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4240), 26, + ACTIONS(4480), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -120734,10 +120985,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [126222] = 3, + [126506] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4442), 10, + ACTIONS(4466), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120748,7 +120999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4440), 26, + ACTIONS(4464), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -120775,10 +121026,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [126266] = 3, + [126550] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4486), 10, + ACTIONS(4474), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120789,7 +121040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4484), 26, + ACTIONS(4472), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -120816,26 +121067,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [126310] = 3, + [126594] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4490), 10, + ACTIONS(5103), 1, + anon_sym_COLON, + ACTIONS(5105), 1, + anon_sym_COLON_COLON, + ACTIONS(4466), 9, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4488), 26, + ACTIONS(4464), 25, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -120857,10 +121110,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [126354] = 3, + [126642] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4494), 10, + ACTIONS(4146), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120871,7 +121124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4492), 26, + ACTIONS(4144), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -120898,10 +121151,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [126398] = 3, + [126686] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4498), 10, + ACTIONS(4442), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120912,7 +121165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4496), 26, + ACTIONS(4440), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -120939,10 +121192,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [126442] = 3, + [126730] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4502), 10, + ACTIONS(4438), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120953,7 +121206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4500), 26, + ACTIONS(4436), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -120980,10 +121233,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [126486] = 3, + [126774] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4502), 10, + ACTIONS(4430), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120994,7 +121247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4500), 26, + ACTIONS(4428), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -121021,10 +121274,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [126530] = 3, + [126818] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4446), 10, + ACTIONS(4414), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121035,7 +121288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4444), 26, + ACTIONS(4412), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -121062,10 +121315,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [126574] = 3, + [126862] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4506), 10, + ACTIONS(4410), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121076,7 +121329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4504), 26, + ACTIONS(4408), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -121103,10 +121356,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [126618] = 3, + [126906] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4446), 10, + ACTIONS(4294), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121117,7 +121370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4444), 26, + ACTIONS(4292), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -121144,10 +121397,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [126662] = 3, + [126950] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4246), 10, + ACTIONS(4146), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121158,7 +121411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4244), 26, + ACTIONS(4144), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -121185,10 +121438,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [126706] = 3, + [126994] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4510), 10, + ACTIONS(4390), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121199,7 +121452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4508), 26, + ACTIONS(4388), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -121226,10 +121479,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [126750] = 3, + [127038] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4498), 10, + ACTIONS(4382), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121240,7 +121493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4496), 26, + ACTIONS(4380), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -121267,10 +121520,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [126794] = 3, + [127082] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4434), 10, + ACTIONS(4378), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121281,7 +121534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4432), 26, + ACTIONS(4376), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -121308,10 +121561,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [126838] = 3, + [127126] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4506), 10, + ACTIONS(4366), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121322,7 +121575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4504), 26, + ACTIONS(4364), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -121349,12 +121602,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [126882] = 4, + [127170] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5099), 1, - aux_sym_num_lit_token2, - ACTIONS(4136), 10, + ACTIONS(4358), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121365,7 +121616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4134), 25, + ACTIONS(4356), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -121376,6 +121627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, @@ -121391,10 +121643,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [126928] = 3, + [127214] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4502), 10, + ACTIONS(4342), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121405,7 +121657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4500), 26, + ACTIONS(4340), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -121432,10 +121684,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [126972] = 3, + [127258] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4202), 10, + ACTIONS(4338), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121446,7 +121698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4200), 26, + ACTIONS(4336), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -121473,10 +121725,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [127016] = 3, + [127302] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4182), 10, + ACTIONS(4326), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121487,7 +121739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4180), 26, + ACTIONS(4324), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -121514,10 +121766,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [127060] = 3, + [127346] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4422), 10, + ACTIONS(4322), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121528,7 +121780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4420), 26, + ACTIONS(4320), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -121555,10 +121807,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [127104] = 3, + [127390] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4482), 10, + ACTIONS(4282), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121569,7 +121821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4480), 26, + ACTIONS(4280), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -121596,10 +121848,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [127148] = 3, + [127434] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4250), 10, + ACTIONS(4246), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121610,7 +121862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4248), 26, + ACTIONS(4244), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -121637,10 +121889,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [127192] = 3, + [127478] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4510), 10, + ACTIONS(4486), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121651,7 +121903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4508), 26, + ACTIONS(4484), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -121678,10 +121930,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [127236] = 3, + [127522] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4254), 10, + ACTIONS(4146), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121692,7 +121944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4252), 26, + ACTIONS(4144), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -121719,10 +121971,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [127280] = 3, + [127566] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4398), 10, + ACTIONS(4370), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121733,7 +121985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4396), 26, + ACTIONS(4368), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -121760,10 +122012,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [127324] = 3, + [127610] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4146), 10, + ACTIONS(4290), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121774,7 +122026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4144), 26, + ACTIONS(4288), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -121801,10 +122053,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [127368] = 3, + [127654] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4258), 10, + ACTIONS(4286), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121815,7 +122067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4256), 26, + ACTIONS(4284), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -121842,10 +122094,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [127412] = 3, + [127698] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4150), 10, + ACTIONS(4274), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121856,7 +122108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4148), 26, + ACTIONS(4272), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -121883,10 +122135,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [127456] = 3, + [127742] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4462), 10, + ACTIONS(5107), 1, + aux_sym_num_lit_token2, + ACTIONS(4136), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121897,7 +122151,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4460), 26, + ACTIONS(4134), 25, + ts_builtin_sym_end, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [127788] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4266), 10, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + ACTIONS(4264), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -121924,10 +122218,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [127500] = 3, + [127832] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4234), 10, + ACTIONS(4262), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121938,7 +122232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4232), 26, + ACTIONS(4260), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -121965,10 +122259,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [127544] = 3, + [127876] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4418), 10, + ACTIONS(4258), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121979,7 +122273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4416), 26, + ACTIONS(4256), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -122006,10 +122300,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [127588] = 3, + [127920] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4230), 10, + ACTIONS(4254), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -122020,7 +122314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4228), 26, + ACTIONS(4252), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -122047,10 +122341,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [127632] = 3, + [127964] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4270), 10, + ACTIONS(4250), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -122061,7 +122355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4268), 26, + ACTIONS(4248), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -122088,10 +122382,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [127676] = 3, + [128008] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4374), 10, + ACTIONS(4238), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -122102,7 +122396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4372), 26, + ACTIONS(4236), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -122129,10 +122423,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [127720] = 3, + [128052] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4370), 10, + ACTIONS(4234), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -122143,7 +122437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4368), 26, + ACTIONS(4232), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -122170,7 +122464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [127764] = 3, + [128096] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(4226), 10, @@ -122211,10 +122505,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [127808] = 3, + [128140] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4414), 10, + ACTIONS(4222), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -122225,7 +122519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4412), 26, + ACTIONS(4220), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -122252,10 +122546,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [127852] = 3, + [128184] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4366), 10, + ACTIONS(4214), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -122266,7 +122560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4364), 26, + ACTIONS(4212), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -122293,10 +122587,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [127896] = 3, + [128228] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4142), 10, + ACTIONS(4210), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -122307,7 +122601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4140), 26, + ACTIONS(4208), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -122334,10 +122628,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [127940] = 3, + [128272] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4462), 10, + ACTIONS(4194), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -122348,7 +122642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4460), 26, + ACTIONS(4192), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -122375,10 +122669,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [127984] = 3, + [128316] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4462), 10, + ACTIONS(4190), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -122389,7 +122683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4460), 26, + ACTIONS(4188), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -122416,10 +122710,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [128028] = 3, + [128360] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4402), 10, + ACTIONS(4186), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -122430,7 +122724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4400), 26, + ACTIONS(4184), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -122457,10 +122751,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [128072] = 3, + [128404] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4362), 10, + ACTIONS(4170), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -122471,7 +122765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4360), 26, + ACTIONS(4168), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -122498,10 +122792,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [128116] = 3, + [128448] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4142), 10, + ACTIONS(4154), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -122512,7 +122806,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4140), 26, + ACTIONS(4152), 26, + ts_builtin_sym_end, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [128492] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4178), 10, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + ACTIONS(4176), 26, + ts_builtin_sym_end, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [128536] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4174), 10, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + ACTIONS(4172), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -122539,7 +122915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [128160] = 3, + [128580] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(4162), 10, @@ -122580,10 +122956,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [128204] = 3, + [128624] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4158), 10, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + ACTIONS(4156), 26, + ts_builtin_sym_end, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [128668] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4418), 10, + ACTIONS(4150), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -122594,7 +123011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4416), 26, + ACTIONS(4148), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -122621,10 +123038,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [128248] = 3, + [128712] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4414), 10, + ACTIONS(4518), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -122635,7 +123052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4412), 26, + ACTIONS(4516), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -122662,10 +123079,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [128292] = 3, + [128756] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4514), 10, + ACTIONS(4202), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -122676,7 +123093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4512), 26, + ACTIONS(4200), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -122703,7 +123120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [128336] = 3, + [128800] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(4198), 10, @@ -122744,10 +123161,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [128380] = 3, + [128844] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4178), 10, + ACTIONS(4218), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -122758,7 +123175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4176), 26, + ACTIONS(4216), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -122785,10 +123202,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [128424] = 3, + [128888] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4186), 10, + ACTIONS(4294), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -122799,7 +123216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4184), 26, + ACTIONS(4292), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -122826,10 +123243,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [128468] = 3, + [128932] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4194), 10, + ACTIONS(4166), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -122840,7 +123257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4192), 26, + ACTIONS(4164), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -122867,10 +123284,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [128512] = 3, + [128976] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4358), 10, + ACTIONS(4206), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -122881,7 +123298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4356), 26, + ACTIONS(4204), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -122908,10 +123325,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [128556] = 3, + [129020] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4190), 10, + ACTIONS(4270), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -122922,7 +123339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4188), 26, + ACTIONS(4268), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -122949,10 +123366,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [128600] = 3, + [129064] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4390), 10, + ACTIONS(4230), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -122963,7 +123380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4388), 26, + ACTIONS(4228), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -122990,10 +123407,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [128644] = 3, + [129108] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4378), 10, + ACTIONS(4230), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123004,7 +123421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4376), 26, + ACTIONS(4228), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -123031,10 +123448,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [128688] = 3, + [129152] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4354), 10, + ACTIONS(4278), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123045,7 +123462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4352), 26, + ACTIONS(4276), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -123072,28 +123489,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [128732] = 5, + [129196] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5101), 1, + ACTIONS(4298), 10, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, anon_sym_COLON, - ACTIONS(5103), 1, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + ACTIONS(4296), 26, + ts_builtin_sym_end, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_COLON_COLON, - ACTIONS(4154), 9, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [129240] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4302), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4152), 25, + ACTIONS(4300), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -123115,10 +123571,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [128780] = 3, + [129284] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4410), 10, + ACTIONS(4242), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123129,7 +123585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4408), 26, + ACTIONS(4240), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -123156,10 +123612,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [128824] = 3, + [129328] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4506), 10, + ACTIONS(4306), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123170,7 +123626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4504), 26, + ACTIONS(4304), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -123197,10 +123653,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [128868] = 3, + [129372] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4350), 10, + ACTIONS(4310), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123211,7 +123667,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4348), 26, + ACTIONS(4308), 26, + ts_builtin_sym_end, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [129416] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4314), 10, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + ACTIONS(4312), 26, + ts_builtin_sym_end, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [129460] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4318), 10, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + ACTIONS(4316), 26, + ts_builtin_sym_end, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [129504] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4314), 10, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + ACTIONS(4312), 26, + ts_builtin_sym_end, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [129548] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4318), 10, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + ACTIONS(4316), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -123238,10 +123858,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [128912] = 3, + [129592] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4382), 10, + ACTIONS(4330), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123252,7 +123872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4380), 26, + ACTIONS(4328), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -123279,10 +123899,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [128956] = 3, + [129636] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4166), 10, + ACTIONS(4302), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123293,7 +123913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4164), 26, + ACTIONS(4300), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -123320,10 +123940,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [129000] = 3, + [129680] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4402), 10, + ACTIONS(4334), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123334,7 +123954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4400), 26, + ACTIONS(4332), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -123361,10 +123981,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [129044] = 3, + [129724] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4438), 10, + ACTIONS(4346), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123375,7 +123995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4436), 26, + ACTIONS(4344), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -123402,10 +124022,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [129088] = 3, + [129768] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4462), 10, + ACTIONS(4350), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123416,7 +124036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4460), 26, + ACTIONS(4348), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -123443,10 +124063,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [129132] = 3, + [129812] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4386), 10, + ACTIONS(4354), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123457,7 +124077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4384), 26, + ACTIONS(4352), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -123484,10 +124104,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [129176] = 3, + [129856] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4346), 10, + ACTIONS(4362), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123498,7 +124118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4344), 26, + ACTIONS(4360), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -123525,10 +124145,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [129220] = 3, + [129900] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4146), 10, + ACTIONS(4362), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123539,7 +124159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4144), 26, + ACTIONS(4360), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -123566,10 +124186,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [129264] = 3, + [129944] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4506), 10, + ACTIONS(4374), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123580,7 +124200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4504), 26, + ACTIONS(4372), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -123607,28 +124227,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [129308] = 5, + [129988] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5101), 1, - anon_sym_COLON, - ACTIONS(5103), 1, - anon_sym_COLON_COLON, - ACTIONS(4178), 9, + ACTIONS(4374), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4176), 25, + ACTIONS(4372), 26, ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -123650,10 +124268,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [129356] = 3, + [130032] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4182), 10, + ACTIONS(4402), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123664,7 +124282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4180), 26, + ACTIONS(4400), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -123691,10 +124309,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [129400] = 3, + [130076] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4222), 10, + ACTIONS(4394), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123705,7 +124323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4220), 26, + ACTIONS(4392), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -123732,7 +124350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [129444] = 3, + [130120] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(4406), 10, @@ -123773,10 +124391,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [129488] = 3, + [130164] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4342), 10, + ACTIONS(4142), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123787,7 +124405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4340), 26, + ACTIONS(4140), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -123814,10 +124432,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [129532] = 3, + [130208] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4218), 10, + ACTIONS(4418), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123828,7 +124446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4216), 26, + ACTIONS(4416), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -123855,10 +124473,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [129576] = 3, + [130252] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4338), 10, + ACTIONS(4422), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123869,7 +124487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4336), 26, + ACTIONS(4420), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -123896,10 +124514,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [129620] = 3, + [130296] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4170), 10, + ACTIONS(4434), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123910,7 +124528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4168), 26, + ACTIONS(4432), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -123937,10 +124555,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [129664] = 3, + [130340] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4394), 10, + ACTIONS(4434), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123951,7 +124569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4392), 26, + ACTIONS(4432), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -123978,10 +124596,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [129708] = 3, + [130384] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4430), 10, + ACTIONS(4386), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123992,7 +124610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4428), 26, + ACTIONS(4384), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -124019,10 +124637,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [129752] = 3, + [130428] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4214), 10, + ACTIONS(4422), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -124033,7 +124651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4212), 26, + ACTIONS(4420), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -124060,10 +124678,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [129796] = 3, + [130472] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4450), 10, + ACTIONS(4434), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -124074,7 +124692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4448), 26, + ACTIONS(4432), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -124101,10 +124719,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [129840] = 3, + [130516] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4278), 10, + ACTIONS(4434), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -124115,7 +124733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4276), 26, + ACTIONS(4432), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -124142,10 +124760,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [129884] = 3, + [130560] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4278), 10, + ACTIONS(4446), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -124156,7 +124774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4276), 26, + ACTIONS(4444), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -124183,7 +124801,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [129928] = 3, + [130604] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4450), 10, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + ACTIONS(4448), 26, + ts_builtin_sym_end, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [130648] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(4454), 10, @@ -124224,7 +124883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [129972] = 3, + [130692] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(4458), 10, @@ -124265,10 +124924,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [130016] = 3, + [130736] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4466), 10, + ACTIONS(4462), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -124279,7 +124938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4464), 26, + ACTIONS(4460), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -124306,10 +124965,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [130060] = 3, + [130780] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4210), 10, + ACTIONS(4478), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -124320,7 +124979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4208), 26, + ACTIONS(4476), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -124347,10 +125006,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [130104] = 3, + [130824] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4470), 10, + ACTIONS(4462), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -124361,7 +125020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4468), 26, + ACTIONS(4460), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -124388,10 +125047,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [130148] = 3, + [130868] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4266), 10, + ACTIONS(4478), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -124402,7 +125061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4264), 26, + ACTIONS(4476), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -124429,10 +125088,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [130192] = 3, + [130912] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4474), 10, + ACTIONS(4486), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -124443,7 +125102,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4472), 26, + ACTIONS(4484), 26, + ts_builtin_sym_end, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [130956] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4458), 10, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + ACTIONS(4456), 26, + ts_builtin_sym_end, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [131000] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4462), 10, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + ACTIONS(4460), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -124470,7 +125211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [130236] = 3, + [131044] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(4478), 10, @@ -124511,10 +125252,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [130280] = 3, + [131088] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4334), 10, + ACTIONS(4462), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -124525,7 +125266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4332), 26, + ACTIONS(4460), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -124552,10 +125293,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [130324] = 3, + [131132] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4330), 10, + ACTIONS(4478), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -124566,7 +125307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4328), 26, + ACTIONS(4476), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -124593,10 +125334,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [130368] = 3, + [131176] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4482), 10, + ACTIONS(4418), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -124607,7 +125348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4480), 26, + ACTIONS(4416), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -124634,10 +125375,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [130412] = 3, + [131220] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4326), 10, + ACTIONS(4506), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -124648,7 +125389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4324), 26, + ACTIONS(4504), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -124675,10 +125416,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [130456] = 3, + [131264] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4322), 10, + ACTIONS(4510), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -124689,7 +125430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4320), 26, + ACTIONS(4508), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -124716,10 +125457,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [130500] = 3, + [131308] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4318), 10, + ACTIONS(4510), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -124730,7 +125471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4316), 26, + ACTIONS(4508), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -124757,10 +125498,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [130544] = 3, + [131352] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4206), 10, + ACTIONS(4426), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -124771,7 +125512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4204), 26, + ACTIONS(4424), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -124798,10 +125539,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [130588] = 3, + [131396] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4390), 10, + ACTIONS(4402), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -124812,7 +125553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4388), 26, + ACTIONS(4400), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -124839,10 +125580,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [130632] = 3, + [131440] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4482), 10, + ACTIONS(4510), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -124853,7 +125594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4480), 26, + ACTIONS(4508), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -124880,10 +125621,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [130676] = 3, + [131484] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4314), 10, + ACTIONS(4510), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -124894,7 +125635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4312), 26, + ACTIONS(4508), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -124921,10 +125662,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [130720] = 3, + [131528] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4310), 10, + ACTIONS(4426), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -124935,7 +125676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4308), 26, + ACTIONS(4424), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -124962,10 +125703,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [130764] = 3, + [131572] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4306), 10, + ACTIONS(5112), 1, + anon_sym_POUND_, + ACTIONS(5109), 2, + sym__ws, + sym_comment, + STATE(1569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(4102), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -124976,19 +125726,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4304), 26, - ts_builtin_sym_end, - sym__ws, - sym_comment, - anon_sym_POUND_, + ACTIONS(4104), 19, anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -125003,10 +125746,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [130808] = 3, + [131621] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4174), 10, + ACTIONS(5115), 1, + aux_sym_num_lit_token2, + ACTIONS(4136), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -125017,8 +125762,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4172), 26, - ts_builtin_sym_end, + anon_sym_EQ, + ACTIONS(4134), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -125027,9 +125772,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -125044,10 +125786,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [130852] = 3, + [131665] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4474), 10, + ACTIONS(5119), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -125058,8 +125800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4472), 26, - ts_builtin_sym_end, + ACTIONS(5117), 24, sym__ws, sym_comment, anon_sym_POUND_, @@ -125069,7 +125810,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, @@ -125085,10 +125825,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [130896] = 3, + [131707] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4302), 10, + ACTIONS(4478), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -125099,8 +125839,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4300), 26, - ts_builtin_sym_end, + anon_sym_EQ, + ACTIONS(4476), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -125109,9 +125849,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -125126,10 +125863,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [130940] = 3, + [131748] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4298), 10, + ACTIONS(4182), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(4180), 30, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_COMMA_AT, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [131789] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5123), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -125140,8 +125915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4296), 26, - ts_builtin_sym_end, + ACTIONS(5121), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -125151,8 +125925,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -125167,10 +125939,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [130984] = 3, + [131830] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4294), 10, + ACTIONS(4230), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -125181,8 +125953,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4292), 26, - ts_builtin_sym_end, + anon_sym_EQ, + ACTIONS(4228), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -125191,9 +125963,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -125208,10 +125977,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [131028] = 3, + [131871] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4290), 10, + ACTIONS(5123), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -125222,8 +125991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4288), 26, - ts_builtin_sym_end, + ACTIONS(5121), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -125233,8 +126001,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -125249,10 +126015,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [131072] = 3, + [131912] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4286), 10, + ACTIONS(5127), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -125263,8 +126029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4284), 26, - ts_builtin_sym_end, + ACTIONS(5125), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -125274,8 +126039,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -125290,10 +126053,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [131116] = 3, + [131953] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4478), 10, + ACTIONS(4278), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -125304,8 +126067,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4476), 26, - ts_builtin_sym_end, + anon_sym_EQ, + ACTIONS(4276), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -125314,9 +126077,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -125331,10 +126091,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [131160] = 3, + [131994] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4482), 10, + ACTIONS(4298), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -125345,8 +126105,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4480), 26, - ts_builtin_sym_end, + anon_sym_EQ, + ACTIONS(4296), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -125355,9 +126115,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -125372,10 +126129,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [131204] = 3, + [132035] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4282), 10, + ACTIONS(4302), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -125386,8 +126143,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4280), 26, - ts_builtin_sym_end, + anon_sym_EQ, + ACTIONS(4300), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -125396,9 +126153,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -125413,10 +126167,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [131248] = 3, + [132076] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4274), 10, + ACTIONS(4302), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -125427,8 +126181,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4272), 26, - ts_builtin_sym_end, + anon_sym_EQ, + ACTIONS(4300), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -125437,9 +126191,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -125454,19 +126205,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [131292] = 6, + [132117] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5108), 1, - anon_sym_POUND_, - ACTIONS(5105), 2, - sym__ws, - sym_comment, - STATE(1564), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(4130), 10, + ACTIONS(4306), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -125477,7 +126219,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4132), 19, + anon_sym_EQ, + ACTIONS(4304), 22, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, @@ -125497,12 +126243,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [131341] = 4, + [132158] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5111), 1, - aux_sym_num_lit_token2, - ACTIONS(4136), 11, + ACTIONS(4310), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -125514,7 +126258,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(4134), 22, + ACTIONS(4308), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -125537,10 +126281,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [131385] = 3, + [132199] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5115), 10, + ACTIONS(4314), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -125551,7 +126295,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5113), 24, + anon_sym_EQ, + ACTIONS(4312), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -125560,8 +126305,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -125576,10 +126319,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [131427] = 3, + [132240] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5119), 10, + ACTIONS(4318), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -125590,7 +126333,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5117), 23, + anon_sym_EQ, + ACTIONS(4316), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -125599,7 +126343,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -125614,10 +126357,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [131468] = 3, + [132281] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5123), 10, + ACTIONS(5127), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -125628,7 +126371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5121), 23, + ACTIONS(5125), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -125652,10 +126395,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [131509] = 3, + [132322] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4374), 11, + ACTIONS(4314), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -125667,7 +126410,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(4372), 22, + ACTIONS(4312), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -125690,10 +126433,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [131550] = 3, + [132363] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4378), 11, + ACTIONS(4318), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -125705,7 +126448,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(4376), 22, + ACTIONS(4316), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -125728,10 +126471,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [131591] = 3, + [132404] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4382), 11, + ACTIONS(5127), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -125742,8 +126485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_EQ, - ACTIONS(4380), 22, + ACTIONS(5125), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -125752,6 +126494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -125766,10 +126509,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [131632] = 3, + [132445] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4386), 11, + ACTIONS(4330), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -125781,7 +126524,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(4384), 22, + ACTIONS(4328), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -125804,10 +126547,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [131673] = 3, + [132486] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4390), 11, + ACTIONS(4334), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -125819,7 +126562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(4388), 22, + ACTIONS(4332), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -125842,10 +126585,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [131714] = 3, + [132527] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4390), 11, + ACTIONS(4346), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -125857,7 +126600,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(4388), 22, + ACTIONS(4344), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -125880,10 +126623,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [131755] = 3, + [132568] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4394), 11, + ACTIONS(4350), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -125895,7 +126638,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(4392), 22, + ACTIONS(4348), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -125918,10 +126661,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [131796] = 3, + [132609] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4398), 11, + ACTIONS(4354), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -125933,7 +126676,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(4396), 22, + ACTIONS(4352), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -125956,10 +126699,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [131837] = 3, + [132650] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4146), 11, + ACTIONS(4362), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -125971,7 +126714,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(4144), 22, + ACTIONS(4360), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -125994,10 +126737,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [131878] = 3, + [132691] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4146), 11, + ACTIONS(4362), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -126009,7 +126752,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(4144), 22, + ACTIONS(4360), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -126032,10 +126775,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [131919] = 3, + [132732] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4406), 11, + ACTIONS(4374), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -126047,7 +126790,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(4404), 22, + ACTIONS(4372), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -126070,10 +126813,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [131960] = 3, + [132773] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4410), 11, + ACTIONS(4374), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -126085,7 +126828,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(4408), 22, + ACTIONS(4372), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -126108,10 +126851,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [132001] = 3, + [132814] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4414), 11, + ACTIONS(4386), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -126123,7 +126866,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(4412), 22, + ACTIONS(4384), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -126146,10 +126889,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [132042] = 3, + [132855] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4418), 11, + ACTIONS(4394), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -126161,7 +126904,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(4416), 22, + ACTIONS(4392), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -126184,10 +126927,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [132083] = 3, + [132896] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4414), 11, + ACTIONS(4398), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -126199,7 +126942,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(4412), 22, + ACTIONS(4396), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -126222,10 +126965,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [132124] = 3, + [132937] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4418), 11, + ACTIONS(4406), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -126237,7 +126980,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(4416), 22, + ACTIONS(4404), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -126260,10 +127003,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [132165] = 3, + [132978] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4422), 11, + ACTIONS(4142), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -126275,7 +127018,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(4420), 22, + ACTIONS(4140), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -126298,10 +127041,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [132206] = 3, + [133019] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4426), 11, + ACTIONS(4418), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -126313,7 +127056,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(4424), 22, + ACTIONS(4416), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -126336,10 +127079,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [132247] = 3, + [133060] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4430), 11, + ACTIONS(4422), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -126351,7 +127094,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(4428), 22, + ACTIONS(4420), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -126374,7 +127117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [132288] = 3, + [133101] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(4434), 11, @@ -126412,200 +127155,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [132329] = 3, + [133142] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4438), 11, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_EQ, - ACTIONS(4436), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [132370] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4442), 11, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_EQ, - ACTIONS(4440), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [132411] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4442), 11, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_EQ, - ACTIONS(4440), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [132452] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4446), 11, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_EQ, - ACTIONS(4444), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [132493] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4446), 11, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_EQ, - ACTIONS(4444), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [132534] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4450), 11, + ACTIONS(4434), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -126617,7 +127170,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(4448), 22, + ACTIONS(4432), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -126640,10 +127193,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [132575] = 3, + [133183] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4454), 11, + ACTIONS(4418), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -126655,7 +127208,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(4452), 22, + ACTIONS(4416), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -126678,10 +127231,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [132616] = 3, + [133224] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4458), 11, + ACTIONS(4422), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -126693,7 +127246,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(4456), 22, + ACTIONS(4420), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -126716,10 +127269,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [132657] = 3, + [133265] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4466), 11, + ACTIONS(4434), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -126731,7 +127284,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(4464), 22, + ACTIONS(4432), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -126754,10 +127307,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [132698] = 3, + [133306] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4470), 11, + ACTIONS(4434), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -126769,7 +127322,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(4468), 22, + ACTIONS(4432), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -126792,10 +127345,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [132739] = 3, + [133347] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4474), 11, + ACTIONS(4446), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -126807,7 +127360,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(4472), 22, + ACTIONS(4444), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -126830,10 +127383,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [132780] = 3, + [133388] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4478), 11, + ACTIONS(4450), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -126845,7 +127398,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(4476), 22, + ACTIONS(4448), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -126868,10 +127421,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [132821] = 3, + [133429] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4482), 11, + ACTIONS(4454), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -126883,7 +127436,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(4480), 22, + ACTIONS(4452), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -126906,10 +127459,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [132862] = 3, + [133470] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4482), 11, + ACTIONS(4458), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -126921,7 +127474,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(4480), 22, + ACTIONS(4456), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -126944,10 +127497,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [132903] = 3, + [133511] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4474), 11, + ACTIONS(4462), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -126959,7 +127512,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(4472), 22, + ACTIONS(4460), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -126982,7 +127535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [132944] = 3, + [133552] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(4478), 11, @@ -127020,10 +127573,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [132985] = 3, + [133593] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4482), 11, + ACTIONS(4462), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -127035,7 +127588,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(4480), 22, + ACTIONS(4460), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -127058,10 +127611,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [133026] = 3, + [133634] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4482), 11, + ACTIONS(5127), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -127072,8 +127625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_EQ, - ACTIONS(4480), 22, + ACTIONS(5125), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -127082,6 +127634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -127096,7 +127649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [133067] = 3, + [133675] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(4486), 11, @@ -127134,10 +127687,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [133108] = 3, + [133716] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4490), 11, + ACTIONS(4458), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -127149,7 +127702,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(4488), 22, + ACTIONS(4456), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -127172,10 +127725,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [133149] = 3, + [133757] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4494), 11, + ACTIONS(4462), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -127187,7 +127740,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(4492), 22, + ACTIONS(4460), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -127210,10 +127763,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [133190] = 3, + [133798] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4498), 11, + ACTIONS(4478), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -127225,7 +127778,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(4496), 22, + ACTIONS(4476), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -127248,10 +127801,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [133231] = 3, + [133839] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4502), 11, + ACTIONS(4462), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -127263,7 +127816,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(4500), 22, + ACTIONS(4460), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -127286,10 +127839,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [133272] = 3, + [133880] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4506), 11, + ACTIONS(4478), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -127301,7 +127854,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(4504), 22, + ACTIONS(4476), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -127324,10 +127877,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [133313] = 3, + [133921] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4502), 11, + ACTIONS(4486), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -127339,7 +127892,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(4500), 22, + ACTIONS(4484), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -127362,7 +127915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [133354] = 3, + [133962] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(4506), 11, @@ -127400,7 +127953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [133395] = 3, + [134003] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(4510), 11, @@ -127438,10 +127991,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [133436] = 3, + [134044] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4498), 11, + ACTIONS(4510), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -127453,7 +128006,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(4496), 22, + ACTIONS(4508), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -127476,10 +128029,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [133477] = 3, + [134085] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4502), 11, + ACTIONS(4426), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -127491,7 +128044,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(4500), 22, + ACTIONS(4424), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -127514,10 +128067,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [133518] = 3, + [134126] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4506), 11, + ACTIONS(4402), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -127529,7 +128082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(4504), 22, + ACTIONS(4400), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -127552,10 +128105,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [133559] = 3, + [134167] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4502), 11, + ACTIONS(4510), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -127567,7 +128120,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(4500), 22, + ACTIONS(4508), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -127590,10 +128143,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [133600] = 3, + [134208] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4506), 11, + ACTIONS(4510), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -127605,7 +128158,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(4504), 22, + ACTIONS(4508), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -127628,10 +128181,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [133641] = 3, + [134249] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4510), 11, + ACTIONS(4426), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -127643,7 +128196,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(4508), 22, + ACTIONS(4424), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -127666,10 +128219,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [133682] = 3, + [134290] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4514), 11, + ACTIONS(4402), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -127681,7 +128234,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(4512), 22, + ACTIONS(4400), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -127704,10 +128257,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [133723] = 3, + [134331] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4462), 11, + ACTIONS(4294), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -127719,7 +128272,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(4460), 22, + ACTIONS(4292), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -127742,10 +128295,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [133764] = 3, + [134372] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4462), 11, + ACTIONS(4294), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -127757,7 +128310,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(4460), 22, + ACTIONS(4292), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -127780,10 +128333,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [133805] = 3, + [134413] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4402), 11, + ACTIONS(5131), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -127794,8 +128347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_EQ, - ACTIONS(4400), 22, + ACTIONS(5129), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -127804,6 +128356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -127818,10 +128371,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [133846] = 3, + [134454] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4142), 11, + ACTIONS(5131), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -127832,8 +128385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_EQ, - ACTIONS(4140), 22, + ACTIONS(5129), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -127842,6 +128394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -127856,10 +128409,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [133887] = 3, + [134495] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4462), 11, + ACTIONS(5131), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -127870,8 +128423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_EQ, - ACTIONS(4460), 22, + ACTIONS(5129), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -127880,6 +128432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -127894,10 +128447,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [133928] = 3, + [134536] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4462), 11, + ACTIONS(5131), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -127908,8 +128461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_EQ, - ACTIONS(4460), 22, + ACTIONS(5129), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -127918,6 +128470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -127932,10 +128485,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [133969] = 3, + [134577] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4402), 11, + ACTIONS(5135), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -127946,8 +128499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_EQ, - ACTIONS(4400), 22, + ACTIONS(5133), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -127956,6 +128508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -127970,10 +128523,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [134010] = 3, + [134618] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4142), 11, + ACTIONS(5135), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -127984,8 +128537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_EQ, - ACTIONS(4140), 22, + ACTIONS(5133), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -127994,6 +128546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -128008,10 +128561,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [134051] = 3, + [134659] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4278), 11, + ACTIONS(4146), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -128023,7 +128576,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(4276), 22, + ACTIONS(4144), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -128046,10 +128599,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [134092] = 3, + [134700] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4278), 11, + ACTIONS(4370), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -128061,7 +128614,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(4276), 22, + ACTIONS(4368), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -128084,10 +128637,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [134133] = 3, + [134741] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5127), 10, + ACTIONS(4290), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -128098,8 +128651,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5125), 23, - ts_builtin_sym_end, + anon_sym_EQ, + ACTIONS(4288), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -128122,10 +128675,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [134174] = 3, + [134782] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4322), 11, + ACTIONS(4286), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -128137,7 +128690,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(4320), 22, + ACTIONS(4284), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -128160,10 +128713,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [134215] = 3, + [134823] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4366), 11, + ACTIONS(4274), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -128175,7 +128728,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(4364), 22, + ACTIONS(4272), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -128198,10 +128751,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [134256] = 3, + [134864] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4362), 11, + ACTIONS(4270), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -128213,7 +128766,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(4360), 22, + ACTIONS(4268), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -128236,10 +128789,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [134297] = 3, + [134905] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4358), 11, + ACTIONS(5139), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -128250,8 +128803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_EQ, - ACTIONS(4356), 22, + ACTIONS(5137), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -128260,6 +128812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -128274,10 +128827,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [134338] = 3, + [134946] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4354), 11, + ACTIONS(5139), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -128288,8 +128841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_EQ, - ACTIONS(4352), 22, + ACTIONS(5137), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -128298,6 +128850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -128312,10 +128865,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [134379] = 3, + [134987] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4350), 11, + ACTIONS(5139), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -128326,8 +128879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_EQ, - ACTIONS(4348), 22, + ACTIONS(5137), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -128336,6 +128888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -128350,10 +128903,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [134420] = 3, + [135028] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4346), 11, + ACTIONS(5139), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -128364,8 +128917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_EQ, - ACTIONS(4344), 22, + ACTIONS(5137), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -128374,6 +128926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -128388,10 +128941,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [134461] = 3, + [135069] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4342), 11, + ACTIONS(5143), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -128402,8 +128955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_EQ, - ACTIONS(4340), 22, + ACTIONS(5141), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -128412,6 +128964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -128426,10 +128979,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [134502] = 3, + [135110] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4338), 11, + ACTIONS(5143), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -128440,8 +128993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_EQ, - ACTIONS(4336), 22, + ACTIONS(5141), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -128450,6 +129002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -128464,10 +129017,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [134543] = 3, + [135151] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4334), 11, + ACTIONS(5143), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -128478,8 +129031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_EQ, - ACTIONS(4332), 22, + ACTIONS(5141), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -128488,6 +129040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -128502,10 +129055,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [134584] = 3, + [135192] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4330), 11, + ACTIONS(5143), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -128516,8 +129069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_EQ, - ACTIONS(4328), 22, + ACTIONS(5141), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -128526,6 +129078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -128540,10 +129093,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [134625] = 3, + [135233] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4326), 11, + ACTIONS(5147), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -128554,8 +129107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_EQ, - ACTIONS(4324), 22, + ACTIONS(5145), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -128564,6 +129116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -128578,10 +129131,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [134666] = 3, + [135274] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4150), 11, + ACTIONS(5147), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -128592,8 +129145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_EQ, - ACTIONS(4148), 22, + ACTIONS(5145), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -128602,6 +129154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -128616,10 +129169,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [134707] = 3, + [135315] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4318), 11, + ACTIONS(4266), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -128631,7 +129184,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(4316), 22, + ACTIONS(4264), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -128654,448 +129207,830 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [134748] = 3, + [135356] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4314), 11, + ACTIONS(4294), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_EQ, - ACTIONS(4312), 22, + anon_sym_being, + ACTIONS(4292), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, - anon_sym_BQUOTE, anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [134789] = 3, + [135397] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4310), 11, + ACTIONS(4294), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_being, + ACTIONS(4292), 30, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_COMMA_AT, anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, anon_sym_EQ, - ACTIONS(4308), 22, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [135438] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4402), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(4400), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, - anon_sym_BQUOTE, anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [134830] = 3, + [135479] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4306), 11, + ACTIONS(4426), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_being, + ACTIONS(4424), 30, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_COMMA_AT, anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, anon_sym_EQ, - ACTIONS(4304), 22, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [135520] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4510), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(4508), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, - anon_sym_BQUOTE, anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [134871] = 3, + [135561] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4302), 11, + ACTIONS(4510), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_being, + ACTIONS(4508), 30, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_COMMA_AT, anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, anon_sym_EQ, - ACTIONS(4300), 22, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [135602] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4402), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(4400), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, - anon_sym_BQUOTE, anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [134912] = 3, + [135643] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4298), 11, + ACTIONS(4426), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_being, + ACTIONS(4424), 30, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_COMMA_AT, anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, anon_sym_EQ, - ACTIONS(4296), 22, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [135684] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4510), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(4508), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, - anon_sym_BQUOTE, anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [134953] = 3, + [135725] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4294), 11, + ACTIONS(4510), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_being, + ACTIONS(4508), 30, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_COMMA_AT, anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, anon_sym_EQ, - ACTIONS(4292), 22, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [135766] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4506), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(4504), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, - anon_sym_BQUOTE, anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [134994] = 3, + [135807] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4290), 11, + ACTIONS(4486), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_being, + ACTIONS(4484), 30, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_COMMA_AT, anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, anon_sym_EQ, - ACTIONS(4288), 22, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [135848] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4478), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(4476), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, - anon_sym_BQUOTE, anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [135035] = 3, + [135889] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4286), 11, + ACTIONS(4462), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_being, + ACTIONS(4460), 30, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_COMMA_AT, anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, anon_sym_EQ, - ACTIONS(4284), 22, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [135930] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4478), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(4476), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, - anon_sym_BQUOTE, anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [135076] = 3, + [135971] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4282), 11, + ACTIONS(4462), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_being, + ACTIONS(4460), 30, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_COMMA_AT, anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, anon_sym_EQ, - ACTIONS(4280), 22, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [136012] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4458), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(4456), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, - anon_sym_BQUOTE, anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [135117] = 3, + [136053] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4274), 11, + ACTIONS(4486), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_being, + ACTIONS(4484), 30, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_COMMA_AT, anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, anon_sym_EQ, - ACTIONS(4272), 22, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [136094] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4478), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(4476), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, - anon_sym_BQUOTE, anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [135158] = 3, + [136135] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4270), 11, + ACTIONS(4462), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_being, + ACTIONS(4460), 30, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_COMMA_AT, anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, anon_sym_EQ, - ACTIONS(4268), 22, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [136176] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4478), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(4476), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, - anon_sym_BQUOTE, anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [135199] = 3, + [136217] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4266), 11, + ACTIONS(5105), 1, + anon_sym_COLON_COLON, + ACTIONS(5149), 1, + anon_sym_COLON, + ACTIONS(4502), 9, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_EQ, - ACTIONS(4264), 22, + ACTIONS(4500), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -129110,30 +130045,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [135240] = 3, + [136262] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4262), 11, + ACTIONS(5105), 1, + anon_sym_COLON_COLON, + ACTIONS(5151), 1, + anon_sym_COLON, + ACTIONS(4502), 9, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_EQ, - ACTIONS(4260), 22, + ACTIONS(4500), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -129148,68 +130085,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [135281] = 3, + [136307] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4258), 11, + ACTIONS(4462), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_EQ, - ACTIONS(4256), 22, + anon_sym_being, + ACTIONS(4460), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, - anon_sym_BQUOTE, anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [135322] = 3, + [136348] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4254), 11, + ACTIONS(5105), 1, + anon_sym_COLON_COLON, + ACTIONS(5153), 1, + anon_sym_COLON, + ACTIONS(4502), 9, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_EQ, - ACTIONS(4252), 22, + ACTIONS(4500), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -129224,30 +130163,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [135363] = 3, + [136393] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4250), 11, + ACTIONS(5105), 1, + anon_sym_COLON_COLON, + ACTIONS(5155), 1, + anon_sym_COLON, + ACTIONS(4502), 9, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_EQ, - ACTIONS(4248), 22, + ACTIONS(4500), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -129262,30 +130203,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [135404] = 3, + [136438] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4182), 11, + ACTIONS(5105), 1, + anon_sym_COLON_COLON, + ACTIONS(5157), 1, + anon_sym_COLON, + ACTIONS(4502), 9, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_EQ, - ACTIONS(4180), 22, + ACTIONS(4500), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -129300,68 +130243,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [135445] = 3, + [136483] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4246), 11, + ACTIONS(4458), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_EQ, - ACTIONS(4244), 22, + anon_sym_being, + ACTIONS(4456), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, - anon_sym_BQUOTE, anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [135486] = 3, + [136524] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4242), 11, + ACTIONS(5105), 1, + anon_sym_COLON_COLON, + ACTIONS(5159), 1, + anon_sym_COLON, + ACTIONS(4502), 9, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_EQ, - ACTIONS(4240), 22, + ACTIONS(4500), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -129376,30 +130321,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [135527] = 3, + [136569] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4238), 11, + ACTIONS(5105), 1, + anon_sym_COLON_COLON, + ACTIONS(5161), 1, + anon_sym_COLON, + ACTIONS(4502), 9, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_EQ, - ACTIONS(4236), 22, + ACTIONS(4500), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -129414,30 +130361,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [135568] = 3, + [136614] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4234), 11, + ACTIONS(5105), 1, + anon_sym_COLON_COLON, + ACTIONS(5163), 1, + anon_sym_COLON, + ACTIONS(4502), 9, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_EQ, - ACTIONS(4232), 22, + ACTIONS(4500), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -129452,10 +130401,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [135609] = 3, + [136659] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4230), 11, + ACTIONS(5167), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -129466,8 +130415,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_EQ, - ACTIONS(4228), 22, + ACTIONS(5165), 23, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -129490,68 +130439,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [135650] = 3, + [136700] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4226), 11, + ACTIONS(4454), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_EQ, - ACTIONS(4224), 22, + anon_sym_being, + ACTIONS(4452), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, - anon_sym_BQUOTE, anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [135691] = 3, + [136741] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4222), 11, + ACTIONS(5105), 1, + anon_sym_COLON_COLON, + ACTIONS(5169), 1, + anon_sym_COLON, + ACTIONS(4502), 9, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_EQ, - ACTIONS(4220), 22, + ACTIONS(4500), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -129566,488 +130517,488 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [135732] = 3, + [136786] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4218), 11, + ACTIONS(4450), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_EQ, - ACTIONS(4216), 22, + anon_sym_being, + ACTIONS(4448), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, - anon_sym_BQUOTE, anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [135773] = 3, + [136827] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4214), 11, + ACTIONS(4446), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_EQ, - ACTIONS(4212), 22, + anon_sym_being, + ACTIONS(4444), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, - anon_sym_BQUOTE, anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [135814] = 3, + [136868] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4210), 11, + ACTIONS(4434), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_EQ, - ACTIONS(4208), 22, + anon_sym_being, + ACTIONS(4432), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, - anon_sym_BQUOTE, anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [135855] = 3, + [136909] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4206), 11, + ACTIONS(4434), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_EQ, - ACTIONS(4204), 22, + anon_sym_being, + ACTIONS(4432), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, - anon_sym_BQUOTE, anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [135896] = 3, + [136950] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4182), 11, + ACTIONS(4422), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_EQ, - ACTIONS(4180), 22, + anon_sym_being, + ACTIONS(4420), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, - anon_sym_BQUOTE, anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [135937] = 3, + [136991] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4202), 11, + ACTIONS(4418), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_EQ, - ACTIONS(4200), 22, + anon_sym_being, + ACTIONS(4416), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, - anon_sym_BQUOTE, anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [135978] = 3, + [137032] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4198), 11, + ACTIONS(4434), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_EQ, - ACTIONS(4196), 22, + anon_sym_being, + ACTIONS(4432), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, - anon_sym_BQUOTE, anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [136019] = 3, + [137073] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4194), 11, + ACTIONS(4434), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_EQ, - ACTIONS(4192), 22, + anon_sym_being, + ACTIONS(4432), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, - anon_sym_BQUOTE, anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [136060] = 3, + [137114] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4190), 11, + ACTIONS(4422), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_EQ, - ACTIONS(4188), 22, + anon_sym_being, + ACTIONS(4420), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, - anon_sym_BQUOTE, anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [136101] = 3, + [137155] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4186), 11, + ACTIONS(4418), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_EQ, - ACTIONS(4184), 22, + anon_sym_being, + ACTIONS(4416), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, - anon_sym_BQUOTE, anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [136142] = 3, + [137196] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4182), 11, + ACTIONS(4142), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_EQ, - ACTIONS(4180), 22, + anon_sym_being, + ACTIONS(4140), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, - anon_sym_BQUOTE, anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [136183] = 5, + [137237] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5129), 1, - anon_sym_COLON, - ACTIONS(5131), 1, - anon_sym_COLON_COLON, - ACTIONS(4178), 10, + ACTIONS(4406), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_EQ, - ACTIONS(4176), 21, + anon_sym_being, + ACTIONS(4404), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, - anon_sym_BQUOTE, anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [136228] = 3, + [137278] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4174), 11, + ACTIONS(5105), 1, + anon_sym_COLON_COLON, + ACTIONS(5171), 1, + anon_sym_COLON, + ACTIONS(4502), 9, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_EQ, - ACTIONS(4172), 22, + ACTIONS(4500), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -130062,86 +131013,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [136269] = 3, + [137323] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4178), 11, + ACTIONS(4398), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_EQ, - ACTIONS(4176), 22, + anon_sym_being, + ACTIONS(4396), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, - anon_sym_BQUOTE, anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [136310] = 3, + [137364] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4170), 11, + ACTIONS(4394), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_EQ, - ACTIONS(4168), 22, + anon_sym_being, + ACTIONS(4392), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, - anon_sym_BQUOTE, anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [136351] = 3, + [137405] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4166), 11, + ACTIONS(5147), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -130152,8 +131103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_EQ, - ACTIONS(4164), 22, + ACTIONS(5145), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -130162,6 +131112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -130176,92 +131127,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [136392] = 3, + [137446] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4162), 11, + ACTIONS(4374), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_EQ, - ACTIONS(4160), 22, + anon_sym_being, + ACTIONS(4372), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, - anon_sym_BQUOTE, anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [136433] = 5, + [137487] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5129), 1, - anon_sym_COLON, - ACTIONS(5131), 1, - anon_sym_COLON_COLON, - ACTIONS(4154), 10, + ACTIONS(4374), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_EQ, - ACTIONS(4152), 21, + anon_sym_being, + ACTIONS(4372), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, - anon_sym_BQUOTE, anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [136478] = 3, + [137528] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4330), 3, + ACTIONS(4362), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(4328), 30, + ACTIONS(4360), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -130292,61 +131241,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [136519] = 12, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5037), 1, - aux_sym_num_lit_token1, - ACTIONS(5045), 1, - anon_sym_SQUOTE, - ACTIONS(5047), 1, - anon_sym_COMMA, - ACTIONS(5053), 1, - anon_sym_SLASH, - STATE(1957), 1, - sym_format_modifiers, - STATE(2335), 1, - sym__format_token, - STATE(2408), 1, - aux_sym_format_modifiers_repeat1, - STATE(3366), 1, - sym_format_directive_type, - ACTIONS(5039), 2, - anon_sym_COLON, - anon_sym_AT, - ACTIONS(5051), 2, - anon_sym_AT_COLON, - anon_sym_COLON_AT, - ACTIONS(5043), 21, - anon_sym_TILDE, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - aux_sym_format_directive_type_token1, - aux_sym_format_directive_type_token2, - anon_sym_LF, - anon_sym_CR, - aux_sym_format_directive_type_token3, - aux_sym_format_directive_type_token4, - aux_sym_format_directive_type_token5, - aux_sym_format_directive_type_token6, - anon_sym__, - aux_sym_format_directive_type_token7, - aux_sym_format_directive_type_token8, - aux_sym_format_directive_type_token9, - aux_sym_format_directive_type_token10, - anon_sym_SEMI, - anon_sym_QMARK, - anon_sym_Newline, - aux_sym_format_directive_type_token11, - [136578] = 3, + [137569] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4342), 3, + ACTIONS(4362), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(4340), 30, + ACTIONS(4360), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -130377,52 +131279,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [136619] = 3, + [137610] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5135), 10, + ACTIONS(4354), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5133), 23, + anon_sym_being, + ACTIONS(4352), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, - anon_sym_BQUOTE, anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [136660] = 3, + [137651] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4326), 3, + ACTIONS(4350), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(4324), 30, + ACTIONS(4348), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -130453,14 +131355,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [136701] = 3, + [137692] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4322), 3, + ACTIONS(4346), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(4320), 30, + ACTIONS(4344), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -130491,10 +131393,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [136742] = 3, + [137733] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5139), 10, + ACTIONS(5147), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -130505,7 +131407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5137), 23, + ACTIONS(5145), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -130529,10 +131431,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [136783] = 3, + [137774] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5143), 10, + ACTIONS(4262), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -130543,7 +131445,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5141), 23, + anon_sym_EQ, + ACTIONS(4260), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -130552,7 +131455,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -130567,10 +131469,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [136824] = 3, + [137815] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5143), 10, + ACTIONS(4258), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -130581,7 +131483,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5141), 23, + anon_sym_EQ, + ACTIONS(4256), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -130590,7 +131493,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -130605,14 +131507,242 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [136865] = 3, + [137856] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4334), 3, + ACTIONS(4318), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(4316), 30, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_COMMA_AT, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [137897] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4314), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(4312), 30, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_COMMA_AT, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [137938] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4254), 11, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_EQ, + ACTIONS(4252), 22, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [137979] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4318), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(4316), 30, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_COMMA_AT, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [138020] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4314), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(4312), 30, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_COMMA_AT, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [138061] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4310), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(4308), 30, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_COMMA_AT, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [138102] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4306), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(4332), 30, + ACTIONS(4304), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -130643,48 +131773,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [136906] = 3, + [138143] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4362), 3, + ACTIONS(4250), 11, anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4360), 30, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_EQ, + ACTIONS(4248), 22, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, + anon_sym_BQUOTE, anon_sym_COMMA_AT, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [138184] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4238), 11, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, anon_sym_EQ, + ACTIONS(4236), 22, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [136947] = 3, + [138225] = 12, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5147), 10, + ACTIONS(5041), 1, + aux_sym_num_lit_token1, + ACTIONS(5049), 1, + anon_sym_SQUOTE, + ACTIONS(5051), 1, + anon_sym_COMMA, + ACTIONS(5057), 1, + anon_sym_SLASH, + STATE(1974), 1, + sym_format_modifiers, + STATE(2333), 1, + sym__format_token, + STATE(2437), 1, + aux_sym_format_modifiers_repeat1, + STATE(3397), 1, + sym_format_directive_type, + ACTIONS(5043), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(5055), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(5047), 21, + anon_sym_TILDE, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + aux_sym_format_directive_type_token1, + aux_sym_format_directive_type_token2, + anon_sym_LF, + anon_sym_CR, + aux_sym_format_directive_type_token3, + aux_sym_format_directive_type_token4, + aux_sym_format_directive_type_token5, + aux_sym_format_directive_type_token6, + anon_sym__, + aux_sym_format_directive_type_token7, + aux_sym_format_directive_type_token8, + aux_sym_format_directive_type_token9, + aux_sym_format_directive_type_token10, + anon_sym_SEMI, + anon_sym_QMARK, + anon_sym_Newline, + aux_sym_format_directive_type_token11, + [138284] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4234), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -130695,7 +131910,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5145), 23, + anon_sym_EQ, + ACTIONS(4232), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -130704,7 +131920,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -130719,10 +131934,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [136988] = 3, + [138325] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5147), 10, + ACTIONS(4226), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -130733,7 +131948,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5145), 23, + anon_sym_EQ, + ACTIONS(4224), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -130742,7 +131958,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -130757,10 +131972,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137029] = 3, + [138366] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5147), 10, + ACTIONS(4222), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -130771,7 +131986,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5145), 23, + anon_sym_EQ, + ACTIONS(4220), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -130780,7 +131996,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -130795,10 +132010,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137070] = 3, + [138407] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5147), 10, + ACTIONS(5175), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -130809,7 +132024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5145), 23, + ACTIONS(5173), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -130833,10 +132048,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137111] = 3, + [138448] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5151), 10, + ACTIONS(4514), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -130847,7 +132062,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5149), 23, + anon_sym_EQ, + ACTIONS(4512), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -130856,7 +132072,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -130871,10 +132086,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137152] = 3, + [138489] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4370), 11, + ACTIONS(4242), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -130886,7 +132101,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(4368), 22, + ACTIONS(4240), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -130909,10 +132124,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137193] = 3, + [138530] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5151), 10, + ACTIONS(4230), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -130923,7 +132138,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5149), 23, + anon_sym_EQ, + ACTIONS(4228), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -130932,7 +132148,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -130947,10 +132162,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137234] = 3, + [138571] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5155), 10, + ACTIONS(4326), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -130961,7 +132176,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5153), 23, + anon_sym_EQ, + ACTIONS(4324), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -130970,7 +132186,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -130985,10 +132200,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137275] = 3, + [138612] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5155), 10, + ACTIONS(4230), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(4228), 30, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_COMMA_AT, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [138653] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4210), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -130999,7 +132252,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5153), 23, + anon_sym_EQ, + ACTIONS(4208), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -131008,7 +132262,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -131023,14 +132276,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137316] = 3, + [138694] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4366), 3, + ACTIONS(4230), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(4364), 30, + ACTIONS(4228), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -131061,14 +132314,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137357] = 3, + [138735] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4242), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(4336), 30, + ACTIONS(4240), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -131099,30 +132352,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137398] = 3, + [138776] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5123), 10, + ACTIONS(4206), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(4204), 30, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_COMMA_AT, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [138817] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5177), 1, + anon_sym_COLON, + ACTIONS(5179), 1, + anon_sym_COLON_COLON, + ACTIONS(4502), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5121), 23, + anon_sym_EQ, + ACTIONS(4500), 21, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [138862] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5177), 1, + anon_sym_COLON, + ACTIONS(5179), 1, anon_sym_COLON_COLON, + ACTIONS(4498), 10, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_EQ, + ACTIONS(4496), 21, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -131137,10 +132470,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137439] = 3, + [138907] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5123), 10, + ACTIONS(4494), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -131151,7 +132484,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5121), 23, + anon_sym_EQ, + ACTIONS(4492), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -131160,7 +132494,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -131175,10 +132508,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137480] = 3, + [138948] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5123), 10, + ACTIONS(4490), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -131189,7 +132522,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5121), 23, + anon_sym_EQ, + ACTIONS(4488), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -131198,7 +132532,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -131213,10 +132546,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137521] = 3, + [138989] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5159), 10, + ACTIONS(4482), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -131227,7 +132560,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5157), 23, + anon_sym_EQ, + ACTIONS(4480), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -131236,7 +132570,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -131251,10 +132584,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137562] = 3, + [139030] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4166), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(4164), 30, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_COMMA_AT, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [139071] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5159), 10, + ACTIONS(4466), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -131265,7 +132636,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5157), 23, + anon_sym_EQ, + ACTIONS(4464), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -131274,7 +132646,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -131289,10 +132660,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137603] = 3, + [139112] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5159), 10, + ACTIONS(4474), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -131303,7 +132674,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5157), 23, + anon_sym_EQ, + ACTIONS(4472), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -131312,7 +132684,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -131327,30 +132698,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137644] = 3, + [139153] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5159), 10, + ACTIONS(5177), 1, + anon_sym_COLON, + ACTIONS(5179), 1, + anon_sym_COLON_COLON, + ACTIONS(4466), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5157), 23, + anon_sym_EQ, + ACTIONS(4464), 21, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -131365,10 +132738,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137685] = 3, + [139198] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5163), 10, + ACTIONS(4146), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -131379,7 +132752,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5161), 23, + anon_sym_EQ, + ACTIONS(4144), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -131388,7 +132762,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -131403,10 +132776,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137726] = 3, + [139239] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5163), 10, + ACTIONS(4442), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -131417,7 +132790,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5161), 23, + anon_sym_EQ, + ACTIONS(4440), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -131426,7 +132800,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -131441,10 +132814,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137767] = 3, + [139280] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5163), 10, + ACTIONS(4214), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -131455,7 +132828,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5161), 23, + anon_sym_EQ, + ACTIONS(4212), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -131464,7 +132838,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -131479,10 +132852,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137808] = 3, + [139321] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5163), 10, + ACTIONS(5123), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -131493,7 +132866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5161), 23, + ACTIONS(5121), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -131517,10 +132890,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137849] = 3, + [139362] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5167), 10, + ACTIONS(4438), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -131531,7 +132904,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5165), 23, + anon_sym_EQ, + ACTIONS(4436), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -131540,7 +132914,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -131555,10 +132928,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137890] = 3, + [139403] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5167), 10, + ACTIONS(5123), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -131569,7 +132942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5165), 23, + ACTIONS(5121), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -131593,14 +132966,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137931] = 3, + [139444] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4314), 3, + ACTIONS(4198), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(4312), 30, + ACTIONS(4196), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -131631,10 +133004,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137972] = 3, + [139485] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5171), 10, + ACTIONS(4206), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -131645,7 +133018,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5169), 23, + anon_sym_EQ, + ACTIONS(4204), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -131654,7 +133028,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -131669,10 +133042,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [138013] = 3, + [139526] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5171), 10, + ACTIONS(4166), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -131683,7 +133056,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5169), 23, + anon_sym_EQ, + ACTIONS(4164), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -131692,7 +133066,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -131707,10 +133080,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [138054] = 3, + [139567] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5171), 10, + ACTIONS(4182), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -131721,7 +133094,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5169), 23, + anon_sym_EQ, + ACTIONS(4180), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -131730,7 +133104,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -131745,14 +133118,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [138095] = 3, + [139608] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4310), 3, + ACTIONS(4218), 11, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_EQ, + ACTIONS(4216), 22, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [139649] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4202), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(4308), 30, + ACTIONS(4200), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -131783,10 +133194,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [138136] = 3, + [139690] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5175), 10, + ACTIONS(4198), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -131797,7 +133208,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5173), 23, + anon_sym_EQ, + ACTIONS(4196), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -131806,7 +133218,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -131821,10 +133232,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [138177] = 3, + [139731] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5175), 10, + ACTIONS(4202), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -131835,7 +133246,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5173), 23, + anon_sym_EQ, + ACTIONS(4200), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -131844,7 +133256,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -131859,10 +133270,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [138218] = 3, + [139772] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5175), 10, + ACTIONS(4518), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -131873,7 +133284,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5173), 23, + anon_sym_EQ, + ACTIONS(4516), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -131882,7 +133294,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -131897,10 +133308,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [138259] = 3, + [139813] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5175), 10, + ACTIONS(4150), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -131911,7 +133322,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5173), 23, + anon_sym_EQ, + ACTIONS(4148), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -131920,7 +133332,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -131935,10 +133346,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [138300] = 3, + [139854] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5119), 10, + ACTIONS(4430), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -131949,7 +133360,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5117), 23, + anon_sym_EQ, + ACTIONS(4428), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -131958,7 +133370,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -131973,10 +133384,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [138341] = 3, + [139895] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5119), 10, + ACTIONS(5183), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -131987,7 +133398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5117), 23, + ACTIONS(5181), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -132011,124 +133422,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [138382] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4306), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4304), 30, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, - anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [138423] = 3, + [139936] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4302), 3, + ACTIONS(4414), 11, anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4300), 30, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [138464] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4298), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4296), 30, + ACTIONS(4412), 22, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, + anon_sym_BQUOTE, anon_sym_COMMA_AT, - anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [138505] = 3, + [139977] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5119), 10, + ACTIONS(5187), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -132139,7 +133474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5117), 23, + ACTIONS(5185), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -132163,10 +133498,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [138546] = 3, + [140018] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5179), 10, + ACTIONS(5187), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -132177,7 +133512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5177), 23, + ACTIONS(5185), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -132201,10 +133536,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [138587] = 3, + [140059] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5179), 10, + ACTIONS(4410), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -132215,7 +133550,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5177), 23, + anon_sym_EQ, + ACTIONS(4408), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -132224,7 +133560,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -132239,10 +133574,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [138628] = 3, + [140100] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5179), 10, + ACTIONS(4146), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -132253,7 +133588,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5177), 23, + anon_sym_EQ, + ACTIONS(4144), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -132262,7 +133598,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -132277,10 +133612,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [138669] = 3, + [140141] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5179), 10, + ACTIONS(4390), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -132291,7 +133626,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5177), 23, + anon_sym_EQ, + ACTIONS(4388), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -132300,7 +133636,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -132315,10 +133650,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [138710] = 3, + [140182] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5171), 10, + ACTIONS(4382), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -132329,7 +133664,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(5169), 23, + anon_sym_EQ, + ACTIONS(4380), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -132338,7 +133674,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -132353,546 +133688,280 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [138751] = 3, + [140223] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4294), 3, + ACTIONS(4378), 11, anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4292), 30, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [138792] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4290), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4288), 30, + ACTIONS(4376), 22, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, + anon_sym_BQUOTE, anon_sym_COMMA_AT, - anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [138833] = 3, + [140264] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4286), 3, + ACTIONS(4246), 11, anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4284), 30, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [138874] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4374), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4372), 30, + ACTIONS(4244), 22, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, + anon_sym_BQUOTE, anon_sym_COMMA_AT, - anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [138915] = 3, + [140305] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4278), 3, + ACTIONS(4366), 11, anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4276), 30, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [138956] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4278), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4276), 30, + ACTIONS(4364), 22, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, + anon_sym_BQUOTE, anon_sym_COMMA_AT, - anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [138997] = 3, + [140346] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4142), 3, + ACTIONS(4282), 11, anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4140), 30, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [139038] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4402), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4400), 30, + ACTIONS(4280), 22, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, + anon_sym_BQUOTE, anon_sym_COMMA_AT, - anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [139079] = 3, + [140387] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4462), 3, + ACTIONS(4358), 11, anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4460), 30, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [139120] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4462), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4460), 30, + ACTIONS(4356), 22, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, + anon_sym_BQUOTE, anon_sym_COMMA_AT, - anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [139161] = 3, + [140428] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4142), 3, + ACTIONS(4322), 11, anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4140), 30, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [139202] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4402), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4400), 30, + ACTIONS(4320), 22, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, + anon_sym_BQUOTE, anon_sym_COMMA_AT, - anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [139243] = 3, + [140469] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4378), 3, + ACTIONS(4342), 11, anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4376), 30, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [139284] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4382), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4380), 30, + ACTIONS(4340), 22, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, + anon_sym_BQUOTE, anon_sym_COMMA_AT, - anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [139325] = 3, + [140510] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4386), 3, + ACTIONS(4174), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(4384), 30, + ACTIONS(4172), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -132923,14 +133992,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [139366] = 3, + [140551] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4462), 3, + ACTIONS(4178), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(4460), 30, + ACTIONS(4176), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -132961,14 +134030,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [139407] = 3, + [140592] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4462), 3, + ACTIONS(4154), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(4460), 30, + ACTIONS(4152), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -132999,14 +134068,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [139448] = 3, + [140633] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4514), 3, + ACTIONS(4170), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(4512), 30, + ACTIONS(4168), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -133037,242 +134106,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [139489] = 3, + [140674] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4510), 3, + ACTIONS(4158), 11, anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4508), 30, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [139530] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4506), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4504), 30, + ACTIONS(4156), 22, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, + anon_sym_BQUOTE, anon_sym_COMMA_AT, - anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [139571] = 3, + [140715] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4502), 3, + ACTIONS(4162), 11, anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4500), 30, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [139612] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4506), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4504), 30, + ACTIONS(4160), 22, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, + anon_sym_BQUOTE, anon_sym_COMMA_AT, - anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [139653] = 3, + [140756] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4502), 3, + ACTIONS(4174), 11, anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4500), 30, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [139694] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4498), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4496), 30, + ACTIONS(4172), 22, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, + anon_sym_BQUOTE, anon_sym_COMMA_AT, - anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [139735] = 3, + [140797] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4510), 3, + ACTIONS(4186), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(4508), 30, + ACTIONS(4184), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -133303,90 +134258,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [139776] = 3, + [140838] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4506), 3, + ACTIONS(4178), 11, anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4504), 30, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, anon_sym_EQ, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [139817] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4502), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4500), 30, + ACTIONS(4176), 22, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, + anon_sym_BQUOTE, anon_sym_COMMA_AT, - anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [139858] = 3, + [140879] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4506), 3, + ACTIONS(4190), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(4504), 30, + ACTIONS(4188), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -133417,14 +134334,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [139899] = 3, + [140920] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4502), 3, + ACTIONS(4210), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(4500), 30, + ACTIONS(4208), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -133455,14 +134372,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [139940] = 3, + [140961] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4390), 3, + ACTIONS(4214), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(4388), 30, + ACTIONS(4212), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -133493,121 +134410,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [139981] = 3, + [141002] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4258), 3, + ACTIONS(4154), 11, anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4256), 30, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_EQ, + ACTIONS(4152), 22, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, + anon_sym_BQUOTE, anon_sym_COMMA_AT, - anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [140022] = 3, + [141043] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4254), 3, + ACTIONS(4338), 11, anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4252), 30, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_EQ, + ACTIONS(4336), 22, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, + anon_sym_BQUOTE, anon_sym_COMMA_AT, - anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [140063] = 3, + [141084] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4498), 3, + ACTIONS(5191), 10, anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4496), 30, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + ACTIONS(5189), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, + anon_sym_BQUOTE, anon_sym_COMMA_AT, - anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [140104] = 3, + [141125] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(4494), 3, @@ -133645,7 +134562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [140145] = 3, + [141166] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(4490), 3, @@ -133683,14 +134600,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [140186] = 3, + [141207] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4486), 3, + ACTIONS(4222), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(4484), 30, + ACTIONS(4220), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -133721,52 +134638,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [140227] = 3, + [141248] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4250), 3, + ACTIONS(4170), 11, anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4248), 30, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_EQ, + ACTIONS(4168), 22, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, + anon_sym_BQUOTE, anon_sym_COMMA_AT, - anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [140268] = 3, + [141289] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4482), 3, + ACTIONS(4466), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(4480), 30, + ACTIONS(4464), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -133797,14 +134714,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [140309] = 3, + [141330] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4482), 3, + ACTIONS(4474), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(4480), 30, + ACTIONS(4472), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -133835,52 +134752,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [140350] = 3, + [141371] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4478), 3, + ACTIONS(5191), 10, anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4476), 30, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + ACTIONS(5189), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, + anon_sym_BQUOTE, anon_sym_COMMA_AT, - anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [140391] = 3, + [141412] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4474), 3, + ACTIONS(4146), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(4472), 30, + ACTIONS(4144), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -133911,14 +134828,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [140432] = 3, + [141453] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4182), 3, + ACTIONS(4442), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(4180), 30, + ACTIONS(4440), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -133949,14 +134866,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [140473] = 3, + [141494] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4482), 3, + ACTIONS(4226), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(4480), 30, + ACTIONS(4224), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -133987,14 +134904,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [140514] = 3, + [141535] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4482), 3, + ACTIONS(4234), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(4480), 30, + ACTIONS(4232), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -134025,14 +134942,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [140555] = 3, + [141576] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4478), 3, + ACTIONS(4238), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(4476), 30, + ACTIONS(4236), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -134063,14 +134980,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [140596] = 3, + [141617] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4474), 3, + ACTIONS(4250), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(4472), 30, + ACTIONS(4248), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -134101,14 +135018,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [140637] = 3, + [141658] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4470), 3, + ACTIONS(4146), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(4468), 30, + ACTIONS(4144), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -134139,14 +135056,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [140678] = 3, + [141699] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4466), 3, + ACTIONS(4254), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(4464), 30, + ACTIONS(4252), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -134177,14 +135094,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [140719] = 3, + [141740] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4162), 3, + ACTIONS(4382), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(4160), 30, + ACTIONS(4380), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -134215,14 +135132,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [140760] = 3, + [141781] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4166), 3, + ACTIONS(4378), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(4164), 30, + ACTIONS(4376), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -134253,52 +135170,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [140801] = 3, + [141822] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4458), 3, + ACTIONS(4186), 11, anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4456), 30, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_EQ, + ACTIONS(4184), 22, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, + anon_sym_BQUOTE, anon_sym_COMMA_AT, - anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [140842] = 3, + [141863] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4390), 3, + ACTIONS(4366), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(4388), 30, + ACTIONS(4364), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -134329,52 +135246,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [140883] = 3, + [141904] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4178), 3, + ACTIONS(4190), 11, anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4176), 30, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_EQ, + ACTIONS(4188), 22, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, + anon_sym_BQUOTE, anon_sym_COMMA_AT, - anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [140924] = 3, + [141945] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4174), 3, + ACTIONS(4358), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(4172), 30, + ACTIONS(4356), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -134405,52 +135322,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [140965] = 3, + [141986] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4454), 3, + ACTIONS(4194), 11, anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4452), 30, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_EQ, + ACTIONS(4192), 22, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, + anon_sym_BQUOTE, anon_sym_COMMA_AT, - anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [141006] = 3, + [142027] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4182), 3, + ACTIONS(4342), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(4180), 30, + ACTIONS(4340), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -134481,52 +135398,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [141047] = 3, + [142068] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4186), 3, + ACTIONS(5195), 10, anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4184), 30, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + ACTIONS(5193), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, + anon_sym_BQUOTE, anon_sym_COMMA_AT, - anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [141088] = 3, + [142109] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4446), 3, + ACTIONS(4338), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(4444), 30, + ACTIONS(4336), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -134557,52 +135474,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [141129] = 3, + [142150] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4446), 3, + ACTIONS(5199), 10, anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4444), 30, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + ACTIONS(5197), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, + anon_sym_BQUOTE, anon_sym_COMMA_AT, - anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [141170] = 3, + [142191] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4442), 3, + ACTIONS(4326), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(4440), 30, + ACTIONS(4324), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -134633,166 +135550,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [141211] = 3, + [142232] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4442), 3, + ACTIONS(5199), 10, anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4440), 30, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + ACTIONS(5197), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, + anon_sym_BQUOTE, anon_sym_COMMA_AT, - anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [141252] = 3, + [142273] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4182), 3, + ACTIONS(5199), 10, anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4180), 30, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + ACTIONS(5197), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, + anon_sym_BQUOTE, anon_sym_COMMA_AT, - anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [141293] = 3, + [142314] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4438), 3, + ACTIONS(5199), 10, anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4436), 30, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + ACTIONS(5197), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, + anon_sym_BQUOTE, anon_sym_COMMA_AT, - anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [141334] = 3, + [142355] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4210), 3, + ACTIONS(5191), 10, anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4208), 30, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + ACTIONS(5189), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, + anon_sym_BQUOTE, anon_sym_COMMA_AT, - anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [141375] = 3, + [142396] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4214), 3, + ACTIONS(4322), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(4212), 30, + ACTIONS(4320), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -134823,14 +135740,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [141416] = 3, + [142437] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4434), 3, + ACTIONS(4282), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(4432), 30, + ACTIONS(4280), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -134861,90 +135778,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [141457] = 3, + [142478] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4218), 3, + ACTIONS(5191), 10, anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4216), 30, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + ACTIONS(5189), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, + anon_sym_BQUOTE, anon_sym_COMMA_AT, - anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [141498] = 3, + [142519] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4406), 3, + ACTIONS(5203), 10, anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4404), 30, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + ACTIONS(5201), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, + anon_sym_BQUOTE, anon_sym_COMMA_AT, - anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [141539] = 3, + [142560] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4222), 3, + ACTIONS(4146), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(4220), 30, + ACTIONS(4144), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -134975,14 +135892,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [141580] = 3, + [142601] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4430), 3, + ACTIONS(4370), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(4428), 30, + ACTIONS(4368), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -135013,14 +135930,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [141621] = 3, + [142642] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4226), 3, + ACTIONS(4290), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(4224), 30, + ACTIONS(4288), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -135051,14 +135968,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [141662] = 3, + [142683] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4418), 3, + ACTIONS(4286), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(4416), 30, + ACTIONS(4284), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -135089,318 +136006,350 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [141703] = 3, + [142724] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4230), 3, + ACTIONS(5195), 10, anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4228), 30, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + ACTIONS(5193), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, + anon_sym_BQUOTE, anon_sym_COMMA_AT, - anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [141744] = 3, + [142765] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4242), 3, + ACTIONS(5203), 10, anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4240), 30, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + ACTIONS(5201), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, + anon_sym_BQUOTE, anon_sym_COMMA_AT, - anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [141785] = 3, + [142806] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4234), 3, + ACTIONS(5207), 10, anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4232), 30, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + ACTIONS(5205), 22, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, + anon_sym_BQUOTE, anon_sym_COMMA_AT, - anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [141826] = 3, + [142846] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4414), 3, + ACTIONS(5211), 10, anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4412), 30, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + ACTIONS(5209), 22, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, + anon_sym_BQUOTE, anon_sym_COMMA_AT, - anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [141867] = 3, + [142886] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4418), 3, + ACTIONS(5215), 10, anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4416), 30, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + ACTIONS(5213), 22, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, + anon_sym_BQUOTE, anon_sym_COMMA_AT, - anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [141908] = 3, + [142926] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4414), 3, + ACTIONS(5219), 10, anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4412), 30, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + ACTIONS(5217), 22, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, + anon_sym_BQUOTE, anon_sym_COMMA_AT, - anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [141949] = 3, + [142966] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4410), 3, + ACTIONS(5223), 10, anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4408), 30, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + ACTIONS(5221), 22, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, + anon_sym_BQUOTE, anon_sym_COMMA_AT, - anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [141990] = 3, + [143006] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4238), 3, + ACTIONS(5225), 1, + anon_sym_COLON, + ACTIONS(5227), 1, + anon_sym_COLON_COLON, + ACTIONS(4500), 30, + sym__ws, + sym_comment, + anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_cl, + anon_sym_EQ, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_into, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [143048] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5231), 10, anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4236), 30, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + ACTIONS(5229), 22, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, + anon_sym_BQUOTE, anon_sym_COMMA_AT, - anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [142031] = 4, + [143088] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5181), 1, + ACTIONS(5225), 1, anon_sym_COLON, - ACTIONS(5183), 1, + ACTIONS(5227), 1, anon_sym_COLON_COLON, - ACTIONS(4152), 30, + ACTIONS(4496), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -135431,18 +136380,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142073] = 4, + [143130] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5181), 1, + ACTIONS(4514), 1, anon_sym_COLON, - ACTIONS(5183), 1, - anon_sym_COLON_COLON, - ACTIONS(4176), 30, + ACTIONS(4512), 31, sym__ws, sym_comment, anon_sym_POUND_, aux_sym_num_lit_token1, + anon_sym_COLON_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -135469,54 +136417,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142115] = 3, + [143170] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5187), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, + ACTIONS(5225), 1, anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5185), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, + ACTIONS(5227), 1, anon_sym_COLON_COLON, - anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [142155] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4150), 1, - anon_sym_COLON, - ACTIONS(4148), 31, + ACTIONS(4464), 30, sym__ws, sym_comment, anon_sym_POUND_, aux_sym_num_lit_token1, - anon_sym_COLON_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -135543,195 +136455,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142195] = 3, + [143212] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5191), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5189), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [142235] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5195), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5193), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [142275] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5199), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5197), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [142315] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5203), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5201), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [142355] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5207), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5205), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [142395] = 2, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4396), 31, + ACTIONS(4268), 31, sym__ws, sym_comment, anon_sym_POUND_, @@ -135763,10 +136490,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142432] = 2, + [143249] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4356), 31, + ACTIONS(4408), 31, sym__ws, sym_comment, anon_sym_POUND_, @@ -135798,10 +136525,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142469] = 2, + [143286] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4392), 31, + ACTIONS(4328), 31, sym__ws, sym_comment, anon_sym_POUND_, @@ -135833,10 +136560,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142506] = 2, + [143323] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4168), 31, + ACTIONS(4516), 31, sym__ws, sym_comment, anon_sym_POUND_, @@ -135868,10 +136595,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142543] = 2, + [143360] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4144), 31, + ACTIONS(4300), 31, sym__ws, sym_comment, anon_sym_POUND_, @@ -135903,10 +136630,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142580] = 2, + [143397] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4144), 31, + ACTIONS(4264), 31, sym__ws, sym_comment, anon_sym_POUND_, @@ -135938,10 +136665,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142617] = 2, + [143434] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4420), 31, + ACTIONS(4480), 31, sym__ws, sym_comment, anon_sym_POUND_, @@ -135973,10 +136700,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142654] = 2, + [143471] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4424), 31, + ACTIONS(4332), 31, sym__ws, sym_comment, anon_sym_POUND_, @@ -136008,10 +136735,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142691] = 2, + [143508] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4200), 31, + ACTIONS(4276), 31, sym__ws, sym_comment, anon_sym_POUND_, @@ -136043,21 +136770,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142728] = 2, + [143545] = 7, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4448), 31, + ACTIONS(5236), 1, + anon_sym_POUND_, + ACTIONS(5241), 1, + anon_sym_cl, + ACTIONS(5244), 1, + anon_sym_into, + ACTIONS(5233), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2463), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(5239), 23, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_cl, - anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -136074,14 +136807,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, - anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [142765] = 2, + [143592] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4352), 31, + ACTIONS(4260), 31, sym__ws, sym_comment, anon_sym_POUND_, @@ -136113,10 +136845,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142802] = 2, + [143629] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4348), 31, + ACTIONS(4156), 31, sym__ws, sym_comment, anon_sym_POUND_, @@ -136148,23 +136880,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142839] = 7, + [143666] = 7, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5212), 1, + ACTIONS(5249), 1, anon_sym_POUND_, - ACTIONS(5217), 1, + ACTIONS(5254), 1, anon_sym_cl, - ACTIONS(5220), 1, + ACTIONS(5257), 1, anon_sym_into, - ACTIONS(5209), 2, + ACTIONS(5246), 2, sym__ws, sym_comment, - STATE(2766), 3, + STATE(2777), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(5215), 23, + ACTIONS(5252), 23, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -136188,10 +136920,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142886] = 2, + [143713] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4272), 31, + ACTIONS(4296), 31, sym__ws, sym_comment, anon_sym_POUND_, @@ -136223,27 +136955,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142923] = 7, + [143750] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5225), 1, - anon_sym_POUND_, - ACTIONS(5230), 1, - anon_sym_cl, - ACTIONS(5233), 1, - anon_sym_into, - ACTIONS(5222), 2, + ACTIONS(4148), 31, sym__ws, sym_comment, - STATE(2728), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(5228), 23, + anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -136260,13 +136986,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [142970] = 2, + [143787] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4268), 31, + ACTIONS(4244), 31, sym__ws, sym_comment, anon_sym_POUND_, @@ -136298,10 +137025,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143007] = 2, + [143824] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4264), 31, + ACTIONS(4300), 31, sym__ws, sym_comment, anon_sym_POUND_, @@ -136333,10 +137060,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143044] = 2, + [143861] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4244), 31, + ACTIONS(4384), 31, sym__ws, sym_comment, anon_sym_POUND_, @@ -136368,10 +137095,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143081] = 2, + [143898] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4500), 30, + ACTIONS(4456), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -136402,10 +137129,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143117] = 2, + [143934] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4472), 30, + ACTIONS(4292), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -136436,10 +137163,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143153] = 2, + [143970] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4456), 30, + ACTIONS(4308), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -136470,10 +137197,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143189] = 2, + [144006] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4276), 30, + ACTIONS(4160), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -136504,10 +137231,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143225] = 2, + [144042] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4276), 30, + ACTIONS(4344), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -136538,10 +137265,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143261] = 2, + [144078] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4140), 30, + ACTIONS(4348), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -136572,10 +137299,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143297] = 2, + [144114] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4400), 30, + ACTIONS(4204), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -136606,10 +137333,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143333] = 2, + [144150] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4344), 30, + ACTIONS(4216), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -136640,10 +137367,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143369] = 2, + [144186] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4460), 30, + ACTIONS(4180), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -136674,10 +137401,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143405] = 2, + [144222] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4460), 30, + ACTIONS(4360), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -136708,10 +137435,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143441] = 2, + [144258] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4140), 30, + ACTIONS(4360), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -136742,10 +137469,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143477] = 2, + [144294] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4336), 30, + ACTIONS(4372), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -136776,10 +137503,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143513] = 2, + [144330] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4400), 30, + ACTIONS(4372), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -136810,10 +137537,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143549] = 2, + [144366] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4460), 30, + ACTIONS(4392), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -136844,10 +137571,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143585] = 2, + [144402] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4368), 30, + ACTIONS(4396), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -136878,10 +137605,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143621] = 2, + [144438] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4460), 30, + ACTIONS(4404), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -136912,10 +137639,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143657] = 2, + [144474] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4280), 30, + ACTIONS(4196), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -136946,10 +137673,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143693] = 2, + [144510] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4512), 30, + ACTIONS(4140), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -136980,10 +137707,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143729] = 2, + [144546] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4508), 30, + ACTIONS(4200), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -137014,10 +137741,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143765] = 2, + [144582] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4504), 30, + ACTIONS(4416), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -137048,10 +137775,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143801] = 2, + [144618] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4500), 30, + ACTIONS(4420), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -137082,10 +137809,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143837] = 2, + [144654] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4504), 30, + ACTIONS(4432), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -137116,10 +137843,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143873] = 2, + [144690] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4260), 30, + ACTIONS(4432), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -137150,10 +137877,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143909] = 2, + [144726] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4496), 30, + ACTIONS(4416), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -137184,10 +137911,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143945] = 2, + [144762] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4508), 30, + ACTIONS(4420), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -137218,10 +137945,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143981] = 2, + [144798] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4504), 30, + ACTIONS(4432), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -137252,10 +137979,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144017] = 2, + [144834] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4500), 30, + ACTIONS(4432), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -137286,10 +138013,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144053] = 2, + [144870] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4504), 30, + ACTIONS(4444), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -137320,10 +138047,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144089] = 2, + [144906] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4500), 30, + ACTIONS(4448), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -137354,10 +138081,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144125] = 2, + [144942] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4496), 30, + ACTIONS(4452), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -137388,10 +138115,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144161] = 2, + [144978] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4492), 30, + ACTIONS(4456), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -137422,10 +138149,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144197] = 2, + [145014] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4488), 30, + ACTIONS(4460), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -137456,10 +138183,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144233] = 2, + [145050] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4484), 30, + ACTIONS(4164), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -137490,10 +138217,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144269] = 2, + [145086] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4480), 30, + ACTIONS(4476), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -137524,10 +138251,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144305] = 2, + [145122] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4160), 30, + ACTIONS(4460), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -137558,10 +138285,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144341] = 2, + [145158] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4164), 30, + ACTIONS(4476), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -137592,10 +138319,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144377] = 2, + [145194] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4480), 30, + ACTIONS(4484), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -137626,10 +138353,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144413] = 2, + [145230] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4476), 30, + ACTIONS(4272), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -137660,10 +138387,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144449] = 2, + [145266] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4472), 30, + ACTIONS(4256), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -137694,10 +138421,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144485] = 2, + [145302] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4176), 30, + ACTIONS(4460), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -137728,10 +138455,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144521] = 2, + [145338] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4172), 30, + ACTIONS(4476), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -137762,10 +138489,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144557] = 2, + [145374] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4180), 30, + ACTIONS(4460), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -137796,10 +138523,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144593] = 2, + [145410] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4204), 30, + ACTIONS(4476), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -137830,10 +138557,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144629] = 2, + [145446] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4184), 30, + ACTIONS(4484), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -137864,10 +138591,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144665] = 2, + [145482] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4196), 30, + ACTIONS(4504), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -137898,10 +138625,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144701] = 2, + [145518] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4192), 30, + ACTIONS(4508), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -137932,10 +138659,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144737] = 2, + [145554] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4480), 30, + ACTIONS(4508), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -137966,10 +138693,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144773] = 2, + [145590] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4188), 30, + ACTIONS(4424), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -138000,10 +138727,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144809] = 2, + [145626] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4480), 30, + ACTIONS(4400), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -138034,10 +138761,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144845] = 2, + [145662] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4180), 30, + ACTIONS(4508), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -138068,10 +138795,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144881] = 2, + [145698] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4476), 30, + ACTIONS(4508), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -138102,10 +138829,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144917] = 2, + [145734] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4208), 30, + ACTIONS(4424), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -138136,10 +138863,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144953] = 2, + [145770] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4212), 30, + ACTIONS(4400), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -138170,10 +138897,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144989] = 2, + [145806] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4216), 30, + ACTIONS(4312), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -138204,10 +138931,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145025] = 2, + [145842] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4220), 30, + ACTIONS(4316), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -138238,10 +138965,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145061] = 2, + [145878] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4224), 30, + ACTIONS(4492), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -138272,10 +138999,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145097] = 2, + [145914] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4228), 30, + ACTIONS(4488), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -138306,10 +139033,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145133] = 2, + [145950] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4232), 30, + ACTIONS(4312), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -138340,10 +139067,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145169] = 2, + [145986] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4236), 30, + ACTIONS(4464), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -138374,10 +139101,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145205] = 2, + [146022] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4240), 30, + ACTIONS(4472), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -138408,10 +139135,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145241] = 2, + [146058] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4180), 30, + ACTIONS(4292), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -138442,10 +139169,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145277] = 2, + [146094] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4248), 30, + ACTIONS(4144), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -138476,10 +139203,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145313] = 2, + [146130] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4252), 30, + ACTIONS(4440), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -138510,10 +139237,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145349] = 2, + [146166] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4256), 30, + ACTIONS(4240), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -138544,10 +139271,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145385] = 2, + [146202] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4284), 30, + ACTIONS(4144), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -138578,10 +139305,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145421] = 2, + [146238] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4288), 30, + ACTIONS(4380), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -138612,10 +139339,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145457] = 2, + [146274] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4292), 30, + ACTIONS(4376), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -138646,10 +139373,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145493] = 2, + [146310] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4296), 30, + ACTIONS(4364), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -138680,10 +139407,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145529] = 2, + [146346] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4300), 30, + ACTIONS(4356), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -138714,10 +139441,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145565] = 2, + [146382] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4304), 30, + ACTIONS(4340), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -138748,10 +139475,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145601] = 2, + [146418] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4308), 30, + ACTIONS(4336), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -138782,10 +139509,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145637] = 2, + [146454] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4312), 30, + ACTIONS(4324), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -138816,7 +139543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145673] = 2, + [146490] = 2, ACTIONS(47), 1, sym_block_comment, ACTIONS(4320), 30, @@ -138850,10 +139577,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145709] = 2, + [146526] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4324), 30, + ACTIONS(4280), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -138884,10 +139611,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145745] = 2, + [146562] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4328), 30, + ACTIONS(4192), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -138918,10 +139645,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145781] = 2, + [146598] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4332), 30, + ACTIONS(4144), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -138952,10 +139679,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145817] = 2, + [146634] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4388), 30, + ACTIONS(4368), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -138986,10 +139713,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145853] = 2, + [146670] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4340), 30, + ACTIONS(4288), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -139020,10 +139747,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145889] = 2, + [146706] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4360), 30, + ACTIONS(4284), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -139054,10 +139781,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145925] = 2, + [146742] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4364), 30, + ACTIONS(4316), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -139088,10 +139815,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145961] = 2, + [146778] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4372), 30, + ACTIONS(4228), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -139122,10 +139849,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145997] = 2, + [146814] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4376), 30, + ACTIONS(4228), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -139156,10 +139883,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146033] = 2, + [146850] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4380), 30, + ACTIONS(4252), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -139190,10 +139917,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146069] = 2, + [146886] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4384), 30, + ACTIONS(4248), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -139224,10 +139951,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146105] = 2, + [146922] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4388), 30, + ACTIONS(4236), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -139258,10 +139985,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146141] = 2, + [146958] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4316), 30, + ACTIONS(4232), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -139292,10 +140019,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146177] = 2, + [146994] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4468), 30, + ACTIONS(4436), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -139326,10 +140053,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146213] = 2, + [147030] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4464), 30, + ACTIONS(4224), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -139360,10 +140087,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146249] = 2, + [147066] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4428), 30, + ACTIONS(4220), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -139394,10 +140121,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146285] = 2, + [147102] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4452), 30, + ACTIONS(4212), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -139428,10 +140155,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146321] = 2, + [147138] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4444), 30, + ACTIONS(4208), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -139462,10 +140189,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146357] = 2, + [147174] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4444), 30, + ACTIONS(4188), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -139496,10 +140223,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146393] = 2, + [147210] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4440), 30, + ACTIONS(4184), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -139530,10 +140257,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146429] = 2, + [147246] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4440), 30, + ACTIONS(4304), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -139564,10 +140291,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146465] = 2, + [147282] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4436), 30, + ACTIONS(4168), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -139598,10 +140325,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146501] = 2, + [147318] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4432), 30, + ACTIONS(4152), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -139632,10 +140359,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146537] = 2, + [147354] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4416), 30, + ACTIONS(4176), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -139666,10 +140393,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146573] = 2, + [147390] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4412), 30, + ACTIONS(4172), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -139700,10 +140427,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146609] = 2, + [147426] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4416), 30, + ACTIONS(4428), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -139734,10 +140461,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146645] = 2, + [147462] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4412), 30, + ACTIONS(4388), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -139768,10 +140495,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146681] = 2, + [147498] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4408), 30, + ACTIONS(4352), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -139802,10 +140529,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146717] = 2, + [147534] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4404), 30, + ACTIONS(4412), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -139836,10 +140563,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146753] = 3, + [147570] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5235), 1, + ACTIONS(5259), 1, aux_sym_num_lit_token2, ACTIONS(4134), 28, sym__ws, @@ -139870,13 +140597,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146790] = 3, + [147607] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5239), 2, + ACTIONS(5263), 2, anon_sym_COLON, anon_sym_AT, - ACTIONS(5237), 27, + ACTIONS(5261), 27, aux_sym_num_lit_token1, anon_sym_TILDE, anon_sym_SQUOTE, @@ -139904,24 +140631,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_Newline, aux_sym_format_directive_type_token11, - [146827] = 9, + [147644] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5037), 1, + ACTIONS(5041), 1, aux_sym_num_lit_token1, - ACTIONS(5045), 1, + ACTIONS(5049), 1, anon_sym_SQUOTE, - ACTIONS(5053), 1, + ACTIONS(5057), 1, anon_sym_SLASH, - ACTIONS(5241), 1, + ACTIONS(5265), 1, anon_sym_COMMA, - STATE(2335), 1, + STATE(2333), 1, sym__format_token, - STATE(3306), 1, + STATE(3360), 1, aux_sym_format_modifiers_repeat1, - STATE(3366), 1, + STATE(3397), 1, sym_format_directive_type, - ACTIONS(5043), 21, + ACTIONS(5047), 21, anon_sym_TILDE, anon_sym_PERCENT, anon_sym_AMP, @@ -139943,24 +140670,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_Newline, aux_sym_format_directive_type_token11, - [146875] = 9, + [147692] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5037), 1, + ACTIONS(5041), 1, aux_sym_num_lit_token1, - ACTIONS(5045), 1, + ACTIONS(5049), 1, anon_sym_SQUOTE, - ACTIONS(5053), 1, + ACTIONS(5057), 1, anon_sym_SLASH, - ACTIONS(5241), 1, + ACTIONS(5265), 1, anon_sym_COMMA, - STATE(2335), 1, + STATE(2333), 1, sym__format_token, - STATE(3306), 1, + STATE(3360), 1, aux_sym_format_modifiers_repeat1, - STATE(3369), 1, + STATE(3395), 1, sym_format_directive_type, - ACTIONS(5043), 21, + ACTIONS(5047), 21, anon_sym_TILDE, anon_sym_PERCENT, anon_sym_AMP, @@ -139982,72 +140709,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_Newline, aux_sym_format_directive_type_token11, - [146923] = 2, + [147740] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5243), 27, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_cl, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_do, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [146956] = 2, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5245), 27, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_cl, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_do, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [146989] = 2, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5247), 27, + ACTIONS(5267), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -140075,10 +140740,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147022] = 2, + [147773] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5247), 27, + ACTIONS(5269), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -140106,10 +140771,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147055] = 2, + [147806] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5249), 27, + ACTIONS(5271), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -140137,10 +140802,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147088] = 2, + [147839] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5251), 27, + ACTIONS(5273), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -140168,10 +140833,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147121] = 2, + [147872] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5251), 27, + ACTIONS(5271), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -140199,10 +140864,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147154] = 2, + [147905] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5253), 27, + ACTIONS(5275), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -140230,10 +140895,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147187] = 2, + [147938] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5255), 27, + ACTIONS(5277), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -140261,10 +140926,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147220] = 2, + [147971] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5255), 27, + ACTIONS(5279), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -140292,10 +140957,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147253] = 2, + [148004] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5257), 27, + ACTIONS(5281), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -140323,10 +140988,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147286] = 2, + [148037] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5259), 27, + ACTIONS(5283), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -140354,10 +141019,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147319] = 2, + [148070] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5259), 27, + ACTIONS(5285), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -140385,10 +141050,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147352] = 2, + [148103] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5257), 27, + ACTIONS(5285), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -140416,10 +141081,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147385] = 2, + [148136] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5261), 27, + ACTIONS(5287), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -140447,10 +141112,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147418] = 2, + [148169] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5261), 27, + ACTIONS(5289), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -140478,10 +141143,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147451] = 2, + [148202] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5263), 27, + ACTIONS(5291), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -140509,10 +141174,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147484] = 2, + [148235] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5265), 27, + ACTIONS(5291), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -140540,10 +141205,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147517] = 2, + [148268] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5265), 27, + ACTIONS(5293), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -140571,10 +141236,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147550] = 2, + [148301] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5267), 27, + ACTIONS(5295), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -140602,10 +141267,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147583] = 2, + [148334] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5269), 27, + ACTIONS(5297), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -140633,10 +141298,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147616] = 2, + [148367] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5267), 27, + ACTIONS(5299), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -140664,10 +141329,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147649] = 2, + [148400] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5271), 27, + ACTIONS(5301), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -140695,10 +141360,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147682] = 2, + [148433] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5273), 27, + ACTIONS(5303), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -140726,10 +141391,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147715] = 2, + [148466] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5275), 27, + ACTIONS(5303), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -140757,10 +141422,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147748] = 2, + [148499] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5275), 27, + ACTIONS(5305), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -140788,10 +141453,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147781] = 2, + [148532] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5273), 27, + ACTIONS(5307), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -140819,10 +141484,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147814] = 2, + [148565] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5277), 27, + ACTIONS(5309), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -140850,10 +141515,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147847] = 2, + [148598] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5277), 27, + ACTIONS(5311), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -140881,10 +141546,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147880] = 2, + [148631] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5279), 27, + ACTIONS(5313), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -140912,10 +141577,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147913] = 2, + [148664] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5279), 27, + ACTIONS(5315), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -140943,10 +141608,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147946] = 2, + [148697] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5281), 27, + ACTIONS(5317), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -140974,10 +141639,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147979] = 2, + [148730] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5283), 27, + ACTIONS(5319), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -141005,10 +141670,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148012] = 2, + [148763] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5285), 27, + ACTIONS(5321), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -141036,10 +141701,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148045] = 2, + [148796] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5285), 27, + ACTIONS(5321), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -141067,10 +141732,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148078] = 2, + [148829] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5287), 27, + ACTIONS(5319), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -141098,10 +141763,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148111] = 2, + [148862] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5287), 27, + ACTIONS(5323), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -141129,10 +141794,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148144] = 2, + [148895] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5289), 27, + ACTIONS(5325), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -141160,10 +141825,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148177] = 2, + [148928] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5291), 27, + ACTIONS(5315), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -141191,10 +141856,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148210] = 2, + [148961] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5291), 27, + ACTIONS(5327), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -141222,7 +141887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148243] = 2, + [148994] = 2, ACTIONS(47), 1, sym_block_comment, ACTIONS(5289), 27, @@ -141253,10 +141918,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148276] = 2, + [149027] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5293), 27, + ACTIONS(5329), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -141284,10 +141949,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148309] = 2, + [149060] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5295), 27, + ACTIONS(5329), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -141315,10 +141980,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148342] = 2, + [149093] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5297), 27, + ACTIONS(5331), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -141346,10 +142011,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148375] = 2, + [149126] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5295), 27, + ACTIONS(5325), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -141377,10 +142042,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148408] = 2, + [149159] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5299), 27, + ACTIONS(5333), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -141408,10 +142073,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148441] = 2, + [149192] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5301), 27, + ACTIONS(5331), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -141439,10 +142104,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148474] = 2, + [149225] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5303), 27, + ACTIONS(5335), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -141470,10 +142135,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148507] = 2, + [149258] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5305), 27, + ACTIONS(5337), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -141501,10 +142166,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148540] = 2, + [149291] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5307), 27, + ACTIONS(5337), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -141532,10 +142197,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148573] = 2, + [149324] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5307), 27, + ACTIONS(5339), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -141563,10 +142228,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148606] = 2, + [149357] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5309), 27, + ACTIONS(5341), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -141594,10 +142259,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148639] = 2, + [149390] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5309), 27, + ACTIONS(5343), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -141625,10 +142290,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148672] = 2, + [149423] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5311), 27, + ACTIONS(5345), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -141656,10 +142321,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148705] = 2, + [149456] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5313), 27, + ACTIONS(5347), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -141687,10 +142352,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148738] = 2, + [149489] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5311), 27, + ACTIONS(5349), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -141718,10 +142383,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148771] = 2, + [149522] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5315), 27, + ACTIONS(5351), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -141749,10 +142414,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148804] = 2, + [149555] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5317), 27, + ACTIONS(5353), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -141780,10 +142445,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148837] = 2, + [149588] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5319), 27, + ACTIONS(5351), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -141811,10 +142476,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148870] = 2, + [149621] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5319), 27, + ACTIONS(5355), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -141842,10 +142507,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148903] = 2, + [149654] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5317), 27, + ACTIONS(5357), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -141873,10 +142538,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148936] = 2, + [149687] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5321), 27, + ACTIONS(5353), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -141904,10 +142569,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148969] = 2, + [149720] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5323), 27, + ACTIONS(5359), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -141935,10 +142600,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149002] = 2, + [149753] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5323), 27, + ACTIONS(5361), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -141966,10 +142631,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149035] = 2, + [149786] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5243), 27, + ACTIONS(5363), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -141997,10 +142662,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149068] = 2, + [149819] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5325), 27, + ACTIONS(5363), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -142028,10 +142693,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149101] = 2, + [149852] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5327), 27, + ACTIONS(5361), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -142059,10 +142724,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149134] = 2, + [149885] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5329), 27, + ACTIONS(5365), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -142090,10 +142755,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149167] = 2, + [149918] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5331), 27, + ACTIONS(5365), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -142121,10 +142786,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149200] = 2, + [149951] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5331), 27, + ACTIONS(5367), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -142152,10 +142817,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149233] = 2, + [149984] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5333), 27, + ACTIONS(5369), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -142183,10 +142848,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149266] = 2, + [150017] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5335), 27, + ACTIONS(5369), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -142214,10 +142879,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149299] = 2, + [150050] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5337), 27, + ACTIONS(5371), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -142245,10 +142910,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149332] = 2, + [150083] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5339), 27, + ACTIONS(5373), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -142276,10 +142941,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149365] = 2, + [150116] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5341), 27, + ACTIONS(5367), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -142307,10 +142972,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149398] = 2, + [150149] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5343), 27, + ACTIONS(5375), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -142338,10 +143003,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149431] = 2, + [150182] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5343), 27, + ACTIONS(5377), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -142369,10 +143034,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149464] = 2, + [150215] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5345), 27, + ACTIONS(5377), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -142400,10 +143065,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149497] = 2, + [150248] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5299), 27, + ACTIONS(5379), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -142431,10 +143096,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149530] = 2, + [150281] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5347), 27, + ACTIONS(5379), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -142462,10 +143127,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149563] = 2, + [150314] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5327), 27, + ACTIONS(5381), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -142493,10 +143158,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149596] = 2, + [150347] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5283), 27, + ACTIONS(5383), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -142524,10 +143189,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149629] = 2, + [150380] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5339), 27, + ACTIONS(5385), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -142555,10 +143220,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149662] = 2, + [150413] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5301), 27, + ACTIONS(5387), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -142586,10 +143251,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149695] = 2, + [150446] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5349), 27, + ACTIONS(5389), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -142617,10 +143282,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149728] = 2, + [150479] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5351), 27, + ACTIONS(5391), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -142648,10 +143313,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149761] = 2, + [150512] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5353), 27, + ACTIONS(5373), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -142679,10 +143344,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149794] = 2, + [150545] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5355), 27, + ACTIONS(5391), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -142710,10 +143375,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149827] = 2, + [150578] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5357), 27, + ACTIONS(5389), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -142741,10 +143406,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149860] = 2, + [150611] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5359), 27, + ACTIONS(5393), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -142772,10 +143437,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149893] = 2, + [150644] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5361), 27, + ACTIONS(5395), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -142803,10 +143468,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149926] = 2, + [150677] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5363), 27, + ACTIONS(5393), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -142834,10 +143499,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149959] = 2, + [150710] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5365), 27, + ACTIONS(5397), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -142865,10 +143530,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149992] = 2, + [150743] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5367), 27, + ACTIONS(5397), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -142896,10 +143561,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150025] = 2, + [150776] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5363), 27, + ACTIONS(5399), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -142927,10 +143592,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150058] = 2, + [150809] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5361), 27, + ACTIONS(5401), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -142958,10 +143623,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150091] = 2, + [150842] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5367), 27, + ACTIONS(5401), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -142989,10 +143654,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150124] = 2, + [150875] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5369), 27, + ACTIONS(5403), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -143020,10 +143685,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150157] = 2, + [150908] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5371), 27, + ACTIONS(5405), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -143051,10 +143716,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150190] = 2, + [150941] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5245), 27, + ACTIONS(5405), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -143082,10 +143747,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150223] = 2, + [150974] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5369), 27, + ACTIONS(5403), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -143113,10 +143778,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150256] = 2, + [151007] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5373), 27, + ACTIONS(5407), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -143144,10 +143809,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150289] = 2, + [151040] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5375), 27, + ACTIONS(5407), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -143175,10 +143840,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150322] = 2, + [151073] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5377), 27, + ACTIONS(5409), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -143206,10 +143871,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150355] = 2, + [151106] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5379), 27, + ACTIONS(5411), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -143237,10 +143902,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150388] = 2, + [151139] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5381), 27, + ACTIONS(5411), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -143268,10 +143933,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150421] = 2, + [151172] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5381), 27, + ACTIONS(5371), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -143299,10 +143964,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150454] = 2, + [151205] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5383), 27, + ACTIONS(5413), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -143330,10 +143995,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150487] = 2, + [151238] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5385), 27, + ACTIONS(5415), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -143361,10 +144026,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150520] = 2, + [151271] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5387), 27, + ACTIONS(5417), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -143392,10 +144057,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150553] = 2, + [151304] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5387), 27, + ACTIONS(5419), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -143423,10 +144088,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150586] = 2, + [151337] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5389), 27, + ACTIONS(5333), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -143454,10 +144119,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150619] = 2, + [151370] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5391), 27, + ACTIONS(5413), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -143485,10 +144150,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150652] = 2, + [151403] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5393), 27, + ACTIONS(5421), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -143516,10 +144181,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150685] = 2, + [151436] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5395), 27, + ACTIONS(5421), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -143547,10 +144212,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150718] = 2, + [151469] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5397), 27, + ACTIONS(5423), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -143578,10 +144243,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150751] = 2, + [151502] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5249), 27, + ACTIONS(5425), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -143609,10 +144274,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150784] = 2, + [151535] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5399), 27, + ACTIONS(5427), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -143640,10 +144305,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150817] = 2, + [151568] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5401), 27, + ACTIONS(5427), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -143671,10 +144336,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150850] = 2, + [151601] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5403), 27, + ACTIONS(5425), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -143702,10 +144367,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150883] = 2, + [151634] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5403), 27, + ACTIONS(5429), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -143733,10 +144398,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150916] = 2, + [151667] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5405), 27, + ACTIONS(5431), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -143764,10 +144429,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150949] = 2, + [151700] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5373), 27, + ACTIONS(5433), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -143795,10 +144460,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150982] = 2, + [151733] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5407), 27, + ACTIONS(5433), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -143826,10 +144491,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151015] = 2, + [151766] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5409), 27, + ACTIONS(5435), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -143857,10 +144522,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151048] = 2, + [151799] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5411), 27, + ACTIONS(5435), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -143888,10 +144553,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151081] = 2, + [151832] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5413), 27, + ACTIONS(5437), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -143919,10 +144584,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151114] = 2, + [151865] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5415), 27, + ACTIONS(5439), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -143950,10 +144615,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151147] = 2, + [151898] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5417), 27, + ACTIONS(5439), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -143981,10 +144646,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151180] = 2, + [151931] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5419), 27, + ACTIONS(5441), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -144012,10 +144677,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151213] = 2, + [151964] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5389), 27, + ACTIONS(5267), 27, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [151997] = 2, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5443), 27, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_cl, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [152030] = 2, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5423), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -144043,25 +144770,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151246] = 10, + [152063] = 10, ACTIONS(47), 1, sym_block_comment, ACTIONS(308), 1, anon_sym_being, - ACTIONS(5423), 1, + ACTIONS(5447), 1, anon_sym_POUND_, - ACTIONS(5425), 1, + ACTIONS(5449), 1, anon_sym_cl, - STATE(290), 1, + STATE(293), 1, sym_for_clause_word, - STATE(953), 1, + STATE(950), 1, aux_sym_for_clause_repeat1, - STATE(1188), 1, + STATE(1189), 1, sym__for_part, - ACTIONS(5421), 2, + ACTIONS(5445), 2, sym__ws, sym_comment, - STATE(2103), 3, + STATE(2128), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, @@ -144081,25 +144808,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [151294] = 10, + [152111] = 10, ACTIONS(47), 1, sym_block_comment, ACTIONS(308), 1, anon_sym_being, - ACTIONS(5423), 1, + ACTIONS(5447), 1, anon_sym_POUND_, - ACTIONS(5425), 1, + ACTIONS(5449), 1, anon_sym_cl, - STATE(290), 1, + STATE(293), 1, sym_for_clause_word, - STATE(952), 1, + STATE(960), 1, aux_sym_for_clause_repeat1, - STATE(1188), 1, + STATE(1189), 1, sym__for_part, - ACTIONS(5421), 2, + ACTIONS(5445), 2, sym__ws, sym_comment, - STATE(2103), 3, + STATE(2128), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, @@ -144119,25 +144846,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [151342] = 10, + [152159] = 10, ACTIONS(47), 1, sym_block_comment, ACTIONS(308), 1, anon_sym_being, - ACTIONS(5423), 1, + ACTIONS(5447), 1, anon_sym_POUND_, - ACTIONS(5425), 1, + ACTIONS(5449), 1, anon_sym_cl, - STATE(290), 1, + STATE(293), 1, sym_for_clause_word, - STATE(948), 1, + STATE(945), 1, aux_sym_for_clause_repeat1, - STATE(1188), 1, + STATE(1189), 1, sym__for_part, - ACTIONS(5421), 2, + ACTIONS(5445), 2, sym__ws, sym_comment, - STATE(2103), 3, + STATE(2128), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, @@ -144157,25 +144884,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [151390] = 10, + [152207] = 10, ACTIONS(47), 1, sym_block_comment, ACTIONS(308), 1, anon_sym_being, - ACTIONS(5423), 1, + ACTIONS(5447), 1, anon_sym_POUND_, - ACTIONS(5425), 1, + ACTIONS(5449), 1, anon_sym_cl, - STATE(290), 1, + STATE(293), 1, sym_for_clause_word, - STATE(942), 1, + STATE(959), 1, aux_sym_for_clause_repeat1, - STATE(1188), 1, + STATE(1189), 1, sym__for_part, - ACTIONS(5421), 2, + ACTIONS(5445), 2, sym__ws, sym_comment, - STATE(2103), 3, + STATE(2128), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, @@ -144195,25 +144922,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [151438] = 10, + [152255] = 10, ACTIONS(47), 1, sym_block_comment, ACTIONS(308), 1, anon_sym_being, - ACTIONS(5423), 1, + ACTIONS(5447), 1, anon_sym_POUND_, - ACTIONS(5425), 1, + ACTIONS(5449), 1, anon_sym_cl, - STATE(290), 1, + STATE(293), 1, sym_for_clause_word, - STATE(943), 1, + STATE(948), 1, aux_sym_for_clause_repeat1, - STATE(1188), 1, + STATE(1189), 1, sym__for_part, - ACTIONS(5421), 2, + ACTIONS(5445), 2, sym__ws, sym_comment, - STATE(2103), 3, + STATE(2128), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, @@ -144233,25 +144960,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [151486] = 10, + [152303] = 10, ACTIONS(47), 1, sym_block_comment, ACTIONS(308), 1, anon_sym_being, - ACTIONS(5423), 1, + ACTIONS(5447), 1, anon_sym_POUND_, - ACTIONS(5425), 1, + ACTIONS(5449), 1, anon_sym_cl, - STATE(290), 1, + STATE(293), 1, sym_for_clause_word, - STATE(950), 1, + STATE(947), 1, aux_sym_for_clause_repeat1, - STATE(1188), 1, + STATE(1189), 1, sym__for_part, - ACTIONS(5421), 2, + ACTIONS(5445), 2, sym__ws, sym_comment, - STATE(2103), 3, + STATE(2128), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, @@ -144271,25 +144998,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [151534] = 10, + [152351] = 10, ACTIONS(47), 1, sym_block_comment, ACTIONS(308), 1, anon_sym_being, - ACTIONS(5423), 1, + ACTIONS(5447), 1, anon_sym_POUND_, - ACTIONS(5425), 1, + ACTIONS(5449), 1, anon_sym_cl, - STATE(290), 1, + STATE(293), 1, sym_for_clause_word, - STATE(946), 1, + STATE(957), 1, aux_sym_for_clause_repeat1, - STATE(1188), 1, + STATE(1189), 1, sym__for_part, - ACTIONS(5421), 2, + ACTIONS(5445), 2, sym__ws, sym_comment, - STATE(2103), 3, + STATE(2128), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, @@ -144309,25 +145036,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [151582] = 10, + [152399] = 10, ACTIONS(47), 1, sym_block_comment, ACTIONS(308), 1, anon_sym_being, - ACTIONS(5423), 1, + ACTIONS(5447), 1, anon_sym_POUND_, - ACTIONS(5425), 1, + ACTIONS(5449), 1, anon_sym_cl, - STATE(290), 1, + STATE(293), 1, sym_for_clause_word, STATE(956), 1, aux_sym_for_clause_repeat1, - STATE(1188), 1, + STATE(1189), 1, sym__for_part, - ACTIONS(5421), 2, + ACTIONS(5445), 2, sym__ws, sym_comment, - STATE(2103), 3, + STATE(2128), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, @@ -144347,25 +145074,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [151630] = 10, + [152447] = 10, ACTIONS(47), 1, sym_block_comment, ACTIONS(308), 1, anon_sym_being, - ACTIONS(5423), 1, + ACTIONS(5447), 1, anon_sym_POUND_, - ACTIONS(5425), 1, + ACTIONS(5449), 1, anon_sym_cl, - STATE(290), 1, + STATE(293), 1, sym_for_clause_word, STATE(944), 1, aux_sym_for_clause_repeat1, - STATE(1188), 1, + STATE(1189), 1, sym__for_part, - ACTIONS(5421), 2, + ACTIONS(5445), 2, sym__ws, sym_comment, - STATE(2103), 3, + STATE(2128), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, @@ -144385,25 +145112,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [151678] = 10, + [152495] = 10, ACTIONS(47), 1, sym_block_comment, ACTIONS(308), 1, anon_sym_being, - ACTIONS(5423), 1, + ACTIONS(5447), 1, anon_sym_POUND_, - ACTIONS(5425), 1, + ACTIONS(5449), 1, anon_sym_cl, - STATE(290), 1, + STATE(293), 1, sym_for_clause_word, - STATE(954), 1, + STATE(949), 1, aux_sym_for_clause_repeat1, - STATE(1188), 1, + STATE(1189), 1, sym__for_part, - ACTIONS(5421), 2, + ACTIONS(5445), 2, sym__ws, sym_comment, - STATE(2103), 3, + STATE(2128), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, @@ -144423,25 +145150,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [151726] = 10, + [152543] = 10, ACTIONS(47), 1, sym_block_comment, ACTIONS(308), 1, anon_sym_being, - ACTIONS(5423), 1, + ACTIONS(5447), 1, anon_sym_POUND_, - ACTIONS(5425), 1, + ACTIONS(5449), 1, anon_sym_cl, - STATE(290), 1, + STATE(293), 1, sym_for_clause_word, - STATE(958), 1, + STATE(946), 1, aux_sym_for_clause_repeat1, - STATE(1188), 1, + STATE(1189), 1, sym__for_part, - ACTIONS(5421), 2, + ACTIONS(5445), 2, sym__ws, sym_comment, - STATE(2103), 3, + STATE(2128), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, @@ -144461,25 +145188,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [151774] = 10, + [152591] = 10, ACTIONS(47), 1, sym_block_comment, ACTIONS(308), 1, anon_sym_being, - ACTIONS(5423), 1, + ACTIONS(5447), 1, anon_sym_POUND_, - ACTIONS(5425), 1, + ACTIONS(5449), 1, anon_sym_cl, - STATE(290), 1, + STATE(293), 1, sym_for_clause_word, - STATE(957), 1, + STATE(958), 1, aux_sym_for_clause_repeat1, - STATE(1188), 1, + STATE(1189), 1, sym__for_part, - ACTIONS(5421), 2, + ACTIONS(5445), 2, sym__ws, sym_comment, - STATE(2103), 3, + STATE(2128), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, @@ -144499,10 +145226,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [151822] = 2, + [152639] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5427), 25, + ACTIONS(5451), 25, aux_sym_num_lit_token1, anon_sym_TILDE, anon_sym_SQUOTE, @@ -144528,10 +145255,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_Newline, aux_sym_format_directive_type_token11, - [151853] = 2, + [152670] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5429), 25, + ACTIONS(5453), 25, aux_sym_num_lit_token1, anon_sym_TILDE, anon_sym_SQUOTE, @@ -144557,41 +145284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_Newline, aux_sym_format_directive_type_token11, - [151884] = 8, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(308), 1, - anon_sym_being, - ACTIONS(5423), 1, - anon_sym_POUND_, - ACTIONS(5425), 1, - anon_sym_cl, - STATE(382), 1, - sym_for_clause_word, - ACTIONS(5431), 2, - sym__ws, - sym_comment, - STATE(2116), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(310), 15, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [151926] = 18, + [152701] = 18, ACTIONS(17), 1, anon_sym_COLON, ACTIONS(19), 1, @@ -144600,266 +145293,222 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - ACTIONS(5435), 1, + ACTIONS(5457), 1, anon_sym_POUND_, - ACTIONS(5437), 1, + ACTIONS(5459), 1, aux_sym_sym_lit_token1, - ACTIONS(5439), 1, + ACTIONS(5461), 1, anon_sym_LBRACE, - ACTIONS(5441), 1, + ACTIONS(5463), 1, anon_sym_POUND_QMARK, - STATE(2227), 1, + STATE(2250), 1, sym__bare_map_lit, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2438), 1, + STATE(2461), 1, aux_sym_list_lit_repeat1, - ACTIONS(5433), 2, + ACTIONS(5455), 2, sym__ws, sym_comment, - STATE(2238), 3, + STATE(2125), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2229), 5, + STATE(2251), 5, sym_kwd_lit, sym_str_lit, sym_sym_lit, sym_map_lit, sym_read_cond_lit, - [151988] = 20, + [152763] = 20, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(588), 1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(590), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - ACTIONS(5445), 1, + ACTIONS(5467), 1, anon_sym_POUND_, - ACTIONS(5447), 1, + ACTIONS(5469), 1, aux_sym_sym_lit_token1, - ACTIONS(5449), 1, + ACTIONS(5471), 1, anon_sym_COMMA, - STATE(1697), 1, - sym_list_lit, - STATE(1698), 1, + STATE(1823), 1, sym_unquoting_lit, - STATE(2198), 1, + STATE(1839), 1, + sym_list_lit, + STATE(2231), 1, sym_kwd_lit, - STATE(2204), 1, + STATE(2232), 1, sym_sym_lit, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2433), 1, + STATE(2432), 1, aux_sym_list_lit_repeat1, - ACTIONS(5443), 2, + ACTIONS(5465), 2, sym__ws, sym_comment, - STATE(1493), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2108), 3, + STATE(2123), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [152054] = 18, + [152829] = 18, ACTIONS(47), 1, sym_block_comment, - ACTIONS(803), 1, + ACTIONS(606), 1, anon_sym_COLON, - ACTIONS(805), 1, + ACTIONS(608), 1, anon_sym_COLON_COLON, - ACTIONS(807), 1, + ACTIONS(610), 1, anon_sym_DQUOTE, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - ACTIONS(5435), 1, + ACTIONS(5457), 1, anon_sym_POUND_, - ACTIONS(5439), 1, + ACTIONS(5461), 1, anon_sym_LBRACE, - ACTIONS(5453), 1, - aux_sym_sym_lit_token1, - ACTIONS(5455), 1, - anon_sym_POUND_QMARK, - STATE(2227), 1, - sym__bare_map_lit, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2439), 1, - aux_sym_list_lit_repeat1, - ACTIONS(5451), 2, - sym__ws, - sym_comment, - STATE(2109), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2226), 5, - sym_kwd_lit, - sym_str_lit, - sym_sym_lit, - sym_map_lit, - sym_read_cond_lit, - [152116] = 18, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4703), 1, - anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, - ACTIONS(5435), 1, - anon_sym_POUND_, - ACTIONS(5437), 1, + ACTIONS(5475), 1, aux_sym_sym_lit_token1, - ACTIONS(5439), 1, - anon_sym_LBRACE, - ACTIONS(5441), 1, + ACTIONS(5477), 1, anon_sym_POUND_QMARK, - STATE(2227), 1, + STATE(2250), 1, sym__bare_map_lit, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2438), 1, + STATE(2460), 1, aux_sym_list_lit_repeat1, - ACTIONS(5457), 2, + ACTIONS(5473), 2, sym__ws, sym_comment, - STATE(2110), 3, + STATE(2124), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2226), 5, + STATE(2251), 5, sym_kwd_lit, sym_str_lit, sym_sym_lit, sym_map_lit, sym_read_cond_lit, - [152178] = 20, + [152891] = 20, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(588), 1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(590), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - ACTIONS(5445), 1, + ACTIONS(5467), 1, anon_sym_POUND_, - ACTIONS(5447), 1, + ACTIONS(5469), 1, aux_sym_sym_lit_token1, - ACTIONS(5449), 1, + ACTIONS(5471), 1, anon_sym_COMMA, - STATE(1705), 1, + STATE(1642), 1, sym_list_lit, - STATE(1707), 1, + STATE(1643), 1, sym_unquoting_lit, - STATE(2207), 1, + STATE(2220), 1, sym_kwd_lit, - STATE(2208), 1, + STATE(2233), 1, sym_sym_lit, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2433), 1, + STATE(2432), 1, aux_sym_list_lit_repeat1, - ACTIONS(5459), 2, + ACTIONS(5479), 2, sym__ws, sym_comment, - STATE(1493), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2265), 3, + STATE(2284), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [152244] = 18, + [152957] = 18, ACTIONS(47), 1, sym_block_comment, - ACTIONS(803), 1, + ACTIONS(606), 1, anon_sym_COLON, - ACTIONS(805), 1, + ACTIONS(608), 1, anon_sym_COLON_COLON, - ACTIONS(807), 1, + ACTIONS(610), 1, anon_sym_DQUOTE, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - ACTIONS(5435), 1, + ACTIONS(5457), 1, anon_sym_POUND_, - ACTIONS(5439), 1, + ACTIONS(5461), 1, anon_sym_LBRACE, - ACTIONS(5453), 1, + ACTIONS(5475), 1, aux_sym_sym_lit_token1, - ACTIONS(5455), 1, + ACTIONS(5477), 1, anon_sym_POUND_QMARK, - STATE(2227), 1, + STATE(2250), 1, sym__bare_map_lit, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2439), 1, + STATE(2460), 1, aux_sym_list_lit_repeat1, - ACTIONS(5433), 2, + ACTIONS(5481), 2, sym__ws, sym_comment, - STATE(2238), 3, + STATE(2257), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2230), 5, + STATE(2248), 5, sym_kwd_lit, sym_str_lit, sym_sym_lit, sym_map_lit, sym_read_cond_lit, - [152306] = 18, + [153019] = 18, ACTIONS(17), 1, anon_sym_COLON, ACTIONS(19), 1, @@ -144868,178 +145517,300 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - ACTIONS(5435), 1, + ACTIONS(5457), 1, anon_sym_POUND_, - ACTIONS(5437), 1, + ACTIONS(5459), 1, aux_sym_sym_lit_token1, - ACTIONS(5439), 1, + ACTIONS(5461), 1, anon_sym_LBRACE, - ACTIONS(5441), 1, + ACTIONS(5463), 1, anon_sym_POUND_QMARK, - STATE(2227), 1, + STATE(2250), 1, sym__bare_map_lit, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2438), 1, + STATE(2461), 1, aux_sym_list_lit_repeat1, - ACTIONS(5433), 2, + ACTIONS(5481), 2, sym__ws, sym_comment, - STATE(2238), 3, + STATE(2257), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(2248), 5, + sym_kwd_lit, + sym_str_lit, + sym_sym_lit, + sym_map_lit, + sym_read_cond_lit, + [153081] = 18, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(606), 1, + anon_sym_COLON, + ACTIONS(608), 1, + anon_sym_COLON_COLON, + ACTIONS(610), 1, + anon_sym_DQUOTE, + ACTIONS(4707), 1, + anon_sym_CARET, + ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(5457), 1, + anon_sym_POUND_, + ACTIONS(5461), 1, + anon_sym_LBRACE, + ACTIONS(5475), 1, + aux_sym_sym_lit_token1, + ACTIONS(5477), 1, + anon_sym_POUND_QMARK, + STATE(2250), 1, + sym__bare_map_lit, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2460), 1, + aux_sym_list_lit_repeat1, + ACTIONS(5481), 2, + sym__ws, + sym_comment, + STATE(2257), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2230), 5, + STATE(2252), 5, sym_kwd_lit, sym_str_lit, sym_sym_lit, sym_map_lit, sym_read_cond_lit, - [152368] = 20, + [153143] = 20, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(588), 1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(590), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - ACTIONS(5445), 1, + ACTIONS(5467), 1, anon_sym_POUND_, - ACTIONS(5447), 1, + ACTIONS(5469), 1, aux_sym_sym_lit_token1, - ACTIONS(5449), 1, + ACTIONS(5471), 1, anon_sym_COMMA, - STATE(1723), 1, + STATE(1772), 1, sym_list_lit, - STATE(1724), 1, + STATE(1773), 1, sym_unquoting_lit, - STATE(2212), 1, + STATE(2219), 1, sym_kwd_lit, - STATE(2216), 1, + STATE(2223), 1, sym_sym_lit, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2433), 1, + STATE(2432), 1, aux_sym_list_lit_repeat1, - ACTIONS(5459), 2, + ACTIONS(5483), 2, sym__ws, sym_comment, - STATE(1493), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2265), 3, + STATE(2131), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [152434] = 18, + [153209] = 8, ACTIONS(47), 1, sym_block_comment, - ACTIONS(803), 1, + ACTIONS(308), 1, + anon_sym_being, + ACTIONS(5447), 1, + anon_sym_POUND_, + ACTIONS(5449), 1, + anon_sym_cl, + STATE(383), 1, + sym_for_clause_word, + ACTIONS(5485), 2, + sym__ws, + sym_comment, + STATE(2133), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(310), 15, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [153251] = 18, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(606), 1, anon_sym_COLON, - ACTIONS(805), 1, + ACTIONS(608), 1, anon_sym_COLON_COLON, - ACTIONS(807), 1, + ACTIONS(610), 1, anon_sym_DQUOTE, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - ACTIONS(5435), 1, + ACTIONS(5457), 1, anon_sym_POUND_, - ACTIONS(5439), 1, + ACTIONS(5461), 1, anon_sym_LBRACE, - ACTIONS(5453), 1, + ACTIONS(5475), 1, aux_sym_sym_lit_token1, - ACTIONS(5455), 1, + ACTIONS(5477), 1, anon_sym_POUND_QMARK, - STATE(2227), 1, + STATE(2250), 1, sym__bare_map_lit, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2439), 1, + STATE(2460), 1, aux_sym_list_lit_repeat1, - ACTIONS(5433), 2, + ACTIONS(5487), 2, sym__ws, sym_comment, - STATE(2238), 3, + STATE(2126), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(2245), 5, + sym_kwd_lit, + sym_str_lit, + sym_sym_lit, + sym_map_lit, + sym_read_cond_lit, + [153313] = 18, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, + anon_sym_COLON_COLON, + ACTIONS(21), 1, + anon_sym_DQUOTE, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4707), 1, + anon_sym_CARET, + ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(5457), 1, + anon_sym_POUND_, + ACTIONS(5459), 1, + aux_sym_sym_lit_token1, + ACTIONS(5461), 1, + anon_sym_LBRACE, + ACTIONS(5463), 1, + anon_sym_POUND_QMARK, + STATE(2250), 1, + sym__bare_map_lit, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2461), 1, + aux_sym_list_lit_repeat1, + ACTIONS(5489), 2, + sym__ws, + sym_comment, + STATE(2132), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2229), 5, + STATE(2245), 5, sym_kwd_lit, sym_str_lit, sym_sym_lit, sym_map_lit, sym_read_cond_lit, - [152496] = 20, + [153375] = 20, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(588), 1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(590), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - ACTIONS(5445), 1, + ACTIONS(5467), 1, anon_sym_POUND_, - ACTIONS(5447), 1, + ACTIONS(5469), 1, aux_sym_sym_lit_token1, - ACTIONS(5449), 1, + ACTIONS(5471), 1, anon_sym_COMMA, - STATE(1708), 1, + STATE(1834), 1, sym_list_lit, - STATE(1709), 1, + STATE(1840), 1, sym_unquoting_lit, - STATE(2209), 1, + STATE(2228), 1, sym_kwd_lit, - STATE(2210), 1, + STATE(2229), 1, sym_sym_lit, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2433), 1, + STATE(2432), 1, aux_sym_list_lit_repeat1, - ACTIONS(5461), 2, + ACTIONS(5479), 2, sym__ws, sym_comment, - STATE(1493), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2111), 3, + STATE(2284), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [152562] = 18, + [153441] = 18, ACTIONS(17), 1, anon_sym_COLON, ACTIONS(19), 1, @@ -145048,100 +145819,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - ACTIONS(5435), 1, + ACTIONS(5457), 1, anon_sym_POUND_, - ACTIONS(5437), 1, + ACTIONS(5459), 1, aux_sym_sym_lit_token1, - ACTIONS(5439), 1, + ACTIONS(5461), 1, anon_sym_LBRACE, - ACTIONS(5441), 1, + ACTIONS(5463), 1, anon_sym_POUND_QMARK, - STATE(2227), 1, + STATE(2250), 1, sym__bare_map_lit, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2438), 1, + STATE(2461), 1, aux_sym_list_lit_repeat1, - ACTIONS(5463), 2, + ACTIONS(5481), 2, sym__ws, sym_comment, - STATE(2104), 3, + STATE(2257), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2232), 5, + STATE(2252), 5, sym_kwd_lit, sym_str_lit, sym_sym_lit, sym_map_lit, sym_read_cond_lit, - [152624] = 18, + [153503] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(803), 1, - anon_sym_COLON, - ACTIONS(805), 1, - anon_sym_COLON_COLON, - ACTIONS(807), 1, - anon_sym_DQUOTE, - ACTIONS(4703), 1, - anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, - ACTIONS(5435), 1, + ACTIONS(4102), 1, + anon_sym_being, + ACTIONS(5494), 1, anon_sym_POUND_, - ACTIONS(5439), 1, - anon_sym_LBRACE, - ACTIONS(5453), 1, - aux_sym_sym_lit_token1, - ACTIONS(5455), 1, - anon_sym_POUND_QMARK, - STATE(2227), 1, - sym__bare_map_lit, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2439), 1, - aux_sym_list_lit_repeat1, - ACTIONS(5465), 2, + ACTIONS(5491), 2, sym__ws, sym_comment, - STATE(2112), 3, + STATE(2133), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2232), 5, - sym_kwd_lit, - sym_str_lit, - sym_sym_lit, - sym_map_lit, - sym_read_cond_lit, - [152686] = 6, + ACTIONS(4104), 16, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [153540] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4130), 1, + ACTIONS(4502), 1, anon_sym_being, - ACTIONS(5470), 1, - anon_sym_POUND_, - ACTIONS(5467), 2, + ACTIONS(5497), 1, + anon_sym_COLON, + ACTIONS(5499), 1, + anon_sym_COLON_COLON, + ACTIONS(4500), 19, sym__ws, sym_comment, - STATE(2116), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(4132), 16, + anon_sym_POUND_, anon_sym_cl, anon_sym_in, anon_sym_across, @@ -145158,16 +145914,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [152723] = 5, + [153574] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4178), 1, + ACTIONS(4466), 1, anon_sym_being, - ACTIONS(5473), 1, + ACTIONS(5497), 1, anon_sym_COLON, - ACTIONS(5475), 1, + ACTIONS(5499), 1, anon_sym_COLON_COLON, - ACTIONS(4176), 19, + ACTIONS(4464), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -145187,16 +145943,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [152757] = 5, + [153608] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4154), 1, + ACTIONS(4502), 1, anon_sym_being, - ACTIONS(5473), 1, + ACTIONS(5499), 1, + anon_sym_COLON_COLON, + ACTIONS(5501), 1, anon_sym_COLON, - ACTIONS(5475), 1, + ACTIONS(4500), 19, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [153642] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4498), 1, + anon_sym_being, + ACTIONS(5497), 1, + anon_sym_COLON, + ACTIONS(5499), 1, anon_sym_COLON_COLON, - ACTIONS(4152), 19, + ACTIONS(4496), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -145216,13 +146001,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [152791] = 3, + [153676] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4150), 2, + ACTIONS(4514), 2, anon_sym_COLON, anon_sym_being, - ACTIONS(4148), 20, + ACTIONS(4512), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -145243,14 +146028,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [152821] = 3, + [153706] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4194), 3, + ACTIONS(4430), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(4192), 18, + ACTIONS(4428), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -145269,14 +146054,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [152850] = 3, + [153735] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4206), 3, + ACTIONS(4410), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(4204), 18, + ACTIONS(4408), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -145295,14 +146080,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [152879] = 3, + [153764] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4394), 3, + ACTIONS(4278), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(4392), 18, + ACTIONS(4276), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -145321,14 +146106,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [152908] = 3, + [153793] = 20, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4398), 3, + ACTIONS(640), 1, + anon_sym_LPAREN, + ACTIONS(5503), 1, + anon_sym_POUND, + ACTIONS(5505), 1, + anon_sym_POUND_QMARK, + ACTIONS(5507), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(5509), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(5511), 1, + anon_sym_SQUOTE, + ACTIONS(5513), 1, + anon_sym_COMMA_AT, + ACTIONS(5515), 1, + anon_sym_POUND_PLUS, + ACTIONS(5517), 1, + anon_sym_POUND_DASH, + ACTIONS(5519), 1, + anon_sym_POUNDC, + ACTIONS(5521), 1, + anon_sym_POUNDc, + STATE(2221), 1, + sym_old_meta_lit, + STATE(2234), 1, + sym_meta_lit, + STATE(2246), 1, + aux_sym_list_lit_repeat1, + STATE(2258), 1, + sym__metadata_lit, + STATE(2339), 1, + sym__bare_set_lit, + STATE(2301), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [153856] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4298), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(4396), 18, + ACTIONS(4296), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -145347,14 +146175,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [152937] = 3, + [153885] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4422), 3, + ACTIONS(4330), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(4420), 18, + ACTIONS(4328), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -145373,50 +146201,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [152966] = 20, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, + [153914] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(600), 1, - anon_sym_LPAREN, - ACTIONS(5477), 1, + ACTIONS(4514), 3, anon_sym_POUND, - ACTIONS(5479), 1, + anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(5481), 1, + ACTIONS(4512), 18, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + aux_sym_sym_lit_token1, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_POUND_QMARK_AT, - ACTIONS(5483), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5485), 1, anon_sym_SQUOTE, - ACTIONS(5487), 1, anon_sym_COMMA_AT, - ACTIONS(5489), 1, anon_sym_POUND_PLUS, - ACTIONS(5491), 1, anon_sym_POUND_DASH, - ACTIONS(5493), 1, anon_sym_POUNDC, - ACTIONS(5495), 1, anon_sym_POUNDc, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, - sym_old_meta_lit, - STATE(2225), 1, - aux_sym_list_lit_repeat1, - STATE(2239), 1, - sym__metadata_lit, - STATE(2310), 1, - sym__bare_set_lit, - STATE(2324), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [153029] = 20, + [153943] = 20, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, @@ -145425,48 +146236,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5497), 1, + ACTIONS(5523), 1, anon_sym_POUND, - ACTIONS(5499), 1, + ACTIONS(5525), 1, anon_sym_POUND_QMARK, - ACTIONS(5501), 1, + ACTIONS(5527), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5503), 1, + ACTIONS(5529), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5505), 1, + ACTIONS(5531), 1, anon_sym_SQUOTE, - ACTIONS(5507), 1, + ACTIONS(5533), 1, anon_sym_COMMA_AT, - ACTIONS(5509), 1, + ACTIONS(5535), 1, anon_sym_POUND_PLUS, - ACTIONS(5511), 1, + ACTIONS(5537), 1, anon_sym_POUND_DASH, - ACTIONS(5513), 1, + ACTIONS(5539), 1, anon_sym_POUNDC, - ACTIONS(5515), 1, + ACTIONS(5541), 1, anon_sym_POUNDc, - STATE(1448), 1, + STATE(1474), 1, sym__bare_set_lit, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2225), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2246), 1, aux_sym_list_lit_repeat1, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(1447), 3, + STATE(1473), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [153092] = 3, + [154006] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4426), 3, + ACTIONS(4334), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(4424), 18, + ACTIONS(4332), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -145485,14 +146296,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [153121] = 3, + [154035] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4146), 3, + ACTIONS(4302), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(4144), 18, + ACTIONS(4300), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -145511,14 +146322,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [153150] = 3, + [154064] = 20, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4370), 3, + ACTIONS(614), 1, + anon_sym_LPAREN, + ACTIONS(5543), 1, + anon_sym_POUND, + ACTIONS(5545), 1, + anon_sym_POUND_QMARK, + ACTIONS(5547), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(5549), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(5551), 1, + anon_sym_SQUOTE, + ACTIONS(5553), 1, + anon_sym_COMMA_AT, + ACTIONS(5555), 1, + anon_sym_POUND_PLUS, + ACTIONS(5557), 1, + anon_sym_POUND_DASH, + ACTIONS(5559), 1, + anon_sym_POUNDC, + ACTIONS(5561), 1, + anon_sym_POUNDc, + STATE(1832), 1, + sym__bare_set_lit, + STATE(2221), 1, + sym_old_meta_lit, + STATE(2234), 1, + sym_meta_lit, + STATE(2246), 1, + aux_sym_list_lit_repeat1, + STATE(2258), 1, + sym__metadata_lit, + STATE(1831), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [154127] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4218), 3, + anon_sym_POUND, + anon_sym_COLON, + anon_sym_POUND_QMARK, + ACTIONS(4216), 18, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + aux_sym_sym_lit_token1, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [154156] = 20, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(614), 1, + anon_sym_LPAREN, + ACTIONS(5503), 1, + anon_sym_POUND, + ACTIONS(5519), 1, + anon_sym_POUNDC, + ACTIONS(5521), 1, + anon_sym_POUNDc, + ACTIONS(5545), 1, + anon_sym_POUND_QMARK, + ACTIONS(5563), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(5565), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(5567), 1, + anon_sym_SQUOTE, + ACTIONS(5569), 1, + anon_sym_COMMA_AT, + ACTIONS(5571), 1, + anon_sym_POUND_PLUS, + ACTIONS(5573), 1, + anon_sym_POUND_DASH, + STATE(2221), 1, + sym_old_meta_lit, + STATE(2234), 1, + sym_meta_lit, + STATE(2246), 1, + aux_sym_list_lit_repeat1, + STATE(2258), 1, + sym__metadata_lit, + STATE(2339), 1, + sym__bare_set_lit, + STATE(2301), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [154219] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4386), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(4368), 18, + ACTIONS(4384), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -145537,14 +146460,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [153179] = 3, + [154248] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4358), 3, + ACTIONS(4518), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(4356), 18, + ACTIONS(4516), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -145563,40 +146486,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [153208] = 3, + [154277] = 20, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4354), 3, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(5575), 1, anon_sym_POUND, - anon_sym_COLON, + ACTIONS(5577), 1, anon_sym_POUND_QMARK, - ACTIONS(4352), 18, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - aux_sym_sym_lit_token1, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(5579), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(5581), 1, anon_sym_POUND_SQUOTE, + ACTIONS(5583), 1, anon_sym_SQUOTE, + ACTIONS(5585), 1, anon_sym_COMMA_AT, + ACTIONS(5587), 1, anon_sym_POUND_PLUS, + ACTIONS(5589), 1, anon_sym_POUND_DASH, + ACTIONS(5591), 1, anon_sym_POUNDC, + ACTIONS(5593), 1, anon_sym_POUNDc, - [153237] = 3, + STATE(1942), 1, + sym__bare_set_lit, + STATE(2221), 1, + sym_old_meta_lit, + STATE(2234), 1, + sym_meta_lit, + STATE(2246), 1, + aux_sym_list_lit_repeat1, + STATE(2258), 1, + sym__metadata_lit, + STATE(1941), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [154340] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4350), 3, + ACTIONS(4150), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(4348), 18, + ACTIONS(4148), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -145615,14 +146555,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [153266] = 3, + [154369] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4346), 3, + ACTIONS(4158), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(4344), 18, + ACTIONS(4156), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -145641,14 +146581,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [153295] = 3, + [154398] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4450), 3, + ACTIONS(4482), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(4448), 18, + ACTIONS(4480), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -145667,57 +146607,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [153324] = 20, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(811), 1, - anon_sym_LPAREN, - ACTIONS(5477), 1, - anon_sym_POUND, - ACTIONS(5493), 1, - anon_sym_POUNDC, - ACTIONS(5495), 1, - anon_sym_POUNDc, - ACTIONS(5517), 1, - anon_sym_POUND_QMARK, - ACTIONS(5519), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(5521), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(5523), 1, - anon_sym_SQUOTE, - ACTIONS(5525), 1, - anon_sym_COMMA_AT, - ACTIONS(5527), 1, - anon_sym_POUND_PLUS, - ACTIONS(5529), 1, - anon_sym_POUND_DASH, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, - sym_old_meta_lit, - STATE(2225), 1, - aux_sym_list_lit_repeat1, - STATE(2239), 1, - sym__metadata_lit, - STATE(2310), 1, - sym__bare_set_lit, - STATE(2324), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [153387] = 3, + [154427] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4318), 3, + ACTIONS(4162), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(4316), 18, + ACTIONS(4160), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -145736,186 +146633,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [153416] = 20, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, + [154456] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5497), 1, + ACTIONS(4194), 3, anon_sym_POUND, - ACTIONS(5499), 1, + anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(5501), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(5513), 1, - anon_sym_POUNDC, - ACTIONS(5515), 1, - anon_sym_POUNDc, - ACTIONS(5531), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(5533), 1, - anon_sym_SQUOTE, - ACTIONS(5535), 1, - anon_sym_COMMA_AT, - ACTIONS(5537), 1, - anon_sym_POUND_PLUS, - ACTIONS(5539), 1, - anon_sym_POUND_DASH, - STATE(1448), 1, - sym__bare_set_lit, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, - sym_old_meta_lit, - STATE(2225), 1, - aux_sym_list_lit_repeat1, - STATE(2239), 1, - sym__metadata_lit, - STATE(1447), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [153479] = 20, - ACTIONS(25), 1, + ACTIONS(4192), 18, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + aux_sym_sym_lit_token1, anon_sym_CARET, - ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(5541), 1, - anon_sym_POUND, - ACTIONS(5543), 1, - anon_sym_POUND_QMARK, - ACTIONS(5545), 1, + anon_sym_LBRACE, anon_sym_POUND_QMARK_AT, - ACTIONS(5547), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5549), 1, anon_sym_SQUOTE, - ACTIONS(5551), 1, anon_sym_COMMA_AT, - ACTIONS(5553), 1, anon_sym_POUND_PLUS, - ACTIONS(5555), 1, anon_sym_POUND_DASH, - ACTIONS(5557), 1, anon_sym_POUNDC, - ACTIONS(5559), 1, anon_sym_POUNDc, - STATE(1911), 1, - sym__bare_set_lit, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, - sym_old_meta_lit, - STATE(2225), 1, - aux_sym_list_lit_repeat1, - STATE(2239), 1, - sym__metadata_lit, - STATE(1910), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [153542] = 20, + [154485] = 20, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(640), 1, + ACTIONS(678), 1, anon_sym_LPAREN, - ACTIONS(5561), 1, + ACTIONS(5595), 1, anon_sym_POUND, - ACTIONS(5563), 1, + ACTIONS(5597), 1, anon_sym_POUND_QMARK, - ACTIONS(5565), 1, + ACTIONS(5599), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5567), 1, + ACTIONS(5601), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5569), 1, + ACTIONS(5603), 1, anon_sym_SQUOTE, - ACTIONS(5571), 1, + ACTIONS(5605), 1, anon_sym_COMMA_AT, - ACTIONS(5573), 1, + ACTIONS(5607), 1, anon_sym_POUND_PLUS, - ACTIONS(5575), 1, + ACTIONS(5609), 1, anon_sym_POUND_DASH, - ACTIONS(5577), 1, + ACTIONS(5611), 1, anon_sym_POUNDC, - ACTIONS(5579), 1, + ACTIONS(5613), 1, anon_sym_POUNDc, - STATE(1137), 1, + STATE(1219), 1, sym__bare_set_lit, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2225), 1, - aux_sym_list_lit_repeat1, - STATE(2239), 1, - sym__metadata_lit, - STATE(1006), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [153605] = 20, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(891), 1, - anon_sym_LPAREN, - ACTIONS(5581), 1, - anon_sym_POUND, - ACTIONS(5583), 1, - anon_sym_POUND_QMARK, - ACTIONS(5585), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(5587), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(5589), 1, - anon_sym_SQUOTE, - ACTIONS(5591), 1, - anon_sym_COMMA_AT, - ACTIONS(5593), 1, - anon_sym_POUND_PLUS, - ACTIONS(5595), 1, - anon_sym_POUND_DASH, - ACTIONS(5597), 1, - anon_sym_POUNDC, - ACTIONS(5599), 1, - anon_sym_POUNDc, - STATE(1221), 1, - sym__bare_set_lit, - STATE(2215), 1, + STATE(2234), 1, sym_meta_lit, - STATE(2217), 1, - sym_old_meta_lit, - STATE(2225), 1, + STATE(2246), 1, aux_sym_list_lit_repeat1, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(1222), 3, + STATE(1218), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [153668] = 3, + [154548] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4282), 3, + ACTIONS(4258), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(4280), 18, + ACTIONS(4256), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -145934,14 +146728,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [153697] = 3, + [154577] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4274), 3, + ACTIONS(4262), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(4272), 18, + ACTIONS(4260), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -145960,14 +146754,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [153726] = 3, + [154606] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4270), 3, + ACTIONS(4266), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(4268), 18, + ACTIONS(4264), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -145986,14 +146780,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [153755] = 3, + [154635] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4150), 3, + ACTIONS(4270), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(4148), 18, + ACTIONS(4268), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -146012,66 +146806,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [153784] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4266), 3, - anon_sym_POUND, - anon_sym_COLON, - anon_sym_POUND_QMARK, - ACTIONS(4264), 18, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - aux_sym_sym_lit_token1, + [154664] = 20, + ACTIONS(25), 1, anon_sym_CARET, + ACTIONS(27), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [153813] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4262), 3, + ACTIONS(288), 1, + anon_sym_LPAREN, + ACTIONS(5543), 1, anon_sym_POUND, - anon_sym_COLON, + ACTIONS(5559), 1, + anon_sym_POUNDC, + ACTIONS(5561), 1, + anon_sym_POUNDc, + ACTIONS(5615), 1, anon_sym_POUND_QMARK, - ACTIONS(4260), 18, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - aux_sym_sym_lit_token1, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(5617), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(5619), 1, anon_sym_POUND_SQUOTE, + ACTIONS(5621), 1, anon_sym_SQUOTE, + ACTIONS(5623), 1, anon_sym_COMMA_AT, + ACTIONS(5625), 1, anon_sym_POUND_PLUS, + ACTIONS(5627), 1, anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [153842] = 3, + STATE(1832), 1, + sym__bare_set_lit, + STATE(2221), 1, + sym_old_meta_lit, + STATE(2234), 1, + sym_meta_lit, + STATE(2246), 1, + aux_sym_list_lit_repeat1, + STATE(2258), 1, + sym__metadata_lit, + STATE(1831), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [154727] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4246), 3, + ACTIONS(4274), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(4244), 18, + ACTIONS(4272), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -146090,229 +146875,255 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [153871] = 20, + [154756] = 20, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(941), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(5601), 1, + ACTIONS(5575), 1, anon_sym_POUND, - ACTIONS(5603), 1, + ACTIONS(5577), 1, anon_sym_POUND_QMARK, - ACTIONS(5605), 1, + ACTIONS(5579), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5607), 1, + ACTIONS(5591), 1, + anon_sym_POUNDC, + ACTIONS(5593), 1, + anon_sym_POUNDc, + ACTIONS(5629), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5609), 1, + ACTIONS(5631), 1, anon_sym_SQUOTE, - ACTIONS(5611), 1, + ACTIONS(5633), 1, anon_sym_COMMA_AT, - ACTIONS(5613), 1, + ACTIONS(5635), 1, anon_sym_POUND_PLUS, - ACTIONS(5615), 1, + ACTIONS(5637), 1, anon_sym_POUND_DASH, - ACTIONS(5617), 1, - anon_sym_POUNDC, - ACTIONS(5619), 1, - anon_sym_POUNDc, - STATE(1666), 1, + STATE(1942), 1, sym__bare_set_lit, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2225), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2246), 1, aux_sym_list_lit_repeat1, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(1667), 3, + STATE(1941), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [153934] = 20, + [154819] = 20, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(658), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(5621), 1, + ACTIONS(5503), 1, anon_sym_POUND, - ACTIONS(5623), 1, + ACTIONS(5519), 1, + anon_sym_POUNDC, + ACTIONS(5521), 1, + anon_sym_POUNDc, + ACTIONS(5639), 1, anon_sym_POUND_QMARK, - ACTIONS(5625), 1, + ACTIONS(5641), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5627), 1, + ACTIONS(5643), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5629), 1, + ACTIONS(5645), 1, anon_sym_SQUOTE, - ACTIONS(5631), 1, + ACTIONS(5647), 1, anon_sym_COMMA_AT, - ACTIONS(5633), 1, + ACTIONS(5649), 1, anon_sym_POUND_PLUS, - ACTIONS(5635), 1, + ACTIONS(5651), 1, anon_sym_POUND_DASH, - ACTIONS(5637), 1, - anon_sym_POUNDC, - ACTIONS(5639), 1, - anon_sym_POUNDc, - STATE(844), 1, - sym__bare_set_lit, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2225), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2246), 1, aux_sym_list_lit_repeat1, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(843), 3, + STATE(2339), 1, + sym__bare_set_lit, + STATE(2301), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [153997] = 20, + [154882] = 20, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, + ACTIONS(830), 1, anon_sym_LPAREN, - ACTIONS(5477), 1, + ACTIONS(5653), 1, anon_sym_POUND, - ACTIONS(5493), 1, - anon_sym_POUNDC, - ACTIONS(5495), 1, - anon_sym_POUNDc, - ACTIONS(5641), 1, + ACTIONS(5655), 1, anon_sym_POUND_QMARK, - ACTIONS(5643), 1, + ACTIONS(5657), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5645), 1, + ACTIONS(5659), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5647), 1, + ACTIONS(5661), 1, anon_sym_SQUOTE, - ACTIONS(5649), 1, + ACTIONS(5663), 1, anon_sym_COMMA_AT, - ACTIONS(5651), 1, + ACTIONS(5665), 1, anon_sym_POUND_PLUS, - ACTIONS(5653), 1, + ACTIONS(5667), 1, anon_sym_POUND_DASH, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + ACTIONS(5669), 1, + anon_sym_POUNDC, + ACTIONS(5671), 1, + anon_sym_POUNDc, + STATE(855), 1, + sym__bare_set_lit, + STATE(2221), 1, sym_old_meta_lit, - STATE(2225), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2246), 1, aux_sym_list_lit_repeat1, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2310), 1, - sym__bare_set_lit, - STATE(2324), 3, + STATE(867), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [154060] = 20, + [154945] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4302), 3, + anon_sym_POUND, + anon_sym_COLON, + anon_sym_POUND_QMARK, + ACTIONS(4300), 18, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + aux_sym_sym_lit_token1, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [154974] = 20, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, + ACTIONS(790), 1, anon_sym_LPAREN, - ACTIONS(5541), 1, + ACTIONS(5673), 1, anon_sym_POUND, - ACTIONS(5543), 1, + ACTIONS(5675), 1, anon_sym_POUND_QMARK, - ACTIONS(5545), 1, + ACTIONS(5677), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5557), 1, - anon_sym_POUNDC, - ACTIONS(5559), 1, - anon_sym_POUNDc, - ACTIONS(5655), 1, + ACTIONS(5679), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5657), 1, + ACTIONS(5681), 1, anon_sym_SQUOTE, - ACTIONS(5659), 1, + ACTIONS(5683), 1, anon_sym_COMMA_AT, - ACTIONS(5661), 1, + ACTIONS(5685), 1, anon_sym_POUND_PLUS, - ACTIONS(5663), 1, + ACTIONS(5687), 1, anon_sym_POUND_DASH, - STATE(1911), 1, + ACTIONS(5689), 1, + anon_sym_POUNDC, + ACTIONS(5691), 1, + anon_sym_POUNDc, + STATE(1781), 1, sym__bare_set_lit, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2225), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2246), 1, aux_sym_list_lit_repeat1, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(1910), 3, + STATE(1783), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [154123] = 20, + [155037] = 20, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(811), 1, + ACTIONS(570), 1, anon_sym_LPAREN, - ACTIONS(5517), 1, - anon_sym_POUND_QMARK, - ACTIONS(5665), 1, + ACTIONS(5693), 1, anon_sym_POUND, - ACTIONS(5667), 1, + ACTIONS(5695), 1, + anon_sym_POUND_QMARK, + ACTIONS(5697), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5669), 1, + ACTIONS(5699), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5671), 1, + ACTIONS(5701), 1, anon_sym_SQUOTE, - ACTIONS(5673), 1, + ACTIONS(5703), 1, anon_sym_COMMA_AT, - ACTIONS(5675), 1, + ACTIONS(5705), 1, anon_sym_POUND_PLUS, - ACTIONS(5677), 1, + ACTIONS(5707), 1, anon_sym_POUND_DASH, - ACTIONS(5679), 1, + ACTIONS(5709), 1, anon_sym_POUNDC, - ACTIONS(5681), 1, + ACTIONS(5711), 1, anon_sym_POUNDc, - STATE(1818), 1, + STATE(1352), 1, sym__bare_set_lit, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2225), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2246), 1, aux_sym_list_lit_repeat1, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(1824), 3, + STATE(1353), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [154186] = 3, + [155100] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4190), 3, + ACTIONS(4246), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(4188), 18, + ACTIONS(4244), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -146331,14 +147142,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [154215] = 3, + [155129] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(4390), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(4196), 18, + ACTIONS(4388), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -146357,14 +147168,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [154244] = 3, + [155158] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4202), 3, + ACTIONS(4438), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(4200), 18, + ACTIONS(4436), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -146383,12 +147194,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [154273] = 4, + [155187] = 4, ACTIONS(47), 1, sym_block_comment, ACTIONS(4136), 1, anon_sym_being, - ACTIONS(5683), 1, + ACTIONS(5713), 1, aux_sym_num_lit_token2, ACTIONS(4134), 19, sym__ws, @@ -146410,83 +147221,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [154304] = 3, + [155218] = 20, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4146), 3, + ACTIONS(526), 1, + anon_sym_LPAREN, + ACTIONS(5715), 1, anon_sym_POUND, - anon_sym_COLON, + ACTIONS(5717), 1, anon_sym_POUND_QMARK, - ACTIONS(4144), 18, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - aux_sym_sym_lit_token1, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(5719), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(5721), 1, anon_sym_POUND_SQUOTE, + ACTIONS(5723), 1, anon_sym_SQUOTE, + ACTIONS(5725), 1, anon_sym_COMMA_AT, + ACTIONS(5727), 1, anon_sym_POUND_PLUS, + ACTIONS(5729), 1, anon_sym_POUND_DASH, + ACTIONS(5731), 1, anon_sym_POUNDC, + ACTIONS(5733), 1, anon_sym_POUNDc, - [154333] = 20, + STATE(1043), 1, + sym__bare_set_lit, + STATE(2221), 1, + sym_old_meta_lit, + STATE(2234), 1, + sym_meta_lit, + STATE(2246), 1, + aux_sym_list_lit_repeat1, + STATE(2258), 1, + sym__metadata_lit, + STATE(1044), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [155281] = 20, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, + ACTIONS(29), 1, + anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(288), 1, - anon_sym_LPAREN, - ACTIONS(5665), 1, + ACTIONS(5523), 1, anon_sym_POUND, - ACTIONS(5679), 1, - anon_sym_POUNDC, - ACTIONS(5681), 1, - anon_sym_POUNDc, - ACTIONS(5685), 1, + ACTIONS(5525), 1, anon_sym_POUND_QMARK, - ACTIONS(5687), 1, + ACTIONS(5527), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5689), 1, + ACTIONS(5539), 1, + anon_sym_POUNDC, + ACTIONS(5541), 1, + anon_sym_POUNDc, + ACTIONS(5735), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5691), 1, + ACTIONS(5737), 1, anon_sym_SQUOTE, - ACTIONS(5693), 1, + ACTIONS(5739), 1, anon_sym_COMMA_AT, - ACTIONS(5695), 1, + ACTIONS(5741), 1, anon_sym_POUND_PLUS, - ACTIONS(5697), 1, + ACTIONS(5743), 1, anon_sym_POUND_DASH, - STATE(1818), 1, + STATE(1474), 1, sym__bare_set_lit, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, + STATE(2221), 1, sym_old_meta_lit, - STATE(2225), 1, + STATE(2234), 1, + sym_meta_lit, + STATE(2246), 1, aux_sym_list_lit_repeat1, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(1824), 3, + STATE(1473), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [154396] = 3, + [155344] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4170), 3, + ACTIONS(4414), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(4168), 18, + ACTIONS(4412), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -146505,73 +147333,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [154425] = 20, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, + [155373] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(5699), 1, - anon_sym_POUND, - ACTIONS(5701), 1, - anon_sym_POUND_QMARK, - ACTIONS(5703), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(5705), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(5707), 1, - anon_sym_SQUOTE, - ACTIONS(5709), 1, - anon_sym_COMMA_AT, - ACTIONS(5711), 1, - anon_sym_POUND_PLUS, - ACTIONS(5713), 1, - anon_sym_POUND_DASH, - ACTIONS(5715), 1, - anon_sym_POUNDC, - ACTIONS(5717), 1, - anon_sym_POUNDc, - STATE(1324), 1, - sym__bare_set_lit, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, - sym_old_meta_lit, - STATE(2225), 1, - aux_sym_list_lit_repeat1, - STATE(2239), 1, - sym__metadata_lit, - STATE(1323), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [154488] = 15, + ACTIONS(4386), 1, + anon_sym_being, + ACTIONS(4384), 19, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [155401] = 15, ACTIONS(47), 1, sym_block_comment, ACTIONS(486), 1, anon_sym_LPAREN, ACTIONS(488), 1, anon_sym_LBRACE, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - ACTIONS(5719), 1, + ACTIONS(5745), 1, aux_sym__form_token1, - STATE(1326), 1, - sym_list_lit, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2376), 1, + STATE(2340), 1, + sym_list_lit, + STATE(2372), 1, sym_array_dimension, - STATE(2435), 1, + STATE(2451), 1, aux_sym_list_lit_repeat1, ACTIONS(480), 3, aux_sym_char_lit_token1, @@ -146581,41 +147391,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_char_lit_token3, aux_sym_char_lit_token5, aux_sym_char_lit_token6, - STATE(1303), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [154540] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4450), 1, - anon_sym_being, - ACTIONS(4448), 19, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [154568] = 3, + [155453] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4146), 1, + ACTIONS(4298), 1, anon_sym_being, - ACTIONS(4144), 19, + ACTIONS(4296), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -146635,12 +147420,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [154596] = 3, + [155481] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4398), 1, + ACTIONS(4278), 1, anon_sym_being, - ACTIONS(4396), 19, + ACTIONS(4276), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -146660,12 +147445,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [154624] = 3, + [155509] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4394), 1, + ACTIONS(4518), 1, anon_sym_being, - ACTIONS(4392), 19, + ACTIONS(4516), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -146685,12 +147470,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [154652] = 3, + [155537] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4358), 1, + ACTIONS(4150), 1, anon_sym_being, - ACTIONS(4356), 19, + ACTIONS(4148), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -146710,12 +147495,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [154680] = 3, + [155565] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4354), 1, + ACTIONS(4158), 1, anon_sym_being, - ACTIONS(4352), 19, + ACTIONS(4156), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -146735,12 +147520,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [154708] = 3, + [155593] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4350), 1, + ACTIONS(4262), 1, anon_sym_being, - ACTIONS(4348), 19, + ACTIONS(4260), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -146760,12 +147545,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [154736] = 3, + [155621] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4274), 1, + ACTIONS(4266), 1, anon_sym_being, - ACTIONS(4272), 19, + ACTIONS(4264), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -146785,7 +147570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [154764] = 3, + [155649] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(4270), 1, @@ -146810,12 +147595,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [154792] = 3, + [155677] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4266), 1, + ACTIONS(4246), 1, anon_sym_being, - ACTIONS(4264), 19, + ACTIONS(4244), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -146835,12 +147620,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [154820] = 3, + [155705] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4246), 1, + ACTIONS(4410), 1, anon_sym_being, - ACTIONS(4244), 19, + ACTIONS(4408), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -146860,99 +147645,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [154848] = 15, + [155733] = 15, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(544), 1, + anon_sym_LBRACE, + ACTIONS(614), 1, + anon_sym_LPAREN, + ACTIONS(4707), 1, + anon_sym_CARET, + ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(5747), 1, + aux_sym__form_token1, + STATE(1835), 1, + sym_list_lit, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2405), 1, + sym_array_dimension, + STATE(2434), 1, + aux_sym_list_lit_repeat1, + ACTIONS(540), 3, + aux_sym_char_lit_token1, + aux_sym_char_lit_token2, + aux_sym_char_lit_token4, + ACTIONS(542), 3, + aux_sym_char_lit_token3, + aux_sym_char_lit_token5, + aux_sym_char_lit_token6, + STATE(1800), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [155785] = 15, ACTIONS(47), 1, sym_block_comment, - ACTIONS(811), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(843), 1, + ACTIONS(742), 1, anon_sym_LBRACE, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - ACTIONS(5721), 1, + ACTIONS(5749), 1, aux_sym__form_token1, - STATE(1786), 1, + STATE(1944), 1, sym_list_lit, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2357), 1, + STATE(2397), 1, sym_array_dimension, - STATE(2437), 1, + STATE(2421), 1, aux_sym_list_lit_repeat1, - ACTIONS(839), 3, + ACTIONS(736), 3, aux_sym_char_lit_token1, aux_sym_char_lit_token2, aux_sym_char_lit_token4, - ACTIONS(841), 3, + ACTIONS(738), 3, aux_sym_char_lit_token3, aux_sym_char_lit_token5, aux_sym_char_lit_token6, - STATE(1793), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [154900] = 3, + [155837] = 15, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4170), 1, - anon_sym_being, - ACTIONS(4168), 19, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [154928] = 3, + ACTIONS(488), 1, + anon_sym_LBRACE, + ACTIONS(614), 1, + anon_sym_LPAREN, + ACTIONS(4707), 1, + anon_sym_CARET, + ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(5751), 1, + aux_sym__form_token1, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2340), 1, + sym_list_lit, + STATE(2409), 1, + sym_array_dimension, + STATE(2436), 1, + aux_sym_list_lit_repeat1, + ACTIONS(480), 3, + aux_sym_char_lit_token1, + aux_sym_char_lit_token2, + aux_sym_char_lit_token4, + ACTIONS(482), 3, + aux_sym_char_lit_token3, + aux_sym_char_lit_token5, + aux_sym_char_lit_token6, + STATE(2282), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [155889] = 15, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4370), 1, - anon_sym_being, - ACTIONS(4368), 19, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_using, - aux_sym_for_clause_word_token1, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [154956] = 3, + ACTIONS(526), 1, + anon_sym_LPAREN, + ACTIONS(528), 1, + anon_sym_LBRACE, + ACTIONS(4707), 1, + anon_sym_CARET, + ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(5753), 1, + aux_sym__form_token1, + STATE(1040), 1, + sym_list_lit, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2407), 1, + sym_array_dimension, + STATE(2422), 1, + aux_sym_list_lit_repeat1, + ACTIONS(522), 3, + aux_sym_char_lit_token1, + aux_sym_char_lit_token2, + aux_sym_char_lit_token4, + ACTIONS(524), 3, + aux_sym_char_lit_token3, + aux_sym_char_lit_token5, + aux_sym_char_lit_token6, + STATE(1073), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [155941] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4346), 1, + ACTIONS(4218), 1, anon_sym_being, - ACTIONS(4344), 19, + ACTIONS(4216), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -146972,12 +147818,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [154984] = 3, + [155969] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4318), 1, + ACTIONS(4162), 1, anon_sym_being, - ACTIONS(4316), 19, + ACTIONS(4160), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -146997,12 +147843,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [155012] = 3, + [155997] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4282), 1, + ACTIONS(4194), 1, anon_sym_being, - ACTIONS(4280), 19, + ACTIONS(4192), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -147022,197 +147868,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [155040] = 15, + [156025] = 15, + ACTIONS(29), 1, + anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(640), 1, - anon_sym_LPAREN, - ACTIONS(642), 1, + ACTIONS(718), 1, anon_sym_LBRACE, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - ACTIONS(5723), 1, + ACTIONS(5755), 1, aux_sym__form_token1, - STATE(1161), 1, + STATE(1477), 1, sym_list_lit, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2375), 1, + STATE(2411), 1, sym_array_dimension, - STATE(2409), 1, + STATE(2432), 1, aux_sym_list_lit_repeat1, - ACTIONS(636), 3, + ACTIONS(714), 3, aux_sym_char_lit_token1, aux_sym_char_lit_token2, aux_sym_char_lit_token4, - ACTIONS(638), 3, + ACTIONS(716), 3, aux_sym_char_lit_token3, aux_sym_char_lit_token5, aux_sym_char_lit_token6, - STATE(1015), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [155092] = 15, + [156077] = 15, ACTIONS(47), 1, sym_block_comment, - ACTIONS(602), 1, - anon_sym_LBRACE, - ACTIONS(811), 1, - anon_sym_LPAREN, - ACTIONS(4703), 1, - anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, - ACTIONS(5725), 1, - aux_sym__form_token1, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2305), 1, - sym_list_lit, - STATE(2383), 1, - sym_array_dimension, - STATE(2394), 1, - aux_sym_list_lit_repeat1, - ACTIONS(594), 3, - aux_sym_char_lit_token1, - aux_sym_char_lit_token2, - aux_sym_char_lit_token4, - ACTIONS(596), 3, - aux_sym_char_lit_token3, - aux_sym_char_lit_token5, - aux_sym_char_lit_token6, - STATE(2269), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [155144] = 15, - ACTIONS(29), 1, + ACTIONS(790), 1, anon_sym_LPAREN, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(576), 1, + ACTIONS(792), 1, anon_sym_LBRACE, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - ACTIONS(5727), 1, + ACTIONS(5757), 1, aux_sym__form_token1, - STATE(1467), 1, + STATE(1644), 1, sym_list_lit, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2363), 1, + STATE(2391), 1, sym_array_dimension, - STATE(2433), 1, + STATE(2447), 1, aux_sym_list_lit_repeat1, - ACTIONS(572), 3, + ACTIONS(784), 3, aux_sym_char_lit_token1, aux_sym_char_lit_token2, aux_sym_char_lit_token4, - ACTIONS(574), 3, + ACTIONS(786), 3, aux_sym_char_lit_token3, aux_sym_char_lit_token5, aux_sym_char_lit_token6, - STATE(1493), 3, + STATE(1746), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [155196] = 15, + [156129] = 15, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(538), 1, + ACTIONS(488), 1, anon_sym_LBRACE, - ACTIONS(4703), 1, + ACTIONS(640), 1, + anon_sym_LPAREN, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - ACTIONS(5729), 1, + ACTIONS(5759), 1, aux_sym__form_token1, - STATE(1912), 1, - sym_list_lit, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2365), 1, + STATE(2340), 1, + sym_list_lit, + STATE(2375), 1, sym_array_dimension, - STATE(2417), 1, + STATE(2441), 1, aux_sym_list_lit_repeat1, - ACTIONS(530), 3, + ACTIONS(480), 3, aux_sym_char_lit_token1, aux_sym_char_lit_token2, aux_sym_char_lit_token4, - ACTIONS(532), 3, + ACTIONS(482), 3, aux_sym_char_lit_token3, aux_sym_char_lit_token5, aux_sym_char_lit_token6, - STATE(1886), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [155248] = 15, + [156181] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4258), 1, + anon_sym_being, + ACTIONS(4256), 19, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [156209] = 15, ACTIONS(47), 1, sym_block_comment, - ACTIONS(891), 1, + ACTIONS(570), 1, anon_sym_LPAREN, - ACTIONS(893), 1, + ACTIONS(572), 1, anon_sym_LBRACE, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - ACTIONS(5731), 1, + ACTIONS(5761), 1, aux_sym__form_token1, - STATE(1219), 1, + STATE(1349), 1, sym_list_lit, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2382), 1, + STATE(2384), 1, sym_array_dimension, - STATE(2401), 1, + STATE(2453), 1, aux_sym_list_lit_repeat1, - ACTIONS(885), 3, + ACTIONS(564), 3, aux_sym_char_lit_token1, aux_sym_char_lit_token2, aux_sym_char_lit_token4, - ACTIONS(887), 3, + ACTIONS(566), 3, aux_sym_char_lit_token3, aux_sym_char_lit_token5, aux_sym_char_lit_token6, - STATE(1275), 3, + STATE(1387), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [155300] = 3, + [156261] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4422), 1, + ACTIONS(4302), 1, anon_sym_being, - ACTIONS(4420), 19, + ACTIONS(4300), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -147232,12 +148066,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [155328] = 3, + [156289] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4262), 1, + ACTIONS(4274), 1, anon_sym_being, - ACTIONS(4260), 19, + ACTIONS(4272), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -147257,86 +148091,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [155356] = 15, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(600), 1, - anon_sym_LPAREN, - ACTIONS(602), 1, - anon_sym_LBRACE, - ACTIONS(4703), 1, - anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, - ACTIONS(5733), 1, - aux_sym__form_token1, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2305), 1, - sym_list_lit, - STATE(2346), 1, - sym_array_dimension, - STATE(2424), 1, - aux_sym_list_lit_repeat1, - ACTIONS(594), 3, - aux_sym_char_lit_token1, - aux_sym_char_lit_token2, - aux_sym_char_lit_token4, - ACTIONS(596), 3, - aux_sym_char_lit_token3, - aux_sym_char_lit_token5, - aux_sym_char_lit_token6, - STATE(2269), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [155408] = 15, + [156317] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(941), 1, - anon_sym_LPAREN, - ACTIONS(943), 1, - anon_sym_LBRACE, - ACTIONS(4703), 1, - anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, - ACTIONS(5735), 1, - aux_sym__form_token1, - STATE(1664), 1, - sym_list_lit, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2367), 1, - sym_array_dimension, - STATE(2404), 1, - aux_sym_list_lit_repeat1, - ACTIONS(935), 3, - aux_sym_char_lit_token1, - aux_sym_char_lit_token2, - aux_sym_char_lit_token4, - ACTIONS(937), 3, - aux_sym_char_lit_token3, - aux_sym_char_lit_token5, - aux_sym_char_lit_token6, - STATE(1688), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [155460] = 3, + ACTIONS(4390), 1, + anon_sym_being, + ACTIONS(4388), 19, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [156345] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4206), 1, + ACTIONS(4482), 1, anon_sym_being, - ACTIONS(4204), 19, + ACTIONS(4480), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -147356,49 +148141,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [155488] = 15, + [156373] = 15, ACTIONS(47), 1, sym_block_comment, - ACTIONS(288), 1, + ACTIONS(830), 1, anon_sym_LPAREN, - ACTIONS(843), 1, + ACTIONS(832), 1, anon_sym_LBRACE, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - ACTIONS(5737), 1, + ACTIONS(5763), 1, aux_sym__form_token1, - STATE(1786), 1, + STATE(881), 1, sym_list_lit, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2355), 1, + STATE(2364), 1, sym_array_dimension, - STATE(2425), 1, + STATE(2420), 1, aux_sym_list_lit_repeat1, - ACTIONS(839), 3, + ACTIONS(826), 3, aux_sym_char_lit_token1, aux_sym_char_lit_token2, aux_sym_char_lit_token4, - ACTIONS(841), 3, + ACTIONS(828), 3, aux_sym_char_lit_token3, aux_sym_char_lit_token5, aux_sym_char_lit_token6, - STATE(1793), 3, + STATE(928), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [155540] = 3, + [156425] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4426), 1, + ACTIONS(4414), 1, anon_sym_being, - ACTIONS(4424), 19, + ACTIONS(4412), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -147418,12 +148203,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [155568] = 3, + [156453] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4198), 1, + ACTIONS(4430), 1, anon_sym_being, - ACTIONS(4196), 19, + ACTIONS(4428), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -147443,12 +148228,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [155596] = 3, + [156481] = 15, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4194), 1, + ACTIONS(678), 1, + anon_sym_LPAREN, + ACTIONS(680), 1, + anon_sym_LBRACE, + ACTIONS(4707), 1, + anon_sym_CARET, + ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(5765), 1, + aux_sym__form_token1, + STATE(1220), 1, + sym_list_lit, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2402), 1, + sym_array_dimension, + STATE(2430), 1, + aux_sym_list_lit_repeat1, + ACTIONS(672), 3, + aux_sym_char_lit_token1, + aux_sym_char_lit_token2, + aux_sym_char_lit_token4, + ACTIONS(674), 3, + aux_sym_char_lit_token3, + aux_sym_char_lit_token5, + aux_sym_char_lit_token6, + STATE(1174), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [156533] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4438), 1, anon_sym_being, - ACTIONS(4192), 19, + ACTIONS(4436), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -147468,12 +148290,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [155624] = 3, + [156561] = 15, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4190), 1, + ACTIONS(288), 1, + anon_sym_LPAREN, + ACTIONS(544), 1, + anon_sym_LBRACE, + ACTIONS(4707), 1, + anon_sym_CARET, + ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(5767), 1, + aux_sym__form_token1, + STATE(1835), 1, + sym_list_lit, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2412), 1, + sym_array_dimension, + STATE(2440), 1, + aux_sym_list_lit_repeat1, + ACTIONS(540), 3, + aux_sym_char_lit_token1, + aux_sym_char_lit_token2, + aux_sym_char_lit_token4, + ACTIONS(542), 3, + aux_sym_char_lit_token3, + aux_sym_char_lit_token5, + aux_sym_char_lit_token6, + STATE(1800), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [156613] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4330), 1, anon_sym_being, - ACTIONS(4188), 19, + ACTIONS(4328), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -147493,12 +148352,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [155652] = 3, + [156641] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4202), 1, + ACTIONS(4302), 1, anon_sym_being, - ACTIONS(4200), 19, + ACTIONS(4300), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -147518,49 +148377,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [155680] = 15, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(658), 1, - anon_sym_LPAREN, - ACTIONS(660), 1, - anon_sym_LBRACE, - ACTIONS(4703), 1, - anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, - ACTIONS(5739), 1, - aux_sym__form_token1, - STATE(846), 1, - sym_list_lit, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2364), 1, - sym_array_dimension, - STATE(2431), 1, - aux_sym_list_lit_repeat1, - ACTIONS(654), 3, - aux_sym_char_lit_token1, - aux_sym_char_lit_token2, - aux_sym_char_lit_token4, - ACTIONS(656), 3, - aux_sym_char_lit_token3, - aux_sym_char_lit_token5, - aux_sym_char_lit_token6, - STATE(823), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [155732] = 3, + [156669] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4146), 1, + ACTIONS(4334), 1, anon_sym_being, - ACTIONS(4144), 19, + ACTIONS(4332), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -147580,620 +148402,612 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [155760] = 15, + [156697] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(602), 1, - anon_sym_LBRACE, - ACTIONS(4703), 1, + ACTIONS(5771), 1, + anon_sym_POUND_, + ACTIONS(5769), 2, + sym__ws, + sym_comment, + ACTIONS(5773), 2, + anon_sym_POUND, + anon_sym_POUND_QMARK, + STATE(2236), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(5775), 11, anon_sym_CARET, - ACTIONS(4705), 1, anon_sym_POUND_CARET, - ACTIONS(5741), 1, - aux_sym__form_token1, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2305), 1, - sym_list_lit, - STATE(2349), 1, - sym_array_dimension, - STATE(2397), 1, - aux_sym_list_lit_repeat1, - ACTIONS(594), 3, - aux_sym_char_lit_token1, - aux_sym_char_lit_token2, - aux_sym_char_lit_token4, - ACTIONS(596), 3, - aux_sym_char_lit_token3, - aux_sym_char_lit_token5, - aux_sym_char_lit_token6, - STATE(2269), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [155812] = 15, + anon_sym_LPAREN, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [156730] = 11, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5777), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(5781), 1, + anon_sym_and, + ACTIONS(5783), 1, + anon_sym_with, + ACTIONS(5785), 1, + anon_sym_do, + ACTIONS(5789), 1, + anon_sym_repeat, + ACTIONS(5793), 1, + anon_sym_else, + ACTIONS(5779), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(5787), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(5795), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + ACTIONS(5791), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + [156773] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - ACTIONS(5449), 1, + ACTIONS(5471), 1, anon_sym_COMMA, - ACTIONS(5745), 1, + ACTIONS(5799), 1, anon_sym_POUND_, - STATE(1701), 1, + STATE(1799), 1, sym_list_lit, - STATE(1702), 1, + STATE(1806), 1, sym_unquoting_lit, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2433), 1, + STATE(2432), 1, aux_sym_list_lit_repeat1, - ACTIONS(5743), 2, + ACTIONS(5797), 2, sym__ws, sym_comment, - STATE(1493), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2205), 3, + STATE(2224), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [155863] = 15, + [156824] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - ACTIONS(5449), 1, + ACTIONS(5471), 1, anon_sym_COMMA, - ACTIONS(5745), 1, + ACTIONS(5799), 1, anon_sym_POUND_, - STATE(1728), 1, - sym_unquoting_lit, - STATE(1744), 1, + STATE(1658), 1, sym_list_lit, - STATE(2239), 1, + STATE(1659), 1, + sym_unquoting_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2433), 1, + STATE(2432), 1, aux_sym_list_lit_repeat1, - ACTIONS(5747), 2, + ACTIONS(5801), 2, sym__ws, sym_comment, - STATE(1493), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2415), 3, + STATE(2222), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [156875] = 6, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5771), 1, + anon_sym_POUND_, + ACTIONS(5803), 2, + sym__ws, + sym_comment, + ACTIONS(5805), 2, + anon_sym_POUND, + anon_sym_POUND_QMARK, + STATE(2235), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [155914] = 14, + ACTIONS(5807), 11, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [156908] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - ACTIONS(5449), 1, + ACTIONS(5471), 1, anon_sym_COMMA, - ACTIONS(5745), 1, + ACTIONS(5799), 1, anon_sym_POUND_, - STATE(2239), 1, + STATE(1828), 1, + sym_unquoting_lit, + STATE(1829), 1, + sym_list_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2433), 1, + STATE(2432), 1, aux_sym_list_lit_repeat1, - ACTIONS(5747), 2, + ACTIONS(5809), 2, sym__ws, sym_comment, - STATE(1696), 2, - sym_list_lit, - sym_unquoting_lit, - STATE(1493), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2415), 3, + STATE(2450), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [155963] = 15, + [156959] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - ACTIONS(5449), 1, + ACTIONS(5471), 1, anon_sym_COMMA, - ACTIONS(5745), 1, + ACTIONS(5799), 1, anon_sym_POUND_, - STATE(1740), 1, + STATE(1830), 1, sym_list_lit, - STATE(1741), 1, + STATE(1833), 1, sym_unquoting_lit, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2433), 1, + STATE(2432), 1, aux_sym_list_lit_repeat1, - ACTIONS(5747), 2, + ACTIONS(5811), 2, sym__ws, sym_comment, - STATE(1493), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2415), 3, + STATE(2227), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [156014] = 6, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5752), 1, - anon_sym_POUND_, - ACTIONS(4130), 2, - anon_sym_POUND, - anon_sym_POUND_QMARK, - ACTIONS(5749), 2, - sym__ws, - sym_comment, - STATE(2202), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(4132), 11, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [156047] = 11, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5755), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(5759), 1, - anon_sym_and, - ACTIONS(5761), 1, - anon_sym_with, - ACTIONS(5763), 1, - anon_sym_do, - ACTIONS(5767), 1, - anon_sym_repeat, - ACTIONS(5771), 1, - anon_sym_else, - ACTIONS(5757), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(5765), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(5773), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - ACTIONS(5769), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - [156090] = 15, + [157010] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - ACTIONS(5449), 1, + ACTIONS(5471), 1, anon_sym_COMMA, - ACTIONS(5745), 1, + ACTIONS(5799), 1, anon_sym_POUND_, - STATE(1703), 1, - sym_list_lit, - STATE(1704), 1, + STATE(1756), 1, sym_unquoting_lit, - STATE(2239), 1, + STATE(1758), 1, + sym_list_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2433), 1, + STATE(2432), 1, aux_sym_list_lit_repeat1, - ACTIONS(5775), 2, + ACTIONS(5809), 2, sym__ws, sym_comment, - STATE(1493), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2206), 3, + STATE(2450), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [156141] = 15, + [157061] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - ACTIONS(5449), 1, + ACTIONS(5471), 1, anon_sym_COMMA, - ACTIONS(5745), 1, + ACTIONS(5799), 1, anon_sym_POUND_, - STATE(1568), 1, - sym_list_lit, - STATE(1712), 1, + STATE(1825), 1, sym_unquoting_lit, - STATE(2239), 1, + STATE(1827), 1, + sym_list_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2433), 1, + STATE(2432), 1, aux_sym_list_lit_repeat1, - ACTIONS(5747), 2, + ACTIONS(5809), 2, sym__ws, sym_comment, - STATE(1493), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2415), 3, + STATE(2450), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [156192] = 15, + [157112] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - ACTIONS(5449), 1, + ACTIONS(5471), 1, anon_sym_COMMA, - ACTIONS(5745), 1, + ACTIONS(5799), 1, anon_sym_POUND_, - STATE(1713), 1, + STATE(1656), 1, sym_list_lit, - STATE(1714), 1, + STATE(1657), 1, sym_unquoting_lit, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2433), 1, + STATE(2432), 1, aux_sym_list_lit_repeat1, - ACTIONS(5747), 2, + ACTIONS(5809), 2, sym__ws, sym_comment, - STATE(1493), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2415), 3, + STATE(2450), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [156243] = 15, + [157163] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - ACTIONS(5449), 1, + ACTIONS(5471), 1, anon_sym_COMMA, - ACTIONS(5745), 1, + ACTIONS(5799), 1, anon_sym_POUND_, - STATE(1715), 1, + STATE(1574), 1, sym_list_lit, - STATE(1716), 1, + STATE(1576), 1, sym_unquoting_lit, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2433), 1, + STATE(2432), 1, aux_sym_list_lit_repeat1, - ACTIONS(5777), 2, + ACTIONS(5809), 2, sym__ws, sym_comment, - STATE(1493), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2221), 3, + STATE(2450), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [156294] = 15, + [157214] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - ACTIONS(5449), 1, + ACTIONS(5471), 1, anon_sym_COMMA, - ACTIONS(5745), 1, + ACTIONS(5799), 1, anon_sym_POUND_, - STATE(1717), 1, + STATE(1577), 1, sym_list_lit, - STATE(1718), 1, + STATE(1586), 1, sym_unquoting_lit, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2433), 1, + STATE(2432), 1, aux_sym_list_lit_repeat1, - ACTIONS(5779), 2, + ACTIONS(5813), 2, sym__ws, sym_comment, - STATE(1493), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2199), 3, + STATE(2238), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [156345] = 15, + [157265] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - ACTIONS(5449), 1, + ACTIONS(5471), 1, anon_sym_COMMA, - ACTIONS(5745), 1, + ACTIONS(5799), 1, anon_sym_POUND_, - STATE(1719), 1, + STATE(1589), 1, sym_list_lit, - STATE(1720), 1, + STATE(1619), 1, sym_unquoting_lit, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2433), 1, + STATE(2432), 1, aux_sym_list_lit_repeat1, - ACTIONS(5781), 2, + ACTIONS(5815), 2, sym__ws, sym_comment, - STATE(1493), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2218), 3, + STATE(2230), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [156396] = 15, + [157316] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - ACTIONS(5449), 1, + ACTIONS(5471), 1, anon_sym_COMMA, - ACTIONS(5745), 1, + ACTIONS(5799), 1, anon_sym_POUND_, - STATE(1721), 1, + STATE(1652), 1, sym_list_lit, - STATE(1722), 1, + STATE(1653), 1, sym_unquoting_lit, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2433), 1, + STATE(2432), 1, aux_sym_list_lit_repeat1, - ACTIONS(5783), 2, + ACTIONS(5809), 2, sym__ws, sym_comment, - STATE(1493), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2211), 3, + STATE(2450), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [156447] = 15, + [157367] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - ACTIONS(5449), 1, + ACTIONS(5471), 1, anon_sym_COMMA, - ACTIONS(5745), 1, + ACTIONS(5799), 1, anon_sym_POUND_, - STATE(1732), 1, + STATE(1638), 1, sym_list_lit, - STATE(1733), 1, + STATE(1639), 1, sym_unquoting_lit, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2433), 1, + STATE(2432), 1, aux_sym_list_lit_repeat1, - ACTIONS(5747), 2, + ACTIONS(5817), 2, sym__ws, sym_comment, - STATE(1493), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2415), 3, + STATE(2239), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [156498] = 15, + [157418] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - ACTIONS(5449), 1, + ACTIONS(5471), 1, anon_sym_COMMA, - ACTIONS(5745), 1, + ACTIONS(5799), 1, anon_sym_POUND_, - STATE(1734), 1, + STATE(1640), 1, sym_list_lit, - STATE(1735), 1, + STATE(1641), 1, sym_unquoting_lit, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2433), 1, + STATE(2432), 1, aux_sym_list_lit_repeat1, - ACTIONS(5785), 2, + ACTIONS(5819), 2, sym__ws, sym_comment, - STATE(1493), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2201), 3, + STATE(2226), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [156549] = 14, + [157469] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - ACTIONS(5449), 1, + ACTIONS(5471), 1, anon_sym_COMMA, - ACTIONS(5745), 1, + ACTIONS(5799), 1, anon_sym_POUND_, - STATE(2239), 1, + STATE(1710), 1, + sym_list_lit, + STATE(1718), 1, + sym_unquoting_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2433), 1, + STATE(2432), 1, aux_sym_list_lit_repeat1, - ACTIONS(5787), 2, + ACTIONS(5821), 2, sym__ws, sym_comment, - STATE(1693), 2, - sym_list_lit, - sym_unquoting_lit, - STATE(1493), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2200), 3, + STATE(2225), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [156598] = 6, + [157520] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5791), 1, + ACTIONS(5771), 1, anon_sym_POUND_, - ACTIONS(5789), 2, + ACTIONS(5823), 2, sym__ws, sym_comment, - ACTIONS(5793), 2, + ACTIONS(5825), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - STATE(2202), 3, + STATE(2217), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(5795), 11, + ACTIONS(5827), 11, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -148205,22 +149019,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [156631] = 6, + [157553] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5791), 1, + ACTIONS(5771), 1, anon_sym_POUND_, - ACTIONS(5797), 2, + ACTIONS(5769), 2, sym__ws, sym_comment, - ACTIONS(5799), 2, + ACTIONS(5829), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - STATE(2214), 3, + STATE(2236), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(5801), 11, + ACTIONS(5831), 11, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -148232,58 +149046,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [156664] = 15, - ACTIONS(29), 1, - anon_sym_LPAREN, + [157586] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4703), 1, - anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, - ACTIONS(5449), 1, - anon_sym_COMMA, - ACTIONS(5745), 1, + ACTIONS(5836), 1, anon_sym_POUND_, - STATE(1567), 1, - sym_list_lit, - STATE(1739), 1, - sym_unquoting_lit, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2433), 1, - aux_sym_list_lit_repeat1, - ACTIONS(5803), 2, - sym__ws, - sym_comment, - STATE(1493), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2220), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [156715] = 6, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5791), 1, - anon_sym_POUND_, - ACTIONS(5805), 2, - sym__ws, - sym_comment, - ACTIONS(5807), 2, + ACTIONS(4102), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - STATE(2219), 3, + ACTIONS(5833), 2, + sym__ws, + sym_comment, + STATE(2236), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(5809), 11, + ACTIONS(4104), 11, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -148295,151 +149073,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [156748] = 15, + [157619] = 14, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - ACTIONS(5449), 1, + ACTIONS(5471), 1, anon_sym_COMMA, - ACTIONS(5745), 1, + ACTIONS(5799), 1, anon_sym_POUND_, - STATE(1730), 1, - sym_list_lit, - STATE(1731), 1, - sym_unquoting_lit, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2433), 1, + STATE(2432), 1, aux_sym_list_lit_repeat1, - ACTIONS(5747), 2, + ACTIONS(5809), 2, sym__ws, sym_comment, - STATE(1493), 3, + STATE(1770), 2, + sym_list_lit, + sym_unquoting_lit, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2415), 3, + STATE(2450), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [156799] = 6, + [157668] = 15, + ACTIONS(29), 1, + anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5791), 1, + ACTIONS(4707), 1, + anon_sym_CARET, + ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(5471), 1, + anon_sym_COMMA, + ACTIONS(5799), 1, anon_sym_POUND_, - ACTIONS(5789), 2, + STATE(1650), 1, + sym_list_lit, + STATE(1651), 1, + sym_unquoting_lit, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2432), 1, + aux_sym_list_lit_repeat1, + ACTIONS(5809), 2, sym__ws, sym_comment, - ACTIONS(5811), 2, - anon_sym_POUND, - anon_sym_POUND_QMARK, - STATE(2202), 3, + STATE(1451), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2450), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(5813), 11, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [156832] = 15, + [157719] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - ACTIONS(5449), 1, + ACTIONS(5471), 1, anon_sym_COMMA, - ACTIONS(5745), 1, + ACTIONS(5799), 1, anon_sym_POUND_, - STATE(1742), 1, + STATE(1654), 1, sym_list_lit, - STATE(1743), 1, + STATE(1655), 1, sym_unquoting_lit, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2433), 1, + STATE(2432), 1, aux_sym_list_lit_repeat1, - ACTIONS(5747), 2, + ACTIONS(5809), 2, sym__ws, sym_comment, - STATE(1493), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2415), 3, + STATE(2450), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [156883] = 15, + [157770] = 14, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - ACTIONS(5449), 1, + ACTIONS(5471), 1, anon_sym_COMMA, - ACTIONS(5745), 1, + ACTIONS(5799), 1, anon_sym_POUND_, - STATE(1726), 1, - sym_list_lit, - STATE(1727), 1, - sym_unquoting_lit, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2433), 1, + STATE(2432), 1, aux_sym_list_lit_repeat1, - ACTIONS(5747), 2, + ACTIONS(5839), 2, sym__ws, sym_comment, - STATE(1493), 3, + STATE(1734), 2, + sym_list_lit, + sym_unquoting_lit, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2415), 3, + STATE(2237), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [156934] = 5, + [157819] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5841), 1, + anon_sym_COLON, + ACTIONS(5843), 1, + anon_sym_COLON_COLON, + ACTIONS(4466), 2, + anon_sym_POUND, + anon_sym_POUND_QMARK, + ACTIONS(4464), 14, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [157849] = 5, ACTIONS(47), 1, sym_block_comment, ACTIONS(286), 1, aux_sym_sym_lit_token1, - ACTIONS(5817), 1, + ACTIONS(5847), 1, aux_sym_for_clause_word_token1, - STATE(1729), 1, + STATE(1796), 1, sym_sym_lit, - ACTIONS(5815), 15, + ACTIONS(5845), 15, anon_sym_in, anon_sym_across, anon_sym_being, @@ -148455,17 +149265,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [156964] = 5, + [157879] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5819), 1, + ACTIONS(5841), 1, anon_sym_COLON, - ACTIONS(5821), 1, + ACTIONS(5843), 1, anon_sym_COLON_COLON, - ACTIONS(4154), 2, + ACTIONS(4502), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(4152), 14, + ACTIONS(4500), 14, sym__ws, sym_comment, anon_sym_POUND_, @@ -148480,17 +149290,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [156994] = 5, + [157909] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5819), 1, + ACTIONS(5841), 1, anon_sym_COLON, - ACTIONS(5821), 1, + ACTIONS(5843), 1, anon_sym_COLON_COLON, - ACTIONS(4178), 2, + ACTIONS(4498), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(4176), 14, + ACTIONS(4496), 14, sym__ws, sym_comment, anon_sym_POUND_, @@ -148505,26 +149315,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [157024] = 9, + [157939] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5825), 1, - anon_sym_CARET, - ACTIONS(5828), 1, - anon_sym_POUND_CARET, - STATE(2215), 1, - sym_meta_lit, - STATE(2217), 1, - sym_old_meta_lit, - STATE(2225), 1, - aux_sym_list_lit_repeat1, - STATE(2239), 1, - sym__metadata_lit, - ACTIONS(5823), 2, + ACTIONS(5851), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(5831), 9, + ACTIONS(5849), 15, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, @@ -148533,20 +149337,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [157061] = 3, + [157964] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5835), 2, - anon_sym_POUND, - anon_sym_POUND_QMARK, - ACTIONS(5833), 15, - sym__ws, - sym_comment, - anon_sym_POUND_, + ACTIONS(5855), 1, anon_sym_CARET, + ACTIONS(5858), 1, anon_sym_POUND_CARET, + STATE(2221), 1, + sym_old_meta_lit, + STATE(2234), 1, + sym_meta_lit, + STATE(2246), 1, + aux_sym_list_lit_repeat1, + STATE(2258), 1, + sym__metadata_lit, + ACTIONS(5853), 2, + anon_sym_POUND, + anon_sym_POUND_QMARK, + ACTIONS(5861), 9, anon_sym_LPAREN, - anon_sym_LBRACE, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, @@ -148555,13 +149365,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [157086] = 3, + [158001] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5839), 2, + ACTIONS(5865), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(5837), 15, + ACTIONS(5863), 15, sym__ws, sym_comment, anon_sym_POUND_, @@ -148577,13 +149387,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [157111] = 3, + [158026] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5843), 2, + ACTIONS(5869), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(5841), 15, + ACTIONS(5867), 15, sym__ws, sym_comment, anon_sym_POUND_, @@ -148599,13 +149409,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [157136] = 3, + [158051] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5847), 2, + ACTIONS(5873), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(5845), 15, + ACTIONS(5871), 15, sym__ws, sym_comment, anon_sym_POUND_, @@ -148621,13 +149431,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [157161] = 3, + [158076] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5851), 2, + ACTIONS(5877), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(5849), 15, + ACTIONS(5875), 15, sym__ws, sym_comment, anon_sym_POUND_, @@ -148643,13 +149453,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [157186] = 3, + [158101] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5855), 2, + ACTIONS(5881), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(5853), 15, + ACTIONS(5879), 15, sym__ws, sym_comment, anon_sym_POUND_, @@ -148665,13 +149475,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [157211] = 3, + [158126] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5859), 2, + ACTIONS(5885), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(5857), 15, + ACTIONS(5883), 15, sym__ws, sym_comment, anon_sym_POUND_, @@ -148687,20 +149497,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [157236] = 3, + [158151] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5863), 2, + ACTIONS(5887), 1, + aux_sym_num_lit_token2, + ACTIONS(4136), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(5861), 15, + ACTIONS(4134), 14, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_LBRACE, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, @@ -148709,21 +149520,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [157261] = 4, + [158178] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5865), 1, - aux_sym_num_lit_token2, - ACTIONS(4136), 2, + ACTIONS(5891), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(4134), 14, + ACTIONS(5889), 15, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, @@ -148732,12 +149542,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [157288] = 3, + [158203] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5815), 1, + ACTIONS(5845), 1, anon_sym_being, - ACTIONS(5817), 15, + ACTIONS(5847), 15, anon_sym_in, anon_sym_across, anon_sym_using, @@ -148753,19 +149563,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [157312] = 5, + [158227] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5870), 1, + ACTIONS(5896), 1, anon_sym_POUND_, - ACTIONS(5867), 2, + ACTIONS(5893), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(4132), 8, + ACTIONS(4104), 8, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -148774,41 +149584,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, anon_sym_POUNDC, anon_sym_POUNDc, - [157338] = 4, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5873), 1, - aux_sym_num_lit_token2, - ACTIONS(4136), 2, - anon_sym_COLON, - aux_sym_sym_lit_token1, - ACTIONS(4134), 11, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - [157362] = 6, + [158253] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4130), 1, + ACTIONS(4102), 1, anon_sym_COLON, - ACTIONS(5878), 1, + ACTIONS(5902), 1, anon_sym_POUND_, - ACTIONS(5875), 2, + ACTIONS(5899), 2, sym__ws, sym_comment, - STATE(2238), 3, + STATE(2257), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(4132), 7, + ACTIONS(4104), 7, anon_sym_COLON_COLON, anon_sym_DQUOTE, aux_sym_sym_lit_token1, @@ -148816,13 +149606,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LBRACE, anon_sym_POUND_QMARK, - [157390] = 3, + [158281] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5881), 2, + ACTIONS(5905), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(5883), 12, + ACTIONS(5907), 12, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -148835,12 +149625,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [157412] = 3, + [158303] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4314), 1, + ACTIONS(5909), 1, + aux_sym_num_lit_token2, + ACTIONS(4136), 2, anon_sym_COLON, - ACTIONS(4312), 12, + aux_sym_sym_lit_token1, + ACTIONS(4134), 11, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + [158327] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4506), 1, + anon_sym_COLON, + ACTIONS(4504), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -148853,12 +149663,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [157433] = 3, + [158348] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4186), 1, + ACTIONS(4426), 1, anon_sym_COLON, - ACTIONS(4184), 12, + ACTIONS(4424), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -148871,12 +149681,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [157454] = 3, + [158369] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4418), 1, + ACTIONS(4318), 1, anon_sym_COLON, - ACTIONS(4416), 12, + ACTIONS(4316), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -148889,12 +149699,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [157475] = 3, + [158390] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4414), 1, + ACTIONS(4314), 1, anon_sym_COLON, - ACTIONS(4412), 12, + ACTIONS(4312), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -148907,12 +149717,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [157496] = 3, + [158411] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4418), 1, + ACTIONS(4318), 1, anon_sym_COLON, - ACTIONS(4416), 12, + ACTIONS(4316), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -148925,12 +149735,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [157517] = 3, + [158432] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4414), 1, + ACTIONS(4314), 1, anon_sym_COLON, - ACTIONS(4412), 12, + ACTIONS(4312), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -148943,12 +149753,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [157538] = 3, + [158453] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4410), 1, + ACTIONS(4310), 1, anon_sym_COLON, - ACTIONS(4408), 12, + ACTIONS(4308), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -148961,12 +149771,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [157559] = 3, + [158474] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4406), 1, + ACTIONS(4306), 1, anon_sym_COLON, - ACTIONS(4404), 12, + ACTIONS(4304), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -148979,12 +149789,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [157580] = 3, + [158495] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4390), 1, + ACTIONS(4230), 1, anon_sym_COLON, - ACTIONS(4388), 12, + ACTIONS(4228), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -148997,12 +149807,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [157601] = 3, + [158516] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4390), 1, + ACTIONS(4230), 1, anon_sym_COLON, - ACTIONS(4388), 12, + ACTIONS(4228), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -149015,12 +149825,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [157622] = 3, + [158537] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4386), 1, + ACTIONS(4242), 1, anon_sym_COLON, - ACTIONS(4384), 12, + ACTIONS(4240), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -149033,12 +149843,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [157643] = 3, + [158558] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4382), 1, + ACTIONS(4206), 1, anon_sym_COLON, - ACTIONS(4380), 12, + ACTIONS(4204), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -149051,12 +149861,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [157664] = 3, + [158579] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4378), 1, + ACTIONS(4166), 1, anon_sym_COLON, - ACTIONS(4376), 12, + ACTIONS(4164), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -149069,12 +149879,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [157685] = 3, + [158600] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4374), 1, + ACTIONS(5913), 1, + anon_sym_POUND_, + ACTIONS(5911), 2, + sym__ws, + sym_comment, + STATE(2335), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(5827), 7, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_POUND_QMARK, + anon_sym_POUNDC, + anon_sym_POUNDc, + [158625] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4486), 1, anon_sym_COLON, - ACTIONS(4372), 12, + ACTIONS(4484), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -149087,12 +149917,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [157706] = 3, + [158646] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4502), 1, + ACTIONS(4182), 1, anon_sym_COLON, - ACTIONS(4500), 12, + ACTIONS(4180), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -149105,12 +149935,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [157727] = 3, + [158667] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4366), 1, + ACTIONS(4350), 1, anon_sym_COLON, - ACTIONS(4364), 12, + ACTIONS(4348), 12, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + aux_sym_sym_lit_token1, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + [158688] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5913), 1, + anon_sym_POUND_, + ACTIONS(5915), 2, + sym__ws, + sym_comment, + STATE(2336), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(5807), 7, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_POUND_QMARK, + anon_sym_POUNDC, + anon_sym_POUNDc, + [158713] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4354), 1, + anon_sym_COLON, + ACTIONS(4352), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -149123,7 +149991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [157748] = 3, + [158734] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(4362), 1, @@ -149141,12 +150009,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [157769] = 3, + [158755] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4434), 1, + ACTIONS(4362), 1, anon_sym_COLON, - ACTIONS(4432), 12, + ACTIONS(4360), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -149159,12 +150027,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [157790] = 3, + [158776] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4438), 1, + ACTIONS(4374), 1, anon_sym_COLON, - ACTIONS(4436), 12, + ACTIONS(4372), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -149177,12 +150045,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [157811] = 3, + [158797] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4442), 1, + ACTIONS(4494), 1, anon_sym_COLON, - ACTIONS(4440), 12, + ACTIONS(4492), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -149195,12 +150063,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [157832] = 3, + [158818] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4442), 1, + ACTIONS(4198), 1, anon_sym_COLON, - ACTIONS(4440), 12, + ACTIONS(4196), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -149213,30 +150081,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [157853] = 3, + [158839] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4342), 1, + ACTIONS(4102), 1, anon_sym_COLON, - ACTIONS(4340), 12, + ACTIONS(5920), 1, + anon_sym_POUND_, + ACTIONS(5917), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2284), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(4104), 6, anon_sym_COLON_COLON, - anon_sym_DQUOTE, aux_sym_sym_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_POUND_QMARK, anon_sym_COMMA, - [157874] = 3, + [158866] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4338), 1, + ACTIONS(4202), 1, anon_sym_COLON, - ACTIONS(4336), 12, + ACTIONS(4200), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -149249,12 +150120,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [157895] = 3, + [158887] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4334), 1, + ACTIONS(4466), 1, anon_sym_COLON, - ACTIONS(4332), 12, + ACTIONS(4464), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -149267,12 +150138,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [157916] = 3, + [158908] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4446), 1, + ACTIONS(4374), 1, anon_sym_COLON, - ACTIONS(4444), 12, + ACTIONS(4372), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -149285,33 +150156,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [157937] = 6, + [158929] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4130), 1, + ACTIONS(4394), 1, anon_sym_COLON, - ACTIONS(5888), 1, - anon_sym_POUND_, - ACTIONS(5885), 2, + ACTIONS(4392), 12, sym__ws, sym_comment, - STATE(2265), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(4132), 6, + anon_sym_POUND_, anon_sym_COLON_COLON, + anon_sym_DQUOTE, aux_sym_sym_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_POUND_QMARK, anon_sym_COMMA, - [157964] = 3, + [158950] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4330), 1, + ACTIONS(4398), 1, anon_sym_COLON, - ACTIONS(4328), 12, + ACTIONS(4396), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -149324,52 +150192,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [157985] = 5, + [158971] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, - anon_sym_POUND_, - ACTIONS(5891), 2, + ACTIONS(4406), 1, + anon_sym_COLON, + ACTIONS(4404), 12, sym__ws, sym_comment, - STATE(2311), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(5801), 7, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_POUND_QMARK, - anon_sym_POUNDC, - anon_sym_POUNDc, - [158010] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5893), 1, anon_sym_POUND_, - ACTIONS(5895), 2, - sym__ws, - sym_comment, - STATE(2312), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(5809), 7, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + aux_sym_sym_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_POUND_QMARK, - anon_sym_POUNDC, - anon_sym_POUNDc, - [158035] = 3, + anon_sym_COMMA, + [158992] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4162), 1, + ACTIONS(4474), 1, anon_sym_COLON, - ACTIONS(4160), 12, + ACTIONS(4472), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -149382,12 +150228,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158056] = 3, + [159013] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4446), 1, + ACTIONS(4142), 1, anon_sym_COLON, - ACTIONS(4444), 12, + ACTIONS(4140), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -149400,12 +150246,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158077] = 3, + [159034] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4326), 1, + ACTIONS(4146), 1, anon_sym_COLON, - ACTIONS(4324), 12, + ACTIONS(4144), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -149418,12 +150264,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158098] = 3, + [159055] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4454), 1, + ACTIONS(4418), 1, anon_sym_COLON, - ACTIONS(4452), 12, + ACTIONS(4416), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -149436,12 +150282,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158119] = 3, + [159076] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4458), 1, + ACTIONS(4422), 1, anon_sym_COLON, - ACTIONS(4456), 12, + ACTIONS(4420), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -149454,12 +150300,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158140] = 3, + [159097] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4166), 1, + ACTIONS(4174), 1, anon_sym_COLON, - ACTIONS(4164), 12, + ACTIONS(4172), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -149472,12 +150318,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158161] = 3, + [159118] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4322), 1, + ACTIONS(4178), 1, anon_sym_COLON, - ACTIONS(4320), 12, + ACTIONS(4176), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -149490,12 +150336,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158182] = 3, + [159139] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4178), 1, + ACTIONS(4434), 1, anon_sym_COLON, - ACTIONS(4176), 12, + ACTIONS(4432), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -149508,12 +150354,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158203] = 3, + [159160] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4466), 1, + ACTIONS(4442), 1, anon_sym_COLON, - ACTIONS(4464), 12, + ACTIONS(4440), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -149526,12 +150372,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158224] = 3, + [159181] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4470), 1, + ACTIONS(4146), 1, anon_sym_COLON, - ACTIONS(4468), 12, + ACTIONS(4144), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -149544,12 +150390,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158245] = 3, + [159202] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4474), 1, + ACTIONS(4322), 1, anon_sym_COLON, - ACTIONS(4472), 12, + ACTIONS(4320), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -149562,12 +150408,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158266] = 3, + [159223] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4310), 1, + ACTIONS(4170), 1, anon_sym_COLON, - ACTIONS(4308), 12, + ACTIONS(4168), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -149580,12 +150426,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158287] = 3, + [159244] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4306), 1, + ACTIONS(4186), 1, anon_sym_COLON, - ACTIONS(4304), 12, + ACTIONS(4184), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -149598,12 +150444,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158308] = 3, + [159265] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4478), 1, + ACTIONS(4190), 1, anon_sym_COLON, - ACTIONS(4476), 12, + ACTIONS(4188), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -149616,12 +150462,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158329] = 3, + [159286] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4482), 1, + ACTIONS(4434), 1, anon_sym_COLON, - ACTIONS(4480), 12, + ACTIONS(4432), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -149634,12 +150480,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158350] = 3, + [159307] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4302), 1, + ACTIONS(4210), 1, anon_sym_COLON, - ACTIONS(4300), 12, + ACTIONS(4208), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -149652,12 +150498,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158371] = 3, + [159328] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4174), 1, + ACTIONS(4214), 1, anon_sym_COLON, - ACTIONS(4172), 12, + ACTIONS(4212), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -149670,12 +150516,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158392] = 3, + [159349] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4482), 1, + ACTIONS(4418), 1, anon_sym_COLON, - ACTIONS(4480), 12, + ACTIONS(4416), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -149688,12 +150534,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158413] = 3, + [159370] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4182), 1, + ACTIONS(4422), 1, anon_sym_COLON, - ACTIONS(4180), 12, + ACTIONS(4420), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -149706,12 +150552,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158434] = 3, + [159391] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4298), 1, + ACTIONS(4222), 1, anon_sym_COLON, - ACTIONS(4296), 12, + ACTIONS(4220), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -149724,12 +150570,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158455] = 3, + [159412] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4294), 1, + ACTIONS(4226), 1, anon_sym_COLON, - ACTIONS(4292), 12, + ACTIONS(4224), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -149742,12 +150588,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158476] = 3, + [159433] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4474), 1, + ACTIONS(4234), 1, anon_sym_COLON, - ACTIONS(4472), 12, + ACTIONS(4232), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -149760,12 +150606,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158497] = 3, + [159454] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4142), 1, + ACTIONS(4238), 1, anon_sym_COLON, - ACTIONS(4140), 12, + ACTIONS(4236), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -149778,12 +150624,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158518] = 3, + [159475] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4182), 1, + ACTIONS(4250), 1, anon_sym_COLON, - ACTIONS(4180), 12, + ACTIONS(4248), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -149796,12 +150642,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158539] = 3, + [159496] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4290), 1, + ACTIONS(4254), 1, anon_sym_COLON, - ACTIONS(4288), 12, + ACTIONS(4252), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -149814,12 +150660,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158560] = 3, + [159517] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4286), 1, + ACTIONS(4434), 1, anon_sym_COLON, - ACTIONS(4284), 12, + ACTIONS(4432), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -149832,12 +150678,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158581] = 3, + [159538] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4478), 1, + ACTIONS(4434), 1, anon_sym_COLON, - ACTIONS(4476), 12, + ACTIONS(4432), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -149850,12 +150696,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158602] = 3, + [159559] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4482), 1, + ACTIONS(4446), 1, anon_sym_COLON, - ACTIONS(4480), 12, + ACTIONS(4444), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -149868,12 +150714,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158623] = 3, + [159580] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4482), 1, + ACTIONS(4450), 1, anon_sym_COLON, - ACTIONS(4480), 12, + ACTIONS(4448), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -149886,12 +150732,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158644] = 3, + [159601] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4486), 1, + ACTIONS(4454), 1, anon_sym_COLON, - ACTIONS(4484), 12, + ACTIONS(4452), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -149904,12 +150750,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158665] = 3, + [159622] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4490), 1, + ACTIONS(4458), 1, anon_sym_COLON, - ACTIONS(4488), 12, + ACTIONS(4456), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -149922,12 +150768,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158686] = 3, + [159643] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4210), 1, + ACTIONS(4462), 1, anon_sym_COLON, - ACTIONS(4208), 12, + ACTIONS(4460), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -149940,12 +150786,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158707] = 3, + [159664] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4214), 1, + ACTIONS(4382), 1, anon_sym_COLON, - ACTIONS(4212), 12, + ACTIONS(4380), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -149958,12 +150804,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158728] = 3, + [159685] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4258), 1, + ACTIONS(4378), 1, anon_sym_COLON, - ACTIONS(4256), 12, + ACTIONS(4376), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -149976,12 +150822,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158749] = 3, + [159706] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4254), 1, + ACTIONS(4366), 1, anon_sym_COLON, - ACTIONS(4252), 12, + ACTIONS(4364), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -149994,12 +150840,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158770] = 3, + [159727] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4250), 1, + ACTIONS(4478), 1, anon_sym_COLON, - ACTIONS(4248), 12, + ACTIONS(4476), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150012,12 +150858,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158791] = 3, + [159748] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4182), 1, + ACTIONS(4358), 1, anon_sym_COLON, - ACTIONS(4180), 12, + ACTIONS(4356), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150030,12 +150876,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158812] = 3, + [159769] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4494), 1, + ACTIONS(5925), 2, anon_sym_COLON, - ACTIONS(4492), 12, + anon_sym_AT, + ACTIONS(5923), 11, + aux_sym_num_lit_token1, + anon_sym_TILDE, + anon_sym_SQUOTE, + anon_sym_COMMA, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_STAR, + aux_sym_format_directive_type_token11, + [159790] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4342), 1, + anon_sym_COLON, + ACTIONS(4340), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150048,12 +150912,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158833] = 3, + [159811] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4498), 1, + ACTIONS(4338), 1, anon_sym_COLON, - ACTIONS(4496), 12, + ACTIONS(4336), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150066,12 +150930,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158854] = 3, + [159832] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4218), 1, + ACTIONS(4462), 1, anon_sym_COLON, - ACTIONS(4216), 12, + ACTIONS(4460), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150084,12 +150948,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158875] = 3, + [159853] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4222), 1, + ACTIONS(4478), 1, anon_sym_COLON, - ACTIONS(4220), 12, + ACTIONS(4476), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150102,12 +150966,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158896] = 3, + [159874] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4242), 1, + ACTIONS(5933), 1, + anon_sym_STAR, + ACTIONS(5929), 2, anon_sym_COLON, - ACTIONS(4240), 12, + anon_sym_AT, + ACTIONS(5931), 4, + anon_sym_TILDE, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5927), 6, + aux_sym_num_lit_token1, + anon_sym_SQUOTE, + anon_sym_COMMA, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + aux_sym_format_directive_type_token11, + [159899] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4326), 1, + anon_sym_COLON, + ACTIONS(4324), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150120,19 +151004,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158917] = 5, + [159920] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(5795), 7, + ACTIONS(5775), 7, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -150140,19 +151024,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, anon_sym_POUNDC, anon_sym_POUNDc, - [158942] = 5, + [159945] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(5813), 7, + ACTIONS(5831), 7, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -150160,12 +151044,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, anon_sym_POUNDC, anon_sym_POUNDc, - [158967] = 3, + [159970] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4226), 1, + ACTIONS(4490), 1, anon_sym_COLON, - ACTIONS(4224), 12, + ACTIONS(4488), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150178,12 +151062,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158988] = 3, + [159991] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4506), 1, + ACTIONS(4458), 1, anon_sym_COLON, - ACTIONS(4504), 12, + ACTIONS(4456), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150196,12 +151080,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [159009] = 3, + [160012] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4502), 1, + ACTIONS(4282), 1, anon_sym_COLON, - ACTIONS(4500), 12, + ACTIONS(4280), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150214,12 +151098,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [159030] = 3, + [160033] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4506), 1, + ACTIONS(4146), 1, anon_sym_COLON, - ACTIONS(4504), 12, + ACTIONS(4144), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150232,12 +151116,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [159051] = 3, + [160054] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4510), 1, + ACTIONS(4462), 1, anon_sym_COLON, - ACTIONS(4508), 12, + ACTIONS(4460), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150250,12 +151134,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [159072] = 3, + [160075] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4498), 1, + ACTIONS(4478), 1, anon_sym_COLON, - ACTIONS(4496), 12, + ACTIONS(4476), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150268,12 +151152,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [159093] = 3, + [160096] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4230), 1, + ACTIONS(4462), 1, anon_sym_COLON, - ACTIONS(4228), 12, + ACTIONS(4460), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150286,12 +151170,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [159114] = 3, + [160117] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4502), 1, + ACTIONS(4478), 1, anon_sym_COLON, - ACTIONS(4500), 12, + ACTIONS(4476), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150304,12 +151188,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [159135] = 3, + [160138] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4506), 1, + ACTIONS(4486), 1, anon_sym_COLON, - ACTIONS(4504), 12, + ACTIONS(4484), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150322,30 +151206,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [159156] = 3, + [160159] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4402), 1, + ACTIONS(5939), 2, anon_sym_COLON, - ACTIONS(4400), 12, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - aux_sym_sym_lit_token1, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_POUND_QMARK, + anon_sym_AT, + ACTIONS(5937), 11, + aux_sym_num_lit_token1, + anon_sym_TILDE, + anon_sym_SQUOTE, anon_sym_COMMA, - [159177] = 3, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_STAR, + aux_sym_format_directive_type_token11, + [160180] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4234), 1, + ACTIONS(4370), 1, anon_sym_COLON, - ACTIONS(4232), 12, + ACTIONS(4368), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150358,12 +151242,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [159198] = 3, + [160201] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4238), 1, + ACTIONS(4154), 1, anon_sym_COLON, - ACTIONS(4236), 12, + ACTIONS(4152), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150376,12 +151260,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [159219] = 3, + [160222] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4278), 1, + ACTIONS(4290), 1, anon_sym_COLON, - ACTIONS(4276), 12, + ACTIONS(4288), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150394,12 +151278,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [159240] = 3, + [160243] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4502), 1, + ACTIONS(4286), 1, anon_sym_COLON, - ACTIONS(4500), 12, + ACTIONS(4284), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150412,12 +151296,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [159261] = 3, + [160264] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4506), 1, + ACTIONS(4294), 1, anon_sym_COLON, - ACTIONS(4504), 12, + ACTIONS(4292), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150430,7 +151314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [159282] = 3, + [160285] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(4510), 1, @@ -150448,12 +151332,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [159303] = 3, + [160306] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4514), 1, + ACTIONS(4294), 1, anon_sym_COLON, - ACTIONS(4512), 12, + ACTIONS(4292), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150466,12 +151350,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [159324] = 3, + [160327] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4278), 1, + ACTIONS(4510), 1, anon_sym_COLON, - ACTIONS(4276), 12, + ACTIONS(4508), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150484,30 +151368,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [159345] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5901), 2, - anon_sym_COLON, - anon_sym_AT, - ACTIONS(5899), 11, - aux_sym_num_lit_token1, - anon_sym_TILDE, - anon_sym_SQUOTE, - anon_sym_COMMA, - anon_sym_AT_COLON, - anon_sym_COLON_AT, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_STAR, - aux_sym_format_directive_type_token11, - [159366] = 3, + [160348] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4462), 1, + ACTIONS(4426), 1, anon_sym_COLON, - ACTIONS(4460), 12, + ACTIONS(4424), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150520,12 +151386,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [159387] = 3, + [160369] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4462), 1, + ACTIONS(4402), 1, anon_sym_COLON, - ACTIONS(4460), 12, + ACTIONS(4400), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150538,50 +151404,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [159408] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5905), 2, - anon_sym_COLON, - anon_sym_AT, - ACTIONS(5903), 11, - aux_sym_num_lit_token1, - anon_sym_TILDE, - anon_sym_SQUOTE, - anon_sym_COMMA, - anon_sym_AT_COLON, - anon_sym_COLON_AT, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_STAR, - aux_sym_format_directive_type_token11, - [159429] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5913), 1, - anon_sym_STAR, - ACTIONS(5909), 2, - anon_sym_COLON, - anon_sym_AT, - ACTIONS(5911), 4, - anon_sym_TILDE, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5907), 6, - aux_sym_num_lit_token1, - anon_sym_SQUOTE, - anon_sym_COMMA, - anon_sym_AT_COLON, - anon_sym_COLON_AT, - aux_sym_format_directive_type_token11, - [159454] = 3, + [160390] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4402), 1, + ACTIONS(4510), 1, anon_sym_COLON, - ACTIONS(4400), 12, + ACTIONS(4508), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150594,12 +151422,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [159475] = 3, + [160411] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4142), 1, + ACTIONS(4402), 1, anon_sym_COLON, - ACTIONS(4140), 12, + ACTIONS(4400), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150612,12 +151440,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [159496] = 3, + [160432] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4430), 1, + ACTIONS(4346), 1, anon_sym_COLON, - ACTIONS(4428), 12, + ACTIONS(4344), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150630,12 +151458,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [159517] = 3, + [160453] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4462), 1, + ACTIONS(4510), 1, anon_sym_COLON, - ACTIONS(4460), 12, + ACTIONS(4508), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150648,1202 +151476,1180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [159538] = 3, + [160474] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4462), 1, - anon_sym_COLON, - ACTIONS(4460), 12, + ACTIONS(5941), 1, + aux_sym_num_lit_token2, + ACTIONS(4134), 11, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - aux_sym_sym_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_POUND_QMARK, - anon_sym_COMMA, - [159559] = 3, + anon_sym_POUNDC, + anon_sym_POUNDc, + [160494] = 8, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5915), 1, - aux_sym_num_lit_token2, - ACTIONS(4134), 11, - sym__ws, - sym_comment, - anon_sym_POUND_, + ACTIONS(5943), 1, anon_sym_CARET, + ACTIONS(5946), 1, anon_sym_POUND_CARET, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2362), 1, + aux_sym_list_lit_repeat1, + ACTIONS(5861), 5, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_POUNDC, anon_sym_POUNDc, - [159579] = 8, + [160523] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(1525), 1, + STATE(1039), 1, sym_list_lit, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2433), 1, + STATE(2422), 1, aux_sym_list_lit_repeat1, - ACTIONS(5917), 3, + ACTIONS(5949), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1493), 3, + STATE(1073), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [159608] = 10, + [160552] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4703), 1, + ACTIONS(830), 1, + anon_sym_LPAREN, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - ACTIONS(5919), 1, - aux_sym_num_lit_token1, - STATE(2239), 1, + STATE(856), 1, + sym_list_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2653), 1, + STATE(2420), 1, aux_sym_list_lit_repeat1, - ACTIONS(57), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - STATE(1445), 2, - sym_num_lit, - sym_complex_num_lit, - [159641] = 10, + STATE(928), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [160585] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - ACTIONS(5921), 1, + ACTIONS(5951), 1, aux_sym_num_lit_token1, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2767), 1, + STATE(2471), 1, aux_sym_list_lit_repeat1, - ACTIONS(242), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - STATE(1039), 2, + STATE(2300), 2, sym_num_lit, sym_complex_num_lit, - [159674] = 10, + [160618] = 8, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4703), 1, - anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, - ACTIONS(5923), 1, - aux_sym_num_lit_token1, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2653), 1, + STATE(2347), 1, + sym_list_lit, + STATE(2436), 1, aux_sym_list_lit_repeat1, - ACTIONS(57), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - STATE(1445), 2, - sym_num_lit, - sym_complex_num_lit, - [159707] = 10, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(600), 1, - anon_sym_LPAREN, - ACTIONS(4703), 1, + ACTIONS(5949), 3, anon_sym_CARET, - ACTIONS(4705), 1, anon_sym_POUND_CARET, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2302), 1, - sym_list_lit, - STATE(2424), 1, - aux_sym_list_lit_repeat1, - STATE(2269), 3, + anon_sym_LPAREN, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [159740] = 8, + [160647] = 4, ACTIONS(47), 1, sym_block_comment, - STATE(1863), 1, - sym_list_lit, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2417), 1, - aux_sym_list_lit_repeat1, - ACTIONS(5917), 3, + ACTIONS(5953), 1, + anon_sym_COLON, + ACTIONS(5955), 1, + anon_sym_COLON_COLON, + ACTIONS(4500), 9, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_DQUOTE, + aux_sym_sym_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, - anon_sym_LPAREN, - STATE(1886), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [159769] = 8, + anon_sym_LBRACE, + anon_sym_POUND_QMARK, + [160668] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2262), 1, - sym_list_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2424), 1, + STATE(2347), 1, + sym_list_lit, + STATE(2441), 1, aux_sym_list_lit_repeat1, - ACTIONS(5917), 3, + ACTIONS(5949), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(2269), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [159798] = 10, + [160697] = 8, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(4703), 1, - anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, - STATE(2239), 1, + STATE(1793), 1, + sym_list_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2302), 1, - sym_list_lit, - STATE(2397), 1, + STATE(2447), 1, aux_sym_list_lit_repeat1, - STATE(2269), 3, + ACTIONS(5949), 3, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + STATE(1746), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [159831] = 8, + [160726] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(2239), 1, + STATE(880), 1, + sym_list_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2304), 1, - sym_list_lit, - STATE(2424), 1, + STATE(2420), 1, aux_sym_list_lit_repeat1, - ACTIONS(5917), 3, + ACTIONS(5949), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(2269), 3, + STATE(928), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [159860] = 8, + [160755] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2304), 1, + STATE(2347), 1, sym_list_lit, - STATE(2397), 1, + STATE(2451), 1, aux_sym_list_lit_repeat1, - ACTIONS(5917), 3, + ACTIONS(5949), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(2269), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [159889] = 10, + [160784] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4703), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - ACTIONS(5925), 1, - aux_sym_num_lit_token1, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2768), 1, + STATE(2350), 1, + sym_list_lit, + STATE(2451), 1, aux_sym_list_lit_repeat1, - ACTIONS(969), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - STATE(1676), 2, - sym_num_lit, - sym_complex_num_lit, - [159922] = 10, + STATE(2282), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [160817] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - ACTIONS(5927), 1, + ACTIONS(5957), 1, aux_sym_num_lit_token1, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2762), 1, + STATE(2470), 1, aux_sym_list_lit_repeat1, - ACTIONS(514), 2, + ACTIONS(598), 2, anon_sym_POUNDC, anon_sym_POUNDc, - STATE(1315), 2, + STATE(1374), 2, sym_num_lit, sym_complex_num_lit, - [159955] = 8, + [160850] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(1781), 1, - sym_list_lit, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2425), 1, + STATE(2297), 1, + sym_list_lit, + STATE(2451), 1, aux_sym_list_lit_repeat1, - ACTIONS(5917), 3, + ACTIONS(5949), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1793), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [159984] = 10, + [160879] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(288), 1, + ACTIONS(640), 1, anon_sym_LPAREN, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - STATE(1775), 1, - sym_list_lit, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2425), 1, + STATE(2350), 1, + sym_list_lit, + STATE(2441), 1, aux_sym_list_lit_repeat1, - STATE(1793), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [160017] = 8, + [160912] = 10, ACTIONS(47), 1, sym_block_comment, - STATE(1781), 1, - sym_list_lit, - STATE(2239), 1, + ACTIONS(4707), 1, + anon_sym_CARET, + ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(5959), 1, + aux_sym_num_lit_token1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2437), 1, + STATE(2467), 1, aux_sym_list_lit_repeat1, - ACTIONS(5917), 3, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - STATE(1793), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [160046] = 10, + ACTIONS(242), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + STATE(1061), 2, + sym_num_lit, + sym_complex_num_lit, + [160945] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(811), 1, - anon_sym_LPAREN, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - STATE(1775), 1, - sym_list_lit, - STATE(2239), 1, + ACTIONS(5961), 1, + aux_sym_num_lit_token1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2437), 1, + STATE(2464), 1, aux_sym_list_lit_repeat1, - STATE(1793), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [160079] = 8, + ACTIONS(706), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + STATE(1199), 2, + sym_num_lit, + sym_complex_num_lit, + [160978] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(1711), 1, + STATE(1478), 1, sym_list_lit, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2437), 1, + STATE(2432), 1, aux_sym_list_lit_repeat1, - ACTIONS(5917), 3, + ACTIONS(5949), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1793), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [160108] = 8, + [161007] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(1711), 1, + STATE(1836), 1, sym_list_lit, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2425), 1, + STATE(2440), 1, aux_sym_list_lit_repeat1, - ACTIONS(5917), 3, + ACTIONS(5949), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1793), 3, + STATE(1800), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [160137] = 10, + [161036] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4703), 1, + ACTIONS(5953), 1, + anon_sym_COLON, + ACTIONS(5955), 1, + anon_sym_COLON_COLON, + ACTIONS(4496), 9, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_DQUOTE, + aux_sym_sym_lit_token1, anon_sym_CARET, - ACTIONS(4705), 1, anon_sym_POUND_CARET, - ACTIONS(5929), 1, + anon_sym_LBRACE, + anon_sym_POUND_QMARK, + [161057] = 10, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4707), 1, + anon_sym_CARET, + ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2765), 1, + STATE(2758), 1, aux_sym_list_lit_repeat1, - ACTIONS(564), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - STATE(1901), 2, + STATE(1464), 2, sym_num_lit, sym_complex_num_lit, - [160170] = 8, - ACTIONS(47), 1, - sym_block_comment, - STATE(1470), 1, - sym_list_lit, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2433), 1, - aux_sym_list_lit_repeat1, - ACTIONS(5917), 3, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - STATE(1493), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [160199] = 8, + [161090] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(872), 1, + STATE(1348), 1, sym_list_lit, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2431), 1, + STATE(2453), 1, aux_sym_list_lit_repeat1, - ACTIONS(5917), 3, + ACTIONS(5949), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(823), 3, + STATE(1387), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [160228] = 10, - ACTIONS(29), 1, - anon_sym_LPAREN, + [161119] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - STATE(1475), 1, - sym_list_lit, - STATE(2239), 1, + ACTIONS(5965), 1, + aux_sym_num_lit_token1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2433), 1, + STATE(2466), 1, aux_sym_list_lit_repeat1, - STATE(1493), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [160261] = 10, + ACTIONS(818), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + STATE(1775), 2, + sym_num_lit, + sym_complex_num_lit, + [161152] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(658), 1, + ACTIONS(570), 1, anon_sym_LPAREN, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - STATE(849), 1, + STATE(1346), 1, sym_list_lit, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2431), 1, + STATE(2453), 1, aux_sym_list_lit_repeat1, - STATE(823), 3, + STATE(1387), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [160294] = 10, + [161185] = 8, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(4703), 1, - anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, - STATE(1915), 1, + STATE(828), 1, sym_list_lit, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2417), 1, + STATE(2420), 1, aux_sym_list_lit_repeat1, - STATE(1886), 3, + ACTIONS(5949), 3, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + STATE(928), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [160327] = 8, + [161214] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(847), 1, + STATE(1836), 1, sym_list_lit, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2431), 1, + STATE(2434), 1, aux_sym_list_lit_repeat1, - ACTIONS(5917), 3, + ACTIONS(5949), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(823), 3, + STATE(1800), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [160356] = 10, + [161243] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(941), 1, - anon_sym_LPAREN, - ACTIONS(4703), 1, + ACTIONS(5953), 1, + anon_sym_COLON, + ACTIONS(5955), 1, + anon_sym_COLON_COLON, + ACTIONS(4464), 9, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_DQUOTE, + aux_sym_sym_lit_token1, anon_sym_CARET, - ACTIONS(4705), 1, anon_sym_POUND_CARET, - STATE(1661), 1, - sym_list_lit, - STATE(2239), 1, + anon_sym_LBRACE, + anon_sym_POUND_QMARK, + [161264] = 10, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4707), 1, + anon_sym_CARET, + ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(5967), 1, + aux_sym_num_lit_token1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2404), 1, + STATE(2469), 1, aux_sym_list_lit_repeat1, - STATE(1688), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [160389] = 8, + ACTIONS(318), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + STATE(1813), 2, + sym_num_lit, + sym_complex_num_lit, + [161297] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(1913), 1, - sym_list_lit, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2417), 1, + STATE(2297), 1, + sym_list_lit, + STATE(2441), 1, aux_sym_list_lit_repeat1, - ACTIONS(5917), 3, + ACTIONS(5949), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1886), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [160418] = 10, + [161326] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - ACTIONS(5931), 1, + ACTIONS(5969), 1, aux_sym_num_lit_token1, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2769), 1, + STATE(2468), 1, aux_sym_list_lit_repeat1, - ACTIONS(99), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - STATE(834), 2, + STATE(1933), 2, sym_num_lit, sym_complex_num_lit, - [160451] = 10, + [161359] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4703), 1, + ACTIONS(790), 1, + anon_sym_LPAREN, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - ACTIONS(5933), 1, - aux_sym_num_lit_token1, - STATE(2239), 1, + STATE(1647), 1, + sym_list_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2764), 1, + STATE(2447), 1, aux_sym_list_lit_repeat1, - ACTIONS(318), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - STATE(1806), 2, - sym_num_lit, - sym_complex_num_lit, - [160484] = 10, + STATE(1746), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [161392] = 8, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4703), 1, - anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, - ACTIONS(5935), 1, - aux_sym_num_lit_token1, - STATE(2239), 1, + STATE(1786), 1, + sym_list_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2774), 1, + STATE(2440), 1, aux_sym_list_lit_repeat1, - ACTIONS(919), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - STATE(1265), 2, - sym_num_lit, - sym_complex_num_lit, - [160517] = 10, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4703), 1, + ACTIONS(5949), 3, anon_sym_CARET, - ACTIONS(4705), 1, anon_sym_POUND_CARET, - ACTIONS(5937), 1, - aux_sym_num_lit_token1, - STATE(2239), 1, + anon_sym_LPAREN, + STATE(1800), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [161421] = 8, + ACTIONS(47), 1, + sym_block_comment, + STATE(1645), 1, + sym_list_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2761), 1, + STATE(2447), 1, aux_sym_list_lit_repeat1, - ACTIONS(628), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - STATE(2292), 2, - sym_num_lit, - sym_complex_num_lit, - [160550] = 4, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5939), 1, - anon_sym_COLON, - ACTIONS(5941), 1, - anon_sym_COLON_COLON, - ACTIONS(4152), 9, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_DQUOTE, - aux_sym_sym_lit_token1, + ACTIONS(5949), 3, anon_sym_CARET, anon_sym_POUND_CARET, - anon_sym_LBRACE, - anon_sym_POUND_QMARK, - [160571] = 8, + anon_sym_LPAREN, + STATE(1746), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [161450] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(1327), 1, + STATE(1786), 1, sym_list_lit, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2435), 1, + STATE(2434), 1, aux_sym_list_lit_repeat1, - ACTIONS(5917), 3, + ACTIONS(5949), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1303), 3, + STATE(1800), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [160600] = 10, + [161479] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(640), 1, - anon_sym_LPAREN, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - STATE(1158), 1, + ACTIONS(5971), 1, + aux_sym_num_lit_token1, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2465), 1, + aux_sym_list_lit_repeat1, + ACTIONS(99), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + STATE(820), 2, + sym_num_lit, + sym_complex_num_lit, + [161512] = 8, + ACTIONS(47), 1, + sym_block_comment, + STATE(1945), 1, sym_list_lit, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2409), 1, + STATE(2421), 1, aux_sym_list_lit_repeat1, - STATE(1015), 3, + ACTIONS(5949), 3, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [160633] = 10, + [161541] = 10, ACTIONS(47), 1, sym_block_comment, ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - STATE(1329), 1, + STATE(1947), 1, sym_list_lit, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2435), 1, + STATE(2421), 1, aux_sym_list_lit_repeat1, - STATE(1303), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [160666] = 8, + [161574] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(1160), 1, + STATE(1315), 1, sym_list_lit, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2409), 1, + STATE(2453), 1, aux_sym_list_lit_repeat1, - ACTIONS(5917), 3, + ACTIONS(5949), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1015), 3, + STATE(1387), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [160695] = 8, + [161603] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(1218), 1, + STATE(1965), 1, sym_list_lit, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2401), 1, + STATE(2421), 1, aux_sym_list_lit_repeat1, - ACTIONS(5917), 3, + ACTIONS(5949), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1275), 3, + STATE(1924), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [160724] = 8, + [161632] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5943), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(5946), 1, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - STATE(2239), 1, + ACTIONS(5973), 1, + aux_sym_num_lit_token1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2379), 1, + STATE(2758), 1, aux_sym_list_lit_repeat1, - ACTIONS(5831), 5, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_POUND_QMARK, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - [160753] = 8, + STATE(1464), 2, + sym_num_lit, + sym_complex_num_lit, + [161665] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(1642), 1, + STATE(1221), 1, sym_list_lit, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2404), 1, + STATE(2430), 1, aux_sym_list_lit_repeat1, - ACTIONS(5917), 3, + ACTIONS(5949), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1688), 3, + STATE(1174), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [160782] = 8, + [161694] = 10, ACTIONS(47), 1, sym_block_comment, - STATE(2239), 1, + ACTIONS(678), 1, + anon_sym_LPAREN, + ACTIONS(4707), 1, + anon_sym_CARET, + ACTIONS(4709), 1, + anon_sym_POUND_CARET, + STATE(1224), 1, + sym_list_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2304), 1, - sym_list_lit, - STATE(2394), 1, + STATE(2430), 1, aux_sym_list_lit_repeat1, - ACTIONS(5917), 3, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - STATE(2269), 3, + STATE(1174), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [160811] = 10, + [161727] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(891), 1, - anon_sym_LPAREN, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - STATE(1198), 1, + ACTIONS(5975), 1, + aux_sym_num_lit_token1, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2471), 1, + aux_sym_list_lit_repeat1, + ACTIONS(514), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + STATE(2300), 2, + sym_num_lit, + sym_complex_num_lit, + [161760] = 8, + ACTIONS(47), 1, + sym_block_comment, + STATE(1180), 1, sym_list_lit, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2401), 1, + STATE(2430), 1, aux_sym_list_lit_repeat1, - STATE(1275), 3, + ACTIONS(5949), 3, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + STATE(1174), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [160844] = 10, + [161789] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(811), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - STATE(2239), 1, + STATE(1838), 1, + sym_list_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2302), 1, - sym_list_lit, - STATE(2394), 1, + STATE(2434), 1, aux_sym_list_lit_repeat1, - STATE(2269), 3, + STATE(1800), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [160877] = 10, + [161822] = 8, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4703), 1, - anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, - ACTIONS(5949), 1, - aux_sym_num_lit_token1, - STATE(2239), 1, + STATE(1499), 1, + sym_list_lit, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2761), 1, + STATE(2432), 1, aux_sym_list_lit_repeat1, - ACTIONS(628), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - STATE(2292), 2, - sym_num_lit, - sym_complex_num_lit, - [160910] = 8, + ACTIONS(5949), 3, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + STATE(1451), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [161851] = 10, ACTIONS(47), 1, sym_block_comment, - STATE(1208), 1, + ACTIONS(526), 1, + anon_sym_LPAREN, + ACTIONS(4707), 1, + anon_sym_CARET, + ACTIONS(4709), 1, + anon_sym_POUND_CARET, + STATE(1037), 1, sym_list_lit, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2401), 1, + STATE(2422), 1, aux_sym_list_lit_repeat1, - ACTIONS(5917), 3, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - STATE(1275), 3, + STATE(1073), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [160939] = 8, + [161884] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(1134), 1, + STATE(1016), 1, sym_list_lit, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2409), 1, + STATE(2422), 1, aux_sym_list_lit_repeat1, - ACTIONS(5917), 3, + ACTIONS(5949), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1015), 3, + STATE(1073), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [160968] = 10, + [161913] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4703), 1, + ACTIONS(614), 1, + anon_sym_LPAREN, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - ACTIONS(5951), 1, - aux_sym_num_lit_token1, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2765), 1, + STATE(2350), 1, + sym_list_lit, + STATE(2436), 1, aux_sym_list_lit_repeat1, - ACTIONS(564), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - STATE(1901), 2, - sym_num_lit, - sym_complex_num_lit, - [161001] = 10, + STATE(2282), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [161946] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - ACTIONS(5953), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2764), 1, + STATE(2468), 1, aux_sym_list_lit_repeat1, - ACTIONS(318), 2, + ACTIONS(768), 2, anon_sym_POUNDC, anon_sym_POUNDc, - STATE(1806), 2, + STATE(1933), 2, sym_num_lit, sym_complex_num_lit, - [161034] = 8, - ACTIONS(47), 1, - sym_block_comment, - STATE(1663), 1, - sym_list_lit, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2404), 1, - aux_sym_list_lit_repeat1, - ACTIONS(5917), 3, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - STATE(1688), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [161063] = 8, + [161979] = 10, + ACTIONS(29), 1, + anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - STATE(1348), 1, + ACTIONS(4707), 1, + anon_sym_CARET, + ACTIONS(4709), 1, + anon_sym_POUND_CARET, + STATE(1480), 1, sym_list_lit, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2435), 1, + STATE(2432), 1, aux_sym_list_lit_repeat1, - ACTIONS(5917), 3, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - STATE(1303), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [161092] = 8, + [162012] = 10, ACTIONS(47), 1, sym_block_comment, - STATE(2239), 1, - sym__metadata_lit, - STATE(2262), 1, + ACTIONS(288), 1, + anon_sym_LPAREN, + ACTIONS(4707), 1, + anon_sym_CARET, + ACTIONS(4709), 1, + anon_sym_POUND_CARET, + STATE(1838), 1, sym_list_lit, - STATE(2267), 1, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2397), 1, + STATE(2440), 1, aux_sym_list_lit_repeat1, - ACTIONS(5917), 3, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - STATE(2269), 3, + STATE(1800), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [161121] = 8, + [162045] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2262), 1, - sym_list_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2394), 1, + STATE(2297), 1, + sym_list_lit, + STATE(2436), 1, aux_sym_list_lit_repeat1, - ACTIONS(5917), 3, + ACTIONS(5949), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(2269), 3, + STATE(2282), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [161150] = 4, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5939), 1, - anon_sym_COLON, - ACTIONS(5941), 1, - anon_sym_COLON_COLON, - ACTIONS(4176), 9, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_DQUOTE, - aux_sym_sym_lit_token1, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LBRACE, - anon_sym_POUND_QMARK, - [161171] = 9, + [162074] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(811), 1, - anon_sym_LPAREN, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - STATE(2239), 1, + ACTIONS(5979), 1, + aux_sym_num_lit_token1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2379), 1, + STATE(2469), 1, aux_sym_list_lit_repeat1, - STATE(2324), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [161201] = 3, + ACTIONS(318), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + STATE(1813), 2, + sym_num_lit, + sym_complex_num_lit, + [162107] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4146), 1, + ACTIONS(4430), 1, anon_sym_COLON, - ACTIONS(4144), 9, + ACTIONS(4428), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -151853,12 +152659,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [161219] = 3, + [162125] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4150), 1, + ACTIONS(4334), 1, anon_sym_COLON, - ACTIONS(4148), 9, + ACTIONS(4332), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -151868,33 +152674,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [161237] = 9, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(4703), 1, - anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2379), 1, - aux_sym_list_lit_repeat1, - STATE(2324), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [161267] = 3, + [162143] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4370), 1, + ACTIONS(4410), 1, anon_sym_COLON, - ACTIONS(4368), 9, + ACTIONS(4408), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -151904,12 +152689,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [161285] = 3, + [162161] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4346), 1, + ACTIONS(4278), 1, anon_sym_COLON, - ACTIONS(4344), 9, + ACTIONS(4276), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -151919,99 +152704,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [161303] = 3, + [162179] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4318), 1, - anon_sym_COLON, - ACTIONS(4316), 9, + ACTIONS(5984), 1, + anon_sym_POUND_, + ACTIONS(5981), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - aux_sym_sym_lit_token1, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_COMMA, - [161321] = 9, + STATE(2419), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(4104), 4, + aux_sym_num_lit_token1, + anon_sym_cl, + anon_sym_EQ, + anon_sym_into, + [162201] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(891), 1, + ACTIONS(830), 1, anon_sym_LPAREN, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2379), 1, + STATE(2362), 1, aux_sym_list_lit_repeat1, - STATE(1222), 3, + STATE(867), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [161351] = 3, + [162231] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4282), 1, - anon_sym_COLON, - ACTIONS(4280), 9, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - aux_sym_sym_lit_token1, - anon_sym_CARET, - anon_sym_POUND_CARET, + ACTIONS(486), 1, anon_sym_LPAREN, - anon_sym_COMMA, - [161369] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4262), 1, - anon_sym_COLON, - ACTIONS(4260), 9, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - aux_sym_sym_lit_token1, + ACTIONS(4707), 1, anon_sym_CARET, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_COMMA, - [161387] = 9, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2362), 1, + aux_sym_list_lit_repeat1, + STATE(1941), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [162261] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(941), 1, + ACTIONS(526), 1, anon_sym_LPAREN, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2379), 1, + STATE(2362), 1, aux_sym_list_lit_repeat1, - STATE(1667), 3, + STATE(1044), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [161417] = 3, + [162291] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4202), 1, + ACTIONS(4162), 1, anon_sym_COLON, - ACTIONS(4200), 9, + ACTIONS(4160), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -152021,12 +152799,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [161435] = 3, + [162309] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4206), 1, + ACTIONS(4246), 1, anon_sym_COLON, - ACTIONS(4204), 9, + ACTIONS(4244), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -152036,12 +152814,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [161453] = 3, + [162327] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4198), 1, + ACTIONS(4482), 1, anon_sym_COLON, - ACTIONS(4196), 9, + ACTIONS(4480), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -152051,48 +152829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [161471] = 8, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5037), 1, - aux_sym_num_lit_token1, - ACTIONS(5045), 1, - anon_sym_SQUOTE, - ACTIONS(5957), 1, - anon_sym_COMMA, - ACTIONS(5961), 1, - aux_sym_format_directive_type_token11, - ACTIONS(5955), 2, - anon_sym_COLON, - anon_sym_AT, - ACTIONS(5959), 2, - anon_sym_AT_COLON, - anon_sym_COLON_AT, - STATE(2432), 2, - sym__format_token, - aux_sym_format_modifiers_repeat1, - [161499] = 9, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(640), 1, - anon_sym_LPAREN, - ACTIONS(4703), 1, - anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2379), 1, - aux_sym_list_lit_repeat1, - STATE(1006), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [161529] = 3, + [162345] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(4194), 1, @@ -152107,12 +152844,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [161547] = 3, + [162363] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4450), 1, + ACTIONS(4258), 1, anon_sym_COLON, - ACTIONS(4448), 9, + ACTIONS(4256), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -152122,12 +152859,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [161565] = 3, + [162381] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4426), 1, + ACTIONS(4270), 1, anon_sym_COLON, - ACTIONS(4424), 9, + ACTIONS(4268), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -152137,12 +152874,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [161583] = 3, + [162399] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4190), 1, + ACTIONS(4518), 1, anon_sym_COLON, - ACTIONS(4188), 9, + ACTIONS(4516), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -152152,12 +152889,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [161601] = 3, + [162417] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4422), 1, + ACTIONS(678), 1, + anon_sym_LPAREN, + ACTIONS(4707), 1, + anon_sym_CARET, + ACTIONS(4709), 1, + anon_sym_POUND_CARET, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2362), 1, + aux_sym_list_lit_repeat1, + STATE(1218), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [162447] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4150), 1, anon_sym_COLON, - ACTIONS(4420), 9, + ACTIONS(4148), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -152167,29 +152925,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [161619] = 5, + [162465] = 9, + ACTIONS(29), 1, + anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5966), 1, - anon_sym_POUND_, - ACTIONS(5963), 2, - sym__ws, - sym_comment, - STATE(2415), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(4132), 4, + ACTIONS(4707), 1, anon_sym_CARET, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_COMMA, - [161641] = 3, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2362), 1, + aux_sym_list_lit_repeat1, + STATE(1473), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [162495] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4246), 1, + ACTIONS(4386), 1, anon_sym_COLON, - ACTIONS(4244), 9, + ACTIONS(4384), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -152199,33 +152961,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [161659] = 9, + [162513] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2379), 1, + STATE(2362), 1, aux_sym_list_lit_repeat1, - STATE(1910), 3, + STATE(1831), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [161689] = 3, + [162543] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4146), 1, + ACTIONS(4274), 1, anon_sym_COLON, - ACTIONS(4144), 9, + ACTIONS(4272), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -152235,42 +152997,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [161707] = 3, + [162561] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4398), 1, - anon_sym_COLON, - ACTIONS(4396), 9, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - aux_sym_sym_lit_token1, + ACTIONS(614), 1, + anon_sym_LPAREN, + ACTIONS(4707), 1, anon_sym_CARET, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_COMMA, - [161725] = 3, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2362), 1, + aux_sym_list_lit_repeat1, + STATE(2301), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [162591] = 8, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4266), 1, - anon_sym_COLON, - ACTIONS(4264), 9, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - aux_sym_sym_lit_token1, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, + ACTIONS(5041), 1, + aux_sym_num_lit_token1, + ACTIONS(5049), 1, + anon_sym_SQUOTE, + ACTIONS(5989), 1, anon_sym_COMMA, - [161743] = 3, + ACTIONS(5993), 1, + aux_sym_format_directive_type_token11, + ACTIONS(5987), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(5991), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + STATE(2459), 2, + sym__format_token, + aux_sym_format_modifiers_repeat1, + [162619] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4394), 1, + ACTIONS(4218), 1, anon_sym_COLON, - ACTIONS(4392), 9, + ACTIONS(4216), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -152280,12 +153053,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [161761] = 3, + [162637] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4170), 1, + ACTIONS(4330), 1, anon_sym_COLON, - ACTIONS(4168), 9, + ACTIONS(4328), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -152295,71 +153068,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [161779] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5972), 1, - anon_sym_POUND_, - ACTIONS(5969), 2, - sym__ws, - sym_comment, - STATE(2423), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(4132), 4, - aux_sym_num_lit_token1, - anon_sym_cl, - anon_sym_EQ, - anon_sym_into, - [161801] = 9, + [162655] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(600), 1, + ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2379), 1, + STATE(2362), 1, aux_sym_list_lit_repeat1, - STATE(2324), 3, + STATE(1831), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [161831] = 9, + [162685] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(288), 1, + ACTIONS(640), 1, anon_sym_LPAREN, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2379), 1, + STATE(2362), 1, aux_sym_list_lit_repeat1, - STATE(1824), 3, + STATE(2301), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [161861] = 3, + [162715] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4270), 1, + ACTIONS(4390), 1, anon_sym_COLON, - ACTIONS(4268), 9, + ACTIONS(4388), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -152369,44 +153125,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [161879] = 4, + [162733] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5975), 1, + ACTIONS(4414), 1, anon_sym_COLON, - ACTIONS(5977), 1, - anon_sym_COLON_COLON, - ACTIONS(4176), 8, + ACTIONS(4412), 9, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, aux_sym_sym_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [161899] = 4, + [162751] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5975), 1, + ACTIONS(4262), 1, anon_sym_COLON, - ACTIONS(5977), 1, - anon_sym_COLON_COLON, - ACTIONS(4152), 8, + ACTIONS(4260), 9, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, aux_sym_sym_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [161919] = 3, + [162769] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4358), 1, + ACTIONS(4158), 1, anon_sym_COLON, - ACTIONS(4356), 9, + ACTIONS(4156), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -152416,12 +153170,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [161937] = 3, + [162787] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4354), 1, + ACTIONS(4302), 1, anon_sym_COLON, - ACTIONS(4352), 9, + ACTIONS(4300), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -152431,109 +153185,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [161955] = 9, + [162805] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(658), 1, + ACTIONS(790), 1, anon_sym_LPAREN, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2379), 1, + STATE(2362), 1, aux_sym_list_lit_repeat1, - STATE(843), 3, + STATE(1783), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [161985] = 7, + [162835] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5979), 1, - aux_sym_num_lit_token1, - ACTIONS(5984), 1, - anon_sym_SQUOTE, - ACTIONS(5987), 1, + ACTIONS(4438), 1, + anon_sym_COLON, + ACTIONS(4436), 9, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + aux_sym_sym_lit_token1, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, anon_sym_COMMA, - ACTIONS(5982), 2, + [162853] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4514), 1, anon_sym_COLON, - anon_sym_AT, - STATE(2432), 2, - sym__format_token, - aux_sym_format_modifiers_repeat1, - ACTIONS(5990), 3, - anon_sym_AT_COLON, - anon_sym_COLON_AT, - aux_sym_format_directive_type_token11, - [162011] = 9, - ACTIONS(29), 1, + ACTIONS(4512), 9, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + aux_sym_sym_lit_token1, + anon_sym_CARET, + anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_COMMA, + [162871] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4703), 1, + ACTIONS(5998), 1, + anon_sym_POUND_, + ACTIONS(5995), 2, + sym__ws, + sym_comment, + STATE(2450), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(4104), 4, anon_sym_CARET, - ACTIONS(4705), 1, anon_sym_POUND_CARET, - STATE(2239), 1, + anon_sym_LPAREN, + anon_sym_COMMA, + [162893] = 9, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(4707), 1, + anon_sym_CARET, + ACTIONS(4709), 1, + anon_sym_POUND_CARET, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2379), 1, + STATE(2362), 1, aux_sym_list_lit_repeat1, - STATE(1447), 3, + STATE(2301), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [162041] = 3, + [162923] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4274), 1, + ACTIONS(6001), 1, anon_sym_COLON, - ACTIONS(4272), 9, + ACTIONS(6003), 1, + anon_sym_COLON_COLON, + ACTIONS(4464), 8, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, aux_sym_sym_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [162059] = 9, + [162943] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(570), 1, anon_sym_LPAREN, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2379), 1, + STATE(2362), 1, aux_sym_list_lit_repeat1, - STATE(1323), 3, + STATE(1353), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [162089] = 3, + [162973] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4350), 1, + ACTIONS(6001), 1, + anon_sym_COLON, + ACTIONS(6003), 1, + anon_sym_COLON_COLON, + ACTIONS(4496), 8, + sym__ws, + sym_comment, + anon_sym_POUND_, + aux_sym_sym_lit_token1, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_COMMA, + [162993] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4266), 1, + anon_sym_COLON, + ACTIONS(4264), 9, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + aux_sym_sym_lit_token1, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_COMMA, + [163011] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4302), 1, anon_sym_COLON, - ACTIONS(4348), 9, + ACTIONS(4300), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -152543,14424 +153357,14347 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [162107] = 9, + [163029] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(811), 1, + ACTIONS(4298), 1, + anon_sym_COLON, + ACTIONS(4296), 9, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + aux_sym_sym_lit_token1, + anon_sym_CARET, + anon_sym_POUND_CARET, anon_sym_LPAREN, - ACTIONS(4703), 1, + anon_sym_COMMA, + [163047] = 4, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6001), 1, + anon_sym_COLON, + ACTIONS(6003), 1, + anon_sym_COLON_COLON, + ACTIONS(4500), 8, + sym__ws, + sym_comment, + anon_sym_POUND_, + aux_sym_sym_lit_token1, anon_sym_CARET, - ACTIONS(4705), 1, anon_sym_POUND_CARET, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2379), 1, - aux_sym_list_lit_repeat1, - STATE(1824), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [162137] = 10, + anon_sym_LPAREN, + anon_sym_COMMA, + [163067] = 7, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6005), 1, + aux_sym_num_lit_token1, + ACTIONS(6010), 1, + anon_sym_SQUOTE, + ACTIONS(6013), 1, + anon_sym_COMMA, + ACTIONS(6008), 2, + anon_sym_COLON, + anon_sym_AT, + STATE(2459), 2, + sym__format_token, + aux_sym_format_modifiers_repeat1, + ACTIONS(6016), 3, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + aux_sym_format_directive_type_token11, + [163093] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - ACTIONS(5439), 1, + ACTIONS(5461), 1, anon_sym_LBRACE, - ACTIONS(5992), 1, + ACTIONS(6018), 1, anon_sym_POUND_QMARK, - STATE(2231), 1, + STATE(2249), 1, sym__bare_map_lit, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2379), 1, + STATE(2362), 1, aux_sym_list_lit_repeat1, - [162168] = 10, + [163124] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_CARET, - ACTIONS(4705), 1, + ACTIONS(4709), 1, anon_sym_POUND_CARET, - ACTIONS(5439), 1, + ACTIONS(5461), 1, anon_sym_LBRACE, - ACTIONS(5994), 1, + ACTIONS(6020), 1, anon_sym_POUND_QMARK, - STATE(2231), 1, + STATE(2249), 1, sym__bare_map_lit, - STATE(2239), 1, + STATE(2258), 1, sym__metadata_lit, - STATE(2267), 1, + STATE(2273), 1, sym_meta_lit, - STATE(2268), 1, + STATE(2277), 1, sym_old_meta_lit, - STATE(2379), 1, + STATE(2362), 1, aux_sym_list_lit_repeat1, - [162199] = 6, + [163155] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2996), 1, + STATE(3221), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6022), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2730), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162221] = 6, + [163177] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, - aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3069), 1, - sym_num_lit, - ACTIONS(6000), 2, + ACTIONS(6028), 1, + anon_sym_cl, + ACTIONS(6030), 1, + anon_sym_into, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2601), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162243] = 6, + [163199] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, - aux_sym_num_lit_token1, - ACTIONS(5998), 1, - anon_sym_POUND_, - STATE(3026), 1, - sym_num_lit, - ACTIONS(5996), 2, - sym__ws, - sym_comment, - STATE(2423), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [162265] = 6, + ACTIONS(4707), 1, + anon_sym_CARET, + ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(5611), 1, + anon_sym_POUNDC, + ACTIONS(5613), 1, + anon_sym_POUNDc, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2362), 1, + aux_sym_list_lit_repeat1, + [163227] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, - aux_sym_num_lit_token1, - ACTIONS(5998), 1, - anon_sym_POUND_, - STATE(3022), 1, - sym_num_lit, - ACTIONS(5996), 2, - sym__ws, - sym_comment, - STATE(2423), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [162287] = 6, + ACTIONS(4707), 1, + anon_sym_CARET, + ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(5669), 1, + anon_sym_POUNDC, + ACTIONS(5671), 1, + anon_sym_POUNDc, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2362), 1, + aux_sym_list_lit_repeat1, + [163255] = 9, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4707), 1, + anon_sym_CARET, + ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(5689), 1, + anon_sym_POUNDC, + ACTIONS(5691), 1, + anon_sym_POUNDc, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2362), 1, + aux_sym_list_lit_repeat1, + [163283] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(4707), 1, + anon_sym_CARET, + ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(5731), 1, + anon_sym_POUNDC, + ACTIONS(5733), 1, + anon_sym_POUNDc, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2362), 1, + aux_sym_list_lit_repeat1, + [163311] = 9, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4707), 1, + anon_sym_CARET, + ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(5591), 1, + anon_sym_POUNDC, + ACTIONS(5593), 1, + anon_sym_POUNDc, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2362), 1, + aux_sym_list_lit_repeat1, + [163339] = 9, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4707), 1, + anon_sym_CARET, + ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(5559), 1, + anon_sym_POUNDC, + ACTIONS(5561), 1, + anon_sym_POUNDc, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2362), 1, + aux_sym_list_lit_repeat1, + [163367] = 9, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4707), 1, + anon_sym_CARET, + ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(5709), 1, + anon_sym_POUNDC, + ACTIONS(5711), 1, + anon_sym_POUNDc, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2362), 1, + aux_sym_list_lit_repeat1, + [163395] = 9, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4707), 1, + anon_sym_CARET, + ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(5519), 1, + anon_sym_POUNDC, + ACTIONS(5521), 1, + anon_sym_POUNDc, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2362), 1, + aux_sym_list_lit_repeat1, + [163423] = 6, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3017), 1, + STATE(2575), 1, sym_num_lit, - ACTIONS(6002), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2442), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162309] = 6, + [163445] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3016), 1, + STATE(2578), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162331] = 6, + [163467] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3014), 1, + STATE(2582), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6032), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2472), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162353] = 6, + [163489] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3011), 1, + STATE(2583), 1, sym_num_lit, - ACTIONS(6004), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2443), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162375] = 6, + [163511] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3010), 1, + STATE(2585), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6034), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2473), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162397] = 6, + [163533] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3008), 1, + STATE(2586), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162419] = 6, + [163555] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3005), 1, + STATE(2588), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162441] = 6, + [163577] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3002), 1, + STATE(2590), 1, sym_num_lit, - ACTIONS(6006), 2, + ACTIONS(6036), 2, sym__ws, sym_comment, - STATE(2445), 3, + STATE(2475), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162463] = 6, + [163599] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3001), 1, + STATE(2591), 1, sym_num_lit, - ACTIONS(6008), 2, + ACTIONS(6038), 2, sym__ws, sym_comment, - STATE(2446), 3, + STATE(2477), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162485] = 6, + [163621] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3000), 1, + STATE(2592), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6040), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2478), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162507] = 6, + [163643] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2998), 1, + STATE(2592), 1, sym_num_lit, - ACTIONS(6010), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2448), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162529] = 6, + [163665] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2997), 1, + STATE(2594), 1, sym_num_lit, - ACTIONS(6012), 2, + ACTIONS(6042), 2, sym__ws, sym_comment, - STATE(2449), 3, + STATE(2482), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162551] = 6, + [163687] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2994), 1, + STATE(2598), 1, sym_num_lit, - ACTIONS(6014), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2450), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162573] = 6, + [163709] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2993), 1, + STATE(2602), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162595] = 6, + [163731] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2989), 1, + STATE(2606), 1, sym_num_lit, - ACTIONS(6016), 2, + ACTIONS(6044), 2, sym__ws, sym_comment, - STATE(2453), 3, + STATE(2484), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162617] = 6, + [163753] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2988), 1, + STATE(2607), 1, sym_num_lit, - ACTIONS(6018), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2440), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162639] = 6, + [163775] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2987), 1, + STATE(2610), 1, sym_num_lit, - ACTIONS(6020), 2, + ACTIONS(6046), 2, sym__ws, sym_comment, - STATE(2457), 3, + STATE(2485), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162661] = 6, + [163797] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2986), 1, + STATE(2611), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162683] = 6, + [163819] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2981), 1, + STATE(2613), 1, sym_num_lit, - ACTIONS(6022), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2461), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162705] = 6, + [163841] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2931), 1, + STATE(2616), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6048), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2487), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162727] = 6, + [163863] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2927), 1, + STATE(2617), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6050), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2489), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162749] = 6, + [163885] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2922), 1, + STATE(2618), 1, sym_num_lit, - ACTIONS(6024), 2, + ACTIONS(6052), 2, sym__ws, sym_comment, - STATE(2463), 3, + STATE(2490), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162771] = 6, + [163907] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2921), 1, + STATE(2618), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162793] = 6, + [163929] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2919), 1, + STATE(2620), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6054), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2494), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162815] = 6, + [163951] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2916), 1, + STATE(2623), 1, sym_num_lit, ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2464), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162837] = 6, + [163973] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2915), 1, + STATE(2626), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162859] = 6, + [163995] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, - aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2913), 1, - sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6056), 1, + anon_sym_cl, + ACTIONS(6058), 1, + anon_sym_EQ, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162881] = 6, + [164017] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2910), 1, + STATE(2630), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6060), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2496), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162903] = 6, + [164039] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2907), 1, + STATE(2631), 1, sym_num_lit, - ACTIONS(6028), 2, - sym__ws, - sym_comment, - STATE(2466), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [162925] = 6, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5998), 1, - anon_sym_POUND_, - ACTIONS(6030), 1, - anon_sym_cl, - ACTIONS(6032), 1, - anon_sym_EQ, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162947] = 6, + [164061] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2906), 1, + STATE(2633), 1, sym_num_lit, - ACTIONS(6034), 2, + ACTIONS(6062), 2, sym__ws, sym_comment, - STATE(2467), 3, + STATE(2497), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162969] = 6, + [164083] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2905), 1, + STATE(2634), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [162991] = 6, + [164105] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2903), 1, + STATE(2636), 1, sym_num_lit, - ACTIONS(6036), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2469), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163013] = 6, + [164127] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2902), 1, + STATE(2638), 1, sym_num_lit, - ACTIONS(6038), 2, + ACTIONS(6064), 2, sym__ws, sym_comment, - STATE(2470), 3, + STATE(2500), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163035] = 6, + [164149] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2901), 1, + STATE(2639), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6066), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2502), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163057] = 6, + [164171] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2899), 1, + STATE(2640), 1, sym_num_lit, - ACTIONS(6040), 2, + ACTIONS(6068), 2, sym__ws, sym_comment, - STATE(2471), 3, + STATE(2503), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163079] = 6, + [164193] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2898), 1, + STATE(2640), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163101] = 6, + [164215] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2894), 1, + STATE(2642), 1, sym_num_lit, - ACTIONS(6042), 2, + ACTIONS(6070), 2, sym__ws, sym_comment, - STATE(2475), 3, + STATE(2507), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163123] = 6, + [164237] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2893), 1, + STATE(2645), 1, sym_num_lit, - ACTIONS(6044), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2478), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163145] = 6, + [164259] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2892), 1, + STATE(2648), 1, sym_num_lit, - ACTIONS(6046), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2480), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163167] = 6, + [164281] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2891), 1, + STATE(2652), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6072), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2509), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163189] = 6, + [164303] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2886), 1, + STATE(2653), 1, sym_num_lit, - ACTIONS(6048), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2484), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163211] = 6, + [164325] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2836), 1, + STATE(2655), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6074), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2510), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163233] = 6, + [164347] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2832), 1, + STATE(2656), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163255] = 6, + [164369] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2827), 1, + STATE(2659), 1, sym_num_lit, - ACTIONS(6050), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2486), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163277] = 6, + [164391] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2826), 1, + STATE(2661), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6076), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2512), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163299] = 6, + [164413] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2824), 1, + STATE(2662), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6078), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2514), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163321] = 6, + [164435] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2821), 1, + STATE(2663), 1, sym_num_lit, - ACTIONS(6052), 2, + ACTIONS(6080), 2, sym__ws, sym_comment, - STATE(2487), 3, + STATE(2515), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163343] = 6, + [164457] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2820), 1, + STATE(2663), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163365] = 6, + [164479] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - ACTIONS(6056), 1, + ACTIONS(6084), 1, anon_sym_cl, - ACTIONS(6058), 1, + ACTIONS(6086), 1, anon_sym_EQ, - ACTIONS(6054), 2, + ACTIONS(6082), 2, sym__ws, sym_comment, - STATE(2473), 3, + STATE(2498), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163387] = 6, + [164501] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2818), 1, + STATE(2665), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6088), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2519), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163409] = 6, + [164523] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2775), 1, + STATE(2669), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163431] = 6, + [164545] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2812), 1, + STATE(2672), 1, sym_num_lit, - ACTIONS(6060), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2489), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163453] = 6, + [164567] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5998), 1, + ACTIONS(5977), 1, + aux_sym_num_lit_token1, + ACTIONS(6024), 1, anon_sym_POUND_, - ACTIONS(6062), 1, - anon_sym_cl, - ACTIONS(6064), 1, - anon_sym_EQ, - ACTIONS(5996), 2, + STATE(2676), 1, + sym_num_lit, + ACTIONS(6090), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2522), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163475] = 6, + [164589] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2811), 1, + STATE(2677), 1, sym_num_lit, - ACTIONS(6066), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2490), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163497] = 6, + [164611] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2810), 1, + STATE(2679), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6092), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2523), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163519] = 6, + [164633] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5998), 1, + ACTIONS(5977), 1, + aux_sym_num_lit_token1, + ACTIONS(6024), 1, anon_sym_POUND_, - ACTIONS(6068), 1, - anon_sym_cl, - ACTIONS(6070), 1, - anon_sym_EQ, - ACTIONS(5996), 2, + STATE(2680), 1, + sym_num_lit, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163541] = 6, + [164655] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2808), 1, + STATE(2683), 1, sym_num_lit, - ACTIONS(6072), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2492), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163563] = 6, + [164677] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2807), 1, + STATE(2685), 1, sym_num_lit, - ACTIONS(6074), 2, + ACTIONS(6094), 2, sym__ws, sym_comment, - STATE(2494), 3, + STATE(2525), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163585] = 6, + [164699] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2806), 1, + STATE(2686), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6096), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2527), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163607] = 6, + [164721] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2804), 1, + STATE(2687), 1, sym_num_lit, - ACTIONS(6076), 2, + ACTIONS(6098), 2, sym__ws, sym_comment, - STATE(2495), 3, + STATE(2528), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163629] = 6, + [164743] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2803), 1, + STATE(2687), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163651] = 6, + [164765] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2799), 1, + STATE(2689), 1, sym_num_lit, - ACTIONS(6078), 2, + ACTIONS(6100), 2, sym__ws, sym_comment, - STATE(2499), 3, + STATE(2532), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163673] = 6, + [164787] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2798), 1, + STATE(2692), 1, sym_num_lit, - ACTIONS(6080), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2503), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163695] = 6, + [164809] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2797), 1, + STATE(2695), 1, sym_num_lit, - ACTIONS(6082), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2505), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163717] = 6, + [164831] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2796), 1, + STATE(2699), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6102), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2534), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163739] = 6, + [164853] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2793), 1, + STATE(2700), 1, sym_num_lit, - ACTIONS(6084), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2509), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163761] = 6, + [164875] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2815), 1, + STATE(2703), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6104), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2535), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163783] = 6, + [164897] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2874), 1, + STATE(2705), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163805] = 6, + [164919] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2884), 1, + STATE(2707), 1, sym_num_lit, - ACTIONS(6086), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2511), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163827] = 6, + [164941] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2885), 1, + STATE(2709), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6106), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2537), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163849] = 6, + [164963] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2888), 1, + STATE(2710), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6108), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2539), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163871] = 6, + [164985] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2945), 1, + STATE(2711), 1, sym_num_lit, - ACTIONS(6088), 2, + ACTIONS(6110), 2, sym__ws, sym_comment, - STATE(2512), 3, + STATE(2540), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163893] = 6, + [165007] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2946), 1, + STATE(2711), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163915] = 6, + [165029] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2949), 1, + STATE(2713), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6112), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2544), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163937] = 6, + [165051] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2957), 1, + STATE(2716), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163959] = 6, + [165073] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2963), 1, + STATE(2719), 1, sym_num_lit, - ACTIONS(6090), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2514), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163981] = 6, + [165095] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2964), 1, + STATE(2723), 1, sym_num_lit, - ACTIONS(6092), 2, + ACTIONS(6114), 2, sym__ws, sym_comment, - STATE(2515), 3, + STATE(2546), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164003] = 6, + [165117] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2966), 1, + STATE(2724), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164025] = 6, + [165139] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2968), 1, + STATE(2726), 1, sym_num_lit, - ACTIONS(6094), 2, + ACTIONS(6116), 2, sym__ws, sym_comment, - STATE(2517), 3, + STATE(2547), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164047] = 6, + [165161] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2970), 1, + STATE(2727), 1, sym_num_lit, - ACTIONS(6096), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2518), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164069] = 6, + [165183] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2971), 1, + STATE(2729), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164091] = 6, + [165205] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2976), 1, + STATE(2731), 1, sym_num_lit, - ACTIONS(6098), 2, + ACTIONS(6118), 2, sym__ws, sym_comment, - STATE(2519), 3, + STATE(2549), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164113] = 6, + [165227] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2977), 1, + STATE(2732), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6120), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2551), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164135] = 6, + [165249] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3040), 1, + STATE(2462), 1, sym_num_lit, - ACTIONS(6100), 2, + ACTIONS(6122), 2, sym__ws, sym_comment, - STATE(2522), 3, + STATE(2552), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164157] = 6, + [165271] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3041), 1, + STATE(2462), 1, sym_num_lit, - ACTIONS(6102), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2525), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164179] = 6, + [165293] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3044), 1, + STATE(2734), 1, sym_num_lit, - ACTIONS(6104), 2, + ACTIONS(6124), 2, sym__ws, sym_comment, - STATE(2527), 3, + STATE(2556), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164201] = 6, + [165315] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, - aux_sym_num_lit_token1, - ACTIONS(5998), 1, - anon_sym_POUND_, - STATE(3046), 1, - sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6126), 1, + aux_sym_num_lit_token2, + ACTIONS(4134), 7, sym__ws, sym_comment, - STATE(2423), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [164223] = 6, + anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_cl, + anon_sym_EQ, + anon_sym_into, + [165331] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3054), 1, + STATE(2737), 1, sym_num_lit, - ACTIONS(6106), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2531), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164245] = 6, + [165353] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3127), 1, + STATE(2740), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164267] = 6, + [165375] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3131), 1, + STATE(2744), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6128), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2559), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164289] = 6, + [165397] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, - aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3138), 1, - sym_num_lit, - ACTIONS(6108), 2, + ACTIONS(6130), 1, + anon_sym_cl, + ACTIONS(6132), 1, + anon_sym_EQ, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2533), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164311] = 6, + [165419] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3139), 1, + STATE(2745), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164333] = 6, + [165441] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3141), 1, + STATE(2747), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6134), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2560), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164355] = 6, + [165463] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3144), 1, + STATE(2748), 1, sym_num_lit, - ACTIONS(6110), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2534), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164377] = 6, + [165485] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3145), 1, + STATE(2750), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164399] = 6, + [165507] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3147), 1, + STATE(2753), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6136), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2563), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164421] = 6, + [165529] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3150), 1, + STATE(2754), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6138), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2565), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164443] = 6, + [165551] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3153), 1, + STATE(2755), 1, sym_num_lit, - ACTIONS(6112), 2, + ACTIONS(6140), 2, sym__ws, sym_comment, - STATE(2536), 3, + STATE(2566), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164465] = 6, + [165573] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3154), 1, + STATE(2755), 1, sym_num_lit, - ACTIONS(6114), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2537), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164487] = 6, + [165595] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3155), 1, + STATE(2757), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6142), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2570), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164509] = 6, + [165617] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3157), 1, + STATE(3028), 1, sym_num_lit, - ACTIONS(6116), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2539), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164531] = 6, + [165639] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, - aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3158), 1, - sym_num_lit, - ACTIONS(6118), 2, + ACTIONS(6144), 1, + anon_sym_cl, + ACTIONS(6146), 1, + anon_sym_EQ, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2540), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164553] = 6, + [165661] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3159), 1, + STATE(3024), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164575] = 6, + [165683] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3163), 1, + STATE(3019), 1, sym_num_lit, - ACTIONS(6120), 2, + ACTIONS(6148), 2, sym__ws, sym_comment, - STATE(2541), 3, + STATE(2572), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164597] = 6, + [165705] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3165), 1, + STATE(3018), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164619] = 6, + [165727] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3168), 1, + STATE(3016), 1, sym_num_lit, - ACTIONS(6122), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2544), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164641] = 6, + [165749] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3169), 1, + STATE(3013), 1, sym_num_lit, - ACTIONS(6124), 2, + ACTIONS(6150), 2, sym__ws, sym_comment, - STATE(2547), 3, + STATE(2574), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164663] = 6, + [165771] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2600), 1, + STATE(3012), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164685] = 6, + [165793] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3170), 1, + STATE(3010), 1, sym_num_lit, - ACTIONS(6126), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2549), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164707] = 6, + [165815] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3171), 1, + STATE(3007), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164729] = 6, + [165837] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3176), 1, + STATE(3004), 1, sym_num_lit, - ACTIONS(6128), 2, + ACTIONS(6152), 2, sym__ws, sym_comment, - STATE(2554), 3, + STATE(2576), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164751] = 6, + [165859] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3220), 1, + STATE(3003), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6154), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2577), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164773] = 6, + [165881] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3224), 1, + STATE(3002), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164795] = 6, + [165903] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3229), 1, + STATE(3000), 1, sym_num_lit, - ACTIONS(6130), 2, + ACTIONS(6156), 2, sym__ws, sym_comment, - STATE(2556), 3, + STATE(2579), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164817] = 6, + [165925] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3230), 1, + STATE(2999), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6158), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2580), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164839] = 6, + [165947] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3232), 1, + STATE(2998), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164861] = 6, + [165969] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3217), 1, + STATE(2996), 1, sym_num_lit, - ACTIONS(6132), 2, + ACTIONS(6160), 2, sym__ws, sym_comment, - STATE(2557), 3, + STATE(2581), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164883] = 6, + [165991] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3213), 1, + STATE(2995), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164905] = 6, + [166013] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3210), 1, + STATE(2991), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6162), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2584), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164927] = 6, + [166035] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2634), 1, + STATE(2990), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6164), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2587), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164949] = 6, + [166057] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2634), 1, + STATE(2989), 1, sym_num_lit, - ACTIONS(6134), 2, + ACTIONS(6166), 2, sym__ws, sym_comment, - STATE(2569), 3, + STATE(2589), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164971] = 6, + [166079] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2633), 1, + STATE(2988), 1, sym_num_lit, - ACTIONS(6136), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2582), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164993] = 6, + [166101] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3206), 1, + STATE(2983), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6168), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2593), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165015] = 6, + [166123] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, - aux_sym_num_lit_token1, - ACTIONS(5998), 1, - anon_sym_POUND_, - STATE(2632), 1, - sym_num_lit, - ACTIONS(6138), 2, + ACTIONS(6170), 1, + aux_sym_num_lit_token2, + ACTIONS(4134), 7, sym__ws, sym_comment, - STATE(2613), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [165037] = 6, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_COMMA, + [166139] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2630), 1, + STATE(2934), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165059] = 6, + [166161] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3201), 1, + STATE(2930), 1, sym_num_lit, - ACTIONS(6140), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2559), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165081] = 6, + [166183] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3200), 1, + STATE(2925), 1, sym_num_lit, - ACTIONS(6142), 2, + ACTIONS(6172), 2, sym__ws, sym_comment, - STATE(2560), 3, + STATE(2596), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165103] = 6, + [166205] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - ACTIONS(6144), 1, + ACTIONS(6174), 1, anon_sym_cl, - ACTIONS(6146), 1, + ACTIONS(6176), 1, anon_sym_EQ, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165125] = 6, + [166227] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3199), 1, + STATE(2924), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165147] = 6, + [166249] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3197), 1, + STATE(2922), 1, sym_num_lit, - ACTIONS(6148), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2562), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165169] = 6, + [166271] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3196), 1, + STATE(2919), 1, sym_num_lit, - ACTIONS(6150), 2, + ACTIONS(6178), 2, sym__ws, sym_comment, - STATE(2563), 3, + STATE(2597), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165191] = 6, + [166293] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3218), 1, + STATE(2918), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165213] = 6, + [166315] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3193), 1, + STATE(2916), 1, sym_num_lit, - ACTIONS(6152), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2567), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165235] = 6, + [166337] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3192), 1, + STATE(2913), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165257] = 6, + [166359] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3188), 1, + STATE(2910), 1, sym_num_lit, - ACTIONS(6154), 2, + ACTIONS(6180), 2, sym__ws, sym_comment, - STATE(2573), 3, + STATE(2600), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165279] = 6, + [166381] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3184), 1, + STATE(2909), 1, sym_num_lit, - ACTIONS(6156), 2, + ACTIONS(6182), 2, sym__ws, sym_comment, - STATE(2576), 3, + STATE(2601), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165301] = 6, + [166403] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, - aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3183), 1, - sym_num_lit, - ACTIONS(6158), 2, + ACTIONS(6186), 1, + anon_sym_cl, + ACTIONS(6188), 1, + anon_sym_EQ, + ACTIONS(6184), 2, sym__ws, sym_comment, - STATE(2578), 3, + STATE(2562), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165323] = 6, + [166425] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2628), 1, + STATE(2908), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165345] = 6, + [166447] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2627), 1, + STATE(2906), 1, sym_num_lit, - ACTIONS(6160), 2, + ACTIONS(6190), 2, sym__ws, sym_comment, - STATE(2637), 3, + STATE(2603), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165367] = 6, + [166469] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3182), 1, + STATE(2905), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6192), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2604), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165389] = 6, + [166491] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3161), 1, + STATE(2904), 1, sym_num_lit, - ACTIONS(6162), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2584), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165411] = 6, + [166513] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3115), 1, + STATE(2902), 1, sym_num_lit, - ACTIONS(5996), 2, - sym__ws, - sym_comment, - STATE(2423), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [165433] = 6, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5998), 1, - anon_sym_POUND_, - ACTIONS(6166), 1, - anon_sym_cl, - ACTIONS(6168), 1, - anon_sym_EQ, - ACTIONS(6164), 2, + ACTIONS(6194), 2, sym__ws, sym_comment, - STATE(2497), 3, + STATE(2605), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165455] = 6, + [166535] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3111), 1, + STATE(2901), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165477] = 6, + [166557] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - ACTIONS(6172), 1, + ACTIONS(6198), 1, anon_sym_cl, - ACTIONS(6174), 1, + ACTIONS(6200), 1, anon_sym_EQ, - ACTIONS(6170), 2, + ACTIONS(6196), 2, sym__ws, sym_comment, - STATE(2500), 3, + STATE(2573), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165499] = 6, + [166579] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2776), 1, + STATE(2897), 1, sym_num_lit, - ACTIONS(6176), 2, + ACTIONS(6202), 2, sym__ws, sym_comment, - STATE(2586), 3, + STATE(2609), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165521] = 6, + [166601] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3100), 1, + STATE(2896), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6204), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2612), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165543] = 6, + [166623] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3098), 1, + STATE(2895), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6206), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2614), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165565] = 6, + [166645] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5998), 1, + ACTIONS(5963), 1, + aux_sym_num_lit_token1, + ACTIONS(6024), 1, anon_sym_POUND_, - ACTIONS(6178), 1, - anon_sym_cl, - ACTIONS(6180), 1, - anon_sym_EQ, - ACTIONS(5996), 2, + STATE(2894), 1, + sym_num_lit, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165587] = 6, + [166667] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3094), 1, + STATE(2889), 1, sym_num_lit, - ACTIONS(6182), 2, + ACTIONS(6208), 2, sym__ws, sym_comment, - STATE(2588), 3, + STATE(2619), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165609] = 6, + [166689] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3090), 1, + STATE(2840), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165631] = 6, + [166711] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3164), 1, + STATE(2836), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165653] = 6, + [166733] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3088), 1, + STATE(2831), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6210), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2621), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165675] = 6, + [166755] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3084), 1, + STATE(2830), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165697] = 6, + [166777] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3081), 1, + STATE(2828), 1, sym_num_lit, - ACTIONS(6184), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2591), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165719] = 6, + [166799] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3080), 1, + STATE(2825), 1, sym_num_lit, - ACTIONS(6186), 2, + ACTIONS(6212), 2, sym__ws, sym_comment, - STATE(2592), 3, + STATE(2622), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165741] = 6, + [166821] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3079), 1, + STATE(2824), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165763] = 6, + [166843] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3077), 1, + STATE(2822), 1, sym_num_lit, - ACTIONS(6188), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2595), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165785] = 6, + [166865] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3076), 1, + STATE(2819), 1, sym_num_lit, - ACTIONS(6190), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2597), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165807] = 6, + [166887] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3195), 1, + STATE(2816), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6214), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2624), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165829] = 6, + [166909] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3074), 1, + STATE(2815), 1, sym_num_lit, - ACTIONS(6192), 2, + ACTIONS(6216), 2, sym__ws, sym_comment, - STATE(2598), 3, + STATE(2625), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165851] = 6, + [166931] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3073), 1, + STATE(2814), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165873] = 6, + [166953] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2636), 1, + STATE(2812), 1, sym_num_lit, - ACTIONS(6194), 2, + ACTIONS(6218), 2, sym__ws, sym_comment, - STATE(2564), 3, + STATE(2627), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165895] = 6, + [166975] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3068), 1, + STATE(2811), 1, sym_num_lit, - ACTIONS(6196), 2, + ACTIONS(6220), 2, sym__ws, sym_comment, - STATE(2604), 3, + STATE(2628), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165917] = 6, + [166997] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3215), 1, + STATE(2810), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165939] = 6, + [167019] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3067), 1, + STATE(2808), 1, sym_num_lit, - ACTIONS(6198), 2, + ACTIONS(6222), 2, sym__ws, sym_comment, - STATE(2606), 3, + STATE(2629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165961] = 6, + [167041] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3066), 1, + STATE(2807), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165983] = 6, + [167063] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3063), 1, + STATE(2803), 1, sym_num_lit, - ACTIONS(6200), 2, + ACTIONS(6224), 2, sym__ws, sym_comment, - STATE(2611), 3, + STATE(2632), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166005] = 6, + [167085] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2625), 1, + STATE(2802), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6226), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2635), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166027] = 6, + [167107] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2624), 1, + STATE(2801), 1, sym_num_lit, - ACTIONS(6202), 2, + ACTIONS(6228), 2, sym__ws, sym_comment, - STATE(2638), 3, + STATE(2637), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166049] = 6, + [167129] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3060), 1, + STATE(2800), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166071] = 6, + [167151] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3056), 1, + STATE(2873), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6230), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2641), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166093] = 6, + [167173] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3049), 1, + STATE(3148), 1, sym_num_lit, - ACTIONS(6204), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2615), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166115] = 6, + [167195] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3048), 1, + STATE(3152), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166137] = 6, + [167217] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3043), 1, + STATE(3157), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6232), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2643), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166159] = 6, + [167239] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3035), 1, + STATE(3158), 1, sym_num_lit, - ACTIONS(6206), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2616), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166181] = 6, + [167261] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3034), 1, + STATE(3165), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166203] = 6, + [167283] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3032), 1, + STATE(3169), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6234), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2644), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166225] = 6, + [167305] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3029), 1, + STATE(3170), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166247] = 6, + [167327] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2983), 1, + STATE(3172), 1, sym_num_lit, - ACTIONS(6208), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2618), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166269] = 6, + [167349] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2982), 1, + STATE(3175), 1, sym_num_lit, - ACTIONS(6210), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2619), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166291] = 6, + [167371] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2980), 1, + STATE(3178), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6236), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2646), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166313] = 6, + [167393] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2978), 1, + STATE(3179), 1, sym_num_lit, - ACTIONS(6212), 2, + ACTIONS(6238), 2, sym__ws, sym_comment, - STATE(2621), 3, + STATE(2647), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166335] = 6, + [167415] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2974), 1, + STATE(3125), 1, sym_num_lit, - ACTIONS(6214), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2622), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166357] = 6, + [167437] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2973), 1, + STATE(3182), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6240), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2649), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166379] = 6, + [167459] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2965), 1, + STATE(3183), 1, sym_num_lit, - ACTIONS(6216), 2, + ACTIONS(6242), 2, sym__ws, sym_comment, - STATE(2623), 3, + STATE(2650), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166401] = 6, + [167481] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, - aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2960), 1, - sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6244), 1, + anon_sym_cl, + ACTIONS(6246), 1, + anon_sym_EQ, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166423] = 6, + [167503] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2956), 1, + STATE(3184), 1, sym_num_lit, - ACTIONS(6218), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2626), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166445] = 6, + [167525] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2955), 1, + STATE(3188), 1, sym_num_lit, - ACTIONS(6220), 2, + ACTIONS(6248), 2, sym__ws, sym_comment, - STATE(2629), 3, + STATE(2651), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166467] = 6, + [167547] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2952), 1, + STATE(3190), 1, sym_num_lit, - ACTIONS(6222), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2631), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166489] = 6, + [167569] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2951), 1, + STATE(3194), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6250), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2654), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166511] = 6, + [167591] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2948), 1, + STATE(3195), 1, sym_num_lit, - ACTIONS(6224), 2, + ACTIONS(6252), 2, sym__ws, sym_comment, - STATE(2635), 3, + STATE(2658), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166533] = 6, + [167613] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2620), 1, + STATE(3196), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6254), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2660), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166555] = 6, + [167635] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2617), 1, + STATE(3197), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166577] = 6, + [167657] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2612), 1, + STATE(3200), 1, sym_num_lit, - ACTIONS(6226), 2, + ACTIONS(6256), 2, sym__ws, sym_comment, - STATE(2640), 3, + STATE(2664), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166599] = 6, + [167679] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2610), 1, + STATE(3180), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166621] = 6, + [167701] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2610), 1, + STATE(3257), 1, sym_num_lit, - ACTIONS(6228), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2644), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166643] = 6, + [167723] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2608), 1, + STATE(3131), 1, sym_num_lit, - ACTIONS(6230), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2645), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166665] = 6, + [167745] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2441), 1, + STATE(3263), 1, sym_num_lit, - ACTIONS(6232), 2, + ACTIONS(6258), 2, sym__ws, sym_comment, - STATE(2552), 3, + STATE(2666), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166687] = 6, + [167767] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2605), 1, + STATE(3264), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166709] = 6, + [167789] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2603), 1, + STATE(3249), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166731] = 6, + [167811] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2602), 1, + STATE(3245), 1, sym_num_lit, - ACTIONS(6234), 2, + ACTIONS(6260), 2, sym__ws, sym_comment, - STATE(2649), 3, + STATE(2667), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166753] = 6, + [167833] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2585), 1, + STATE(3244), 1, sym_num_lit, - ACTIONS(6236), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2652), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166775] = 6, + [167855] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2599), 1, + STATE(3242), 1, sym_num_lit, - ACTIONS(6238), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2650), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166797] = 6, + [167877] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2594), 1, + STATE(3236), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166819] = 6, + [167899] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2590), 1, + STATE(3227), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6262), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2670), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166841] = 6, + [167921] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2451), 1, + STATE(3225), 1, sym_num_lit, - ACTIONS(6240), 2, + ACTIONS(6264), 2, sym__ws, sym_comment, - STATE(2759), 3, + STATE(2671), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166863] = 6, + [167943] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2581), 1, + STATE(3224), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166885] = 9, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4703), 1, - anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, - ACTIONS(5513), 1, - anon_sym_POUNDC, - ACTIONS(5515), 1, - anon_sym_POUNDc, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2379), 1, - aux_sym_list_lit_repeat1, - [166913] = 6, + [167965] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2581), 1, + STATE(3214), 1, sym_num_lit, - ACTIONS(6242), 2, + ACTIONS(6266), 2, sym__ws, sym_comment, - STATE(2658), 3, + STATE(2673), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166935] = 6, + [167987] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2580), 1, + STATE(3211), 1, sym_num_lit, - ACTIONS(6244), 2, + ACTIONS(6268), 2, sym__ws, sym_comment, - STATE(2659), 3, + STATE(2674), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166957] = 6, + [168009] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2690), 1, + STATE(3208), 1, sym_num_lit, - ACTIONS(6246), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2691), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166979] = 6, + [168031] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2579), 1, + STATE(3138), 1, sym_num_lit, - ACTIONS(6248), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2661), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167001] = 6, + [168053] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2577), 1, + STATE(3202), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6270), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2675), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167023] = 6, + [168075] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2575), 1, + STATE(3201), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167045] = 6, + [168097] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2574), 1, + STATE(3186), 1, sym_num_lit, - ACTIONS(6250), 2, + ACTIONS(6272), 2, sym__ws, sym_comment, - STATE(2663), 3, + STATE(2678), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167067] = 6, + [168119] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2571), 1, + STATE(3166), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6274), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2681), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167089] = 6, + [168141] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2570), 1, + STATE(3164), 1, sym_num_lit, - ACTIONS(6252), 2, + ACTIONS(6276), 2, sym__ws, sym_comment, - STATE(2664), 3, + STATE(2684), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167111] = 6, + [168163] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2561), 1, + STATE(3161), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167133] = 6, + [168185] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2558), 1, + STATE(3144), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6278), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2688), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167155] = 6, + [168207] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2555), 1, + STATE(3107), 1, sym_num_lit, - ACTIONS(6254), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2666), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167177] = 6, + [168229] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2553), 1, + STATE(3099), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167199] = 6, + [168251] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2553), 1, + STATE(3089), 1, sym_num_lit, - ACTIONS(6256), 2, + ACTIONS(6280), 2, sym__ws, sym_comment, - STATE(2670), 3, + STATE(2690), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167221] = 6, + [168273] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2551), 1, + STATE(3088), 1, sym_num_lit, - ACTIONS(6258), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2671), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167243] = 6, + [168295] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2550), 1, + STATE(3085), 1, sym_num_lit, - ACTIONS(6260), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2673), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167265] = 6, + [168317] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2548), 1, + STATE(3075), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6282), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2691), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167287] = 6, + [168339] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2546), 1, + STATE(3073), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167309] = 6, + [168361] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2545), 1, + STATE(3070), 1, sym_num_lit, - ACTIONS(6262), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2675), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167331] = 6, + [168383] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2543), 1, + STATE(3066), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167353] = 6, + [168405] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2542), 1, + STATE(3058), 1, sym_num_lit, - ACTIONS(6264), 2, + ACTIONS(6284), 2, sym__ws, sym_comment, - STATE(2676), 3, + STATE(2693), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167375] = 6, + [168427] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2538), 1, + STATE(3057), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6286), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2694), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167397] = 6, + [168449] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2535), 1, + STATE(3055), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167419] = 6, + [168471] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, - aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2532), 1, - sym_num_lit, - ACTIONS(6266), 2, + ACTIONS(6290), 1, + anon_sym_cl, + ACTIONS(6292), 1, + anon_sym_EQ, + ACTIONS(6288), 2, sym__ws, sym_comment, - STATE(2678), 3, + STATE(2599), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167441] = 6, + [168493] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2530), 1, + STATE(3053), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6294), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2696), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167463] = 6, + [168515] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, - aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2530), 1, - sym_num_lit, - ACTIONS(6268), 2, + ACTIONS(6296), 1, + anon_sym_cl, + ACTIONS(6298), 1, + anon_sym_EQ, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2683), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167485] = 6, + [168537] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2529), 1, + STATE(3052), 1, sym_num_lit, - ACTIONS(6270), 2, + ACTIONS(6300), 2, sym__ws, sym_comment, - STATE(2685), 3, + STATE(2697), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167507] = 6, + [168559] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2528), 1, + STATE(3051), 1, sym_num_lit, - ACTIONS(6272), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2687), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167529] = 6, + [168581] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5998), 1, + ACTIONS(5963), 1, + aux_sym_num_lit_token1, + ACTIONS(6024), 1, anon_sym_POUND_, - ACTIONS(6276), 1, - anon_sym_cl, - ACTIONS(6278), 1, - anon_sym_EQ, - ACTIONS(6274), 2, + STATE(3049), 1, + sym_num_lit, + ACTIONS(6302), 2, sym__ws, sym_comment, - STATE(2572), 3, + STATE(2698), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167551] = 6, + [168603] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2526), 1, + STATE(3048), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167573] = 6, + [168625] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5998), 1, + ACTIONS(5963), 1, + aux_sym_num_lit_token1, + ACTIONS(6024), 1, anon_sym_POUND_, - ACTIONS(6280), 1, - anon_sym_cl, - ACTIONS(6282), 1, - anon_sym_EQ, - ACTIONS(5996), 2, + STATE(3045), 1, + sym_num_lit, + ACTIONS(6304), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2701), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167595] = 6, + [168647] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2524), 1, + STATE(3044), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6306), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2706), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167617] = 6, + [168669] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2523), 1, + STATE(3043), 1, sym_num_lit, - ACTIONS(6284), 2, + ACTIONS(6308), 2, sym__ws, sym_comment, - STATE(2692), 3, + STATE(2708), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167639] = 6, + [168691] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2521), 1, + STATE(3037), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167661] = 6, + [168713] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2520), 1, + STATE(3034), 1, sym_num_lit, - ACTIONS(6286), 2, + ACTIONS(6310), 2, sym__ws, sym_comment, - STATE(2693), 3, + STATE(2712), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167683] = 6, + [168735] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5998), 1, + ACTIONS(5963), 1, + aux_sym_num_lit_token1, + ACTIONS(6024), 1, anon_sym_POUND_, - ACTIONS(6288), 1, - anon_sym_cl, - ACTIONS(6290), 1, - anon_sym_EQ, - ACTIONS(5996), 2, + STATE(2978), 1, + sym_num_lit, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167705] = 6, + [168757] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2969), 1, + STATE(2851), 1, sym_num_lit, - ACTIONS(6292), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2712), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167727] = 6, + [168779] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2713), 1, + STATE(2846), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6312), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2714), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167749] = 6, + [168801] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2516), 1, + STATE(2845), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167771] = 6, + [168823] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2513), 1, + STATE(3063), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167793] = 6, + [168845] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2510), 1, + STATE(3126), 1, sym_num_lit, - ACTIONS(6294), 2, + ACTIONS(6314), 2, sym__ws, sym_comment, - STATE(2702), 3, + STATE(2715), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167815] = 6, + [168867] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5998), 1, + ACTIONS(5963), 1, + aux_sym_num_lit_token1, + ACTIONS(6024), 1, anon_sym_POUND_, - ACTIONS(6298), 1, - anon_sym_cl, - ACTIONS(6300), 1, - anon_sym_EQ, - ACTIONS(6296), 2, + STATE(3127), 1, + sym_num_lit, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2593), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167837] = 6, + [168889] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2713), 1, + STATE(3134), 1, sym_num_lit, - ACTIONS(6302), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2714), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167859] = 6, + [168911] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5998), 1, + ACTIONS(5963), 1, + aux_sym_num_lit_token1, + ACTIONS(6024), 1, anon_sym_POUND_, - ACTIONS(6304), 1, - anon_sym_cl, - ACTIONS(6306), 1, - anon_sym_EQ, - ACTIONS(5996), 2, + STATE(3240), 1, + sym_num_lit, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167881] = 6, + [168933] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3179), 1, + STATE(3234), 1, sym_num_lit, - ACTIONS(6308), 2, + ACTIONS(6316), 2, sym__ws, sym_comment, - STATE(2596), 3, + STATE(2717), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167903] = 6, + [168955] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3178), 1, + STATE(3118), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6318), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2718), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167925] = 6, + [168977] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2721), 1, + STATE(3220), 1, sym_num_lit, - ACTIONS(6310), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2717), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167947] = 6, + [168999] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2719), 1, + STATE(3205), 1, sym_num_lit, - ACTIONS(6312), 2, + ACTIONS(6320), 2, sym__ws, sym_comment, STATE(2720), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167969] = 6, + [169021] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2508), 1, + STATE(3204), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6322), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2721), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167991] = 6, + [169043] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2508), 1, + STATE(3145), 1, sym_num_lit, - ACTIONS(6314), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2706), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168013] = 6, + [169065] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2507), 1, + STATE(3062), 1, sym_num_lit, - ACTIONS(6316), 2, + ACTIONS(6324), 2, sym__ws, sym_comment, - STATE(2707), 3, + STATE(2722), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168035] = 6, + [169087] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2506), 1, + STATE(3071), 1, sym_num_lit, - ACTIONS(6318), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2709), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168057] = 6, + [169109] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2504), 1, + STATE(2964), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6326), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2725), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168079] = 6, + [169131] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2502), 1, + STATE(2959), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6328), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2728), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168101] = 6, + [169153] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2501), 1, + STATE(2804), 1, sym_num_lit, - ACTIONS(6320), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2711), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168123] = 6, + [169175] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2498), 1, + STATE(2975), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6330), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2733), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168145] = 6, + [169197] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2496), 1, + STATE(2955), 1, sym_num_lit, - ACTIONS(6322), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2715), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168167] = 6, + [169219] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2491), 1, + STATE(2986), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168189] = 6, + [169241] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2879), 1, + STATE(3039), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6332), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2735), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168211] = 6, + [169263] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2876), 1, + STATE(3040), 1, sym_num_lit, - ACTIONS(6324), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2735), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168233] = 6, + [169285] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2736), 1, + STATE(3042), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168255] = 6, + [169307] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2488), 1, + STATE(3060), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6334), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2736), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168277] = 6, + [169329] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2485), 1, + STATE(3074), 1, sym_num_lit, - ACTIONS(6326), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2722), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168299] = 6, + [169351] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2738), 1, + STATE(3080), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168321] = 6, + [169373] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2739), 1, + STATE(3083), 1, sym_num_lit, - ACTIONS(6328), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2742), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168343] = 6, + [169395] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2866), 1, + STATE(3090), 1, sym_num_lit, - ACTIONS(6330), 2, + ACTIONS(6336), 2, sym__ws, sym_comment, - STATE(2743), 3, + STATE(2738), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168365] = 6, + [169417] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2746), 1, + STATE(3092), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6338), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2739), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168387] = 6, + [169439] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2873), 1, + STATE(3093), 1, sym_num_lit, - ACTIONS(6332), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2737), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168409] = 6, + [169461] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2483), 1, + STATE(3098), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6340), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2741), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168431] = 6, + [169483] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2483), 1, + STATE(3102), 1, sym_num_lit, - ACTIONS(6334), 2, + ACTIONS(6342), 2, sym__ws, sym_comment, - STATE(2726), 3, + STATE(2742), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168453] = 6, + [169505] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2482), 1, + STATE(3103), 1, sym_num_lit, - ACTIONS(6336), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2729), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168475] = 6, + [169527] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2481), 1, + STATE(3105), 1, sym_num_lit, - ACTIONS(6338), 2, + ACTIONS(6344), 2, sym__ws, sym_comment, - STATE(2731), 3, + STATE(2743), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168497] = 6, + [169549] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, - aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2479), 1, - sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6346), 1, + anon_sym_cl, + ACTIONS(6348), 1, + anon_sym_EQ, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168519] = 6, + [169571] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5998), 1, + ACTIONS(5963), 1, + aux_sym_num_lit_token1, + ACTIONS(6024), 1, anon_sym_POUND_, - ACTIONS(6342), 1, - anon_sym_cl, - ACTIONS(6344), 1, - anon_sym_EQ, - ACTIONS(6340), 2, + STATE(3109), 1, + sym_num_lit, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2697), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168541] = 6, + [169593] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5998), 1, + ACTIONS(5963), 1, + aux_sym_num_lit_token1, + ACTIONS(6024), 1, anon_sym_POUND_, - ACTIONS(6346), 1, - anon_sym_cl, - ACTIONS(6348), 1, - anon_sym_into, - ACTIONS(5996), 2, + STATE(3112), 1, + sym_num_lit, + ACTIONS(6350), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2746), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168563] = 6, + [169615] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2477), 1, + STATE(3114), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6352), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2749), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168585] = 6, + [169637] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2476), 1, + STATE(3115), 1, sym_num_lit, - ACTIONS(6350), 2, + ACTIONS(6354), 2, sym__ws, sym_comment, - STATE(2733), 3, + STATE(2752), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168607] = 6, + [169659] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2474), 1, + STATE(3119), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168629] = 6, + [169681] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2472), 1, + STATE(3123), 1, sym_num_lit, - ACTIONS(6352), 2, + ACTIONS(6356), 2, sym__ws, sym_comment, - STATE(2734), 3, + STATE(2756), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168651] = 6, + [169703] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(4707), 1, + anon_sym_CARET, + ACTIONS(4709), 1, + anon_sym_POUND_CARET, + ACTIONS(5539), 1, + anon_sym_POUNDC, + ACTIONS(5541), 1, + anon_sym_POUNDc, + STATE(2258), 1, + sym__metadata_lit, + STATE(2273), 1, + sym_meta_lit, + STATE(2277), 1, + sym_old_meta_lit, + STATE(2362), 1, + aux_sym_list_lit_repeat1, + [169731] = 6, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2468), 1, + STATE(2760), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6358), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2761), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168673] = 6, + [169753] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2465), 1, + STATE(2985), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6360), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2765), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168695] = 6, + [169775] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2785), 1, + STATE(2766), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168717] = 6, + [169797] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2784), 1, + STATE(2766), 1, sym_num_lit, - ACTIONS(6354), 2, + ACTIONS(6362), 2, sym__ws, sym_comment, - STATE(2772), 3, + STATE(2768), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168739] = 6, + [169819] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2779), 1, + STATE(2778), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6364), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2769), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168761] = 6, + [169841] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3102), 1, + STATE(2772), 1, sym_num_lit, - ACTIONS(6356), 2, + ACTIONS(6366), 2, sym__ws, sym_comment, - STATE(2763), 3, + STATE(2773), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168783] = 6, + [169863] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2839), 1, + STATE(2939), 1, sym_num_lit, - ACTIONS(6358), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2760), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168805] = 6, + [169885] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2462), 1, + STATE(2938), 1, sym_num_lit, - ACTIONS(6360), 2, + ACTIONS(6368), 2, sym__ws, sym_comment, - STATE(2741), 3, + STATE(2780), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168827] = 6, + [169907] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, - aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2460), 1, - sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6372), 1, + anon_sym_cl, + ACTIONS(6374), 1, + anon_sym_EQ, + ACTIONS(6370), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2657), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168849] = 6, + [169929] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2758), 1, + STATE(2781), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168871] = 6, + [169951] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2857), 1, + STATE(2785), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168893] = 6, + [169973] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2460), 1, + STATE(2786), 1, sym_num_lit, - ACTIONS(6362), 2, + ACTIONS(6376), 2, sym__ws, sym_comment, - STATE(2751), 3, + STATE(2787), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168915] = 6, + [169995] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3175), 1, + STATE(3233), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6378), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2668), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168937] = 6, + [170017] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2862), 1, + STATE(2885), 1, sym_num_lit, - ACTIONS(6364), 2, + ACTIONS(6380), 2, sym__ws, sym_comment, - STATE(2745), 3, + STATE(2789), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168959] = 6, + [170039] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3039), 1, + STATE(2790), 1, sym_num_lit, - ACTIONS(6366), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2699), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168981] = 6, + [170061] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5977), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2698), 1, + STATE(2791), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6382), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2793), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169003] = 6, + [170083] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2459), 1, + STATE(3231), 1, sym_num_lit, - ACTIONS(6368), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2752), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169025] = 6, + [170105] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, - aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2458), 1, - sym_num_lit, - ACTIONS(6370), 2, + ACTIONS(6386), 1, + anon_sym_cl, + ACTIONS(6388), 1, + anon_sym_EQ, + ACTIONS(6384), 2, sym__ws, sym_comment, - STATE(2755), 3, + STATE(2794), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169047] = 6, + [170127] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, - aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2456), 1, - sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6390), 1, + anon_sym_cl, + ACTIONS(6392), 1, + anon_sym_into, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169069] = 6, + [170149] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2455), 1, + STATE(2891), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6394), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2782), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169091] = 6, + [170171] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2454), 1, + STATE(3229), 1, sym_num_lit, - ACTIONS(6372), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2757), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169113] = 6, + [170193] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2747), 1, + STATE(2879), 1, sym_num_lit, - ACTIONS(6374), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2748), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169135] = 6, + [170215] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2452), 1, + STATE(2882), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6396), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2792), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169157] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(6376), 1, - aux_sym_num_lit_token2, - ACTIONS(4134), 7, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_COMMA, - [169173] = 6, + [170237] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2447), 1, + STATE(2884), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169195] = 6, + [170259] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3122), 1, + STATE(3132), 1, sym_num_lit, - ACTIONS(6378), 2, + ACTIONS(6398), 2, sym__ws, sym_comment, - STATE(2609), 3, + STATE(2682), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169217] = 6, + [170281] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5951), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(2444), 1, + STATE(3218), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169239] = 6, + [170303] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3121), 1, + STATE(2886), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6400), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2788), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169261] = 9, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4703), 1, - anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, - ACTIONS(5493), 1, - anon_sym_POUNDC, - ACTIONS(5495), 1, - anon_sym_POUNDc, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2379), 1, - aux_sym_list_lit_repeat1, - [169289] = 9, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4703), 1, - anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, - ACTIONS(5715), 1, - anon_sym_POUNDC, - ACTIONS(5717), 1, - anon_sym_POUNDc, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2379), 1, - aux_sym_list_lit_repeat1, - [169317] = 6, + [170325] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3105), 1, + STATE(2890), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6402), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2784), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169339] = 9, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4703), 1, - anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, - ACTIONS(5679), 1, - anon_sym_POUNDC, - ACTIONS(5681), 1, - anon_sym_POUNDc, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2379), 1, - aux_sym_list_lit_repeat1, - [169367] = 9, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4703), 1, - anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, - ACTIONS(5557), 1, - anon_sym_POUNDC, - ACTIONS(5559), 1, - anon_sym_POUNDc, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2379), 1, - aux_sym_list_lit_repeat1, - [169395] = 6, + [170347] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5998), 1, + ACTIONS(5977), 1, + aux_sym_num_lit_token1, + ACTIONS(6024), 1, anon_sym_POUND_, - ACTIONS(6380), 1, - anon_sym_cl, - ACTIONS(6382), 1, - anon_sym_into, - ACTIONS(5996), 2, + STATE(2783), 1, + sym_num_lit, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169417] = 9, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4703), 1, - anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, - ACTIONS(5577), 1, - anon_sym_POUNDC, - ACTIONS(5579), 1, - anon_sym_POUNDc, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2379), 1, - aux_sym_list_lit_repeat1, - [169445] = 9, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4703), 1, - anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, - ACTIONS(5617), 1, - anon_sym_POUNDC, - ACTIONS(5619), 1, - anon_sym_POUNDc, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2379), 1, - aux_sym_list_lit_repeat1, - [169473] = 9, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4703), 1, - anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, - ACTIONS(5637), 1, - anon_sym_POUNDC, - ACTIONS(5639), 1, - anon_sym_POUNDc, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2379), 1, - aux_sym_list_lit_repeat1, - [169501] = 6, + [170369] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5998), 1, + ACTIONS(5963), 1, + aux_sym_num_lit_token1, + ACTIONS(6024), 1, anon_sym_POUND_, - ACTIONS(6386), 1, - anon_sym_cl, - ACTIONS(6388), 1, - anon_sym_EQ, - ACTIONS(6384), 2, + STATE(3216), 1, + sym_num_lit, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2684), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169523] = 6, + [170391] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5998), 1, + ACTIONS(5963), 1, + aux_sym_num_lit_token1, + ACTIONS(6024), 1, anon_sym_POUND_, - ACTIONS(6392), 1, - anon_sym_cl, - ACTIONS(6394), 1, - anon_sym_EQ, - ACTIONS(6390), 2, + STATE(2898), 1, + sym_num_lit, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2689), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169545] = 6, + [170413] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5919), 1, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - ACTIONS(5998), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - STATE(3101), 1, + STATE(2942), 1, sym_num_lit, - ACTIONS(5996), 2, + ACTIONS(6404), 2, sym__ws, sym_comment, - STATE(2423), 3, + STATE(2779), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169567] = 3, + [170435] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6396), 1, - aux_sym_num_lit_token2, - ACTIONS(4134), 7, - sym__ws, - sym_comment, - anon_sym_POUND_, + ACTIONS(5963), 1, aux_sym_num_lit_token1, - anon_sym_cl, - anon_sym_EQ, - anon_sym_into, - [169583] = 9, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4703), 1, - anon_sym_CARET, - ACTIONS(4705), 1, - anon_sym_POUND_CARET, - ACTIONS(5597), 1, - anon_sym_POUNDC, - ACTIONS(5599), 1, - anon_sym_POUNDc, - STATE(2239), 1, - sym__metadata_lit, - STATE(2267), 1, - sym_meta_lit, - STATE(2268), 1, - sym_old_meta_lit, - STATE(2379), 1, - aux_sym_list_lit_repeat1, - [169611] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(6024), 1, anon_sym_POUND_, - ACTIONS(6400), 1, - anon_sym_RPAREN, - ACTIONS(6398), 2, + STATE(2973), 1, + sym_num_lit, + ACTIONS(6406), 2, sym__ws, sym_comment, - STATE(2828), 3, + STATE(2775), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169630] = 5, + [170457] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5963), 1, + aux_sym_num_lit_token1, + ACTIONS(6024), 1, anon_sym_POUND_, - ACTIONS(6404), 1, - anon_sym_RPAREN, - ACTIONS(6402), 2, + STATE(3210), 1, + sym_num_lit, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(3114), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169649] = 5, + [170479] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5977), 1, + aux_sym_num_lit_token1, + ACTIONS(6024), 1, anon_sym_POUND_, - ACTIONS(6406), 1, - anon_sym_LPAREN, - ACTIONS(5897), 2, + STATE(2771), 1, + sym_num_lit, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169668] = 5, + [170501] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(6024), 1, anon_sym_POUND_, ACTIONS(6408), 1, - anon_sym_LPAREN, - ACTIONS(5897), 2, - sym__ws, - sym_comment, - STATE(2236), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [169687] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5893), 1, - anon_sym_POUND_, - ACTIONS(6412), 1, - anon_sym_RPAREN, - ACTIONS(6410), 2, + anon_sym_cl, + ACTIONS(6410), 1, + anon_sym_EQ, + ACTIONS(6026), 2, sym__ws, sym_comment, - STATE(3103), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169706] = 5, + [170523] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(6024), 1, anon_sym_POUND_, + ACTIONS(6414), 1, + anon_sym_cl, ACTIONS(6416), 1, - anon_sym_LPAREN, - ACTIONS(6414), 2, + anon_sym_EQ, + ACTIONS(6412), 2, sym__ws, sym_comment, - STATE(2777), 3, + STATE(2751), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169725] = 5, + [170545] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(6024), 1, anon_sym_POUND_, ACTIONS(6420), 1, - anon_sym_LPAREN, + anon_sym_cl, + ACTIONS(6422), 1, + anon_sym_EQ, ACTIONS(6418), 2, sym__ws, sym_comment, - STATE(2778), 3, + STATE(2704), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169744] = 5, + [170567] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6422), 1, - anon_sym_LPAREN, - ACTIONS(5897), 2, + ACTIONS(6424), 1, + anon_sym_RPAREN, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169763] = 5, + [170586] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6424), 1, + ACTIONS(6426), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169782] = 5, + [170605] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6428), 1, anon_sym_RPAREN, - ACTIONS(6426), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(3093), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169801] = 5, + [170624] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6432), 1, anon_sym_RPAREN, ACTIONS(6430), 2, sym__ws, sym_comment, - STATE(3092), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [169820] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5893), 1, - anon_sym_POUND_, - ACTIONS(6434), 1, - anon_sym_RPAREN, - ACTIONS(5897), 2, - sym__ws, - sym_comment, - STATE(2236), 3, + STATE(2805), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169839] = 5, + [170643] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6436), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(6434), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2806), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169858] = 5, + [170662] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6440), 1, - anon_sym_LPAREN, + anon_sym_RPAREN, ACTIONS(6438), 2, sym__ws, sym_comment, - STATE(2782), 3, + STATE(2809), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169877] = 5, + [170681] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6442), 1, - anon_sym_LPAREN, - ACTIONS(5897), 2, + ACTIONS(6444), 1, + anon_sym_RPAREN, + ACTIONS(6442), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2813), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169896] = 5, + [170700] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6444), 1, - anon_sym_LPAREN, - ACTIONS(5897), 2, + ACTIONS(6448), 1, + anon_sym_RPAREN, + ACTIONS(6446), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2984), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169915] = 5, + [170719] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6448), 1, - anon_sym_LPAREN, - ACTIONS(6446), 2, + ACTIONS(6450), 1, + anon_sym_RPAREN, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2789), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169934] = 5, + [170738] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6452), 1, - anon_sym_LPAREN, - ACTIONS(6450), 2, + anon_sym_RPAREN, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2790), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169953] = 5, + [170757] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6456), 1, anon_sym_RPAREN, ACTIONS(6454), 2, sym__ws, sym_comment, - STATE(2795), 3, + STATE(2817), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169972] = 5, + [170776] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6458), 1, - anon_sym_LPAREN, - ACTIONS(5897), 2, + ACTIONS(6460), 1, + anon_sym_RPAREN, + ACTIONS(6458), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2818), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169991] = 5, + [170795] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6460), 1, + ACTIONS(6462), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170010] = 5, + [170814] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6464), 1, + ACTIONS(6466), 1, anon_sym_RPAREN, - ACTIONS(6462), 2, + ACTIONS(6464), 2, sym__ws, sym_comment, - STATE(2801), 3, + STATE(2820), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170029] = 5, + [170833] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6468), 1, + ACTIONS(6470), 1, anon_sym_RPAREN, - ACTIONS(6466), 2, + ACTIONS(6468), 2, sym__ws, sym_comment, - STATE(2802), 3, + STATE(2821), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170048] = 5, + [170852] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6472), 1, + ACTIONS(6474), 1, anon_sym_RPAREN, - ACTIONS(6470), 2, + ACTIONS(6472), 2, sym__ws, sym_comment, - STATE(2805), 3, + STATE(2823), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170067] = 5, + [170871] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6476), 1, anon_sym_RPAREN, - ACTIONS(6474), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2809), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170086] = 5, + [170890] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6480), 1, - anon_sym_LPAREN, + anon_sym_RPAREN, ACTIONS(6478), 2, sym__ws, sym_comment, - STATE(2794), 3, + STATE(2826), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170105] = 5, + [170909] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6482), 1, + ACTIONS(6484), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(6482), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2827), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170124] = 5, + [170928] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6484), 1, + ACTIONS(6488), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(6486), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2829), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170143] = 5, + [170947] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6488), 1, + ACTIONS(6490), 1, anon_sym_RPAREN, - ACTIONS(6486), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2813), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170162] = 5, + [170966] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6492), 1, anon_sym_RPAREN, - ACTIONS(6490), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2814), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170181] = 5, + [170985] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6494), 1, + ACTIONS(6496), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(6494), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2832), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170200] = 5, + [171004] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6498), 1, anon_sym_RPAREN, - ACTIONS(6496), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2816), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170219] = 5, + [171023] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6502), 1, + ACTIONS(6500), 1, anon_sym_RPAREN, - ACTIONS(6500), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2817), 3, + STATE(2256), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [171042] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5913), 1, + anon_sym_POUND_, + ACTIONS(6504), 1, + anon_sym_RPAREN, + ACTIONS(6502), 2, + sym__ws, + sym_comment, + STATE(2833), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170238] = 5, + [171061] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6506), 1, anon_sym_RPAREN, - ACTIONS(6504), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2819), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170257] = 5, + [171080] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6508), 1, + ACTIONS(6510), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(6508), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2834), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170276] = 5, + [171099] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6512), 1, + ACTIONS(6514), 1, anon_sym_RPAREN, - ACTIONS(6510), 2, + ACTIONS(6512), 2, sym__ws, sym_comment, - STATE(2822), 3, + STATE(2835), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170295] = 5, + [171118] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6516), 1, anon_sym_RPAREN, - ACTIONS(6514), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2823), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170314] = 5, + [171137] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6520), 1, + ACTIONS(6518), 1, anon_sym_RPAREN, - ACTIONS(6518), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2825), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170333] = 5, + [171156] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6522), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(6520), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2837), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170352] = 5, + [171175] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6524), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170371] = 5, + [171194] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6528), 1, anon_sym_RPAREN, ACTIONS(6526), 2, sym__ws, sym_comment, - STATE(2867), 3, + STATE(2838), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170390] = 5, + [171213] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6530), 1, + ACTIONS(6532), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(6530), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2839), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170409] = 5, + [171232] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6532), 1, + ACTIONS(6534), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170428] = 5, + [171251] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6536), 1, anon_sym_RPAREN, - ACTIONS(6534), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2829), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170447] = 5, + [171270] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6538), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [171289] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5913), 1, + anon_sym_POUND_, + ACTIONS(6540), 1, + anon_sym_RPAREN, + ACTIONS(5935), 2, + sym__ws, + sym_comment, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170466] = 5, + [171308] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6542), 1, + ACTIONS(6544), 1, anon_sym_RPAREN, - ACTIONS(6540), 2, + ACTIONS(6542), 2, sym__ws, sym_comment, - STATE(2830), 3, + STATE(2841), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170485] = 5, + [171327] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6546), 1, anon_sym_RPAREN, - ACTIONS(6544), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2831), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170504] = 5, + [171346] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6548), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170523] = 5, + [171365] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6550), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170542] = 5, + [171384] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6554), 1, anon_sym_RPAREN, ACTIONS(6552), 2, sym__ws, sym_comment, - STATE(2833), 3, + STATE(2842), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170561] = 5, + [171403] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6556), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170580] = 5, + [171422] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6560), 1, + ACTIONS(6558), 1, anon_sym_RPAREN, - ACTIONS(6558), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2834), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170599] = 5, + [171441] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6564), 1, + ACTIONS(6560), 1, anon_sym_RPAREN, - ACTIONS(6562), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2835), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170618] = 5, + [171460] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6566), 1, + ACTIONS(6562), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170637] = 5, + [171479] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6568), 1, + ACTIONS(6566), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(6564), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2976), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170656] = 5, + [171498] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6570), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(6568), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2977), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170675] = 5, + [171517] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6572), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170694] = 5, + [171536] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6576), 1, + ACTIONS(6574), 1, anon_sym_RPAREN, - ACTIONS(6574), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2837), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170713] = 5, + [171555] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6578), 1, + ACTIONS(6576), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170732] = 5, + [171574] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6580), 1, + ACTIONS(6578), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170751] = 5, + [171593] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6582), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(6580), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2979), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170770] = 5, + [171612] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6586), 1, - anon_sym_RPAREN, - ACTIONS(6584), 2, + ACTIONS(6584), 1, + anon_sym_LPAREN, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2838), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170789] = 5, + [171631] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6588), 1, - anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(6586), 1, + anon_sym_LPAREN, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170808] = 5, + [171650] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6590), 1, - anon_sym_RPAREN, - ACTIONS(5897), 2, + anon_sym_LPAREN, + ACTIONS(6588), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2852), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170827] = 5, + [171669] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6594), 1, - anon_sym_RPAREN, + anon_sym_LPAREN, ACTIONS(6592), 2, sym__ws, sym_comment, - STATE(3117), 3, + STATE(2853), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170846] = 5, + [171688] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6596), 1, - anon_sym_LPAREN, - ACTIONS(5897), 2, + anon_sym_RPAREN, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170865] = 5, + [171707] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6598), 1, anon_sym_LPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170884] = 5, + [171726] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6602), 1, anon_sym_LPAREN, ACTIONS(6600), 2, sym__ws, sym_comment, - STATE(2840), 3, + STATE(2857), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170903] = 5, + [171745] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6606), 1, + ACTIONS(6604), 1, anon_sym_LPAREN, - ACTIONS(6604), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2841), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170922] = 5, + [171764] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6608), 1, + ACTIONS(6606), 1, anon_sym_LPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170941] = 5, + [171783] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6612), 1, + ACTIONS(6610), 1, anon_sym_LPAREN, - ACTIONS(6610), 2, + ACTIONS(6608), 2, sym__ws, sym_comment, - STATE(2844), 3, + STATE(2859), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170960] = 5, + [171802] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6614), 1, - anon_sym_LPAREN, - ACTIONS(5897), 2, + ACTIONS(6612), 1, + anon_sym_RPAREN, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170979] = 5, + [171821] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6616), 1, anon_sym_LPAREN, - ACTIONS(5897), 2, + ACTIONS(6614), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2860), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170998] = 5, + [171840] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6620), 1, + ACTIONS(6618), 1, anon_sym_LPAREN, - ACTIONS(6618), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2846), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171017] = 5, + [171859] = 4, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5227), 1, + anon_sym_COLON_COLON, + ACTIONS(6620), 1, + anon_sym_COLON, + ACTIONS(4500), 5, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_cl, + anon_sym_EQ, + [171876] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6624), 1, anon_sym_LPAREN, ACTIONS(6622), 2, sym__ws, sym_comment, - STATE(2847), 3, + STATE(2864), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171036] = 5, + [171895] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6626), 1, - anon_sym_RPAREN, - ACTIONS(5897), 2, + anon_sym_LPAREN, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171055] = 5, + [171914] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6628), 1, anon_sym_LPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171074] = 5, + [171933] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6632), 1, anon_sym_LPAREN, ACTIONS(6630), 2, sym__ws, sym_comment, - STATE(2851), 3, + STATE(2867), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171093] = 5, + [171952] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, - anon_sym_POUND_, + ACTIONS(5227), 1, + anon_sym_COLON_COLON, ACTIONS(6634), 1, - anon_sym_LPAREN, - ACTIONS(5897), 2, + anon_sym_COLON, + ACTIONS(4500), 5, sym__ws, sym_comment, - STATE(2236), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [171112] = 5, + anon_sym_POUND_, + anon_sym_cl, + anon_sym_EQ, + [171969] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6636), 1, + ACTIONS(6638), 1, anon_sym_LPAREN, - ACTIONS(5897), 2, + ACTIONS(6636), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2868), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171131] = 5, + [171988] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6640), 1, anon_sym_LPAREN, - ACTIONS(6638), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2853), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171150] = 5, + [172007] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6644), 1, - anon_sym_LPAREN, + anon_sym_RPAREN, ACTIONS(6642), 2, sym__ws, sym_comment, - STATE(2854), 3, + STATE(2799), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171169] = 5, + [172026] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6648), 1, - anon_sym_RPAREN, + anon_sym_LPAREN, ACTIONS(6646), 2, sym__ws, sym_comment, - STATE(3173), 3, + STATE(2872), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171188] = 5, + [172045] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6650), 1, - anon_sym_LPAREN, - ACTIONS(5897), 2, + anon_sym_RPAREN, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171207] = 5, + [172064] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6654), 1, + ACTIONS(6652), 1, anon_sym_LPAREN, - ACTIONS(6652), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2858), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171226] = 5, + [172083] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6656), 1, + ACTIONS(6654), 1, anon_sym_LPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171245] = 5, + [172102] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6658), 1, anon_sym_LPAREN, - ACTIONS(5897), 2, + ACTIONS(6656), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2876), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171264] = 5, + [172121] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6662), 1, anon_sym_RPAREN, ACTIONS(6660), 2, sym__ws, sym_comment, - STATE(3174), 3, + STATE(3206), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171283] = 5, + [172140] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6666), 1, anon_sym_LPAREN, ACTIONS(6664), 2, sym__ws, sym_comment, - STATE(2860), 3, + STATE(2877), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171302] = 5, + [172159] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6670), 1, + ACTIONS(6668), 1, anon_sym_LPAREN, - ACTIONS(6668), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2861), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171321] = 5, + [172178] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6672), 1, - anon_sym_LPAREN, - ACTIONS(5897), 2, - sym__ws, - sym_comment, - STATE(2236), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [171340] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5893), 1, - anon_sym_POUND_, - ACTIONS(6676), 1, anon_sym_RPAREN, - ACTIONS(6674), 2, + ACTIONS(6670), 2, sym__ws, sym_comment, - STATE(2850), 3, + STATE(3207), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171359] = 5, + [172197] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6678), 1, + ACTIONS(6674), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171378] = 5, + [172216] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6680), 1, + ACTIONS(6678), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(6676), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(3213), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171397] = 5, + [172235] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6682), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, - sym__ws, - sym_comment, - STATE(2236), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [171416] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5893), 1, - anon_sym_POUND_, - ACTIONS(6684), 1, - anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(6680), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171435] = 5, + [172254] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6686), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(6684), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(3215), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171454] = 5, + [172273] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6688), 1, - anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(6690), 1, + anon_sym_LPAREN, + ACTIONS(6688), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2881), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171473] = 5, + [172292] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6692), 1, - anon_sym_RPAREN, - ACTIONS(6690), 2, + anon_sym_LPAREN, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2783), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171492] = 5, + [172311] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6696), 1, anon_sym_RPAREN, ACTIONS(6694), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2893), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171511] = 5, + [172330] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6698), 1, + ACTIONS(6700), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(6698), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(3217), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171530] = 5, + [172349] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6702), 1, + ACTIONS(6704), 1, anon_sym_RPAREN, - ACTIONS(6700), 2, + ACTIONS(6702), 2, sym__ws, sym_comment, - STATE(2786), 3, + STATE(2883), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171549] = 5, + [172368] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6706), 1, - anon_sym_LPAREN, - ACTIONS(6704), 2, + anon_sym_RPAREN, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2865), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171568] = 5, + [172387] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6708), 1, - anon_sym_LPAREN, - ACTIONS(5897), 2, + anon_sym_RPAREN, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171587] = 5, + [172406] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6712), 1, anon_sym_RPAREN, ACTIONS(6710), 2, sym__ws, sym_comment, - STATE(2787), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [171606] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5893), 1, - anon_sym_POUND_, - ACTIONS(6714), 1, - anon_sym_RPAREN, - ACTIONS(5897), 2, - sym__ws, - sym_comment, - STATE(2236), 3, + STATE(2899), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171625] = 5, + [172425] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6716), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, - sym__ws, - sym_comment, - STATE(2236), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [171644] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5893), 1, - anon_sym_POUND_, - ACTIONS(6718), 1, - anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(6714), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2900), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171663] = 5, + [172444] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6720), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(6718), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171682] = 5, + [172463] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6724), 1, anon_sym_RPAREN, ACTIONS(6722), 2, sym__ws, sym_comment, - STATE(2870), 3, + STATE(2907), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171701] = 5, + [172482] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6728), 1, anon_sym_RPAREN, ACTIONS(6726), 2, sym__ws, sym_comment, - STATE(2871), 3, + STATE(3222), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171720] = 5, + [172501] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6732), 1, + ACTIONS(6730), 1, anon_sym_RPAREN, - ACTIONS(6730), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2890), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171739] = 5, + [172520] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6734), 1, + ACTIONS(6732), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171758] = 5, + [172539] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6738), 1, + ACTIONS(6736), 1, anon_sym_RPAREN, - ACTIONS(6736), 2, + ACTIONS(6734), 2, sym__ws, sym_comment, - STATE(2872), 3, + STATE(2911), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171777] = 5, + [172558] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6740), 1, - anon_sym_LPAREN, - ACTIONS(5897), 2, + anon_sym_RPAREN, + ACTIONS(6738), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2912), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171796] = 5, + [172577] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6742), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171815] = 5, + [172596] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6746), 1, anon_sym_RPAREN, ACTIONS(6744), 2, sym__ws, sym_comment, - STATE(2896), 3, + STATE(2914), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171834] = 5, + [172615] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6750), 1, anon_sym_RPAREN, ACTIONS(6748), 2, sym__ws, sym_comment, - STATE(2897), 3, + STATE(2915), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171853] = 5, + [172634] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6754), 1, anon_sym_RPAREN, ACTIONS(6752), 2, sym__ws, sym_comment, - STATE(2900), 3, + STATE(2917), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171872] = 5, + [172653] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6758), 1, + ACTIONS(6756), 1, anon_sym_RPAREN, - ACTIONS(6756), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2904), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171891] = 5, + [172672] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6760), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(6758), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2920), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171910] = 5, + [172691] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6762), 1, + ACTIONS(6764), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(6762), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2921), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171929] = 5, + [172710] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6764), 1, + ACTIONS(6768), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(6766), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2923), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171948] = 5, + [172729] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6768), 1, + ACTIONS(6770), 1, anon_sym_RPAREN, - ACTIONS(6766), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2908), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171967] = 5, + [172748] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6772), 1, anon_sym_RPAREN, - ACTIONS(6770), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2909), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171986] = 5, + [172767] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6774), 1, + ACTIONS(6776), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(6774), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2926), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172005] = 5, + [172786] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6778), 1, anon_sym_RPAREN, - ACTIONS(6776), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2911), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172024] = 5, + [172805] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6782), 1, + ACTIONS(6780), 1, anon_sym_RPAREN, - ACTIONS(6780), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2912), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172043] = 5, + [172824] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6786), 1, + ACTIONS(6784), 1, anon_sym_RPAREN, - ACTIONS(6784), 2, + ACTIONS(6782), 2, sym__ws, sym_comment, - STATE(2914), 3, + STATE(2927), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172062] = 5, + [172843] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6788), 1, + ACTIONS(6786), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172081] = 5, + [172862] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6792), 1, + ACTIONS(6790), 1, anon_sym_RPAREN, - ACTIONS(6790), 2, + ACTIONS(6788), 2, sym__ws, sym_comment, - STATE(2917), 3, + STATE(2928), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172100] = 5, + [172881] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6796), 1, + ACTIONS(6794), 1, anon_sym_RPAREN, - ACTIONS(6794), 2, + ACTIONS(6792), 2, sym__ws, sym_comment, - STATE(2918), 3, + STATE(2929), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172119] = 5, + [172900] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6800), 1, + ACTIONS(6796), 1, anon_sym_RPAREN, - ACTIONS(6798), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2920), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172138] = 5, + [172919] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6802), 1, + ACTIONS(6798), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172157] = 5, + [172938] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6804), 1, + ACTIONS(6802), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(6800), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2931), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172176] = 5, + [172957] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6808), 1, + ACTIONS(6804), 1, anon_sym_RPAREN, - ACTIONS(6806), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2923), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172195] = 5, + [172976] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6810), 1, + ACTIONS(6808), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(6806), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2932), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172214] = 5, + [172995] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6812), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(6810), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2933), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172233] = 5, + [173014] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6816), 1, + ACTIONS(6814), 1, anon_sym_RPAREN, - ACTIONS(6814), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2924), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172252] = 5, + [173033] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6818), 1, + ACTIONS(6816), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172271] = 5, + [173052] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6822), 1, + ACTIONS(6818), 1, anon_sym_RPAREN, - ACTIONS(6820), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2925), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172290] = 5, + [173071] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6826), 1, + ACTIONS(6820), 1, anon_sym_RPAREN, - ACTIONS(6824), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2926), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172309] = 5, + [173090] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6828), 1, + ACTIONS(6824), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(6822), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2935), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172328] = 5, + [173109] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6830), 1, + ACTIONS(6826), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172347] = 5, + [173128] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6834), 1, + ACTIONS(6828), 1, anon_sym_RPAREN, - ACTIONS(6832), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2928), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172366] = 5, + [173147] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6836), 1, + ACTIONS(6830), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172385] = 5, + [173166] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6840), 1, + ACTIONS(6834), 1, anon_sym_RPAREN, - ACTIONS(6838), 2, + ACTIONS(6832), 2, sym__ws, sym_comment, - STATE(2929), 3, + STATE(2936), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172404] = 5, + [173185] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6844), 1, + ACTIONS(6836), 1, anon_sym_RPAREN, - ACTIONS(6842), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2930), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172423] = 5, + [173204] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6846), 1, + ACTIONS(6838), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172442] = 5, + [173223] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6848), 1, + ACTIONS(6840), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172461] = 5, + [173242] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6850), 1, + ACTIONS(6844), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(6842), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2856), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172480] = 5, + [173261] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6852), 1, + ACTIONS(6848), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(6846), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2862), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172499] = 5, + [173280] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6856), 1, - anon_sym_RPAREN, - ACTIONS(6854), 2, + ACTIONS(6850), 1, + anon_sym_LPAREN, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2932), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172518] = 5, + [173299] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6858), 1, - anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(6854), 1, + anon_sym_LPAREN, + ACTIONS(6852), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2888), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172537] = 5, + [173318] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6860), 1, + ACTIONS(6858), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(6856), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(3226), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172556] = 5, + [173337] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6862), 1, - anon_sym_RPAREN, - ACTIONS(5897), 2, + anon_sym_LPAREN, + ACTIONS(6860), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2940), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172575] = 5, + [173356] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6866), 1, - anon_sym_RPAREN, - ACTIONS(6864), 2, + ACTIONS(6864), 1, + anon_sym_LPAREN, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2933), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172594] = 5, + [173375] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6868), 1, - anon_sym_RPAREN, - ACTIONS(5897), 2, + anon_sym_LPAREN, + ACTIONS(6866), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2944), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172613] = 5, + [173394] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6870), 1, - anon_sym_RPAREN, - ACTIONS(5897), 2, + anon_sym_LPAREN, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172632] = 5, + [173413] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6872), 1, - anon_sym_RPAREN, - ACTIONS(5897), 2, + anon_sym_LPAREN, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172651] = 5, + [173432] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6876), 1, anon_sym_LPAREN, ACTIONS(6874), 2, sym__ws, sym_comment, - STATE(2878), 3, + STATE(2946), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172670] = 5, + [173451] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6880), 1, anon_sym_LPAREN, ACTIONS(6878), 2, sym__ws, sym_comment, - STATE(2889), 3, + STATE(2947), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172689] = 5, + [173470] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6882), 1, anon_sym_LPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172708] = 5, + [173489] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6886), 1, anon_sym_LPAREN, ACTIONS(6884), 2, sym__ws, sym_comment, - STATE(2937), 3, + STATE(2950), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172727] = 5, + [173508] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6888), 1, - anon_sym_LPAREN, - ACTIONS(5897), 2, + anon_sym_RPAREN, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172746] = 5, + [173527] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6890), 1, anon_sym_LPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172765] = 5, + [173546] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6894), 1, - anon_sym_LPAREN, - ACTIONS(6892), 2, + ACTIONS(6892), 1, + anon_sym_RPAREN, + ACTIONS(5935), 2, + sym__ws, + sym_comment, + STATE(2256), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [173565] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5913), 1, + anon_sym_POUND_, + ACTIONS(6896), 1, + anon_sym_RPAREN, + ACTIONS(6894), 2, sym__ws, sym_comment, - STATE(2939), 3, + STATE(2952), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172784] = 5, + [173584] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6898), 1, - anon_sym_LPAREN, - ACTIONS(6896), 2, + anon_sym_RPAREN, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2940), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172803] = 5, + [173603] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6900), 1, anon_sym_LPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172822] = 5, + [173622] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6904), 1, anon_sym_LPAREN, ACTIONS(6902), 2, sym__ws, sym_comment, - STATE(2943), 3, + STATE(2953), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172841] = 5, + [173641] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6908), 1, anon_sym_RPAREN, ACTIONS(6906), 2, sym__ws, sym_comment, - STATE(2875), 3, + STATE(3130), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172860] = 5, + [173660] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6912), 1, - anon_sym_RPAREN, + anon_sym_LPAREN, ACTIONS(6910), 2, sym__ws, sym_comment, - STATE(2881), 3, + STATE(2957), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172879] = 5, + [173679] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6914), 1, - anon_sym_RPAREN, - ACTIONS(5897), 2, + anon_sym_LPAREN, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172898] = 5, + [173698] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6918), 1, - anon_sym_RPAREN, + anon_sym_LPAREN, ACTIONS(6916), 2, sym__ws, sym_comment, - STATE(2950), 3, + STATE(2961), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172917] = 5, + [173717] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6922), 1, - anon_sym_RPAREN, - ACTIONS(6920), 2, + ACTIONS(6920), 1, + anon_sym_LPAREN, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2882), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172936] = 5, + [173736] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6924), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(6922), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(3219), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172955] = 5, + [173755] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6928), 1, + ACTIONS(6926), 1, anon_sym_RPAREN, - ACTIONS(6926), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2958), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172974] = 5, + [173774] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6932), 1, + ACTIONS(6928), 1, anon_sym_RPAREN, - ACTIONS(6930), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2959), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172993] = 5, + [173793] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5227), 1, + anon_sym_COLON_COLON, + ACTIONS(6930), 1, + anon_sym_COLON, + ACTIONS(4500), 5, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(6934), 1, - anon_sym_RPAREN, - ACTIONS(5897), 2, + anon_sym_cl, + anon_sym_EQ, + [173810] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5913), 1, + anon_sym_POUND_, + ACTIONS(6932), 1, + anon_sym_LPAREN, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173012] = 5, + [173829] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6936), 1, - anon_sym_RPAREN, - ACTIONS(5897), 2, + anon_sym_LPAREN, + ACTIONS(6934), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2963), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173031] = 5, + [173848] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6940), 1, - anon_sym_RPAREN, + anon_sym_LPAREN, ACTIONS(6938), 2, sym__ws, sym_comment, - STATE(2972), 3, + STATE(2968), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173050] = 5, + [173867] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6944), 1, - anon_sym_RPAREN, - ACTIONS(6942), 2, + ACTIONS(6942), 1, + anon_sym_LPAREN, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2979), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173069] = 5, + [173886] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6948), 1, - anon_sym_RPAREN, - ACTIONS(6946), 2, + ACTIONS(6946), 1, + anon_sym_LPAREN, + ACTIONS(6944), 2, sym__ws, sym_comment, - STATE(2883), 3, + STATE(2971), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173088] = 5, + [173905] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6950), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(6948), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(3230), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173107] = 5, + [173924] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6952), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173126] = 5, + [173943] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6956), 1, anon_sym_RPAREN, ACTIONS(6954), 2, sym__ws, sym_comment, - STATE(2984), 3, + STATE(2843), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173145] = 5, + [173962] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6958), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173164] = 5, + [173981] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6960), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173183] = 5, + [174000] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6964), 1, anon_sym_RPAREN, ACTIONS(6962), 2, sym__ws, sym_comment, - STATE(2887), 3, + STATE(2980), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173202] = 5, + [174019] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6968), 1, + ACTIONS(6966), 1, anon_sym_RPAREN, - ACTIONS(6966), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2895), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173221] = 5, + [174038] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6972), 1, + ACTIONS(6968), 1, anon_sym_RPAREN, - ACTIONS(6970), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2990), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173240] = 5, + [174057] = 4, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5227), 1, + anon_sym_COLON_COLON, + ACTIONS(6970), 1, + anon_sym_COLON, + ACTIONS(4500), 5, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_cl, + anon_sym_EQ, + [174074] = 4, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5227), 1, + anon_sym_COLON_COLON, + ACTIONS(6972), 1, + anon_sym_COLON, + ACTIONS(4500), 5, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_cl, + anon_sym_EQ, + [174091] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6976), 1, anon_sym_RPAREN, ACTIONS(6974), 2, sym__ws, sym_comment, - STATE(2934), 3, + STATE(2987), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173259] = 5, + [174110] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6978), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173278] = 5, + [174129] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6982), 1, anon_sym_RPAREN, ACTIONS(6980), 2, sym__ws, sym_comment, - STATE(2947), 3, + STATE(2875), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173297] = 5, + [174148] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6986), 1, anon_sym_RPAREN, ACTIONS(6984), 2, sym__ws, sym_comment, - STATE(2880), 3, + STATE(2954), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173316] = 5, + [174167] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6990), 1, + ACTIONS(6988), 1, anon_sym_RPAREN, - ACTIONS(6988), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2953), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173335] = 5, + [174186] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(6994), 1, + ACTIONS(6992), 1, anon_sym_RPAREN, - ACTIONS(6992), 2, + ACTIONS(6990), 2, sym__ws, sym_comment, - STATE(2954), 3, + STATE(2993), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173354] = 5, + [174205] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(6996), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(6994), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2994), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173373] = 5, + [174224] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(7000), 1, anon_sym_RPAREN, ACTIONS(6998), 2, sym__ws, sym_comment, - STATE(3030), 3, + STATE(2997), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173392] = 5, + [174243] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(7004), 1, anon_sym_RPAREN, ACTIONS(7002), 2, sym__ws, sym_comment, - STATE(3031), 3, + STATE(3001), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173411] = 5, + [174262] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(7006), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [174281] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5913), 1, + anon_sym_POUND_, + ACTIONS(7008), 1, + anon_sym_RPAREN, + ACTIONS(5935), 2, + sym__ws, + sym_comment, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173430] = 5, + [174300] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(7010), 1, anon_sym_RPAREN, - ACTIONS(7008), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2961), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173449] = 5, + [174319] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(7014), 1, anon_sym_RPAREN, ACTIONS(7012), 2, sym__ws, sym_comment, - STATE(2962), 3, + STATE(3005), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173468] = 5, + [174338] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(7018), 1, anon_sym_RPAREN, ACTIONS(7016), 2, sym__ws, sym_comment, - STATE(3033), 3, + STATE(3006), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173487] = 5, + [174357] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(7020), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173506] = 5, + [174376] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(7024), 1, anon_sym_RPAREN, ACTIONS(7022), 2, sym__ws, sym_comment, - STATE(3036), 3, + STATE(3008), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173525] = 5, + [174395] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(7028), 1, anon_sym_RPAREN, ACTIONS(7026), 2, sym__ws, sym_comment, - STATE(2985), 3, + STATE(3009), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173544] = 5, + [174414] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(7032), 1, anon_sym_RPAREN, ACTIONS(7030), 2, sym__ws, sym_comment, - STATE(3037), 3, + STATE(3011), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173563] = 5, + [174433] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7036), 1, + ACTIONS(7034), 1, anon_sym_RPAREN, - ACTIONS(7034), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(3047), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173582] = 5, + [174452] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(7038), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(7036), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(3014), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173601] = 5, + [174471] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7040), 1, + ACTIONS(7042), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(7040), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(3015), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173620] = 5, + [174490] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7044), 1, + ACTIONS(7046), 1, anon_sym_RPAREN, - ACTIONS(7042), 2, + ACTIONS(7044), 2, sym__ws, sym_comment, - STATE(2991), 3, + STATE(3017), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173639] = 5, + [174509] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(7048), 1, anon_sym_RPAREN, - ACTIONS(7046), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2992), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173658] = 5, + [174528] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7052), 1, + ACTIONS(7050), 1, anon_sym_RPAREN, - ACTIONS(7050), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2995), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173677] = 5, + [174547] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7056), 1, + ACTIONS(7054), 1, anon_sym_RPAREN, - ACTIONS(7054), 2, + ACTIONS(7052), 2, sym__ws, sym_comment, - STATE(2999), 3, + STATE(3020), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173696] = 5, + [174566] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7058), 1, + ACTIONS(7056), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173715] = 5, + [174585] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7060), 1, + ACTIONS(7058), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173734] = 5, + [174604] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(7062), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(7060), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(3021), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173753] = 5, + [174623] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7066), 1, + ACTIONS(7064), 1, anon_sym_RPAREN, - ACTIONS(7064), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(3003), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173772] = 5, + [174642] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7070), 1, + ACTIONS(7068), 1, anon_sym_RPAREN, - ACTIONS(7068), 2, + ACTIONS(7066), 2, sym__ws, sym_comment, - STATE(3004), 3, + STATE(3022), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173791] = 5, + [174661] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(7072), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(7070), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(3023), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173810] = 5, + [174680] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, + anon_sym_POUND_, + ACTIONS(7074), 1, + anon_sym_RPAREN, + ACTIONS(5935), 2, + sym__ws, + sym_comment, + STATE(2256), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [174699] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(7076), 1, anon_sym_RPAREN, - ACTIONS(7074), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(3006), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173829] = 5, + [174718] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(7080), 1, anon_sym_RPAREN, ACTIONS(7078), 2, sym__ws, sym_comment, - STATE(3007), 3, + STATE(3025), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173848] = 5, + [174737] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7084), 1, + ACTIONS(7082), 1, anon_sym_RPAREN, - ACTIONS(7082), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(3009), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173867] = 5, + [174756] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(7086), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(7084), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(3026), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173886] = 5, + [174775] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(7090), 1, anon_sym_RPAREN, ACTIONS(7088), 2, sym__ws, sym_comment, - STATE(3012), 3, + STATE(3027), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173905] = 5, + [174794] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5913), 1, + anon_sym_POUND_, + ACTIONS(7092), 1, + anon_sym_RPAREN, + ACTIONS(5935), 2, + sym__ws, + sym_comment, + STATE(2256), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [174813] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(7094), 1, anon_sym_RPAREN, - ACTIONS(7092), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(3013), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173924] = 5, + [174832] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5913), 1, + anon_sym_POUND_, + ACTIONS(7096), 1, + anon_sym_RPAREN, + ACTIONS(5935), 2, + sym__ws, + sym_comment, + STATE(2256), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [174851] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(7098), 1, anon_sym_RPAREN, - ACTIONS(7096), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(3015), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173943] = 5, + [174870] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7100), 1, + ACTIONS(7102), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(7100), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(3029), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173962] = 5, + [174889] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7102), 1, + ACTIONS(7104), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173981] = 5, + [174908] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(7106), 1, anon_sym_RPAREN, - ACTIONS(7104), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(3018), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174000] = 5, + [174927] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(7108), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174019] = 5, + [174946] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7110), 1, + ACTIONS(7112), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(7110), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2798), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174038] = 5, + [174965] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(7114), 1, anon_sym_RPAREN, - ACTIONS(7112), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(3019), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174057] = 5, + [174984] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(7116), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174076] = 5, + [175003] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7120), 1, + ACTIONS(7118), 1, anon_sym_RPAREN, - ACTIONS(7118), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(3020), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174095] = 5, + [175022] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7124), 1, + ACTIONS(7120), 1, anon_sym_RPAREN, - ACTIONS(7122), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(3021), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174114] = 5, + [175041] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7126), 1, + ACTIONS(7122), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174133] = 5, + [175060] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7128), 1, + ACTIONS(7126), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(7124), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(3036), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174152] = 5, + [175079] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7132), 1, + ACTIONS(7128), 1, anon_sym_RPAREN, - ACTIONS(7130), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(3023), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174171] = 5, + [175098] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7134), 1, + ACTIONS(7130), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174190] = 5, + [175117] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7138), 1, + ACTIONS(7134), 1, anon_sym_RPAREN, - ACTIONS(7136), 2, + ACTIONS(7132), 2, sym__ws, sym_comment, - STATE(3024), 3, + STATE(3046), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174209] = 5, + [175136] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7142), 1, + ACTIONS(7136), 1, anon_sym_RPAREN, - ACTIONS(7140), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(3025), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174228] = 5, + [175155] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7144), 1, + ACTIONS(7140), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(7138), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2956), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174247] = 5, + [175174] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7146), 1, + ACTIONS(7144), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(7142), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2965), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174266] = 5, + [175193] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7148), 1, + ACTIONS(7146), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174285] = 5, + [175212] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(7150), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(7148), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2966), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174304] = 5, + [175231] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(7154), 1, anon_sym_RPAREN, ACTIONS(7152), 2, sym__ws, sym_comment, - STATE(3027), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [174323] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5893), 1, - anon_sym_POUND_, - ACTIONS(7156), 1, - anon_sym_RPAREN, - ACTIONS(5897), 2, - sym__ws, - sym_comment, - STATE(2236), 3, + STATE(3047), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174342] = 5, + [175250] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(7158), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(7156), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(3050), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174361] = 5, + [175269] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7160), 1, + ACTIONS(7162), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(7160), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(3054), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174380] = 5, + [175288] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(7164), 1, anon_sym_RPAREN, - ACTIONS(7162), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(3028), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174399] = 5, + [175307] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(7166), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, - sym__ws, - sym_comment, - STATE(2236), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [174418] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5893), 1, - anon_sym_POUND_, - ACTIONS(7168), 1, - anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174437] = 5, + [175326] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7172), 1, + ACTIONS(7170), 1, anon_sym_RPAREN, - ACTIONS(7170), 2, + ACTIONS(7168), 2, sym__ws, sym_comment, - STATE(3050), 3, + STATE(3059), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174456] = 5, + [175345] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(7174), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(7172), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(3139), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174475] = 5, + [175364] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(7176), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174494] = 5, + [175383] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(7180), 1, anon_sym_RPAREN, ACTIONS(7178), 2, sym__ws, sym_comment, - STATE(3051), 3, + STATE(3067), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174513] = 5, + [175402] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7182), 1, + ACTIONS(7184), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(7182), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(3068), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174532] = 5, + [175421] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7186), 1, + ACTIONS(7188), 1, anon_sym_RPAREN, - ACTIONS(7184), 2, + ACTIONS(7186), 2, sym__ws, sym_comment, - STATE(3052), 3, + STATE(3072), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174551] = 5, + [175440] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(7190), 1, anon_sym_RPAREN, - ACTIONS(7188), 2, - sym__ws, - sym_comment, - STATE(3055), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [174570] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5893), 1, - anon_sym_POUND_, - ACTIONS(7192), 1, - anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174589] = 5, + [175459] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(7194), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(7192), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(3078), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174608] = 5, + [175478] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(7196), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174627] = 5, + [175497] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(7200), 1, anon_sym_RPAREN, ACTIONS(7198), 2, sym__ws, sym_comment, - STATE(3177), 3, + STATE(3079), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174646] = 5, + [175516] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(7204), 1, anon_sym_RPAREN, ACTIONS(7202), 2, sym__ws, sym_comment, - STATE(2967), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174665] = 5, + [175535] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7208), 1, + ACTIONS(7206), 1, anon_sym_RPAREN, - ACTIONS(7206), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2975), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174684] = 5, + [175554] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(7210), 1, - anon_sym_LPAREN, - ACTIONS(5897), 2, + anon_sym_RPAREN, + ACTIONS(7208), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2992), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174703] = 5, + [175573] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7214), 1, - anon_sym_RPAREN, - ACTIONS(7212), 2, + ACTIONS(7212), 1, + anon_sym_LPAREN, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(3057), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174722] = 5, + [175592] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7218), 1, + ACTIONS(7216), 1, anon_sym_RPAREN, - ACTIONS(7216), 2, + ACTIONS(7214), 2, sym__ws, sym_comment, - STATE(2869), 3, + STATE(3238), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174741] = 5, + [175611] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(7220), 1, - anon_sym_LPAREN, - ACTIONS(5897), 2, + anon_sym_RPAREN, + ACTIONS(7218), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174760] = 5, + [175630] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(7224), 1, - anon_sym_RPAREN, + anon_sym_LPAREN, ACTIONS(7222), 2, sym__ws, sym_comment, - STATE(3038), 3, + STATE(3124), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174779] = 5, + [175649] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(7226), 1, - anon_sym_RPAREN, - ACTIONS(5897), 2, + anon_sym_LPAREN, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174798] = 5, + [175668] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(7230), 1, anon_sym_RPAREN, ACTIONS(7228), 2, sym__ws, sym_comment, - STATE(3058), 3, + STATE(3091), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174817] = 5, + [175687] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7234), 1, + ACTIONS(7232), 1, anon_sym_RPAREN, - ACTIONS(7232), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(3059), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174836] = 5, + [175706] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7236), 1, + ACTIONS(7234), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174855] = 5, + [175725] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7238), 1, + ACTIONS(7236), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174874] = 5, + [175744] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(7240), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(7238), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174893] = 5, + [175763] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7242), 1, + ACTIONS(7244), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(7242), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(3235), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174912] = 5, + [175782] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(7246), 1, anon_sym_RPAREN, - ACTIONS(7244), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(3053), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174931] = 5, + [175801] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7248), 1, + ACTIONS(7250), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(7248), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(3095), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174950] = 5, + [175820] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7252), 1, + ACTIONS(7254), 1, anon_sym_RPAREN, - ACTIONS(7250), 2, + ACTIONS(7252), 2, sym__ws, sym_comment, - STATE(3061), 3, + STATE(3032), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174969] = 5, + [175839] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7254), 1, + ACTIONS(7258), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(7256), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(3097), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174988] = 5, + [175858] = 5, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, - anon_sym_POUND_, - ACTIONS(7256), 1, - anon_sym_RPAREN, - ACTIONS(5897), 2, - sym__ws, - sym_comment, - STATE(2236), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [175007] = 5, + ACTIONS(7260), 1, + anon_sym_loop, + STATE(1492), 1, + sym_sym_lit, + ACTIONS(7262), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + [175877] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7258), 1, + ACTIONS(7264), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175026] = 5, + [175896] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7262), 1, + ACTIONS(7266), 1, anon_sym_RPAREN, - ACTIONS(7260), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(3062), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175045] = 5, + [175915] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7264), 1, + ACTIONS(7268), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175064] = 5, + [175934] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7266), 1, + ACTIONS(7272), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(7270), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(3035), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175083] = 5, + [175953] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7270), 1, + ACTIONS(7274), 1, anon_sym_RPAREN, - ACTIONS(7268), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(3065), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175102] = 5, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7272), 1, - anon_sym_loop, - STATE(1551), 1, - sym_sym_lit, - ACTIONS(7274), 4, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - [175121] = 5, + [175972] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(7276), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175140] = 5, + [175991] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(7280), 1, anon_sym_RPAREN, ACTIONS(7278), 2, sym__ws, sym_comment, - STATE(3070), 3, + STATE(3038), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175159] = 5, + [176010] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7284), 1, + ACTIONS(7282), 1, anon_sym_RPAREN, - ACTIONS(7282), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(3071), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175178] = 5, + [176029] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7288), 1, + ACTIONS(7286), 1, anon_sym_RPAREN, - ACTIONS(7286), 2, + ACTIONS(7284), 2, sym__ws, sym_comment, - STATE(3075), 3, + STATE(3100), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175197] = 5, + [176048] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7292), 1, + ACTIONS(7288), 1, anon_sym_RPAREN, - ACTIONS(7290), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(3078), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175216] = 5, + [176067] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7294), 1, + ACTIONS(7290), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175235] = 5, + [176086] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7296), 1, + ACTIONS(7294), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(7292), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(3101), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175254] = 5, + [176105] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(7298), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(7296), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(3106), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175273] = 5, + [176124] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(7302), 1, anon_sym_RPAREN, ACTIONS(7300), 2, sym__ws, sym_comment, - STATE(3082), 3, + STATE(3041), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175292] = 5, + [176143] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7306), 1, + ACTIONS(7304), 1, anon_sym_RPAREN, - ACTIONS(7304), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(3083), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175311] = 5, + [176162] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(7308), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(7306), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2937), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175330] = 5, + [176181] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(7312), 1, anon_sym_RPAREN, ACTIONS(7310), 2, sym__ws, sym_comment, - STATE(3087), 3, + STATE(3056), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [176200] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5913), 1, + anon_sym_POUND_, + ACTIONS(7314), 1, + anon_sym_RPAREN, + ACTIONS(5935), 2, + sym__ws, + sym_comment, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175349] = 5, + [176219] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(7316), 1, anon_sym_RPAREN, - ACTIONS(7314), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(3089), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175368] = 5, + [176238] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(7318), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175387] = 5, + [176257] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7322), 1, + ACTIONS(7320), 1, anon_sym_RPAREN, - ACTIONS(7320), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(3095), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175406] = 5, + [176276] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7326), 1, + ACTIONS(7324), 1, anon_sym_RPAREN, - ACTIONS(7324), 2, + ACTIONS(7322), 2, sym__ws, sym_comment, - STATE(3097), 3, + STATE(3077), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175425] = 5, + [176295] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7330), 1, + ACTIONS(7328), 1, anon_sym_RPAREN, - ACTIONS(7328), 2, + ACTIONS(7326), 2, sym__ws, sym_comment, - STATE(3099), 3, + STATE(3108), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175444] = 5, + [176314] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7332), 1, + ACTIONS(7330), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175463] = 5, + [176333] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7334), 1, + ACTIONS(7332), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175482] = 5, + [176352] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7338), 1, + ACTIONS(7336), 1, anon_sym_RPAREN, - ACTIONS(7336), 2, + ACTIONS(7334), 2, sym__ws, sym_comment, - STATE(3106), 3, + STATE(3081), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175501] = 5, + [176371] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(7340), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(7338), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(3082), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175520] = 5, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, + [176390] = 5, ACTIONS(47), 1, sym_block_comment, + ACTIONS(5913), 1, + anon_sym_POUND_, ACTIONS(7342), 1, - anon_sym_loop, - STATE(1551), 1, - sym_sym_lit, - ACTIONS(7274), 4, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - [175539] = 5, + anon_sym_RPAREN, + ACTIONS(5935), 2, + sym__ws, + sym_comment, + STATE(2256), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [176409] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7344), 1, + ACTIONS(7346), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(7344), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(3084), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175558] = 5, + [176428] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(7348), 1, anon_sym_RPAREN, - ACTIONS(7346), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(3107), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175577] = 5, + [176447] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7350), 1, + ACTIONS(7352), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(7350), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(3113), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175596] = 5, + [176466] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(7354), 1, anon_sym_RPAREN, - ACTIONS(7352), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(3108), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175615] = 5, + [176485] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(7358), 1, - anon_sym_LPAREN, + anon_sym_RPAREN, ACTIONS(7356), 2, sym__ws, sym_comment, - STATE(3042), 3, + STATE(3087), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175634] = 5, + [176504] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(7360), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175653] = 5, + [176523] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(7362), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175672] = 5, + [176542] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(7366), 1, anon_sym_RPAREN, ACTIONS(7364), 2, sym__ws, sym_comment, - STATE(3110), 3, + STATE(3096), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175691] = 5, + [176561] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(7368), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175710] = 5, + [176580] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(7372), 1, - anon_sym_LPAREN, - ACTIONS(7370), 2, - sym__ws, - sym_comment, - STATE(3045), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [175729] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5893), 1, - anon_sym_POUND_, - ACTIONS(7374), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(7370), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(3104), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175748] = 5, + [176599] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7378), 1, + ACTIONS(7376), 1, anon_sym_RPAREN, - ACTIONS(7376), 2, + ACTIONS(7374), 2, sym__ws, sym_comment, - STATE(3112), 3, + STATE(3110), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175767] = 5, + [176618] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(7380), 1, - anon_sym_RPAREN, - ACTIONS(5897), 2, + anon_sym_LPAREN, + ACTIONS(7378), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(3061), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175786] = 5, + [176637] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(7384), 1, - anon_sym_RPAREN, + anon_sym_LPAREN, ACTIONS(7382), 2, sym__ws, sym_comment, - STATE(3113), 3, + STATE(3065), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175805] = 5, + [176656] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(7388), 1, anon_sym_RPAREN, ACTIONS(7386), 2, sym__ws, sym_comment, - STATE(3180), 3, + STATE(3176), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175824] = 5, + [176675] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(7392), 1, anon_sym_RPAREN, ACTIONS(7390), 2, sym__ws, sym_comment, - STATE(3104), 3, + STATE(3111), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175843] = 5, + [176694] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(7394), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175862] = 5, + [176713] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(7396), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175881] = 5, + [176732] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7400), 1, + ACTIONS(7398), 1, anon_sym_RPAREN, - ACTIONS(7398), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(3203), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175900] = 5, + [176751] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(7402), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(7400), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(3122), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175919] = 5, + [176770] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, ACTIONS(7404), 1, + anon_sym_LPAREN, + ACTIONS(5935), 2, + sym__ws, + sym_comment, + STATE(2256), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [176789] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5913), 1, + anon_sym_POUND_, + ACTIONS(7408), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(7406), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(3168), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175938] = 5, + [176808] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7406), 1, + ACTIONS(7412), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(7410), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2850), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175957] = 5, + [176827] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7408), 1, - anon_sym_LPAREN, - ACTIONS(5897), 2, + ACTIONS(7416), 1, + anon_sym_RPAREN, + ACTIONS(7414), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2849), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175976] = 5, + [176846] = 5, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7418), 1, + anon_sym_loop, + STATE(1492), 1, + sym_sym_lit, + ACTIONS(7262), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + [176865] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7410), 1, + ACTIONS(7420), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175995] = 5, + [176884] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7414), 1, + ACTIONS(7422), 1, anon_sym_RPAREN, - ACTIONS(7412), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(3116), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176014] = 5, + [176903] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7416), 1, + ACTIONS(7426), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(7424), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(3031), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176033] = 5, + [176922] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7418), 1, + ACTIONS(7430), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(7428), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(3253), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176052] = 5, + [176941] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7420), 1, + ACTIONS(7432), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176071] = 5, + [176960] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7424), 1, + ACTIONS(7436), 1, anon_sym_RPAREN, - ACTIONS(7422), 2, + ACTIONS(7434), 2, sym__ws, sym_comment, - STATE(3118), 3, + STATE(2848), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176090] = 5, + [176979] = 5, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7438), 1, + anon_sym_loop, + STATE(1492), 1, + sym_sym_lit, + ACTIONS(7262), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + [176998] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7426), 1, + ACTIONS(7440), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176109] = 5, + [177017] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7428), 1, + ACTIONS(7442), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176128] = 5, + [177036] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7430), 1, + ACTIONS(7446), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(7444), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(3033), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176147] = 5, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, + [177055] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7432), 1, - anon_sym_loop, - STATE(1551), 1, - sym_sym_lit, - ACTIONS(7274), 4, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - [176166] = 5, + ACTIONS(5913), 1, + anon_sym_POUND_, + ACTIONS(7448), 1, + anon_sym_RPAREN, + ACTIONS(5935), 2, + sym__ws, + sym_comment, + STATE(2256), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [177074] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7434), 1, + ACTIONS(7450), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176185] = 5, + [177093] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7438), 1, + ACTIONS(7452), 1, anon_sym_RPAREN, - ACTIONS(7436), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(3204), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176204] = 5, + [177112] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7442), 1, + ACTIONS(7454), 1, anon_sym_RPAREN, - ACTIONS(7440), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(3209), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176223] = 5, + [177131] = 5, ACTIONS(23), 1, aux_sym_sym_lit_token1, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7444), 1, + ACTIONS(7456), 1, anon_sym_loop, - STATE(1551), 1, + STATE(1492), 1, sym_sym_lit, - ACTIONS(7274), 4, + ACTIONS(7262), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - [176242] = 5, + [177150] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7446), 1, + ACTIONS(7460), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(7458), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(3160), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176261] = 5, + [177169] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7448), 1, + ACTIONS(7464), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(7462), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(3250), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176280] = 5, + [177188] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7450), 1, + ACTIONS(7466), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176299] = 5, + [177207] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7454), 1, + ACTIONS(7468), 1, anon_sym_RPAREN, - ACTIONS(7452), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(3124), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176318] = 5, + [177226] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7456), 1, + ACTIONS(7472), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(7470), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(3146), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176337] = 5, + [177245] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7458), 1, + ACTIONS(7474), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176356] = 5, + [177264] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7460), 1, + ACTIONS(7476), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176375] = 5, + [177283] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7464), 1, + ACTIONS(7478), 1, anon_sym_RPAREN, - ACTIONS(7462), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(3072), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176394] = 5, + [177302] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7466), 1, + ACTIONS(7482), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(7480), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(3147), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176413] = 5, + [177321] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7468), 1, + ACTIONS(7484), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176432] = 5, + [177340] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7470), 1, + ACTIONS(7486), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176451] = 5, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, + [177359] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7472), 1, - anon_sym_loop, - STATE(1551), 1, - sym_sym_lit, - ACTIONS(7274), 4, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - [176470] = 5, + ACTIONS(5913), 1, + anon_sym_POUND_, + ACTIONS(7488), 1, + anon_sym_RPAREN, + ACTIONS(5935), 2, + sym__ws, + sym_comment, + STATE(2256), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [177378] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7474), 1, + ACTIONS(7490), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176489] = 5, + [177397] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7476), 1, + ACTIONS(7494), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(7492), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(3149), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176508] = 5, + [177416] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7480), 1, + ACTIONS(7498), 1, anon_sym_RPAREN, - ACTIONS(7478), 2, + ACTIONS(7496), 2, sym__ws, sym_comment, - STATE(3128), 3, + STATE(3150), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176527] = 5, + [177435] = 4, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5227), 1, + anon_sym_COLON_COLON, + ACTIONS(7500), 1, + anon_sym_COLON, + ACTIONS(4500), 5, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_cl, + anon_sym_EQ, + [177452] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7484), 1, + ACTIONS(7502), 1, anon_sym_RPAREN, - ACTIONS(7482), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(3129), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176546] = 5, + [177471] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7486), 1, + ACTIONS(7506), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(7504), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(3189), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176565] = 5, + [177490] = 5, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7508), 1, + anon_sym_loop, + STATE(1492), 1, + sym_sym_lit, + ACTIONS(7262), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + [177509] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7490), 1, + ACTIONS(7510), 1, anon_sym_RPAREN, - ACTIONS(7488), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(3130), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176584] = 5, + [177528] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7492), 1, + ACTIONS(7514), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(7512), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(3193), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176603] = 5, + [177547] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7494), 1, + ACTIONS(7518), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(7516), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(3151), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176622] = 5, + [177566] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7498), 1, + ACTIONS(7522), 1, anon_sym_RPAREN, - ACTIONS(7496), 2, + ACTIONS(7520), 2, sym__ws, sym_comment, - STATE(3132), 3, + STATE(3203), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176641] = 5, + [177585] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7502), 1, + ACTIONS(7524), 1, anon_sym_RPAREN, - ACTIONS(7500), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(3133), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176660] = 5, + [177604] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7504), 1, + ACTIONS(7526), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176679] = 5, + [177623] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7508), 1, + ACTIONS(7530), 1, anon_sym_RPAREN, - ACTIONS(7506), 2, + ACTIONS(7528), 2, sym__ws, sym_comment, - STATE(3134), 3, + STATE(3153), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176698] = 5, + [177642] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7510), 1, + ACTIONS(7534), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(7532), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(3154), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176717] = 5, + [177661] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7512), 1, + ACTIONS(7536), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176736] = 5, + [177680] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7516), 1, + ACTIONS(7540), 1, anon_sym_RPAREN, - ACTIONS(7514), 2, + ACTIONS(7538), 2, sym__ws, sym_comment, - STATE(3136), 3, + STATE(3155), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176755] = 5, + [177699] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7518), 1, + ACTIONS(7542), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176774] = 5, + [177718] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7520), 1, + ACTIONS(7544), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176793] = 5, + [177737] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7524), 1, + ACTIONS(7548), 1, anon_sym_RPAREN, - ACTIONS(7522), 2, + ACTIONS(7546), 2, sym__ws, sym_comment, - STATE(3140), 3, + STATE(3156), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176812] = 5, + [177756] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7528), 1, + ACTIONS(7550), 1, anon_sym_RPAREN, - ACTIONS(7526), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(3142), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176831] = 5, + [177775] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7532), 1, + ACTIONS(7552), 1, anon_sym_RPAREN, - ACTIONS(7530), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(3143), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176850] = 5, + [177794] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7534), 1, + ACTIONS(7556), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(7554), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(3163), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176869] = 5, + [177813] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7538), 1, + ACTIONS(7560), 1, anon_sym_RPAREN, - ACTIONS(7536), 2, + ACTIONS(7558), 2, sym__ws, sym_comment, - STATE(3146), 3, + STATE(3167), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176888] = 5, + [177832] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7542), 1, + ACTIONS(7564), 1, anon_sym_RPAREN, - ACTIONS(7540), 2, + ACTIONS(7562), 2, sym__ws, sym_comment, - STATE(3148), 3, + STATE(3251), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176907] = 5, + [177851] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7546), 1, + ACTIONS(7566), 1, anon_sym_RPAREN, - ACTIONS(7544), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(3149), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176926] = 5, + [177870] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7548), 1, + ACTIONS(7570), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(7568), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(3171), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176945] = 5, + [177889] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7552), 1, + ACTIONS(7574), 1, anon_sym_RPAREN, - ACTIONS(7550), 2, + ACTIONS(7572), 2, sym__ws, sym_comment, - STATE(3181), 3, + STATE(3173), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176964] = 5, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, + [177908] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7554), 1, - anon_sym_loop, - STATE(1551), 1, - sym_sym_lit, - ACTIONS(7274), 4, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - [176983] = 5, + ACTIONS(5913), 1, + anon_sym_POUND_, + ACTIONS(7578), 1, + anon_sym_RPAREN, + ACTIONS(7576), 2, + sym__ws, + sym_comment, + STATE(3174), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [177927] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7558), 1, + ACTIONS(7580), 1, anon_sym_RPAREN, - ACTIONS(7556), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(3151), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177002] = 5, + [177946] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7562), 1, + ACTIONS(7584), 1, anon_sym_RPAREN, - ACTIONS(7560), 2, + ACTIONS(7582), 2, sym__ws, sym_comment, - STATE(3125), 3, + STATE(3223), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177021] = 5, + [177965] = 5, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7586), 1, + anon_sym_loop, + STATE(1492), 1, + sym_sym_lit, + ACTIONS(7262), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + [177984] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7566), 1, + ACTIONS(7590), 1, anon_sym_RPAREN, - ACTIONS(7564), 2, + ACTIONS(7588), 2, sym__ws, sym_comment, - STATE(3152), 3, + STATE(2797), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177040] = 5, + [178003] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7568), 1, + ACTIONS(7592), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177059] = 5, + [178022] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7570), 1, + ACTIONS(7596), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(7594), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(3177), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177078] = 5, + [178041] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7574), 1, + ACTIONS(7598), 1, anon_sym_RPAREN, - ACTIONS(7572), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(3156), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177097] = 5, + [178060] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7578), 1, + ACTIONS(7600), 1, anon_sym_RPAREN, - ACTIONS(7576), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(3160), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177116] = 5, + [178079] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7582), 1, + ACTIONS(7602), 1, anon_sym_RPAREN, - ACTIONS(7580), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(3166), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177135] = 5, + [178098] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7586), 1, + ACTIONS(7606), 1, anon_sym_RPAREN, - ACTIONS(7584), 2, + ACTIONS(7604), 2, sym__ws, sym_comment, - STATE(3167), 3, + STATE(3181), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177154] = 5, + [178117] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7588), 1, + ACTIONS(7610), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(7608), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(3185), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177173] = 5, + [178136] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7590), 1, + ACTIONS(7614), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(7612), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(3191), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177192] = 5, + [178155] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7592), 1, + ACTIONS(7618), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(7616), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(3192), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177211] = 5, + [178174] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7596), 1, + ACTIONS(7620), 1, anon_sym_RPAREN, - ACTIONS(7594), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(3216), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177230] = 5, + [178193] = 4, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5227), 1, + anon_sym_COLON_COLON, + ACTIONS(7622), 1, + anon_sym_COLON, + ACTIONS(4500), 5, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_cl, + anon_sym_EQ, + [178210] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7600), 1, + ACTIONS(7626), 1, anon_sym_RPAREN, - ACTIONS(7598), 2, + ACTIONS(7624), 2, sym__ws, sym_comment, - STATE(3172), 3, + STATE(3198), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177249] = 5, + [178229] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7602), 1, + ACTIONS(7630), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(7628), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(3228), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177268] = 5, + [178248] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7606), 1, + ACTIONS(7634), 1, anon_sym_RPAREN, - ACTIONS(7604), 2, + ACTIONS(7632), 2, sym__ws, sym_comment, - STATE(3189), 3, + STATE(3232), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177287] = 5, + [178267] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7610), 1, + ACTIONS(7636), 1, anon_sym_RPAREN, - ACTIONS(7608), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(3120), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177306] = 5, + [178286] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7612), 1, + ACTIONS(7640), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(7638), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(3136), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177325] = 5, + [178305] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7614), 1, + ACTIONS(7644), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(7642), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(3129), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177344] = 5, + [178324] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7618), 1, + ACTIONS(7646), 1, anon_sym_RPAREN, - ACTIONS(7616), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(3190), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177363] = 5, + [178343] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7622), 1, + ACTIONS(7648), 1, anon_sym_RPAREN, - ACTIONS(7620), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(3191), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177382] = 5, + [178362] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7626), 1, + ACTIONS(7652), 1, anon_sym_RPAREN, - ACTIONS(7624), 2, + ACTIONS(7650), 2, sym__ws, sym_comment, - STATE(3194), 3, + STATE(3239), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177401] = 5, + [178381] = 5, ACTIONS(23), 1, aux_sym_sym_lit_token1, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7628), 1, + ACTIONS(7654), 1, anon_sym_loop, - STATE(1551), 1, + STATE(1492), 1, sym_sym_lit, - ACTIONS(7274), 4, + ACTIONS(7262), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - [177420] = 5, + [178400] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7632), 1, - anon_sym_LPAREN, - ACTIONS(7630), 2, + ACTIONS(7658), 1, + anon_sym_RPAREN, + ACTIONS(7656), 2, + sym__ws, + sym_comment, + STATE(3142), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [178419] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5913), 1, + anon_sym_POUND_, + ACTIONS(7662), 1, + anon_sym_RPAREN, + ACTIONS(7660), 2, sym__ws, sym_comment, - STATE(3109), 3, + STATE(3241), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177439] = 5, + [178438] = 5, ACTIONS(23), 1, aux_sym_sym_lit_token1, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7634), 1, + ACTIONS(7664), 1, anon_sym_loop, - STATE(1551), 1, + STATE(1492), 1, sym_sym_lit, - ACTIONS(7274), 4, + ACTIONS(7262), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - [177458] = 5, + [178457] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7638), 1, + ACTIONS(7666), 1, anon_sym_RPAREN, - ACTIONS(7636), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(3198), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177477] = 5, + [178476] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7640), 1, + ACTIONS(7670), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(7668), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(3243), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177496] = 5, + [178495] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7642), 1, + ACTIONS(7672), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177515] = 5, + [178514] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7644), 1, + ACTIONS(7676), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(7674), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(3141), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177534] = 5, + [178533] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7648), 1, + ACTIONS(7678), 1, anon_sym_RPAREN, - ACTIONS(7646), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(3202), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177553] = 5, + [178552] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7652), 1, + ACTIONS(7682), 1, anon_sym_RPAREN, - ACTIONS(7650), 2, + ACTIONS(7680), 2, sym__ws, sym_comment, - STATE(3205), 3, + STATE(3140), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177572] = 5, + [178571] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7654), 1, + ACTIONS(7684), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177591] = 5, + [178590] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7658), 1, + ACTIONS(7688), 1, anon_sym_RPAREN, - ACTIONS(7656), 2, + ACTIONS(7686), 2, sym__ws, sym_comment, - STATE(3085), 3, + STATE(3121), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177610] = 5, + [178609] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7662), 1, + ACTIONS(7692), 1, anon_sym_RPAREN, - ACTIONS(7660), 2, + ACTIONS(7690), 2, sym__ws, sym_comment, - STATE(3208), 3, + STATE(3069), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177629] = 5, + [178628] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7666), 1, + ACTIONS(7694), 1, anon_sym_RPAREN, - ACTIONS(7664), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(3211), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177648] = 5, + [178647] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7668), 1, + ACTIONS(7696), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177667] = 5, + [178666] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7672), 1, + ACTIONS(7700), 1, anon_sym_RPAREN, - ACTIONS(7670), 2, + ACTIONS(7698), 2, sym__ws, sym_comment, - STATE(3234), 3, + STATE(3246), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177686] = 5, + [178685] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7676), 1, + ACTIONS(7704), 1, anon_sym_RPAREN, - ACTIONS(7674), 2, + ACTIONS(7702), 2, sym__ws, sym_comment, - STATE(3233), 3, + STATE(3247), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177705] = 5, + [178704] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7680), 1, + ACTIONS(7706), 1, anon_sym_RPAREN, - ACTIONS(7678), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(3231), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177724] = 5, + [178723] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7682), 1, + ACTIONS(7710), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(7708), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(3030), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177743] = 5, + [178742] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7684), 1, + ACTIONS(7712), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177762] = 5, + [178761] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7686), 1, + ACTIONS(7716), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(7714), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(3137), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177781] = 5, + [178780] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7688), 1, + ACTIONS(7718), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177800] = 5, + [178799] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7692), 1, + ACTIONS(7722), 1, anon_sym_RPAREN, - ACTIONS(7690), 2, + ACTIONS(7720), 2, sym__ws, sym_comment, - STATE(3228), 3, + STATE(3133), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177819] = 5, + [178818] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7694), 1, + ACTIONS(7724), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177838] = 5, + [178837] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7696), 1, + ACTIONS(7728), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(7726), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(3120), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177857] = 5, + [178856] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7698), 1, + ACTIONS(7732), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(7730), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2844), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177876] = 5, + [178875] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7702), 1, + ACTIONS(7734), 1, anon_sym_RPAREN, - ACTIONS(7700), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(3227), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177895] = 5, + [178894] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7704), 1, + ACTIONS(7738), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(7736), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(3262), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177914] = 5, + [178913] = 5, ACTIONS(23), 1, aux_sym_sym_lit_token1, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7706), 1, + ACTIONS(7740), 1, anon_sym_loop, - STATE(1551), 1, + STATE(1492), 1, sym_sym_lit, - ACTIONS(7274), 4, + ACTIONS(7262), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - [177933] = 5, + [178932] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7710), 1, + ACTIONS(7742), 1, anon_sym_RPAREN, - ACTIONS(7708), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(3226), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177952] = 5, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, + [178951] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7712), 1, - anon_sym_loop, - STATE(1551), 1, - sym_sym_lit, - ACTIONS(7274), 4, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - [177971] = 5, + ACTIONS(5913), 1, + anon_sym_POUND_, + ACTIONS(7744), 1, + anon_sym_RPAREN, + ACTIONS(5935), 2, + sym__ws, + sym_comment, + STATE(2256), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [178970] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7716), 1, + ACTIONS(7748), 1, anon_sym_RPAREN, - ACTIONS(7714), 2, + ACTIONS(7746), 2, sym__ws, sym_comment, - STATE(3137), 3, + STATE(2847), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177990] = 5, + [178989] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7718), 1, + ACTIONS(7750), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178009] = 5, + [179008] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7722), 1, + ACTIONS(7754), 1, anon_sym_RPAREN, - ACTIONS(7720), 2, + ACTIONS(7752), 2, sym__ws, sym_comment, - STATE(3225), 3, + STATE(3260), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178028] = 5, + [179027] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7726), 1, + ACTIONS(7756), 1, anon_sym_RPAREN, - ACTIONS(7724), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(3207), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178047] = 5, + [179046] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7728), 1, + ACTIONS(7760), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(7758), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(3259), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178066] = 5, + [179065] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7732), 1, + ACTIONS(7764), 1, anon_sym_RPAREN, - ACTIONS(7730), 2, + ACTIONS(7762), 2, sym__ws, sym_comment, - STATE(3126), 3, + STATE(3258), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178085] = 5, + [179084] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7734), 1, + ACTIONS(7766), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178104] = 5, + [179103] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7736), 1, + ACTIONS(7768), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178123] = 5, + [179122] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5227), 1, + anon_sym_COLON_COLON, + ACTIONS(7770), 1, + anon_sym_COLON, + ACTIONS(4500), 5, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(7738), 1, + anon_sym_cl, + anon_sym_EQ, + [179139] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5913), 1, + anon_sym_POUND_, + ACTIONS(7774), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(7772), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(3256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178142] = 5, + [179158] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7742), 1, + ACTIONS(7776), 1, anon_sym_RPAREN, - ACTIONS(7740), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(3219), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178161] = 5, + [179177] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7744), 1, + ACTIONS(7778), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178180] = 5, + [179196] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7746), 1, + ACTIONS(7780), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178199] = 5, + [179215] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7748), 1, + ACTIONS(7782), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178218] = 5, + [179234] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7750), 1, + ACTIONS(7784), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178237] = 5, + [179253] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7754), 1, + ACTIONS(7786), 1, anon_sym_RPAREN, - ACTIONS(7752), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(3221), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178256] = 5, + [179272] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7758), 1, + ACTIONS(7788), 1, anon_sym_RPAREN, - ACTIONS(7756), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(3222), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178275] = 5, + [179291] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7760), 1, + ACTIONS(7792), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(7790), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(3252), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178294] = 5, + [179310] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7764), 1, + ACTIONS(7794), 1, anon_sym_RPAREN, - ACTIONS(7762), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(3223), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178313] = 5, + [179329] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7766), 1, + ACTIONS(7796), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178332] = 5, + [179348] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5893), 1, + ACTIONS(5913), 1, anon_sym_POUND_, - ACTIONS(7768), 1, + ACTIONS(7798), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5935), 2, sym__ws, sym_comment, - STATE(2236), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178351] = 5, + [179367] = 5, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(47), 1, sym_block_comment, - ACTIONS(658), 1, - anon_sym_LPAREN, - ACTIONS(7770), 1, + ACTIONS(7800), 1, + anon_sym_loop, + STATE(1492), 1, + sym_sym_lit, + ACTIONS(7262), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + [179386] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5913), 1, + anon_sym_POUND_, + ACTIONS(7802), 1, + anon_sym_RPAREN, + ACTIONS(5935), 2, sym__ws, - STATE(3382), 1, - aux_sym_read_cond_lit_repeat1, - STATE(856), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [178369] = 5, + sym_comment, + STATE(2256), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [179405] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(891), 1, - anon_sym_LPAREN, - ACTIONS(7770), 1, + ACTIONS(5913), 1, + anon_sym_POUND_, + ACTIONS(7806), 1, + anon_sym_RPAREN, + ACTIONS(7804), 2, sym__ws, - STATE(3382), 1, - aux_sym_read_cond_lit_repeat1, - STATE(1215), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [178387] = 5, + sym_comment, + STATE(3254), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [179424] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5913), 1, + anon_sym_POUND_, + ACTIONS(7810), 1, + anon_sym_RPAREN, + ACTIONS(7808), 2, + sym__ws, + sym_comment, + STATE(3255), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [179443] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(811), 1, + ACTIONS(830), 1, anon_sym_LPAREN, - ACTIONS(7772), 1, + ACTIONS(7812), 1, sym__ws, - STATE(3282), 1, + STATE(3408), 1, aux_sym_read_cond_lit_repeat1, - STATE(2121), 3, + STATE(829), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [178405] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(811), 1, + [179461] = 5, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(7774), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7812), 1, sym__ws, - STATE(3283), 1, + STATE(3408), 1, aux_sym_read_cond_lit_repeat1, - STATE(2300), 3, + STATE(1507), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [178423] = 5, + [179479] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(7776), 1, + ACTIONS(7814), 1, anon_sym_DQUOTE, - ACTIONS(7780), 1, + ACTIONS(7818), 1, anon_sym_TILDE, - ACTIONS(7778), 2, + ACTIONS(7816), 2, aux_sym_str_lit_token1, aux_sym_str_lit_token2, - STATE(3244), 2, + STATE(3282), 2, sym_format_specifier, aux_sym_str_lit_repeat1, - [178441] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(7782), 1, - sym__ws, - STATE(3247), 1, - aux_sym_read_cond_lit_repeat1, - STATE(1894), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [178459] = 5, + [179497] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(811), 1, + ACTIONS(526), 1, anon_sym_LPAREN, - ACTIONS(7784), 1, + ACTIONS(7812), 1, sym__ws, - STATE(3248), 1, + STATE(3408), 1, aux_sym_read_cond_lit_repeat1, - STATE(1808), 3, + STATE(1032), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [178477] = 5, + [179515] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(941), 1, + ACTIONS(570), 1, anon_sym_LPAREN, - ACTIONS(7770), 1, + ACTIONS(7812), 1, sym__ws, - STATE(3382), 1, + STATE(3408), 1, aux_sym_read_cond_lit_repeat1, - STATE(1656), 3, + STATE(1306), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [178495] = 5, + [179533] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(640), 1, + ACTIONS(830), 1, anon_sym_LPAREN, - ACTIONS(7770), 1, + ACTIONS(7820), 1, sym__ws, - STATE(3382), 1, + STATE(3285), 1, aux_sym_read_cond_lit_repeat1, - STATE(1152), 3, + STATE(888), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [178513] = 5, + [179551] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(5071), 1, + ACTIONS(7822), 1, anon_sym_DQUOTE, - ACTIONS(7788), 1, + ACTIONS(7826), 1, anon_sym_TILDE, - ACTIONS(7786), 2, + ACTIONS(7824), 2, aux_sym_str_lit_token1, aux_sym_str_lit_token2, - STATE(3262), 2, + STATE(3279), 2, sym_format_specifier, aux_sym_str_lit_repeat1, - [178531] = 5, + [179569] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(941), 1, + ACTIONS(790), 1, anon_sym_LPAREN, - ACTIONS(7790), 1, + ACTIONS(7828), 1, sym__ws, - STATE(3249), 1, + STATE(3286), 1, aux_sym_read_cond_lit_repeat1, - STATE(1647), 3, + STATE(1777), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [178549] = 5, + [179587] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(640), 1, + ACTIONS(526), 1, anon_sym_LPAREN, - ACTIONS(7792), 1, + ACTIONS(7830), 1, sym__ws, - STATE(3250), 1, + STATE(3268), 1, aux_sym_read_cond_lit_repeat1, - STATE(1142), 3, + STATE(1060), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [178567] = 5, + [179605] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(7770), 1, + ACTIONS(7832), 1, sym__ws, - STATE(3382), 1, + STATE(3281), 1, aux_sym_read_cond_lit_repeat1, - STATE(1868), 3, + STATE(1934), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [178585] = 5, + [179623] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(811), 1, + ACTIONS(570), 1, anon_sym_LPAREN, - ACTIONS(7770), 1, + ACTIONS(7812), 1, sym__ws, - STATE(3382), 1, + STATE(3408), 1, aux_sym_read_cond_lit_repeat1, - STATE(1747), 3, + STATE(1302), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [178603] = 5, + [179641] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(941), 1, + ACTIONS(570), 1, anon_sym_LPAREN, - ACTIONS(7770), 1, + ACTIONS(7834), 1, sym__ws, - STATE(3382), 1, + STATE(3269), 1, aux_sym_read_cond_lit_repeat1, - STATE(1706), 3, + STATE(1321), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [178621] = 5, + [179659] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(640), 1, + ACTIONS(570), 1, anon_sym_LPAREN, - ACTIONS(7770), 1, + ACTIONS(7836), 1, sym__ws, - STATE(3382), 1, + STATE(3275), 1, aux_sym_read_cond_lit_repeat1, - STATE(1125), 3, + STATE(1322), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [178639] = 5, + [179677] = 5, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(7838), 1, + anon_sym_DQUOTE, + ACTIONS(7842), 1, + anon_sym_TILDE, + ACTIONS(7840), 2, + aux_sym_str_lit_token1, + aux_sym_str_lit_token2, + STATE(3369), 2, + sym_format_specifier, + aux_sym_str_lit_repeat1, + [179695] = 5, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(5079), 1, + anon_sym_DQUOTE, + ACTIONS(7846), 1, + anon_sym_TILDE, + ACTIONS(7844), 2, + aux_sym_str_lit_token1, + aux_sym_str_lit_token2, + STATE(3366), 2, + sym_format_specifier, + aux_sym_str_lit_repeat1, + [179713] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, + ACTIONS(678), 1, anon_sym_LPAREN, - ACTIONS(7794), 1, + ACTIONS(7848), 1, sym__ws, - STATE(3265), 1, + STATE(3359), 1, aux_sym_read_cond_lit_repeat1, - STATE(1937), 3, + STATE(1202), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [178657] = 5, + [179731] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(811), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(7796), 1, + ACTIONS(7812), 1, sym__ws, - STATE(3266), 1, + STATE(3408), 1, aux_sym_read_cond_lit_repeat1, - STATE(1695), 3, + STATE(1951), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [178675] = 5, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(5041), 1, - anon_sym_DQUOTE, - ACTIONS(7798), 1, - anon_sym_TILDE, - ACTIONS(7786), 2, - aux_sym_str_lit_token1, - aux_sym_str_lit_token2, - STATE(3262), 2, - sym_format_specifier, - aux_sym_str_lit_repeat1, - [178693] = 5, + [179749] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(5073), 1, + ACTIONS(5067), 1, anon_sym_DQUOTE, - ACTIONS(7800), 1, + ACTIONS(7850), 1, anon_sym_TILDE, - ACTIONS(7786), 2, + ACTIONS(7844), 2, aux_sym_str_lit_token1, aux_sym_str_lit_token2, - STATE(3262), 2, + STATE(3366), 2, sym_format_specifier, aux_sym_str_lit_repeat1, - [178711] = 5, + [179767] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(658), 1, + ACTIONS(526), 1, anon_sym_LPAREN, - ACTIONS(7802), 1, + ACTIONS(7852), 1, sym__ws, - STATE(3268), 1, + STATE(3288), 1, aux_sym_read_cond_lit_repeat1, - STATE(835), 3, + STATE(1022), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [178729] = 5, + [179785] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(941), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(7804), 1, + ACTIONS(7854), 1, sym__ws, - STATE(3270), 1, + STATE(3290), 1, aux_sym_read_cond_lit_repeat1, - STATE(1674), 3, + STATE(1960), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [178747] = 5, + [179803] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(640), 1, + ACTIONS(830), 1, anon_sym_LPAREN, - ACTIONS(7806), 1, + ACTIONS(7812), 1, sym__ws, - STATE(3243), 1, + STATE(3408), 1, aux_sym_read_cond_lit_repeat1, - STATE(1042), 3, + STATE(848), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [178765] = 5, - ACTIONS(29), 1, - anon_sym_LPAREN, + [179821] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7808), 1, + ACTIONS(790), 1, + anon_sym_LPAREN, + ACTIONS(7812), 1, sym__ws, - STATE(3316), 1, + STATE(3408), 1, aux_sym_read_cond_lit_repeat1, - STATE(1536), 3, + STATE(1723), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [178783] = 5, + [179839] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(7770), 1, + ACTIONS(7856), 1, sym__ws, - STATE(3382), 1, + STATE(3300), 1, aux_sym_read_cond_lit_repeat1, - STATE(2253), 3, + STATE(2174), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [178801] = 5, + [179857] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(941), 1, + ACTIONS(526), 1, anon_sym_LPAREN, - ACTIONS(7810), 1, + ACTIONS(7812), 1, sym__ws, - STATE(3242), 1, + STATE(3408), 1, aux_sym_read_cond_lit_repeat1, - STATE(1675), 3, + STATE(1003), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [178819] = 5, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(5085), 1, - anon_sym_DQUOTE, - ACTIONS(7812), 1, - anon_sym_TILDE, - ACTIONS(7786), 2, - aux_sym_str_lit_token1, - aux_sym_str_lit_token2, - STATE(3262), 2, - sym_format_specifier, - aux_sym_str_lit_repeat1, - [178837] = 5, - ACTIONS(3), 1, + [179875] = 5, + ACTIONS(47), 1, sym_block_comment, - ACTIONS(7814), 1, - anon_sym_DQUOTE, - ACTIONS(7819), 1, - anon_sym_TILDE, - ACTIONS(7816), 2, - aux_sym_str_lit_token1, - aux_sym_str_lit_token2, - STATE(3262), 2, - sym_format_specifier, - aux_sym_str_lit_repeat1, - [178855] = 5, + ACTIONS(830), 1, + anon_sym_LPAREN, + ACTIONS(7858), 1, + sym__ws, + STATE(3296), 1, + aux_sym_read_cond_lit_repeat1, + STATE(832), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [179893] = 5, ACTIONS(47), 1, sym_block_comment, ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(7770), 1, + ACTIONS(7812), 1, sym__ws, - STATE(3382), 1, + STATE(3408), 1, aux_sym_read_cond_lit_repeat1, - STATE(1357), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [178873] = 5, + [179911] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(790), 1, anon_sym_LPAREN, - ACTIONS(7770), 1, + ACTIONS(7860), 1, sym__ws, - STATE(3382), 1, + STATE(3297), 1, aux_sym_read_cond_lit_repeat1, - STATE(1349), 3, + STATE(1819), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [178891] = 5, + [179929] = 5, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(5075), 1, + anon_sym_DQUOTE, + ACTIONS(7862), 1, + anon_sym_TILDE, + ACTIONS(7844), 2, + aux_sym_str_lit_token1, + aux_sym_str_lit_token2, + STATE(3366), 2, + sym_format_specifier, + aux_sym_str_lit_repeat1, + [179947] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, + ACTIONS(570), 1, anon_sym_LPAREN, - ACTIONS(7770), 1, + ACTIONS(7812), 1, sym__ws, - STATE(3382), 1, + STATE(3408), 1, aux_sym_read_cond_lit_repeat1, - STATE(1866), 3, + STATE(1339), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [178909] = 5, + [179965] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(811), 1, + ACTIONS(570), 1, anon_sym_LPAREN, - ACTIONS(7770), 1, + ACTIONS(7812), 1, sym__ws, - STATE(3382), 1, + STATE(3408), 1, aux_sym_read_cond_lit_repeat1, - STATE(1748), 3, + STATE(1340), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [178927] = 5, + [179983] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(7822), 1, + ACTIONS(5091), 1, anon_sym_DQUOTE, - ACTIONS(7826), 1, + ACTIONS(7864), 1, anon_sym_TILDE, - ACTIONS(7824), 2, + ACTIONS(7844), 2, aux_sym_str_lit_token1, aux_sym_str_lit_token2, - STATE(3254), 2, + STATE(3366), 2, sym_format_specifier, aux_sym_str_lit_repeat1, - [178945] = 5, + [180001] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(658), 1, + ACTIONS(830), 1, anon_sym_LPAREN, - ACTIONS(7770), 1, + ACTIONS(7812), 1, sym__ws, - STATE(3382), 1, + STATE(3408), 1, aux_sym_read_cond_lit_repeat1, - STATE(855), 3, + STATE(838), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [178963] = 5, + [180019] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(790), 1, anon_sym_LPAREN, - ACTIONS(7828), 1, + ACTIONS(7812), 1, sym__ws, - STATE(3263), 1, + STATE(3408), 1, aux_sym_read_cond_lit_repeat1, - STATE(1344), 3, + STATE(1762), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [178981] = 5, + [180037] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(941), 1, + ACTIONS(526), 1, anon_sym_LPAREN, - ACTIONS(7770), 1, + ACTIONS(7812), 1, sym__ws, - STATE(3382), 1, + STATE(3408), 1, aux_sym_read_cond_lit_repeat1, - STATE(1655), 3, + STATE(1000), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [178999] = 5, + [180055] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(658), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(7830), 1, + ACTIONS(7866), 1, sym__ws, - STATE(3273), 1, + STATE(3302), 1, aux_sym_read_cond_lit_repeat1, - STATE(865), 3, + STATE(2323), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [179017] = 5, + [180073] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(941), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(7832), 1, + ACTIONS(7812), 1, sym__ws, - STATE(3274), 1, + STATE(3408), 1, aux_sym_read_cond_lit_repeat1, - STATE(1634), 3, + STATE(2161), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [179035] = 5, + [180091] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(658), 1, + ACTIONS(790), 1, anon_sym_LPAREN, - ACTIONS(7770), 1, + ACTIONS(7812), 1, sym__ws, - STATE(3382), 1, + STATE(3408), 1, aux_sym_read_cond_lit_repeat1, - STATE(880), 3, + STATE(1763), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [179053] = 5, + [180109] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(941), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(7770), 1, + ACTIONS(7812), 1, sym__ws, - STATE(3382), 1, + STATE(3408), 1, aux_sym_read_cond_lit_repeat1, - STATE(1569), 3, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [179071] = 5, + [180127] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(7834), 1, + ACTIONS(7868), 1, anon_sym_DQUOTE, - ACTIONS(7838), 1, + ACTIONS(7872), 1, anon_sym_TILDE, - ACTIONS(7836), 2, + ACTIONS(7870), 2, aux_sym_str_lit_token1, aux_sym_str_lit_token2, - STATE(3293), 2, + STATE(3311), 2, sym_format_specifier, aux_sym_str_lit_repeat1, - [179089] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(7840), 1, - sym__ws, - STATE(3296), 1, - aux_sym_read_cond_lit_repeat1, - STATE(2406), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [179107] = 5, + [180145] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(600), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(7770), 1, + ACTIONS(7874), 1, sym__ws, - STATE(3382), 1, + STATE(3312), 1, aux_sym_read_cond_lit_repeat1, - STATE(2253), 3, + STATE(2442), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [179125] = 5, + [180163] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(600), 1, + ACTIONS(830), 1, anon_sym_LPAREN, - ACTIONS(7770), 1, + ACTIONS(7876), 1, sym__ws, - STATE(3382), 1, + STATE(3313), 1, aux_sym_read_cond_lit_repeat1, - STATE(2398), 3, + STATE(885), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [179143] = 5, + [180181] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(658), 1, + ACTIONS(570), 1, anon_sym_LPAREN, - ACTIONS(7842), 1, + ACTIONS(7878), 1, sym__ws, - STATE(3235), 1, + STATE(3293), 1, aux_sym_read_cond_lit_repeat1, - STATE(836), 3, + STATE(1372), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [179161] = 5, + [180199] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(570), 1, anon_sym_LPAREN, - ACTIONS(7844), 1, + ACTIONS(7880), 1, sym__ws, - STATE(3264), 1, + STATE(3294), 1, aux_sym_read_cond_lit_repeat1, - STATE(1343), 3, + STATE(1303), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [179179] = 5, + [180217] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(5091), 1, + ACTIONS(7882), 1, anon_sym_DQUOTE, - ACTIONS(7846), 1, + ACTIONS(7886), 1, anon_sym_TILDE, - ACTIONS(7786), 2, + ACTIONS(7884), 2, aux_sym_str_lit_token1, aux_sym_str_lit_token2, - STATE(3262), 2, + STATE(3295), 2, sym_format_specifier, aux_sym_str_lit_repeat1, - [179197] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(811), 1, - anon_sym_LPAREN, - ACTIONS(7770), 1, - sym__ws, - STATE(3382), 1, - aux_sym_read_cond_lit_repeat1, - STATE(2141), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [179215] = 5, + [180235] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(811), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(7770), 1, + ACTIONS(7812), 1, sym__ws, - STATE(3382), 1, + STATE(3408), 1, aux_sym_read_cond_lit_repeat1, - STATE(2294), 3, + STATE(1573), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [179233] = 5, + [180253] = 5, ACTIONS(47), 1, sym_block_comment, ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(7770), 1, + ACTIONS(7812), 1, sym__ws, - STATE(3382), 1, + STATE(3408), 1, aux_sym_read_cond_lit_repeat1, - STATE(1335), 3, + STATE(1876), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [179251] = 5, + [180271] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(5083), 1, + ACTIONS(5045), 1, anon_sym_DQUOTE, - ACTIONS(7848), 1, + ACTIONS(7888), 1, anon_sym_TILDE, - ACTIONS(7786), 2, + ACTIONS(7844), 2, aux_sym_str_lit_token1, aux_sym_str_lit_token2, - STATE(3262), 2, + STATE(3366), 2, sym_format_specifier, aux_sym_str_lit_repeat1, - [179269] = 5, - ACTIONS(29), 1, - anon_sym_LPAREN, + [180289] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7850), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(7812), 1, sym__ws, - STATE(3315), 1, + STATE(3408), 1, aux_sym_read_cond_lit_repeat1, - STATE(1547), 3, + STATE(2427), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [179287] = 5, + [180307] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(811), 1, + ACTIONS(830), 1, anon_sym_LPAREN, - ACTIONS(7852), 1, + ACTIONS(7812), 1, sym__ws, - STATE(3347), 1, + STATE(3408), 1, aux_sym_read_cond_lit_repeat1, - STATE(2136), 3, + STATE(847), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [179305] = 5, + [180325] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(811), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(7854), 1, + ACTIONS(7890), 1, sym__ws, - STATE(3292), 1, + STATE(3319), 1, aux_sym_read_cond_lit_repeat1, - STATE(2275), 3, + STATE(2426), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [179323] = 5, + [180343] = 5, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(7892), 1, + anon_sym_DQUOTE, + ACTIONS(7896), 1, + anon_sym_TILDE, + ACTIONS(7894), 2, + aux_sym_str_lit_token1, + aux_sym_str_lit_token2, + STATE(3292), 2, + sym_format_specifier, + aux_sym_str_lit_repeat1, + [180361] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(830), 1, anon_sym_LPAREN, - ACTIONS(7770), 1, + ACTIONS(7898), 1, sym__ws, - STATE(3382), 1, + STATE(3265), 1, aux_sym_read_cond_lit_repeat1, - STATE(1334), 3, + STATE(831), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [179341] = 5, + [180379] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(600), 1, + ACTIONS(790), 1, anon_sym_LPAREN, - ACTIONS(7856), 1, + ACTIONS(7900), 1, sym__ws, - STATE(3277), 1, + STATE(3330), 1, aux_sym_read_cond_lit_repeat1, - STATE(2275), 3, + STATE(1776), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [179359] = 5, + [180397] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(640), 1, + ACTIONS(526), 1, anon_sym_LPAREN, - ACTIONS(7770), 1, + ACTIONS(7902), 1, sym__ws, - STATE(3382), 1, + STATE(3326), 1, aux_sym_read_cond_lit_repeat1, - STATE(1126), 3, + STATE(1057), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [179377] = 5, + [180415] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(811), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(7770), 1, + ACTIONS(7812), 1, sym__ws, - STATE(3382), 1, + STATE(3408), 1, aux_sym_read_cond_lit_repeat1, - STATE(2253), 3, + STATE(2438), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [179395] = 5, + [180433] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(5061), 1, + ACTIONS(7904), 1, anon_sym_DQUOTE, - ACTIONS(7858), 1, + ACTIONS(7908), 1, anon_sym_TILDE, - ACTIONS(7786), 2, + ACTIONS(7906), 2, aux_sym_str_lit_token1, aux_sym_str_lit_token2, - STATE(3262), 2, + STATE(3375), 2, sym_format_specifier, aux_sym_str_lit_repeat1, - [179413] = 5, + [180451] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(600), 1, + ACTIONS(526), 1, anon_sym_LPAREN, - ACTIONS(7770), 1, + ACTIONS(7910), 1, sym__ws, - STATE(3382), 1, + STATE(3298), 1, aux_sym_read_cond_lit_repeat1, - STATE(2294), 3, + STATE(1020), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [179431] = 5, + [180469] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(600), 1, + ACTIONS(790), 1, anon_sym_LPAREN, - ACTIONS(7770), 1, + ACTIONS(7912), 1, sym__ws, - STATE(3382), 1, + STATE(3301), 1, aux_sym_read_cond_lit_repeat1, - STATE(2402), 3, + STATE(1821), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [179449] = 5, + [180487] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(7770), 1, + ACTIONS(7914), 1, sym__ws, - STATE(3382), 1, + STATE(3335), 1, aux_sym_read_cond_lit_repeat1, - STATE(2402), 3, + STATE(2159), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [179467] = 5, + [180505] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(600), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(7860), 1, + ACTIONS(7916), 1, sym__ws, - STATE(3278), 1, + STATE(3309), 1, aux_sym_read_cond_lit_repeat1, - STATE(2400), 3, + STATE(1794), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [179485] = 5, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(7862), 1, - anon_sym_DQUOTE, - ACTIONS(7866), 1, - anon_sym_TILDE, - ACTIONS(7864), 2, - aux_sym_str_lit_token1, - aux_sym_str_lit_token2, - STATE(3281), 2, - sym_format_specifier, - aux_sym_str_lit_repeat1, - [179503] = 5, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(7868), 1, - anon_sym_DQUOTE, - ACTIONS(7872), 1, - anon_sym_TILDE, - ACTIONS(7870), 2, - aux_sym_str_lit_token1, - aux_sym_str_lit_token2, - STATE(3261), 2, - sym_format_specifier, - aux_sym_str_lit_repeat1, - [179521] = 5, + [180523] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(658), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(7874), 1, + ACTIONS(7918), 1, sym__ws, - STATE(3302), 1, + STATE(3310), 1, aux_sym_read_cond_lit_repeat1, - STATE(866), 3, + STATE(1943), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [179539] = 5, + [180541] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, + ACTIONS(526), 1, anon_sym_LPAREN, - ACTIONS(7770), 1, + ACTIONS(7812), 1, sym__ws, - STATE(3382), 1, + STATE(3408), 1, aux_sym_read_cond_lit_repeat1, - STATE(2398), 3, + STATE(1031), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [179557] = 5, + [180559] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(658), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(7770), 1, + ACTIONS(7920), 1, sym__ws, - STATE(3382), 1, + STATE(3342), 1, aux_sym_read_cond_lit_repeat1, - STATE(881), 3, + STATE(2304), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [179575] = 5, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(5065), 1, - anon_sym_DQUOTE, - ACTIONS(7876), 1, - anon_sym_TILDE, - ACTIONS(7786), 2, - aux_sym_str_lit_token1, - aux_sym_str_lit_token2, - STATE(3262), 2, - sym_format_specifier, - aux_sym_str_lit_repeat1, - [179593] = 5, + [180577] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(600), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(7878), 1, + ACTIONS(7812), 1, sym__ws, - STATE(3294), 1, + STATE(3408), 1, aux_sym_read_cond_lit_repeat1, - STATE(2300), 3, + STATE(1814), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [179611] = 5, + [180595] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(600), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(7880), 1, + ACTIONS(7812), 1, sym__ws, - STATE(3295), 1, + STATE(3408), 1, aux_sym_read_cond_lit_repeat1, - STATE(2406), 3, + STATE(1907), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [179629] = 6, + [180613] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5037), 1, - aux_sym_num_lit_token1, - ACTIONS(5045), 1, - anon_sym_SQUOTE, - ACTIONS(5957), 1, - anon_sym_COMMA, - ACTIONS(5961), 1, - aux_sym_format_directive_type_token11, - STATE(2432), 2, - sym__format_token, - aux_sym_format_modifiers_repeat1, - [179649] = 5, + ACTIONS(790), 1, + anon_sym_LPAREN, + ACTIONS(7812), 1, + sym__ws, + STATE(3408), 1, + aux_sym_read_cond_lit_repeat1, + STATE(1720), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [180631] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(7882), 1, + ACTIONS(7922), 1, anon_sym_DQUOTE, - ACTIONS(7886), 1, + ACTIONS(7926), 1, anon_sym_TILDE, - ACTIONS(7884), 2, + ACTIONS(7924), 2, aux_sym_str_lit_token1, aux_sym_str_lit_token2, - STATE(3253), 2, + STATE(3336), 2, sym_format_specifier, aux_sym_str_lit_repeat1, - [179667] = 5, + [180649] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(640), 1, anon_sym_LPAREN, - ACTIONS(7888), 1, + ACTIONS(7928), 1, sym__ws, - STATE(3289), 1, + STATE(3338), 1, aux_sym_read_cond_lit_repeat1, - STATE(1316), 3, + STATE(2442), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [179685] = 5, + [180667] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(7890), 1, + ACTIONS(5087), 1, anon_sym_DQUOTE, - ACTIONS(7894), 1, + ACTIONS(7930), 1, anon_sym_TILDE, - ACTIONS(7892), 2, + ACTIONS(7844), 2, aux_sym_str_lit_token1, aux_sym_str_lit_token2, - STATE(3312), 2, + STATE(3366), 2, sym_format_specifier, aux_sym_str_lit_repeat1, - [179703] = 5, + [180685] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(288), 1, + ACTIONS(640), 1, anon_sym_LPAREN, - ACTIONS(7896), 1, + ACTIONS(7932), 1, sym__ws, - STATE(3317), 1, + STATE(3339), 1, aux_sym_read_cond_lit_repeat1, - STATE(2188), 3, + STATE(2323), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [179721] = 5, + [180703] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(7898), 1, + ACTIONS(7812), 1, sym__ws, - STATE(3321), 1, + STATE(3408), 1, aux_sym_read_cond_lit_repeat1, - STATE(2300), 3, + STATE(2150), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [179739] = 5, + [180721] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(5063), 1, + ACTIONS(5061), 1, anon_sym_DQUOTE, - ACTIONS(7900), 1, + ACTIONS(7934), 1, anon_sym_TILDE, - ACTIONS(7786), 2, + ACTIONS(7844), 2, aux_sym_str_lit_token1, aux_sym_str_lit_token2, - STATE(3262), 2, + STATE(3366), 2, sym_format_specifier, aux_sym_str_lit_repeat1, - [179757] = 5, - ACTIONS(3), 1, + [180739] = 5, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(47), 1, sym_block_comment, - ACTIONS(7902), 1, - anon_sym_DQUOTE, - ACTIONS(7906), 1, - anon_sym_TILDE, - ACTIONS(7904), 2, - aux_sym_str_lit_token1, - aux_sym_str_lit_token2, - STATE(3325), 2, - sym_format_specifier, - aux_sym_str_lit_repeat1, - [179775] = 5, + ACTIONS(7812), 1, + sym__ws, + STATE(3408), 1, + aux_sym_read_cond_lit_repeat1, + STATE(1485), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [180757] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(640), 1, anon_sym_LPAREN, - ACTIONS(7908), 1, + ACTIONS(7812), 1, sym__ws, - STATE(3284), 1, + STATE(3408), 1, aux_sym_read_cond_lit_repeat1, - STATE(1300), 3, + STATE(2427), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [179793] = 5, - ACTIONS(29), 1, - anon_sym_LPAREN, + [180775] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7770), 1, + ACTIONS(640), 1, + anon_sym_LPAREN, + ACTIONS(7812), 1, sym__ws, - STATE(3382), 1, + STATE(3408), 1, aux_sym_read_cond_lit_repeat1, - STATE(1562), 3, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [179811] = 5, + [180793] = 5, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7770), 1, + ACTIONS(7812), 1, sym__ws, - STATE(3382), 1, + STATE(3408), 1, aux_sym_read_cond_lit_repeat1, - STATE(1559), 3, + STATE(1486), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [179829] = 5, + [180811] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(288), 1, + ACTIONS(640), 1, anon_sym_LPAREN, - ACTIONS(7770), 1, + ACTIONS(7936), 1, sym__ws, - STATE(3382), 1, + STATE(3345), 1, aux_sym_read_cond_lit_repeat1, - STATE(2178), 3, + STATE(2426), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [179847] = 5, + [180829] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(891), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(7770), 1, + ACTIONS(7812), 1, sym__ws, - STATE(3382), 1, + STATE(3408), 1, aux_sym_read_cond_lit_repeat1, - STATE(1232), 3, + STATE(2275), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [179865] = 5, + [180847] = 5, ACTIONS(47), 1, sym_block_comment, ACTIONS(640), 1, anon_sym_LPAREN, - ACTIONS(7910), 1, + ACTIONS(7938), 1, sym__ws, - STATE(3332), 1, + STATE(3348), 1, aux_sym_read_cond_lit_repeat1, - STATE(1040), 3, + STATE(2304), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [179883] = 5, + [180865] = 5, + ACTIONS(29), 1, + anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, - anon_sym_LPAREN, - ACTIONS(7912), 1, + ACTIONS(7940), 1, sym__ws, - STATE(3342), 1, + STATE(3337), 1, aux_sym_read_cond_lit_repeat1, - STATE(1903), 3, + STATE(1465), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [179901] = 5, + [180883] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, + ACTIONS(640), 1, anon_sym_LPAREN, - ACTIONS(7770), 1, + ACTIONS(7812), 1, sym__ws, - STATE(3382), 1, + STATE(3408), 1, aux_sym_read_cond_lit_repeat1, - STATE(2294), 3, + STATE(2438), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [179919] = 5, + [180901] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(891), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(7914), 1, + ACTIONS(7942), 1, sym__ws, - STATE(3318), 1, + STATE(3328), 1, aux_sym_read_cond_lit_repeat1, - STATE(1272), 3, + STATE(1815), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [179937] = 5, - ACTIONS(29), 1, - anon_sym_LPAREN, + [180919] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7770), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(7944), 1, sym__ws, - STATE(3382), 1, + STATE(3329), 1, aux_sym_read_cond_lit_repeat1, - STATE(1482), 3, + STATE(1968), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [179955] = 5, + [180937] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(891), 1, + ACTIONS(640), 1, anon_sym_LPAREN, - ACTIONS(7770), 1, + ACTIONS(7812), 1, sym__ws, - STATE(3382), 1, + STATE(3408), 1, aux_sym_read_cond_lit_repeat1, - STATE(1283), 3, + STATE(2275), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [179973] = 5, + [180955] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(5057), 1, + ACTIONS(7946), 1, anon_sym_DQUOTE, - ACTIONS(7916), 1, + ACTIONS(7950), 1, anon_sym_TILDE, - ACTIONS(7786), 2, + ACTIONS(7948), 2, aux_sym_str_lit_token1, aux_sym_str_lit_token2, - STATE(3262), 2, + STATE(3333), 2, sym_format_specifier, aux_sym_str_lit_repeat1, - [179991] = 5, - ACTIONS(47), 1, + [180973] = 5, + ACTIONS(3), 1, sym_block_comment, - ACTIONS(891), 1, + ACTIONS(7952), 1, + anon_sym_DQUOTE, + ACTIONS(7956), 1, + anon_sym_TILDE, + ACTIONS(7954), 2, + aux_sym_str_lit_token1, + aux_sym_str_lit_token2, + STATE(3358), 2, + sym_format_specifier, + aux_sym_str_lit_repeat1, + [180991] = 5, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(7918), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7958), 1, sym__ws, - STATE(3324), 1, + STATE(3340), 1, aux_sym_read_cond_lit_repeat1, - STATE(1263), 3, + STATE(1466), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [180009] = 5, + [181009] = 5, ACTIONS(47), 1, sym_block_comment, ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(7920), 1, + ACTIONS(7960), 1, sym__ws, - STATE(3343), 1, + STATE(3361), 1, aux_sym_read_cond_lit_repeat1, - STATE(2177), 3, + STATE(2206), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [180027] = 5, + [181027] = 5, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7922), 1, + ACTIONS(7962), 1, sym__ws, - STATE(3339), 1, + STATE(3266), 1, aux_sym_read_cond_lit_repeat1, - STATE(1546), 3, + STATE(1494), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [180045] = 5, + [181045] = 5, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7924), 1, + ACTIONS(7964), 1, sym__ws, - STATE(3323), 1, + STATE(3378), 1, aux_sym_read_cond_lit_repeat1, - STATE(1545), 3, + STATE(1495), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [180063] = 5, + [181063] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(288), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(7770), 1, + ACTIONS(7966), 1, sym__ws, - STATE(3382), 1, + STATE(3362), 1, aux_sym_read_cond_lit_repeat1, - STATE(1748), 3, + STATE(2323), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [180081] = 5, + [181081] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, + ACTIONS(678), 1, anon_sym_LPAREN, - ACTIONS(7926), 1, + ACTIONS(7812), 1, sym__ws, - STATE(3301), 1, + STATE(3408), 1, aux_sym_read_cond_lit_repeat1, - STATE(2400), 3, + STATE(1187), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [180099] = 5, + [181099] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(640), 1, + ACTIONS(678), 1, anon_sym_LPAREN, - ACTIONS(7770), 1, + ACTIONS(7968), 1, sym__ws, - STATE(3382), 1, + STATE(3356), 1, aux_sym_read_cond_lit_repeat1, - STATE(961), 3, + STATE(1236), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [180117] = 5, + [181117] = 5, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(5071), 1, + anon_sym_DQUOTE, + ACTIONS(7970), 1, + anon_sym_TILDE, + ACTIONS(7844), 2, + aux_sym_str_lit_token1, + aux_sym_str_lit_token2, + STATE(3366), 2, + sym_format_specifier, + aux_sym_str_lit_repeat1, + [181135] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(288), 1, + ACTIONS(678), 1, anon_sym_LPAREN, - ACTIONS(7928), 1, + ACTIONS(7812), 1, sym__ws, - STATE(3330), 1, + STATE(3408), 1, aux_sym_read_cond_lit_repeat1, - STATE(1695), 3, + STATE(1248), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [180135] = 5, + [181153] = 6, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5041), 1, + aux_sym_num_lit_token1, + ACTIONS(5049), 1, + anon_sym_SQUOTE, + ACTIONS(5989), 1, + anon_sym_COMMA, + ACTIONS(5993), 1, + aux_sym_format_directive_type_token11, + STATE(2459), 2, + sym__format_token, + aux_sym_format_modifiers_repeat1, + [181173] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(891), 1, + ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(7930), 1, + ACTIONS(7812), 1, sym__ws, - STATE(3236), 1, + STATE(3408), 1, aux_sym_read_cond_lit_repeat1, - STATE(1247), 3, + STATE(2202), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [180153] = 5, + [181191] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(7932), 1, + ACTIONS(7812), 1, sym__ws, - STATE(3259), 1, + STATE(3408), 1, aux_sym_read_cond_lit_repeat1, - STATE(2275), 3, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [180171] = 5, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(7934), 1, - anon_sym_DQUOTE, - ACTIONS(7938), 1, - anon_sym_TILDE, - ACTIONS(7936), 2, - aux_sym_str_lit_token1, - aux_sym_str_lit_token2, - STATE(3285), 2, - sym_format_specifier, - aux_sym_str_lit_repeat1, - [180189] = 5, + [181209] = 5, ACTIONS(47), 1, sym_block_comment, ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(7770), 1, + ACTIONS(7972), 1, sym__ws, - STATE(3382), 1, + STATE(3376), 1, aux_sym_read_cond_lit_repeat1, - STATE(1747), 3, + STATE(2198), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [180207] = 5, + [181227] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(891), 1, + ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(7940), 1, + ACTIONS(7812), 1, sym__ws, - STATE(3340), 1, + STATE(3408), 1, aux_sym_read_cond_lit_repeat1, - STATE(1227), 3, + STATE(1573), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [180225] = 5, - ACTIONS(29), 1, - anon_sym_LPAREN, + [181245] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7770), 1, + ACTIONS(678), 1, + anon_sym_LPAREN, + ACTIONS(7812), 1, sym__ws, - STATE(3382), 1, + STATE(3408), 1, aux_sym_read_cond_lit_repeat1, - STATE(1483), 3, + STATE(1230), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [180243] = 5, + [181263] = 5, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(7974), 1, + anon_sym_DQUOTE, + ACTIONS(7979), 1, + anon_sym_TILDE, + ACTIONS(7976), 2, + aux_sym_str_lit_token1, + aux_sym_str_lit_token2, + STATE(3366), 2, + sym_format_specifier, + aux_sym_str_lit_repeat1, + [181281] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(891), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(7770), 1, + ACTIONS(7982), 1, sym__ws, - STATE(3382), 1, + STATE(3377), 1, aux_sym_read_cond_lit_repeat1, - STATE(1169), 3, + STATE(2304), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [180261] = 5, + [181299] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, + ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(7770), 1, + ACTIONS(7984), 1, sym__ws, - STATE(3382), 1, + STATE(3364), 1, aux_sym_read_cond_lit_repeat1, - STATE(1932), 3, + STATE(1794), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [180279] = 5, + [181317] = 5, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(5085), 1, + anon_sym_DQUOTE, + ACTIONS(7986), 1, + anon_sym_TILDE, + ACTIONS(7844), 2, + aux_sym_str_lit_token1, + aux_sym_str_lit_token2, + STATE(3366), 2, + sym_format_specifier, + aux_sym_str_lit_repeat1, + [181335] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, + ACTIONS(678), 1, anon_sym_LPAREN, - ACTIONS(7770), 1, + ACTIONS(7988), 1, sym__ws, - STATE(3382), 1, + STATE(3365), 1, aux_sym_read_cond_lit_repeat1, - STATE(1916), 3, + STATE(1198), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [180297] = 5, + [181353] = 5, ACTIONS(47), 1, sym_block_comment, ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(7770), 1, + ACTIONS(7812), 1, sym__ws, - STATE(3382), 1, + STATE(3408), 1, aux_sym_read_cond_lit_repeat1, - STATE(2175), 3, + STATE(1814), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [180315] = 5, + [181371] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(640), 1, + ACTIONS(678), 1, anon_sym_LPAREN, - ACTIONS(7942), 1, + ACTIONS(7812), 1, + sym__ws, + STATE(3408), 1, + aux_sym_read_cond_lit_repeat1, + STATE(1225), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [181389] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(288), 1, + anon_sym_LPAREN, + ACTIONS(7990), 1, sym__ws, - STATE(3291), 1, + STATE(3371), 1, aux_sym_read_cond_lit_repeat1, - STATE(1143), 3, + STATE(1815), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [180333] = 5, + [181407] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(536), 1, + ACTIONS(678), 1, anon_sym_LPAREN, - ACTIONS(7944), 1, + ACTIONS(7992), 1, sym__ws, - STATE(3341), 1, + STATE(3372), 1, aux_sym_read_cond_lit_repeat1, - STATE(1924), 3, + STATE(1237), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [180351] = 5, + [181425] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(7946), 1, + ACTIONS(5065), 1, anon_sym_DQUOTE, - ACTIONS(7950), 1, + ACTIONS(7994), 1, anon_sym_TILDE, - ACTIONS(7948), 2, + ACTIONS(7844), 2, aux_sym_str_lit_token1, aux_sym_str_lit_token2, - STATE(3303), 2, + STATE(3366), 2, sym_format_specifier, aux_sym_str_lit_repeat1, - [180369] = 5, + [181443] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(811), 1, + ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(7770), 1, + ACTIONS(7812), 1, sym__ws, - STATE(3382), 1, + STATE(3408), 1, aux_sym_read_cond_lit_repeat1, - STATE(2129), 3, + STATE(2196), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [180387] = 5, + [181461] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(288), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(7952), 1, + ACTIONS(7812), 1, sym__ws, - STATE(3337), 1, + STATE(3408), 1, + aux_sym_read_cond_lit_repeat1, + STATE(2275), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [181479] = 5, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7812), 1, + sym__ws, + STATE(3408), 1, aux_sym_read_cond_lit_repeat1, - STATE(1808), 3, + STATE(1446), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [180405] = 3, + [181497] = 6, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7996), 1, + anon_sym_cl, + ACTIONS(7998), 1, + aux_sym__sym_lit_without_slash_token1, + STATE(3390), 1, + aux_sym__sym_lit_without_slash_repeat1, + STATE(3405), 1, + sym__sym_lit_without_slash, + STATE(3489), 1, + sym__package_lit_without_slash, + [181516] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7954), 1, + ACTIONS(8000), 1, anon_sym_loop, - ACTIONS(7956), 4, + ACTIONS(8002), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - [180418] = 3, + [181529] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7958), 1, + ACTIONS(8004), 1, anon_sym_loop, - ACTIONS(7956), 4, + ACTIONS(8002), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - [180431] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7960), 1, - anon_sym_COLON, - ACTIONS(7964), 1, - aux_sym__sym_lit_without_slash_token1, - STATE(3355), 1, - aux_sym__sym_lit_without_slash_repeat1, - ACTIONS(7962), 2, - anon_sym_COLON_COLON, - anon_sym_SLASH, - [180448] = 3, + [181542] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7966), 1, + ACTIONS(8006), 1, anon_sym_loop, - ACTIONS(7956), 4, + ACTIONS(8002), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - [180461] = 3, + [181555] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7968), 1, + ACTIONS(8008), 1, anon_sym_loop, - ACTIONS(7956), 4, + ACTIONS(8002), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - [180474] = 3, + [181568] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7970), 1, + ACTIONS(8010), 1, anon_sym_loop, - ACTIONS(7956), 4, + ACTIONS(8002), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - [180487] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7972), 1, - anon_sym_COLON, - ACTIONS(7976), 1, - aux_sym__sym_lit_without_slash_token1, - STATE(3355), 1, - aux_sym__sym_lit_without_slash_repeat1, - ACTIONS(7974), 2, - anon_sym_COLON_COLON, - anon_sym_SLASH, - [180504] = 6, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7979), 1, - anon_sym_cl, - ACTIONS(7981), 1, - aux_sym__sym_lit_without_slash_token1, - STATE(3351), 1, - aux_sym__sym_lit_without_slash_repeat1, - STATE(3372), 1, - sym__sym_lit_without_slash, - STATE(3460), 1, - sym__package_lit_without_slash, - [180523] = 3, + [181581] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7983), 1, + ACTIONS(8012), 1, anon_sym_loop, - ACTIONS(7956), 4, + ACTIONS(8002), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - [180536] = 3, + [181594] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7985), 1, + ACTIONS(8014), 1, anon_sym_loop, - ACTIONS(7956), 4, + ACTIONS(8002), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - [180549] = 3, + [181607] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7987), 1, + ACTIONS(8016), 1, anon_sym_loop, - ACTIONS(7956), 4, + ACTIONS(8002), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - [180562] = 3, + [181620] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7989), 1, + ACTIONS(8018), 1, anon_sym_loop, - ACTIONS(7956), 4, + ACTIONS(8002), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - [180575] = 3, + [181633] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8020), 1, + anon_sym_COLON, + ACTIONS(8024), 1, + aux_sym__sym_lit_without_slash_token1, + STATE(3389), 1, + aux_sym__sym_lit_without_slash_repeat1, + ACTIONS(8022), 2, + anon_sym_COLON_COLON, + anon_sym_SLASH, + [181650] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8027), 1, + anon_sym_COLON, + ACTIONS(8031), 1, + aux_sym__sym_lit_without_slash_token1, + STATE(3389), 1, + aux_sym__sym_lit_without_slash_repeat1, + ACTIONS(8029), 2, + anon_sym_COLON_COLON, + anon_sym_SLASH, + [181667] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7991), 1, + ACTIONS(8033), 1, anon_sym_loop, - ACTIONS(7956), 4, + ACTIONS(8002), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - [180588] = 2, + [181680] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(7993), 4, + ACTIONS(8035), 4, anon_sym_DQUOTE, aux_sym_str_lit_token1, aux_sym_str_lit_token2, anon_sym_TILDE, - [180598] = 2, + [181690] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(7995), 4, + ACTIONS(8037), 4, anon_sym_DQUOTE, aux_sym_str_lit_token1, aux_sym_str_lit_token2, anon_sym_TILDE, - [180608] = 2, + [181700] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(7997), 4, + ACTIONS(8039), 4, anon_sym_DQUOTE, aux_sym_str_lit_token1, aux_sym_str_lit_token2, anon_sym_TILDE, - [180618] = 2, + [181710] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(7999), 4, + ACTIONS(8041), 4, anon_sym_DQUOTE, aux_sym_str_lit_token1, aux_sym_str_lit_token2, anon_sym_TILDE, - [180628] = 2, + [181720] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(8001), 4, + ACTIONS(8043), 4, anon_sym_DQUOTE, aux_sym_str_lit_token1, aux_sym_str_lit_token2, anon_sym_TILDE, - [180638] = 2, + [181730] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(8003), 4, + ACTIONS(8045), 4, anon_sym_DQUOTE, aux_sym_str_lit_token1, aux_sym_str_lit_token2, anon_sym_TILDE, - [180648] = 2, + [181740] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(8005), 4, + ACTIONS(8047), 4, anon_sym_DQUOTE, aux_sym_str_lit_token1, aux_sym_str_lit_token2, anon_sym_TILDE, - [180658] = 2, + [181750] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(8007), 4, + ACTIONS(8049), 4, anon_sym_DQUOTE, aux_sym_str_lit_token1, aux_sym_str_lit_token2, anon_sym_TILDE, - [180668] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(8009), 1, - anon_sym_COLON, - ACTIONS(8011), 3, - anon_sym_COLON_COLON, - anon_sym_SLASH, - aux_sym__sym_lit_without_slash_token1, - [180680] = 2, + [181760] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(8013), 4, + ACTIONS(8051), 4, anon_sym_DQUOTE, aux_sym_str_lit_token1, aux_sym_str_lit_token2, anon_sym_TILDE, - [180690] = 4, + [181770] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8015), 1, + ACTIONS(8053), 1, anon_sym_COLON, - ACTIONS(8017), 1, + ACTIONS(8055), 3, anon_sym_COLON_COLON, - ACTIONS(8019), 1, anon_sym_SLASH, - [180703] = 4, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(534), 1, - aux_sym_sym_lit_token1, - ACTIONS(8021), 1, - anon_sym_EQ, - STATE(1922), 1, - sym_sym_lit, - [180716] = 4, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(534), 1, - aux_sym_sym_lit_token1, - ACTIONS(8023), 1, - anon_sym_EQ, - STATE(1922), 1, - sym_sym_lit, - [180729] = 4, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7964), 1, aux_sym__sym_lit_without_slash_token1, - STATE(3351), 1, - aux_sym__sym_lit_without_slash_repeat1, - STATE(3474), 1, - sym__sym_lit_without_slash, - [180742] = 4, + [181782] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(8025), 1, + ACTIONS(8057), 1, anon_sym_EQ, - STATE(1922), 1, + STATE(1958), 1, sym_sym_lit, - [180755] = 4, + [181795] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(8027), 1, + ACTIONS(8059), 1, anon_sym_EQ, - STATE(1922), 1, + STATE(1958), 1, sym_sym_lit, - [180768] = 4, + [181808] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(8029), 1, + ACTIONS(8061), 1, anon_sym_EQ, - STATE(1922), 1, + STATE(1958), 1, sym_sym_lit, - [180781] = 4, + [181821] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(534), 1, - aux_sym_sym_lit_token1, - ACTIONS(8031), 1, - anon_sym_EQ, - STATE(1922), 1, - sym_sym_lit, - [180794] = 4, + ACTIONS(8063), 1, + anon_sym_COLON, + ACTIONS(8065), 1, + anon_sym_COLON_COLON, + ACTIONS(8067), 1, + anon_sym_SLASH, + [181834] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(8033), 1, + ACTIONS(8069), 1, anon_sym_EQ, - STATE(1922), 1, + STATE(1958), 1, sym_sym_lit, - [180807] = 4, + [181847] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(534), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - ACTIONS(8035), 1, + ACTIONS(8071), 1, anon_sym_EQ, - STATE(1922), 1, + STATE(1958), 1, sym_sym_lit, - [180820] = 4, + [181860] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8037), 1, + ACTIONS(8073), 1, sym__ws, - ACTIONS(8040), 1, + ACTIONS(8076), 1, anon_sym_LPAREN, - STATE(3382), 1, + STATE(3408), 1, aux_sym_read_cond_lit_repeat1, - [180833] = 3, + [181873] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5453), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - STATE(1729), 1, + ACTIONS(8078), 1, + anon_sym_EQ, + STATE(1958), 1, sym_sym_lit, - [180843] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(8042), 1, - aux_sym_sym_lit_token1, - STATE(1034), 1, - sym_kwd_symbol, - [180853] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5183), 1, - anon_sym_COLON_COLON, - ACTIONS(8044), 1, - anon_sym_COLON, - [180863] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5031), 1, - anon_sym_COLON, - ACTIONS(5033), 1, - anon_sym_COLON_COLON, - [180873] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5103), 1, - anon_sym_COLON_COLON, - ACTIONS(8046), 1, - anon_sym_COLON, - [180883] = 3, + [181886] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5183), 1, - anon_sym_COLON_COLON, - ACTIONS(8048), 1, - anon_sym_COLON, - [180893] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4963), 1, - anon_sym_COLON, - ACTIONS(4965), 1, - anon_sym_COLON_COLON, - [180903] = 3, + ACTIONS(8031), 1, + aux_sym__sym_lit_without_slash_token1, + STATE(3390), 1, + aux_sym__sym_lit_without_slash_repeat1, + STATE(3481), 1, + sym__sym_lit_without_slash, + [181899] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8050), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - STATE(1312), 1, - sym_kwd_symbol, - [180913] = 3, + ACTIONS(8080), 1, + anon_sym_EQ, + STATE(1958), 1, + sym_sym_lit, + [181912] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5453), 1, + ACTIONS(740), 1, aux_sym_sym_lit_token1, - STATE(2280), 1, + ACTIONS(8082), 1, + anon_sym_EQ, + STATE(1958), 1, sym_sym_lit, - [180923] = 3, + [181925] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8052), 1, + ACTIONS(8084), 1, aux_sym_sym_lit_token1, - STATE(1649), 1, + STATE(837), 1, sym_sym_lit, - [180933] = 3, + [181935] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8054), 1, + ACTIONS(8086), 1, aux_sym_sym_lit_token1, - STATE(1897), 1, + STATE(1460), 1, sym_kwd_symbol, - [180943] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5183), 1, - anon_sym_COLON_COLON, - ACTIONS(8056), 1, - anon_sym_COLON, - [180953] = 3, + [181945] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8058), 1, + ACTIONS(8088), 1, aux_sym_sym_lit_token1, - STATE(831), 1, + STATE(899), 1, sym_kwd_symbol, - [180963] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5129), 1, - anon_sym_COLON, - ACTIONS(5131), 1, - anon_sym_COLON_COLON, - [180973] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4839), 1, - anon_sym_COLON, - ACTIONS(4841), 1, - anon_sym_COLON_COLON, - [180983] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5103), 1, - anon_sym_COLON_COLON, - ACTIONS(8060), 1, - anon_sym_COLON, - [180993] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5183), 1, - anon_sym_COLON_COLON, - ACTIONS(8062), 1, - anon_sym_COLON, - [181003] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5183), 1, - anon_sym_COLON_COLON, - ACTIONS(8064), 1, - anon_sym_COLON, - [181013] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5103), 1, - anon_sym_COLON_COLON, - ACTIONS(8066), 1, - anon_sym_COLON, - [181023] = 3, + [181955] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8068), 1, + ACTIONS(8090), 1, aux_sym_sym_lit_token1, - STATE(1679), 1, + STATE(1249), 1, sym_kwd_symbol, - [181033] = 3, + [181965] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8070), 1, + ACTIONS(8092), 1, aux_sym_sym_lit_token1, - STATE(1500), 1, + STATE(2139), 1, sym_kwd_symbol, - [181043] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5181), 1, - anon_sym_COLON, - ACTIONS(5183), 1, - anon_sym_COLON_COLON, - [181053] = 3, + [181975] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5437), 1, + ACTIONS(8094), 1, aux_sym_sym_lit_token1, - STATE(1551), 1, + STATE(1197), 1, sym_sym_lit, - [181063] = 3, + [181985] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5183), 1, - anon_sym_COLON_COLON, - ACTIONS(8072), 1, - anon_sym_COLON, - [181073] = 3, + ACTIONS(8096), 1, + aux_sym_sym_lit_token1, + STATE(1064), 1, + sym_kwd_symbol, + [181995] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5473), 1, - anon_sym_COLON, ACTIONS(5475), 1, - anon_sym_COLON_COLON, - [181083] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5101), 1, - anon_sym_COLON, - ACTIONS(5103), 1, - anon_sym_COLON_COLON, - [181093] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5103), 1, - anon_sym_COLON_COLON, - ACTIONS(8074), 1, - anon_sym_COLON, - [181103] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(8076), 1, aux_sym_sym_lit_token1, - STATE(863), 1, + STATE(2307), 1, sym_sym_lit, - [181113] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5475), 1, - anon_sym_COLON_COLON, - ACTIONS(8078), 1, - anon_sym_COLON, - [181123] = 3, + [182005] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8015), 1, + ACTIONS(8063), 1, anon_sym_COLON, - ACTIONS(8017), 1, + ACTIONS(8065), 1, anon_sym_COLON_COLON, - [181133] = 3, + [182015] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8080), 1, + ACTIONS(8098), 1, aux_sym_sym_lit_token1, - STATE(2192), 1, - sym_kwd_symbol, - [181143] = 3, + STATE(1326), 1, + sym_sym_lit, + [182025] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8082), 1, + ACTIONS(5469), 1, aux_sym_sym_lit_token1, - STATE(1225), 1, - sym_kwd_symbol, - [181153] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5103), 1, - anon_sym_COLON_COLON, - ACTIONS(8084), 1, - anon_sym_COLON, - [181163] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5183), 1, - anon_sym_COLON_COLON, - ACTIONS(8086), 1, - anon_sym_COLON, - [181173] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5939), 1, - anon_sym_COLON, - ACTIONS(5941), 1, - anon_sym_COLON_COLON, - [181183] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5103), 1, - anon_sym_COLON_COLON, - ACTIONS(8088), 1, - anon_sym_COLON, - [181193] = 3, + STATE(2307), 1, + sym_sym_lit, + [182035] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8090), 1, + ACTIONS(8100), 1, aux_sym_sym_lit_token1, - STATE(2120), 1, + STATE(2210), 1, sym_kwd_symbol, - [181203] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(8092), 1, - aux_sym_sym_lit_token1, - STATE(1341), 1, - sym_sym_lit, - [181213] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5103), 1, - anon_sym_COLON_COLON, - ACTIONS(8094), 1, - anon_sym_COLON, - [181223] = 3, + [182045] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8096), 1, + ACTIONS(8102), 1, aux_sym_sym_lit_token1, - STATE(2410), 1, + STATE(1377), 1, sym_kwd_symbol, - [181233] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5103), 1, - anon_sym_COLON_COLON, - ACTIONS(8098), 1, - anon_sym_COLON, - [181243] = 3, + [182055] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5447), 1, + ACTIONS(8104), 1, aux_sym_sym_lit_token1, - STATE(2280), 1, + STATE(1755), 1, sym_sym_lit, - [181253] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5183), 1, - anon_sym_COLON_COLON, - ACTIONS(8100), 1, - anon_sym_COLON, - [181263] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4156), 1, - anon_sym_COLON, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - [181273] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5975), 1, - anon_sym_COLON, - ACTIONS(5977), 1, - anon_sym_COLON_COLON, - [181283] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5103), 1, - anon_sym_COLON_COLON, - ACTIONS(8102), 1, - anon_sym_COLON, - [181293] = 3, + [182065] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8104), 1, + ACTIONS(5475), 1, aux_sym_sym_lit_token1, - STATE(1285), 1, + STATE(1796), 1, sym_sym_lit, - [181303] = 3, + [182075] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(8106), 1, aux_sym_sym_lit_token1, - STATE(1146), 1, - sym_sym_lit, - [181313] = 3, + STATE(1769), 1, + sym_kwd_symbol, + [182085] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5819), 1, - anon_sym_COLON, - ACTIONS(5821), 1, - anon_sym_COLON_COLON, - [181323] = 3, + ACTIONS(8108), 1, + aux_sym_sym_lit_token1, + STATE(1796), 1, + sym_sym_lit, + [182095] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8108), 1, + ACTIONS(5459), 1, aux_sym_sym_lit_token1, - STATE(1922), 1, + STATE(1492), 1, sym_sym_lit, - [181333] = 3, + [182105] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(8110), 1, aux_sym_sym_lit_token1, - STATE(1729), 1, + STATE(1025), 1, sym_sym_lit, - [181343] = 3, + [182115] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5103), 1, - anon_sym_COLON_COLON, ACTIONS(8112), 1, - anon_sym_COLON, - [181353] = 2, + aux_sym_sym_lit_token1, + STATE(1967), 1, + sym_kwd_symbol, + [182125] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(8114), 1, - anon_sym_EQ, - [181360] = 2, + aux_sym_sym_lit_token1, + STATE(2415), 1, + sym_kwd_symbol, + [182135] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(8116), 1, - aux_sym_regex_lit_token1, - [181367] = 2, + aux_sym_sym_lit_token1, + STATE(1958), 1, + sym_sym_lit, + [182145] = 2, ACTIONS(47), 1, sym_block_comment, ACTIONS(8118), 1, anon_sym_COLON, - [181374] = 2, + [182152] = 2, ACTIONS(47), 1, sym_block_comment, ACTIONS(8120), 1, - anon_sym_COLON, - [181381] = 2, + aux_sym_regex_lit_token1, + [182159] = 2, ACTIONS(47), 1, sym_block_comment, ACTIONS(8122), 1, anon_sym_COLON, - [181388] = 2, + [182166] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8124), 1, - anon_sym_COLON, - [181395] = 2, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(8126), 1, - anon_sym_EQ, - [181402] = 2, + ACTIONS(544), 1, + anon_sym_LBRACE, + [182173] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8128), 1, + ACTIONS(8124), 1, anon_sym_EQ, - [181409] = 2, + [182180] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(893), 1, - anon_sym_LBRACE, - [181416] = 2, + ACTIONS(8126), 1, + aux_sym_regex_lit_token1, + [182187] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(843), 1, - anon_sym_LBRACE, - [181423] = 2, + ACTIONS(8128), 1, + anon_sym_COLON, + [182194] = 2, ACTIONS(47), 1, sym_block_comment, ACTIONS(8130), 1, - anon_sym_EQ, - [181430] = 2, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(602), 1, - anon_sym_LBRACE, - [181437] = 2, + anon_sym_COLON, + [182201] = 2, ACTIONS(47), 1, sym_block_comment, ACTIONS(8132), 1, anon_sym_COLON, - [181444] = 2, + [182208] = 2, ACTIONS(47), 1, sym_block_comment, ACTIONS(8134), 1, anon_sym_COLON, - [181451] = 2, + [182215] = 2, ACTIONS(47), 1, sym_block_comment, ACTIONS(8136), 1, anon_sym_EQ, - [181458] = 2, + [182222] = 2, ACTIONS(47), 1, sym_block_comment, ACTIONS(8138), 1, - aux_sym_regex_lit_token1, - [181465] = 2, + anon_sym_COLON, + [182229] = 2, ACTIONS(47), 1, sym_block_comment, ACTIONS(8140), 1, - anon_sym_COLON, - [181472] = 2, + anon_sym_EQ, + [182236] = 2, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(718), 1, + anon_sym_LBRACE, + [182243] = 2, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(742), 1, + anon_sym_LBRACE, + [182250] = 2, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(792), 1, + anon_sym_LBRACE, + [182257] = 2, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(488), 1, + anon_sym_LBRACE, + [182264] = 2, ACTIONS(47), 1, sym_block_comment, ACTIONS(8142), 1, anon_sym_COLON, - [181479] = 2, + [182271] = 2, ACTIONS(47), 1, sym_block_comment, ACTIONS(8144), 1, - anon_sym_EQ, - [181486] = 2, + anon_sym_COLON, + [182278] = 2, ACTIONS(47), 1, sym_block_comment, ACTIONS(8146), 1, aux_sym_regex_lit_token1, - [181493] = 2, + [182285] = 2, ACTIONS(47), 1, sym_block_comment, ACTIONS(8148), 1, - aux_sym_regex_lit_token1, - [181500] = 2, + anon_sym_EQ, + [182292] = 2, ACTIONS(47), 1, sym_block_comment, ACTIONS(8150), 1, anon_sym_EQ, - [181507] = 2, + [182299] = 2, ACTIONS(47), 1, sym_block_comment, ACTIONS(8152), 1, anon_sym_EQ, - [181514] = 2, + [182306] = 2, ACTIONS(47), 1, sym_block_comment, ACTIONS(8154), 1, anon_sym_COLON, - [181521] = 2, + [182313] = 2, ACTIONS(47), 1, sym_block_comment, ACTIONS(8156), 1, - anon_sym_COLON, - [181528] = 2, + aux_sym__format_token_token1, + [182320] = 2, ACTIONS(47), 1, sym_block_comment, ACTIONS(8158), 1, - anon_sym_SLASH, - [181535] = 2, + anon_sym_COLON, + [182327] = 2, ACTIONS(47), 1, sym_block_comment, ACTIONS(8160), 1, - anon_sym_EQ, - [181542] = 2, + anon_sym_COLON, + [182334] = 2, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(680), 1, + anon_sym_LBRACE, + [182341] = 2, ACTIONS(47), 1, sym_block_comment, ACTIONS(8162), 1, anon_sym_COLON, - [181549] = 2, + [182348] = 2, ACTIONS(47), 1, sym_block_comment, ACTIONS(8164), 1, - anon_sym_COLON, - [181556] = 2, + anon_sym_EQ, + [182355] = 2, ACTIONS(47), 1, sym_block_comment, ACTIONS(8166), 1, anon_sym_into, - [181563] = 2, + [182362] = 2, ACTIONS(47), 1, sym_block_comment, ACTIONS(8168), 1, - anon_sym_COLON, - [181570] = 2, + anon_sym_EQ, + [182369] = 2, ACTIONS(47), 1, sym_block_comment, ACTIONS(8170), 1, - aux_sym_regex_lit_token1, - [181577] = 2, + anon_sym_EQ, + [182376] = 2, ACTIONS(47), 1, sym_block_comment, ACTIONS(8172), 1, anon_sym_COLON, - [181584] = 2, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(660), 1, - anon_sym_LBRACE, - [181591] = 2, + [182383] = 2, ACTIONS(47), 1, sym_block_comment, ACTIONS(8174), 1, - ts_builtin_sym_end, - [181598] = 2, + anon_sym_COLON, + [182390] = 2, ACTIONS(47), 1, sym_block_comment, ACTIONS(8176), 1, - anon_sym_EQ, - [181605] = 2, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(576), 1, - anon_sym_LBRACE, - [181612] = 2, + aux_sym_regex_lit_token1, + [182397] = 2, ACTIONS(47), 1, sym_block_comment, ACTIONS(8178), 1, - anon_sym_EQ, - [181619] = 2, + anon_sym_COLON, + [182404] = 2, ACTIONS(47), 1, sym_block_comment, ACTIONS(8180), 1, anon_sym_COLON, - [181626] = 2, + [182411] = 2, ACTIONS(47), 1, sym_block_comment, ACTIONS(8182), 1, - anon_sym_SLASH, - [181633] = 2, + anon_sym_EQ, + [182418] = 2, ACTIONS(47), 1, sym_block_comment, ACTIONS(8184), 1, anon_sym_COLON, - [181640] = 2, + [182425] = 2, ACTIONS(47), 1, sym_block_comment, ACTIONS(8186), 1, - anon_sym_COLON, - [181647] = 2, + anon_sym_EQ, + [182432] = 2, ACTIONS(47), 1, sym_block_comment, ACTIONS(8188), 1, - anon_sym_COLON, - [181654] = 2, + anon_sym_EQ, + [182439] = 2, ACTIONS(47), 1, sym_block_comment, ACTIONS(8190), 1, - aux_sym_regex_lit_token1, - [181661] = 2, + anon_sym_EQ, + [182446] = 2, ACTIONS(47), 1, sym_block_comment, ACTIONS(8192), 1, - anon_sym_COLON, - [181668] = 2, + ts_builtin_sym_end, + [182453] = 2, ACTIONS(47), 1, sym_block_comment, ACTIONS(8194), 1, aux_sym_regex_lit_token1, - [181675] = 2, + [182460] = 2, ACTIONS(47), 1, sym_block_comment, ACTIONS(8196), 1, anon_sym_COLON, - [181682] = 2, + [182467] = 2, ACTIONS(47), 1, sym_block_comment, ACTIONS(8198), 1, - anon_sym_EQ, - [181689] = 2, + anon_sym_SLASH, + [182474] = 2, ACTIONS(47), 1, sym_block_comment, ACTIONS(8200), 1, - anon_sym_EQ, - [181696] = 2, + anon_sym_COLON, + [182481] = 2, ACTIONS(47), 1, sym_block_comment, ACTIONS(8202), 1, anon_sym_COLON, - [181703] = 2, + [182488] = 2, ACTIONS(47), 1, sym_block_comment, ACTIONS(8204), 1, - anon_sym_EQ, - [181710] = 2, + anon_sym_COLON, + [182495] = 2, ACTIONS(47), 1, sym_block_comment, ACTIONS(8206), 1, anon_sym_COLON, - [181717] = 2, + [182502] = 2, ACTIONS(47), 1, sym_block_comment, ACTIONS(8208), 1, - anon_sym_COLON, - [181724] = 2, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(642), 1, - anon_sym_LBRACE, - [181731] = 2, + anon_sym_into, + [182509] = 2, ACTIONS(47), 1, sym_block_comment, ACTIONS(8210), 1, - anon_sym_COLON, - [181738] = 2, + anon_sym_into, + [182516] = 2, ACTIONS(47), 1, sym_block_comment, ACTIONS(8212), 1, anon_sym_COLON, - [181745] = 2, + [182523] = 2, ACTIONS(47), 1, sym_block_comment, ACTIONS(8214), 1, - anon_sym_into, - [181752] = 2, + anon_sym_SLASH, + [182530] = 2, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(832), 1, + anon_sym_LBRACE, + [182537] = 2, ACTIONS(47), 1, sym_block_comment, ACTIONS(8216), 1, anon_sym_COLON, - [181759] = 2, + [182544] = 2, ACTIONS(47), 1, sym_block_comment, ACTIONS(8218), 1, - anon_sym_COLON, - [181766] = 2, + aux_sym_regex_lit_token1, + [182551] = 2, ACTIONS(47), 1, sym_block_comment, ACTIONS(8220), 1, - anon_sym_COLON, - [181773] = 2, + anon_sym_into, + [182558] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(538), 1, - anon_sym_LBRACE, - [181780] = 2, + ACTIONS(8222), 1, + anon_sym_COLON, + [182565] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8222), 1, - aux_sym_regex_lit_token1, - [181787] = 2, + ACTIONS(528), 1, + anon_sym_LBRACE, + [182572] = 2, ACTIONS(47), 1, sym_block_comment, ACTIONS(8224), 1, anon_sym_COLON, - [181794] = 2, + [182579] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(943), 1, + ACTIONS(572), 1, anon_sym_LBRACE, - [181801] = 2, + [182586] = 2, ACTIONS(47), 1, sym_block_comment, ACTIONS(8226), 1, - anon_sym_into, - [181808] = 2, + anon_sym_COLON, + [182593] = 2, ACTIONS(47), 1, sym_block_comment, ACTIONS(8228), 1, - aux_sym_regex_lit_token1, - [181815] = 2, + anon_sym_COLON, + [182600] = 2, ACTIONS(47), 1, sym_block_comment, ACTIONS(8230), 1, - aux_sym__format_token_token1, - [181822] = 2, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(8232), 1, anon_sym_COLON, - [181829] = 2, + [182607] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(488), 1, - anon_sym_LBRACE, - [181836] = 2, + ACTIONS(8232), 1, + aux_sym_regex_lit_token1, + [182614] = 2, ACTIONS(47), 1, sym_block_comment, ACTIONS(8234), 1, - anon_sym_into, - [181843] = 2, + aux_sym_regex_lit_token1, + [182621] = 2, ACTIONS(47), 1, sym_block_comment, ACTIONS(8236), 1, - anon_sym_EQ, - [181850] = 2, + anon_sym_COLON, + [182628] = 2, ACTIONS(47), 1, sym_block_comment, ACTIONS(8238), 1, - anon_sym_COLON, - [181857] = 2, + anon_sym_EQ, + [182635] = 2, ACTIONS(47), 1, sym_block_comment, ACTIONS(8240), 1, anon_sym_COLON, - [181864] = 2, + [182642] = 2, ACTIONS(47), 1, sym_block_comment, ACTIONS(8242), 1, anon_sym_EQ, + [182649] = 2, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8244), 1, + anon_sym_EQ, + [182656] = 2, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8246), 1, + aux_sym_regex_lit_token1, }; static const uint32_t ts_small_parse_table_map[] = { @@ -167612,2701 +168349,2701 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(811)] = 87075, [SMALL_STATE(812)] = 87210, [SMALL_STATE(813)] = 87345, - [SMALL_STATE(814)] = 87410, + [SMALL_STATE(814)] = 87414, [SMALL_STATE(815)] = 87479, - [SMALL_STATE(816)] = 87544, + [SMALL_STATE(816)] = 87548, [SMALL_STATE(817)] = 87613, [SMALL_STATE(818)] = 87682, [SMALL_STATE(819)] = 87745, [SMALL_STATE(820)] = 87805, [SMALL_STATE(821)] = 87865, [SMALL_STATE(822)] = 87925, - [SMALL_STATE(823)] = 87989, - [SMALL_STATE(824)] = 88049, - [SMALL_STATE(825)] = 88109, - [SMALL_STATE(826)] = 88169, - [SMALL_STATE(827)] = 88229, - [SMALL_STATE(828)] = 88293, - [SMALL_STATE(829)] = 88353, - [SMALL_STATE(830)] = 88413, - [SMALL_STATE(831)] = 88473, - [SMALL_STATE(832)] = 88533, - [SMALL_STATE(833)] = 88593, - [SMALL_STATE(834)] = 88653, - [SMALL_STATE(835)] = 88713, - [SMALL_STATE(836)] = 88773, - [SMALL_STATE(837)] = 88833, - [SMALL_STATE(838)] = 88893, - [SMALL_STATE(839)] = 88953, - [SMALL_STATE(840)] = 89013, - [SMALL_STATE(841)] = 89073, - [SMALL_STATE(842)] = 89133, - [SMALL_STATE(843)] = 89193, - [SMALL_STATE(844)] = 89253, - [SMALL_STATE(845)] = 89313, - [SMALL_STATE(846)] = 89373, - [SMALL_STATE(847)] = 89433, - [SMALL_STATE(848)] = 89493, - [SMALL_STATE(849)] = 89553, - [SMALL_STATE(850)] = 89613, - [SMALL_STATE(851)] = 89673, - [SMALL_STATE(852)] = 89733, - [SMALL_STATE(853)] = 89793, - [SMALL_STATE(854)] = 89853, - [SMALL_STATE(855)] = 89913, - [SMALL_STATE(856)] = 89973, - [SMALL_STATE(857)] = 90033, - [SMALL_STATE(858)] = 90093, - [SMALL_STATE(859)] = 90153, - [SMALL_STATE(860)] = 90213, - [SMALL_STATE(861)] = 90273, - [SMALL_STATE(862)] = 90333, - [SMALL_STATE(863)] = 90393, - [SMALL_STATE(864)] = 90453, - [SMALL_STATE(865)] = 90513, - [SMALL_STATE(866)] = 90573, - [SMALL_STATE(867)] = 90633, - [SMALL_STATE(868)] = 90693, - [SMALL_STATE(869)] = 90753, - [SMALL_STATE(870)] = 90813, - [SMALL_STATE(871)] = 90873, - [SMALL_STATE(872)] = 90933, - [SMALL_STATE(873)] = 90993, - [SMALL_STATE(874)] = 91053, - [SMALL_STATE(875)] = 91113, - [SMALL_STATE(876)] = 91173, - [SMALL_STATE(877)] = 91233, - [SMALL_STATE(878)] = 91293, - [SMALL_STATE(879)] = 91353, - [SMALL_STATE(880)] = 91413, - [SMALL_STATE(881)] = 91473, - [SMALL_STATE(882)] = 91533, - [SMALL_STATE(883)] = 91593, - [SMALL_STATE(884)] = 91653, - [SMALL_STATE(885)] = 91713, - [SMALL_STATE(886)] = 91773, - [SMALL_STATE(887)] = 91833, - [SMALL_STATE(888)] = 91893, - [SMALL_STATE(889)] = 91953, - [SMALL_STATE(890)] = 92013, - [SMALL_STATE(891)] = 92073, - [SMALL_STATE(892)] = 92133, - [SMALL_STATE(893)] = 92193, - [SMALL_STATE(894)] = 92253, - [SMALL_STATE(895)] = 92313, - [SMALL_STATE(896)] = 92373, - [SMALL_STATE(897)] = 92433, - [SMALL_STATE(898)] = 92493, - [SMALL_STATE(899)] = 92553, - [SMALL_STATE(900)] = 92613, - [SMALL_STATE(901)] = 92673, - [SMALL_STATE(902)] = 92733, - [SMALL_STATE(903)] = 92793, - [SMALL_STATE(904)] = 92853, - [SMALL_STATE(905)] = 92913, - [SMALL_STATE(906)] = 92973, - [SMALL_STATE(907)] = 93033, - [SMALL_STATE(908)] = 93093, - [SMALL_STATE(909)] = 93153, - [SMALL_STATE(910)] = 93213, - [SMALL_STATE(911)] = 93273, - [SMALL_STATE(912)] = 93333, - [SMALL_STATE(913)] = 93393, - [SMALL_STATE(914)] = 93453, - [SMALL_STATE(915)] = 93513, - [SMALL_STATE(916)] = 93573, - [SMALL_STATE(917)] = 93633, - [SMALL_STATE(918)] = 93693, - [SMALL_STATE(919)] = 93753, - [SMALL_STATE(920)] = 93813, - [SMALL_STATE(921)] = 93873, - [SMALL_STATE(922)] = 93933, - [SMALL_STATE(923)] = 93993, - [SMALL_STATE(924)] = 94053, - [SMALL_STATE(925)] = 94113, - [SMALL_STATE(926)] = 94173, - [SMALL_STATE(927)] = 94233, - [SMALL_STATE(928)] = 94293, - [SMALL_STATE(929)] = 94353, + [SMALL_STATE(823)] = 87985, + [SMALL_STATE(824)] = 88045, + [SMALL_STATE(825)] = 88105, + [SMALL_STATE(826)] = 88165, + [SMALL_STATE(827)] = 88225, + [SMALL_STATE(828)] = 88285, + [SMALL_STATE(829)] = 88345, + [SMALL_STATE(830)] = 88405, + [SMALL_STATE(831)] = 88465, + [SMALL_STATE(832)] = 88525, + [SMALL_STATE(833)] = 88585, + [SMALL_STATE(834)] = 88645, + [SMALL_STATE(835)] = 88705, + [SMALL_STATE(836)] = 88765, + [SMALL_STATE(837)] = 88825, + [SMALL_STATE(838)] = 88885, + [SMALL_STATE(839)] = 88945, + [SMALL_STATE(840)] = 89005, + [SMALL_STATE(841)] = 89065, + [SMALL_STATE(842)] = 89125, + [SMALL_STATE(843)] = 89185, + [SMALL_STATE(844)] = 89245, + [SMALL_STATE(845)] = 89305, + [SMALL_STATE(846)] = 89365, + [SMALL_STATE(847)] = 89425, + [SMALL_STATE(848)] = 89485, + [SMALL_STATE(849)] = 89545, + [SMALL_STATE(850)] = 89605, + [SMALL_STATE(851)] = 89665, + [SMALL_STATE(852)] = 89725, + [SMALL_STATE(853)] = 89785, + [SMALL_STATE(854)] = 89845, + [SMALL_STATE(855)] = 89905, + [SMALL_STATE(856)] = 89965, + [SMALL_STATE(857)] = 90025, + [SMALL_STATE(858)] = 90085, + [SMALL_STATE(859)] = 90145, + [SMALL_STATE(860)] = 90205, + [SMALL_STATE(861)] = 90265, + [SMALL_STATE(862)] = 90325, + [SMALL_STATE(863)] = 90385, + [SMALL_STATE(864)] = 90445, + [SMALL_STATE(865)] = 90505, + [SMALL_STATE(866)] = 90565, + [SMALL_STATE(867)] = 90625, + [SMALL_STATE(868)] = 90685, + [SMALL_STATE(869)] = 90745, + [SMALL_STATE(870)] = 90805, + [SMALL_STATE(871)] = 90865, + [SMALL_STATE(872)] = 90925, + [SMALL_STATE(873)] = 90985, + [SMALL_STATE(874)] = 91045, + [SMALL_STATE(875)] = 91105, + [SMALL_STATE(876)] = 91165, + [SMALL_STATE(877)] = 91225, + [SMALL_STATE(878)] = 91285, + [SMALL_STATE(879)] = 91345, + [SMALL_STATE(880)] = 91405, + [SMALL_STATE(881)] = 91465, + [SMALL_STATE(882)] = 91525, + [SMALL_STATE(883)] = 91585, + [SMALL_STATE(884)] = 91645, + [SMALL_STATE(885)] = 91705, + [SMALL_STATE(886)] = 91765, + [SMALL_STATE(887)] = 91825, + [SMALL_STATE(888)] = 91885, + [SMALL_STATE(889)] = 91945, + [SMALL_STATE(890)] = 92005, + [SMALL_STATE(891)] = 92065, + [SMALL_STATE(892)] = 92125, + [SMALL_STATE(893)] = 92185, + [SMALL_STATE(894)] = 92245, + [SMALL_STATE(895)] = 92305, + [SMALL_STATE(896)] = 92365, + [SMALL_STATE(897)] = 92425, + [SMALL_STATE(898)] = 92485, + [SMALL_STATE(899)] = 92545, + [SMALL_STATE(900)] = 92605, + [SMALL_STATE(901)] = 92665, + [SMALL_STATE(902)] = 92725, + [SMALL_STATE(903)] = 92785, + [SMALL_STATE(904)] = 92845, + [SMALL_STATE(905)] = 92905, + [SMALL_STATE(906)] = 92965, + [SMALL_STATE(907)] = 93025, + [SMALL_STATE(908)] = 93085, + [SMALL_STATE(909)] = 93145, + [SMALL_STATE(910)] = 93205, + [SMALL_STATE(911)] = 93265, + [SMALL_STATE(912)] = 93325, + [SMALL_STATE(913)] = 93385, + [SMALL_STATE(914)] = 93445, + [SMALL_STATE(915)] = 93509, + [SMALL_STATE(916)] = 93569, + [SMALL_STATE(917)] = 93629, + [SMALL_STATE(918)] = 93689, + [SMALL_STATE(919)] = 93749, + [SMALL_STATE(920)] = 93809, + [SMALL_STATE(921)] = 93869, + [SMALL_STATE(922)] = 93929, + [SMALL_STATE(923)] = 93989, + [SMALL_STATE(924)] = 94049, + [SMALL_STATE(925)] = 94109, + [SMALL_STATE(926)] = 94169, + [SMALL_STATE(927)] = 94229, + [SMALL_STATE(928)] = 94289, + [SMALL_STATE(929)] = 94349, [SMALL_STATE(930)] = 94413, - [SMALL_STATE(931)] = 94473, - [SMALL_STATE(932)] = 94533, - [SMALL_STATE(933)] = 94593, - [SMALL_STATE(934)] = 94653, - [SMALL_STATE(935)] = 94713, - [SMALL_STATE(936)] = 94773, - [SMALL_STATE(937)] = 94833, - [SMALL_STATE(938)] = 94893, - [SMALL_STATE(939)] = 94953, - [SMALL_STATE(940)] = 95013, - [SMALL_STATE(941)] = 95078, - [SMALL_STATE(942)] = 95137, - [SMALL_STATE(943)] = 95212, - [SMALL_STATE(944)] = 95287, - [SMALL_STATE(945)] = 95362, - [SMALL_STATE(946)] = 95437, - [SMALL_STATE(947)] = 95512, - [SMALL_STATE(948)] = 95587, - [SMALL_STATE(949)] = 95662, - [SMALL_STATE(950)] = 95737, - [SMALL_STATE(951)] = 95812, - [SMALL_STATE(952)] = 95887, - [SMALL_STATE(953)] = 95962, - [SMALL_STATE(954)] = 96037, - [SMALL_STATE(955)] = 96112, - [SMALL_STATE(956)] = 96187, - [SMALL_STATE(957)] = 96262, - [SMALL_STATE(958)] = 96337, - [SMALL_STATE(959)] = 96412, - [SMALL_STATE(960)] = 96487, - [SMALL_STATE(961)] = 96562, - [SMALL_STATE(962)] = 96618, - [SMALL_STATE(963)] = 96674, - [SMALL_STATE(964)] = 96776, - [SMALL_STATE(965)] = 96878, - [SMALL_STATE(966)] = 96980, - [SMALL_STATE(967)] = 97082, - [SMALL_STATE(968)] = 97184, - [SMALL_STATE(969)] = 97286, - [SMALL_STATE(970)] = 97388, - [SMALL_STATE(971)] = 97490, - [SMALL_STATE(972)] = 97592, - [SMALL_STATE(973)] = 97694, - [SMALL_STATE(974)] = 97796, - [SMALL_STATE(975)] = 97898, - [SMALL_STATE(976)] = 98000, - [SMALL_STATE(977)] = 98102, - [SMALL_STATE(978)] = 98204, - [SMALL_STATE(979)] = 98306, - [SMALL_STATE(980)] = 98408, - [SMALL_STATE(981)] = 98510, - [SMALL_STATE(982)] = 98612, - [SMALL_STATE(983)] = 98714, - [SMALL_STATE(984)] = 98816, - [SMALL_STATE(985)] = 98918, - [SMALL_STATE(986)] = 99020, - [SMALL_STATE(987)] = 99122, - [SMALL_STATE(988)] = 99224, - [SMALL_STATE(989)] = 99326, - [SMALL_STATE(990)] = 99428, - [SMALL_STATE(991)] = 99530, - [SMALL_STATE(992)] = 99632, - [SMALL_STATE(993)] = 99734, - [SMALL_STATE(994)] = 99836, - [SMALL_STATE(995)] = 99938, - [SMALL_STATE(996)] = 100040, - [SMALL_STATE(997)] = 100142, - [SMALL_STATE(998)] = 100198, - [SMALL_STATE(999)] = 100300, - [SMALL_STATE(1000)] = 100402, - [SMALL_STATE(1001)] = 100504, - [SMALL_STATE(1002)] = 100606, - [SMALL_STATE(1003)] = 100708, - [SMALL_STATE(1004)] = 100810, - [SMALL_STATE(1005)] = 100912, - [SMALL_STATE(1006)] = 101014, - [SMALL_STATE(1007)] = 101070, - [SMALL_STATE(1008)] = 101172, - [SMALL_STATE(1009)] = 101274, - [SMALL_STATE(1010)] = 101330, - [SMALL_STATE(1011)] = 101432, - [SMALL_STATE(1012)] = 101534, - [SMALL_STATE(1013)] = 101594, - [SMALL_STATE(1014)] = 101696, - [SMALL_STATE(1015)] = 101798, - [SMALL_STATE(1016)] = 101854, - [SMALL_STATE(1017)] = 101956, - [SMALL_STATE(1018)] = 102012, - [SMALL_STATE(1019)] = 102114, - [SMALL_STATE(1020)] = 102216, - [SMALL_STATE(1021)] = 102272, - [SMALL_STATE(1022)] = 102374, - [SMALL_STATE(1023)] = 102430, - [SMALL_STATE(1024)] = 102486, - [SMALL_STATE(1025)] = 102546, - [SMALL_STATE(1026)] = 102648, - [SMALL_STATE(1027)] = 102750, - [SMALL_STATE(1028)] = 102852, - [SMALL_STATE(1029)] = 102954, - [SMALL_STATE(1030)] = 103056, - [SMALL_STATE(1031)] = 103112, - [SMALL_STATE(1032)] = 103168, - [SMALL_STATE(1033)] = 103270, - [SMALL_STATE(1034)] = 103326, - [SMALL_STATE(1035)] = 103382, - [SMALL_STATE(1036)] = 103438, - [SMALL_STATE(1037)] = 103540, - [SMALL_STATE(1038)] = 103596, - [SMALL_STATE(1039)] = 103698, - [SMALL_STATE(1040)] = 103754, - [SMALL_STATE(1041)] = 103810, - [SMALL_STATE(1042)] = 103912, - [SMALL_STATE(1043)] = 103968, - [SMALL_STATE(1044)] = 104024, - [SMALL_STATE(1045)] = 104126, - [SMALL_STATE(1046)] = 104182, - [SMALL_STATE(1047)] = 104238, - [SMALL_STATE(1048)] = 104340, - [SMALL_STATE(1049)] = 104396, - [SMALL_STATE(1050)] = 104498, - [SMALL_STATE(1051)] = 104600, - [SMALL_STATE(1052)] = 104702, - [SMALL_STATE(1053)] = 104804, - [SMALL_STATE(1054)] = 104906, - [SMALL_STATE(1055)] = 104962, - [SMALL_STATE(1056)] = 105018, - [SMALL_STATE(1057)] = 105120, - [SMALL_STATE(1058)] = 105176, - [SMALL_STATE(1059)] = 105232, - [SMALL_STATE(1060)] = 105288, - [SMALL_STATE(1061)] = 105344, - [SMALL_STATE(1062)] = 105446, - [SMALL_STATE(1063)] = 105502, - [SMALL_STATE(1064)] = 105558, - [SMALL_STATE(1065)] = 105660, - [SMALL_STATE(1066)] = 105716, - [SMALL_STATE(1067)] = 105772, - [SMALL_STATE(1068)] = 105828, - [SMALL_STATE(1069)] = 105884, - [SMALL_STATE(1070)] = 105940, - [SMALL_STATE(1071)] = 105996, - [SMALL_STATE(1072)] = 106052, - [SMALL_STATE(1073)] = 106108, - [SMALL_STATE(1074)] = 106164, - [SMALL_STATE(1075)] = 106220, - [SMALL_STATE(1076)] = 106276, - [SMALL_STATE(1077)] = 106332, - [SMALL_STATE(1078)] = 106388, - [SMALL_STATE(1079)] = 106444, - [SMALL_STATE(1080)] = 106546, - [SMALL_STATE(1081)] = 106648, - [SMALL_STATE(1082)] = 106704, - [SMALL_STATE(1083)] = 106760, - [SMALL_STATE(1084)] = 106816, - [SMALL_STATE(1085)] = 106918, - [SMALL_STATE(1086)] = 106974, - [SMALL_STATE(1087)] = 107030, - [SMALL_STATE(1088)] = 107086, - [SMALL_STATE(1089)] = 107142, - [SMALL_STATE(1090)] = 107244, - [SMALL_STATE(1091)] = 107300, - [SMALL_STATE(1092)] = 107356, - [SMALL_STATE(1093)] = 107412, - [SMALL_STATE(1094)] = 107468, - [SMALL_STATE(1095)] = 107524, - [SMALL_STATE(1096)] = 107580, - [SMALL_STATE(1097)] = 107636, - [SMALL_STATE(1098)] = 107692, - [SMALL_STATE(1099)] = 107748, - [SMALL_STATE(1100)] = 107804, - [SMALL_STATE(1101)] = 107860, - [SMALL_STATE(1102)] = 107916, - [SMALL_STATE(1103)] = 107972, - [SMALL_STATE(1104)] = 108028, - [SMALL_STATE(1105)] = 108084, - [SMALL_STATE(1106)] = 108140, - [SMALL_STATE(1107)] = 108196, - [SMALL_STATE(1108)] = 108252, - [SMALL_STATE(1109)] = 108308, - [SMALL_STATE(1110)] = 108364, - [SMALL_STATE(1111)] = 108466, - [SMALL_STATE(1112)] = 108522, - [SMALL_STATE(1113)] = 108578, - [SMALL_STATE(1114)] = 108680, - [SMALL_STATE(1115)] = 108736, - [SMALL_STATE(1116)] = 108792, - [SMALL_STATE(1117)] = 108848, - [SMALL_STATE(1118)] = 108904, - [SMALL_STATE(1119)] = 108960, - [SMALL_STATE(1120)] = 109016, - [SMALL_STATE(1121)] = 109118, - [SMALL_STATE(1122)] = 109174, - [SMALL_STATE(1123)] = 109230, - [SMALL_STATE(1124)] = 109286, - [SMALL_STATE(1125)] = 109342, - [SMALL_STATE(1126)] = 109398, - [SMALL_STATE(1127)] = 109454, - [SMALL_STATE(1128)] = 109510, - [SMALL_STATE(1129)] = 109566, - [SMALL_STATE(1130)] = 109622, - [SMALL_STATE(1131)] = 109678, - [SMALL_STATE(1132)] = 109734, - [SMALL_STATE(1133)] = 109790, - [SMALL_STATE(1134)] = 109846, - [SMALL_STATE(1135)] = 109902, - [SMALL_STATE(1136)] = 110004, - [SMALL_STATE(1137)] = 110106, - [SMALL_STATE(1138)] = 110162, - [SMALL_STATE(1139)] = 110218, - [SMALL_STATE(1140)] = 110274, - [SMALL_STATE(1141)] = 110330, - [SMALL_STATE(1142)] = 110386, - [SMALL_STATE(1143)] = 110442, - [SMALL_STATE(1144)] = 110498, - [SMALL_STATE(1145)] = 110600, - [SMALL_STATE(1146)] = 110656, - [SMALL_STATE(1147)] = 110712, - [SMALL_STATE(1148)] = 110768, - [SMALL_STATE(1149)] = 110824, - [SMALL_STATE(1150)] = 110880, - [SMALL_STATE(1151)] = 110936, - [SMALL_STATE(1152)] = 110992, - [SMALL_STATE(1153)] = 111048, - [SMALL_STATE(1154)] = 111104, - [SMALL_STATE(1155)] = 111160, - [SMALL_STATE(1156)] = 111216, - [SMALL_STATE(1157)] = 111272, - [SMALL_STATE(1158)] = 111328, - [SMALL_STATE(1159)] = 111384, - [SMALL_STATE(1160)] = 111440, - [SMALL_STATE(1161)] = 111496, - [SMALL_STATE(1162)] = 111552, - [SMALL_STATE(1163)] = 111608, - [SMALL_STATE(1164)] = 111661, - [SMALL_STATE(1165)] = 111718, - [SMALL_STATE(1166)] = 111775, - [SMALL_STATE(1167)] = 111829, - [SMALL_STATE(1168)] = 111880, - [SMALL_STATE(1169)] = 111931, - [SMALL_STATE(1170)] = 111982, - [SMALL_STATE(1171)] = 112033, - [SMALL_STATE(1172)] = 112084, - [SMALL_STATE(1173)] = 112135, - [SMALL_STATE(1174)] = 112186, - [SMALL_STATE(1175)] = 112237, - [SMALL_STATE(1176)] = 112288, - [SMALL_STATE(1177)] = 112339, - [SMALL_STATE(1178)] = 112390, - [SMALL_STATE(1179)] = 112441, - [SMALL_STATE(1180)] = 112492, - [SMALL_STATE(1181)] = 112543, - [SMALL_STATE(1182)] = 112594, - [SMALL_STATE(1183)] = 112645, - [SMALL_STATE(1184)] = 112696, - [SMALL_STATE(1185)] = 112747, - [SMALL_STATE(1186)] = 112798, - [SMALL_STATE(1187)] = 112849, - [SMALL_STATE(1188)] = 112900, - [SMALL_STATE(1189)] = 112951, - [SMALL_STATE(1190)] = 113002, - [SMALL_STATE(1191)] = 113053, - [SMALL_STATE(1192)] = 113104, - [SMALL_STATE(1193)] = 113155, - [SMALL_STATE(1194)] = 113206, - [SMALL_STATE(1195)] = 113257, - [SMALL_STATE(1196)] = 113308, - [SMALL_STATE(1197)] = 113359, - [SMALL_STATE(1198)] = 113410, - [SMALL_STATE(1199)] = 113461, - [SMALL_STATE(1200)] = 113512, - [SMALL_STATE(1201)] = 113563, - [SMALL_STATE(1202)] = 113614, - [SMALL_STATE(1203)] = 113665, - [SMALL_STATE(1204)] = 113716, - [SMALL_STATE(1205)] = 113767, - [SMALL_STATE(1206)] = 113818, - [SMALL_STATE(1207)] = 113869, - [SMALL_STATE(1208)] = 113920, - [SMALL_STATE(1209)] = 113971, - [SMALL_STATE(1210)] = 114022, - [SMALL_STATE(1211)] = 114073, - [SMALL_STATE(1212)] = 114124, - [SMALL_STATE(1213)] = 114175, - [SMALL_STATE(1214)] = 114226, - [SMALL_STATE(1215)] = 114277, - [SMALL_STATE(1216)] = 114328, - [SMALL_STATE(1217)] = 114379, - [SMALL_STATE(1218)] = 114430, - [SMALL_STATE(1219)] = 114481, - [SMALL_STATE(1220)] = 114532, - [SMALL_STATE(1221)] = 114583, - [SMALL_STATE(1222)] = 114634, - [SMALL_STATE(1223)] = 114685, - [SMALL_STATE(1224)] = 114736, - [SMALL_STATE(1225)] = 114787, - [SMALL_STATE(1226)] = 114838, - [SMALL_STATE(1227)] = 114889, - [SMALL_STATE(1228)] = 114940, - [SMALL_STATE(1229)] = 114991, - [SMALL_STATE(1230)] = 115042, - [SMALL_STATE(1231)] = 115093, - [SMALL_STATE(1232)] = 115144, - [SMALL_STATE(1233)] = 115195, - [SMALL_STATE(1234)] = 115246, - [SMALL_STATE(1235)] = 115297, - [SMALL_STATE(1236)] = 115348, - [SMALL_STATE(1237)] = 115399, - [SMALL_STATE(1238)] = 115450, - [SMALL_STATE(1239)] = 115501, - [SMALL_STATE(1240)] = 115552, - [SMALL_STATE(1241)] = 115603, - [SMALL_STATE(1242)] = 115654, - [SMALL_STATE(1243)] = 115705, - [SMALL_STATE(1244)] = 115756, - [SMALL_STATE(1245)] = 115807, - [SMALL_STATE(1246)] = 115858, - [SMALL_STATE(1247)] = 115909, - [SMALL_STATE(1248)] = 115960, - [SMALL_STATE(1249)] = 116011, - [SMALL_STATE(1250)] = 116062, - [SMALL_STATE(1251)] = 116113, - [SMALL_STATE(1252)] = 116164, - [SMALL_STATE(1253)] = 116215, - [SMALL_STATE(1254)] = 116266, - [SMALL_STATE(1255)] = 116317, - [SMALL_STATE(1256)] = 116368, - [SMALL_STATE(1257)] = 116419, - [SMALL_STATE(1258)] = 116470, - [SMALL_STATE(1259)] = 116521, - [SMALL_STATE(1260)] = 116572, - [SMALL_STATE(1261)] = 116623, - [SMALL_STATE(1262)] = 116674, - [SMALL_STATE(1263)] = 116725, - [SMALL_STATE(1264)] = 116776, - [SMALL_STATE(1265)] = 116827, - [SMALL_STATE(1266)] = 116878, - [SMALL_STATE(1267)] = 116929, - [SMALL_STATE(1268)] = 116980, - [SMALL_STATE(1269)] = 117031, - [SMALL_STATE(1270)] = 117082, - [SMALL_STATE(1271)] = 117133, - [SMALL_STATE(1272)] = 117184, - [SMALL_STATE(1273)] = 117235, - [SMALL_STATE(1274)] = 117286, - [SMALL_STATE(1275)] = 117337, - [SMALL_STATE(1276)] = 117388, - [SMALL_STATE(1277)] = 117439, - [SMALL_STATE(1278)] = 117490, - [SMALL_STATE(1279)] = 117541, - [SMALL_STATE(1280)] = 117592, - [SMALL_STATE(1281)] = 117643, - [SMALL_STATE(1282)] = 117694, - [SMALL_STATE(1283)] = 117745, - [SMALL_STATE(1284)] = 117796, - [SMALL_STATE(1285)] = 117847, - [SMALL_STATE(1286)] = 117898, - [SMALL_STATE(1287)] = 117949, - [SMALL_STATE(1288)] = 118000, - [SMALL_STATE(1289)] = 118061, - [SMALL_STATE(1290)] = 118122, - [SMALL_STATE(1291)] = 118183, - [SMALL_STATE(1292)] = 118244, - [SMALL_STATE(1293)] = 118305, - [SMALL_STATE(1294)] = 118366, - [SMALL_STATE(1295)] = 118427, - [SMALL_STATE(1296)] = 118488, - [SMALL_STATE(1297)] = 118549, - [SMALL_STATE(1298)] = 118610, - [SMALL_STATE(1299)] = 118660, - [SMALL_STATE(1300)] = 118707, - [SMALL_STATE(1301)] = 118754, - [SMALL_STATE(1302)] = 118801, - [SMALL_STATE(1303)] = 118852, - [SMALL_STATE(1304)] = 118899, - [SMALL_STATE(1305)] = 118946, - [SMALL_STATE(1306)] = 118993, - [SMALL_STATE(1307)] = 119040, - [SMALL_STATE(1308)] = 119087, - [SMALL_STATE(1309)] = 119138, - [SMALL_STATE(1310)] = 119185, - [SMALL_STATE(1311)] = 119232, - [SMALL_STATE(1312)] = 119279, - [SMALL_STATE(1313)] = 119326, - [SMALL_STATE(1314)] = 119373, - [SMALL_STATE(1315)] = 119420, - [SMALL_STATE(1316)] = 119467, - [SMALL_STATE(1317)] = 119514, - [SMALL_STATE(1318)] = 119561, - [SMALL_STATE(1319)] = 119608, - [SMALL_STATE(1320)] = 119655, - [SMALL_STATE(1321)] = 119702, - [SMALL_STATE(1322)] = 119749, - [SMALL_STATE(1323)] = 119796, - [SMALL_STATE(1324)] = 119843, - [SMALL_STATE(1325)] = 119890, - [SMALL_STATE(1326)] = 119937, - [SMALL_STATE(1327)] = 119984, - [SMALL_STATE(1328)] = 120031, - [SMALL_STATE(1329)] = 120078, - [SMALL_STATE(1330)] = 120125, - [SMALL_STATE(1331)] = 120172, - [SMALL_STATE(1332)] = 120219, - [SMALL_STATE(1333)] = 120266, - [SMALL_STATE(1334)] = 120313, - [SMALL_STATE(1335)] = 120360, - [SMALL_STATE(1336)] = 120407, - [SMALL_STATE(1337)] = 120454, - [SMALL_STATE(1338)] = 120501, - [SMALL_STATE(1339)] = 120548, - [SMALL_STATE(1340)] = 120595, - [SMALL_STATE(1341)] = 120642, - [SMALL_STATE(1342)] = 120689, - [SMALL_STATE(1343)] = 120736, - [SMALL_STATE(1344)] = 120783, - [SMALL_STATE(1345)] = 120830, - [SMALL_STATE(1346)] = 120877, - [SMALL_STATE(1347)] = 120924, - [SMALL_STATE(1348)] = 120971, - [SMALL_STATE(1349)] = 121018, - [SMALL_STATE(1350)] = 121065, - [SMALL_STATE(1351)] = 121112, - [SMALL_STATE(1352)] = 121159, - [SMALL_STATE(1353)] = 121206, - [SMALL_STATE(1354)] = 121253, - [SMALL_STATE(1355)] = 121300, - [SMALL_STATE(1356)] = 121347, - [SMALL_STATE(1357)] = 121394, - [SMALL_STATE(1358)] = 121441, - [SMALL_STATE(1359)] = 121488, - [SMALL_STATE(1360)] = 121535, - [SMALL_STATE(1361)] = 121582, - [SMALL_STATE(1362)] = 121629, - [SMALL_STATE(1363)] = 121676, - [SMALL_STATE(1364)] = 121723, - [SMALL_STATE(1365)] = 121770, - [SMALL_STATE(1366)] = 121817, - [SMALL_STATE(1367)] = 121864, - [SMALL_STATE(1368)] = 121911, - [SMALL_STATE(1369)] = 121958, - [SMALL_STATE(1370)] = 122005, - [SMALL_STATE(1371)] = 122052, - [SMALL_STATE(1372)] = 122099, - [SMALL_STATE(1373)] = 122146, - [SMALL_STATE(1374)] = 122193, - [SMALL_STATE(1375)] = 122240, - [SMALL_STATE(1376)] = 122287, - [SMALL_STATE(1377)] = 122334, - [SMALL_STATE(1378)] = 122381, - [SMALL_STATE(1379)] = 122428, - [SMALL_STATE(1380)] = 122475, - [SMALL_STATE(1381)] = 122522, - [SMALL_STATE(1382)] = 122569, - [SMALL_STATE(1383)] = 122616, - [SMALL_STATE(1384)] = 122663, - [SMALL_STATE(1385)] = 122710, - [SMALL_STATE(1386)] = 122757, - [SMALL_STATE(1387)] = 122804, - [SMALL_STATE(1388)] = 122851, - [SMALL_STATE(1389)] = 122898, - [SMALL_STATE(1390)] = 122945, - [SMALL_STATE(1391)] = 122992, - [SMALL_STATE(1392)] = 123039, - [SMALL_STATE(1393)] = 123086, - [SMALL_STATE(1394)] = 123133, - [SMALL_STATE(1395)] = 123180, - [SMALL_STATE(1396)] = 123227, - [SMALL_STATE(1397)] = 123274, - [SMALL_STATE(1398)] = 123321, - [SMALL_STATE(1399)] = 123368, - [SMALL_STATE(1400)] = 123415, - [SMALL_STATE(1401)] = 123462, - [SMALL_STATE(1402)] = 123509, - [SMALL_STATE(1403)] = 123556, - [SMALL_STATE(1404)] = 123603, - [SMALL_STATE(1405)] = 123650, - [SMALL_STATE(1406)] = 123697, - [SMALL_STATE(1407)] = 123744, - [SMALL_STATE(1408)] = 123791, - [SMALL_STATE(1409)] = 123838, - [SMALL_STATE(1410)] = 123885, - [SMALL_STATE(1411)] = 123932, - [SMALL_STATE(1412)] = 123979, - [SMALL_STATE(1413)] = 124026, - [SMALL_STATE(1414)] = 124073, - [SMALL_STATE(1415)] = 124120, - [SMALL_STATE(1416)] = 124167, - [SMALL_STATE(1417)] = 124214, - [SMALL_STATE(1418)] = 124261, - [SMALL_STATE(1419)] = 124308, - [SMALL_STATE(1420)] = 124355, - [SMALL_STATE(1421)] = 124427, - [SMALL_STATE(1422)] = 124499, - [SMALL_STATE(1423)] = 124571, - [SMALL_STATE(1424)] = 124643, - [SMALL_STATE(1425)] = 124715, - [SMALL_STATE(1426)] = 124787, - [SMALL_STATE(1427)] = 124859, - [SMALL_STATE(1428)] = 124931, - [SMALL_STATE(1429)] = 125003, - [SMALL_STATE(1430)] = 125075, - [SMALL_STATE(1431)] = 125147, - [SMALL_STATE(1432)] = 125219, - [SMALL_STATE(1433)] = 125291, - [SMALL_STATE(1434)] = 125363, - [SMALL_STATE(1435)] = 125435, - [SMALL_STATE(1436)] = 125507, - [SMALL_STATE(1437)] = 125579, - [SMALL_STATE(1438)] = 125651, - [SMALL_STATE(1439)] = 125723, - [SMALL_STATE(1440)] = 125795, - [SMALL_STATE(1441)] = 125864, - [SMALL_STATE(1442)] = 125908, - [SMALL_STATE(1443)] = 125952, - [SMALL_STATE(1444)] = 125996, - [SMALL_STATE(1445)] = 126046, - [SMALL_STATE(1446)] = 126090, - [SMALL_STATE(1447)] = 126134, - [SMALL_STATE(1448)] = 126178, - [SMALL_STATE(1449)] = 126222, - [SMALL_STATE(1450)] = 126266, - [SMALL_STATE(1451)] = 126310, - [SMALL_STATE(1452)] = 126354, - [SMALL_STATE(1453)] = 126398, - [SMALL_STATE(1454)] = 126442, - [SMALL_STATE(1455)] = 126486, - [SMALL_STATE(1456)] = 126530, - [SMALL_STATE(1457)] = 126574, - [SMALL_STATE(1458)] = 126618, - [SMALL_STATE(1459)] = 126662, - [SMALL_STATE(1460)] = 126706, - [SMALL_STATE(1461)] = 126750, - [SMALL_STATE(1462)] = 126794, - [SMALL_STATE(1463)] = 126838, - [SMALL_STATE(1464)] = 126882, - [SMALL_STATE(1465)] = 126928, - [SMALL_STATE(1466)] = 126972, - [SMALL_STATE(1467)] = 127016, - [SMALL_STATE(1468)] = 127060, - [SMALL_STATE(1469)] = 127104, - [SMALL_STATE(1470)] = 127148, - [SMALL_STATE(1471)] = 127192, - [SMALL_STATE(1472)] = 127236, - [SMALL_STATE(1473)] = 127280, - [SMALL_STATE(1474)] = 127324, - [SMALL_STATE(1475)] = 127368, - [SMALL_STATE(1476)] = 127412, - [SMALL_STATE(1477)] = 127456, - [SMALL_STATE(1478)] = 127500, - [SMALL_STATE(1479)] = 127544, - [SMALL_STATE(1480)] = 127588, - [SMALL_STATE(1481)] = 127632, - [SMALL_STATE(1482)] = 127676, - [SMALL_STATE(1483)] = 127720, - [SMALL_STATE(1484)] = 127764, - [SMALL_STATE(1485)] = 127808, - [SMALL_STATE(1486)] = 127852, - [SMALL_STATE(1487)] = 127896, - [SMALL_STATE(1488)] = 127940, - [SMALL_STATE(1489)] = 127984, - [SMALL_STATE(1490)] = 128028, - [SMALL_STATE(1491)] = 128072, - [SMALL_STATE(1492)] = 128116, - [SMALL_STATE(1493)] = 128160, - [SMALL_STATE(1494)] = 128204, - [SMALL_STATE(1495)] = 128248, - [SMALL_STATE(1496)] = 128292, - [SMALL_STATE(1497)] = 128336, - [SMALL_STATE(1498)] = 128380, - [SMALL_STATE(1499)] = 128424, - [SMALL_STATE(1500)] = 128468, - [SMALL_STATE(1501)] = 128512, - [SMALL_STATE(1502)] = 128556, - [SMALL_STATE(1503)] = 128600, - [SMALL_STATE(1504)] = 128644, - [SMALL_STATE(1505)] = 128688, - [SMALL_STATE(1506)] = 128732, - [SMALL_STATE(1507)] = 128780, - [SMALL_STATE(1508)] = 128824, - [SMALL_STATE(1509)] = 128868, - [SMALL_STATE(1510)] = 128912, - [SMALL_STATE(1511)] = 128956, - [SMALL_STATE(1512)] = 129000, - [SMALL_STATE(1513)] = 129044, - [SMALL_STATE(1514)] = 129088, - [SMALL_STATE(1515)] = 129132, - [SMALL_STATE(1516)] = 129176, - [SMALL_STATE(1517)] = 129220, - [SMALL_STATE(1518)] = 129264, - [SMALL_STATE(1519)] = 129308, - [SMALL_STATE(1520)] = 129356, - [SMALL_STATE(1521)] = 129400, - [SMALL_STATE(1522)] = 129444, - [SMALL_STATE(1523)] = 129488, - [SMALL_STATE(1524)] = 129532, - [SMALL_STATE(1525)] = 129576, - [SMALL_STATE(1526)] = 129620, - [SMALL_STATE(1527)] = 129664, - [SMALL_STATE(1528)] = 129708, - [SMALL_STATE(1529)] = 129752, - [SMALL_STATE(1530)] = 129796, - [SMALL_STATE(1531)] = 129840, - [SMALL_STATE(1532)] = 129884, - [SMALL_STATE(1533)] = 129928, - [SMALL_STATE(1534)] = 129972, - [SMALL_STATE(1535)] = 130016, - [SMALL_STATE(1536)] = 130060, - [SMALL_STATE(1537)] = 130104, - [SMALL_STATE(1538)] = 130148, - [SMALL_STATE(1539)] = 130192, - [SMALL_STATE(1540)] = 130236, - [SMALL_STATE(1541)] = 130280, - [SMALL_STATE(1542)] = 130324, - [SMALL_STATE(1543)] = 130368, - [SMALL_STATE(1544)] = 130412, - [SMALL_STATE(1545)] = 130456, - [SMALL_STATE(1546)] = 130500, - [SMALL_STATE(1547)] = 130544, - [SMALL_STATE(1548)] = 130588, - [SMALL_STATE(1549)] = 130632, - [SMALL_STATE(1550)] = 130676, - [SMALL_STATE(1551)] = 130720, - [SMALL_STATE(1552)] = 130764, - [SMALL_STATE(1553)] = 130808, - [SMALL_STATE(1554)] = 130852, - [SMALL_STATE(1555)] = 130896, - [SMALL_STATE(1556)] = 130940, - [SMALL_STATE(1557)] = 130984, - [SMALL_STATE(1558)] = 131028, - [SMALL_STATE(1559)] = 131072, - [SMALL_STATE(1560)] = 131116, - [SMALL_STATE(1561)] = 131160, - [SMALL_STATE(1562)] = 131204, - [SMALL_STATE(1563)] = 131248, - [SMALL_STATE(1564)] = 131292, - [SMALL_STATE(1565)] = 131341, - [SMALL_STATE(1566)] = 131385, - [SMALL_STATE(1567)] = 131427, - [SMALL_STATE(1568)] = 131468, - [SMALL_STATE(1569)] = 131509, - [SMALL_STATE(1570)] = 131550, - [SMALL_STATE(1571)] = 131591, - [SMALL_STATE(1572)] = 131632, - [SMALL_STATE(1573)] = 131673, - [SMALL_STATE(1574)] = 131714, - [SMALL_STATE(1575)] = 131755, - [SMALL_STATE(1576)] = 131796, - [SMALL_STATE(1577)] = 131837, - [SMALL_STATE(1578)] = 131878, - [SMALL_STATE(1579)] = 131919, - [SMALL_STATE(1580)] = 131960, - [SMALL_STATE(1581)] = 132001, - [SMALL_STATE(1582)] = 132042, - [SMALL_STATE(1583)] = 132083, - [SMALL_STATE(1584)] = 132124, - [SMALL_STATE(1585)] = 132165, - [SMALL_STATE(1586)] = 132206, - [SMALL_STATE(1587)] = 132247, - [SMALL_STATE(1588)] = 132288, - [SMALL_STATE(1589)] = 132329, - [SMALL_STATE(1590)] = 132370, - [SMALL_STATE(1591)] = 132411, - [SMALL_STATE(1592)] = 132452, - [SMALL_STATE(1593)] = 132493, - [SMALL_STATE(1594)] = 132534, - [SMALL_STATE(1595)] = 132575, - [SMALL_STATE(1596)] = 132616, - [SMALL_STATE(1597)] = 132657, - [SMALL_STATE(1598)] = 132698, - [SMALL_STATE(1599)] = 132739, - [SMALL_STATE(1600)] = 132780, - [SMALL_STATE(1601)] = 132821, - [SMALL_STATE(1602)] = 132862, - [SMALL_STATE(1603)] = 132903, - [SMALL_STATE(1604)] = 132944, - [SMALL_STATE(1605)] = 132985, - [SMALL_STATE(1606)] = 133026, - [SMALL_STATE(1607)] = 133067, - [SMALL_STATE(1608)] = 133108, - [SMALL_STATE(1609)] = 133149, - [SMALL_STATE(1610)] = 133190, - [SMALL_STATE(1611)] = 133231, - [SMALL_STATE(1612)] = 133272, - [SMALL_STATE(1613)] = 133313, - [SMALL_STATE(1614)] = 133354, - [SMALL_STATE(1615)] = 133395, - [SMALL_STATE(1616)] = 133436, - [SMALL_STATE(1617)] = 133477, - [SMALL_STATE(1618)] = 133518, - [SMALL_STATE(1619)] = 133559, - [SMALL_STATE(1620)] = 133600, - [SMALL_STATE(1621)] = 133641, - [SMALL_STATE(1622)] = 133682, - [SMALL_STATE(1623)] = 133723, - [SMALL_STATE(1624)] = 133764, - [SMALL_STATE(1625)] = 133805, - [SMALL_STATE(1626)] = 133846, - [SMALL_STATE(1627)] = 133887, - [SMALL_STATE(1628)] = 133928, - [SMALL_STATE(1629)] = 133969, - [SMALL_STATE(1630)] = 134010, - [SMALL_STATE(1631)] = 134051, - [SMALL_STATE(1632)] = 134092, - [SMALL_STATE(1633)] = 134133, - [SMALL_STATE(1634)] = 134174, - [SMALL_STATE(1635)] = 134215, - [SMALL_STATE(1636)] = 134256, - [SMALL_STATE(1637)] = 134297, - [SMALL_STATE(1638)] = 134338, - [SMALL_STATE(1639)] = 134379, - [SMALL_STATE(1640)] = 134420, - [SMALL_STATE(1641)] = 134461, - [SMALL_STATE(1642)] = 134502, - [SMALL_STATE(1643)] = 134543, - [SMALL_STATE(1644)] = 134584, - [SMALL_STATE(1645)] = 134625, - [SMALL_STATE(1646)] = 134666, - [SMALL_STATE(1647)] = 134707, - [SMALL_STATE(1648)] = 134748, - [SMALL_STATE(1649)] = 134789, - [SMALL_STATE(1650)] = 134830, - [SMALL_STATE(1651)] = 134871, - [SMALL_STATE(1652)] = 134912, - [SMALL_STATE(1653)] = 134953, - [SMALL_STATE(1654)] = 134994, - [SMALL_STATE(1655)] = 135035, - [SMALL_STATE(1656)] = 135076, - [SMALL_STATE(1657)] = 135117, - [SMALL_STATE(1658)] = 135158, - [SMALL_STATE(1659)] = 135199, - [SMALL_STATE(1660)] = 135240, - [SMALL_STATE(1661)] = 135281, - [SMALL_STATE(1662)] = 135322, - [SMALL_STATE(1663)] = 135363, - [SMALL_STATE(1664)] = 135404, - [SMALL_STATE(1665)] = 135445, - [SMALL_STATE(1666)] = 135486, - [SMALL_STATE(1667)] = 135527, - [SMALL_STATE(1668)] = 135568, - [SMALL_STATE(1669)] = 135609, - [SMALL_STATE(1670)] = 135650, - [SMALL_STATE(1671)] = 135691, - [SMALL_STATE(1672)] = 135732, - [SMALL_STATE(1673)] = 135773, - [SMALL_STATE(1674)] = 135814, - [SMALL_STATE(1675)] = 135855, - [SMALL_STATE(1676)] = 135896, - [SMALL_STATE(1677)] = 135937, - [SMALL_STATE(1678)] = 135978, - [SMALL_STATE(1679)] = 136019, - [SMALL_STATE(1680)] = 136060, - [SMALL_STATE(1681)] = 136101, - [SMALL_STATE(1682)] = 136142, - [SMALL_STATE(1683)] = 136183, - [SMALL_STATE(1684)] = 136228, - [SMALL_STATE(1685)] = 136269, - [SMALL_STATE(1686)] = 136310, - [SMALL_STATE(1687)] = 136351, - [SMALL_STATE(1688)] = 136392, - [SMALL_STATE(1689)] = 136433, - [SMALL_STATE(1690)] = 136478, - [SMALL_STATE(1691)] = 136519, - [SMALL_STATE(1692)] = 136578, - [SMALL_STATE(1693)] = 136619, - [SMALL_STATE(1694)] = 136660, - [SMALL_STATE(1695)] = 136701, - [SMALL_STATE(1696)] = 136742, - [SMALL_STATE(1697)] = 136783, - [SMALL_STATE(1698)] = 136824, - [SMALL_STATE(1699)] = 136865, - [SMALL_STATE(1700)] = 136906, - [SMALL_STATE(1701)] = 136947, - [SMALL_STATE(1702)] = 136988, - [SMALL_STATE(1703)] = 137029, - [SMALL_STATE(1704)] = 137070, - [SMALL_STATE(1705)] = 137111, - [SMALL_STATE(1706)] = 137152, - [SMALL_STATE(1707)] = 137193, - [SMALL_STATE(1708)] = 137234, - [SMALL_STATE(1709)] = 137275, - [SMALL_STATE(1710)] = 137316, - [SMALL_STATE(1711)] = 137357, - [SMALL_STATE(1712)] = 137398, - [SMALL_STATE(1713)] = 137439, - [SMALL_STATE(1714)] = 137480, - [SMALL_STATE(1715)] = 137521, - [SMALL_STATE(1716)] = 137562, - [SMALL_STATE(1717)] = 137603, - [SMALL_STATE(1718)] = 137644, - [SMALL_STATE(1719)] = 137685, - [SMALL_STATE(1720)] = 137726, - [SMALL_STATE(1721)] = 137767, - [SMALL_STATE(1722)] = 137808, - [SMALL_STATE(1723)] = 137849, - [SMALL_STATE(1724)] = 137890, - [SMALL_STATE(1725)] = 137931, - [SMALL_STATE(1726)] = 137972, - [SMALL_STATE(1727)] = 138013, - [SMALL_STATE(1728)] = 138054, - [SMALL_STATE(1729)] = 138095, - [SMALL_STATE(1730)] = 138136, - [SMALL_STATE(1731)] = 138177, - [SMALL_STATE(1732)] = 138218, - [SMALL_STATE(1733)] = 138259, - [SMALL_STATE(1734)] = 138300, - [SMALL_STATE(1735)] = 138341, - [SMALL_STATE(1736)] = 138382, - [SMALL_STATE(1737)] = 138423, - [SMALL_STATE(1738)] = 138464, - [SMALL_STATE(1739)] = 138505, - [SMALL_STATE(1740)] = 138546, - [SMALL_STATE(1741)] = 138587, - [SMALL_STATE(1742)] = 138628, - [SMALL_STATE(1743)] = 138669, - [SMALL_STATE(1744)] = 138710, - [SMALL_STATE(1745)] = 138751, - [SMALL_STATE(1746)] = 138792, - [SMALL_STATE(1747)] = 138833, - [SMALL_STATE(1748)] = 138874, - [SMALL_STATE(1749)] = 138915, - [SMALL_STATE(1750)] = 138956, - [SMALL_STATE(1751)] = 138997, - [SMALL_STATE(1752)] = 139038, - [SMALL_STATE(1753)] = 139079, - [SMALL_STATE(1754)] = 139120, - [SMALL_STATE(1755)] = 139161, - [SMALL_STATE(1756)] = 139202, - [SMALL_STATE(1757)] = 139243, - [SMALL_STATE(1758)] = 139284, - [SMALL_STATE(1759)] = 139325, - [SMALL_STATE(1760)] = 139366, - [SMALL_STATE(1761)] = 139407, - [SMALL_STATE(1762)] = 139448, - [SMALL_STATE(1763)] = 139489, - [SMALL_STATE(1764)] = 139530, - [SMALL_STATE(1765)] = 139571, - [SMALL_STATE(1766)] = 139612, - [SMALL_STATE(1767)] = 139653, - [SMALL_STATE(1768)] = 139694, - [SMALL_STATE(1769)] = 139735, - [SMALL_STATE(1770)] = 139776, - [SMALL_STATE(1771)] = 139817, - [SMALL_STATE(1772)] = 139858, - [SMALL_STATE(1773)] = 139899, - [SMALL_STATE(1774)] = 139940, - [SMALL_STATE(1775)] = 139981, - [SMALL_STATE(1776)] = 140022, - [SMALL_STATE(1777)] = 140063, - [SMALL_STATE(1778)] = 140104, - [SMALL_STATE(1779)] = 140145, - [SMALL_STATE(1780)] = 140186, - [SMALL_STATE(1781)] = 140227, - [SMALL_STATE(1782)] = 140268, - [SMALL_STATE(1783)] = 140309, - [SMALL_STATE(1784)] = 140350, - [SMALL_STATE(1785)] = 140391, - [SMALL_STATE(1786)] = 140432, - [SMALL_STATE(1787)] = 140473, - [SMALL_STATE(1788)] = 140514, - [SMALL_STATE(1789)] = 140555, - [SMALL_STATE(1790)] = 140596, - [SMALL_STATE(1791)] = 140637, - [SMALL_STATE(1792)] = 140678, - [SMALL_STATE(1793)] = 140719, - [SMALL_STATE(1794)] = 140760, - [SMALL_STATE(1795)] = 140801, - [SMALL_STATE(1796)] = 140842, - [SMALL_STATE(1797)] = 140883, - [SMALL_STATE(1798)] = 140924, - [SMALL_STATE(1799)] = 140965, - [SMALL_STATE(1800)] = 141006, - [SMALL_STATE(1801)] = 141047, - [SMALL_STATE(1802)] = 141088, - [SMALL_STATE(1803)] = 141129, - [SMALL_STATE(1804)] = 141170, - [SMALL_STATE(1805)] = 141211, - [SMALL_STATE(1806)] = 141252, - [SMALL_STATE(1807)] = 141293, - [SMALL_STATE(1808)] = 141334, - [SMALL_STATE(1809)] = 141375, - [SMALL_STATE(1810)] = 141416, - [SMALL_STATE(1811)] = 141457, - [SMALL_STATE(1812)] = 141498, - [SMALL_STATE(1813)] = 141539, - [SMALL_STATE(1814)] = 141580, - [SMALL_STATE(1815)] = 141621, - [SMALL_STATE(1816)] = 141662, - [SMALL_STATE(1817)] = 141703, - [SMALL_STATE(1818)] = 141744, - [SMALL_STATE(1819)] = 141785, - [SMALL_STATE(1820)] = 141826, - [SMALL_STATE(1821)] = 141867, - [SMALL_STATE(1822)] = 141908, - [SMALL_STATE(1823)] = 141949, - [SMALL_STATE(1824)] = 141990, - [SMALL_STATE(1825)] = 142031, - [SMALL_STATE(1826)] = 142073, - [SMALL_STATE(1827)] = 142115, - [SMALL_STATE(1828)] = 142155, - [SMALL_STATE(1829)] = 142195, - [SMALL_STATE(1830)] = 142235, - [SMALL_STATE(1831)] = 142275, - [SMALL_STATE(1832)] = 142315, - [SMALL_STATE(1833)] = 142355, - [SMALL_STATE(1834)] = 142395, - [SMALL_STATE(1835)] = 142432, - [SMALL_STATE(1836)] = 142469, - [SMALL_STATE(1837)] = 142506, - [SMALL_STATE(1838)] = 142543, - [SMALL_STATE(1839)] = 142580, - [SMALL_STATE(1840)] = 142617, - [SMALL_STATE(1841)] = 142654, - [SMALL_STATE(1842)] = 142691, - [SMALL_STATE(1843)] = 142728, - [SMALL_STATE(1844)] = 142765, - [SMALL_STATE(1845)] = 142802, - [SMALL_STATE(1846)] = 142839, - [SMALL_STATE(1847)] = 142886, - [SMALL_STATE(1848)] = 142923, - [SMALL_STATE(1849)] = 142970, - [SMALL_STATE(1850)] = 143007, - [SMALL_STATE(1851)] = 143044, - [SMALL_STATE(1852)] = 143081, - [SMALL_STATE(1853)] = 143117, - [SMALL_STATE(1854)] = 143153, - [SMALL_STATE(1855)] = 143189, - [SMALL_STATE(1856)] = 143225, - [SMALL_STATE(1857)] = 143261, - [SMALL_STATE(1858)] = 143297, - [SMALL_STATE(1859)] = 143333, - [SMALL_STATE(1860)] = 143369, - [SMALL_STATE(1861)] = 143405, - [SMALL_STATE(1862)] = 143441, - [SMALL_STATE(1863)] = 143477, - [SMALL_STATE(1864)] = 143513, - [SMALL_STATE(1865)] = 143549, - [SMALL_STATE(1866)] = 143585, - [SMALL_STATE(1867)] = 143621, - [SMALL_STATE(1868)] = 143657, - [SMALL_STATE(1869)] = 143693, - [SMALL_STATE(1870)] = 143729, - [SMALL_STATE(1871)] = 143765, - [SMALL_STATE(1872)] = 143801, - [SMALL_STATE(1873)] = 143837, - [SMALL_STATE(1874)] = 143873, - [SMALL_STATE(1875)] = 143909, - [SMALL_STATE(1876)] = 143945, - [SMALL_STATE(1877)] = 143981, - [SMALL_STATE(1878)] = 144017, - [SMALL_STATE(1879)] = 144053, - [SMALL_STATE(1880)] = 144089, - [SMALL_STATE(1881)] = 144125, - [SMALL_STATE(1882)] = 144161, - [SMALL_STATE(1883)] = 144197, - [SMALL_STATE(1884)] = 144233, - [SMALL_STATE(1885)] = 144269, - [SMALL_STATE(1886)] = 144305, - [SMALL_STATE(1887)] = 144341, - [SMALL_STATE(1888)] = 144377, - [SMALL_STATE(1889)] = 144413, - [SMALL_STATE(1890)] = 144449, - [SMALL_STATE(1891)] = 144485, - [SMALL_STATE(1892)] = 144521, - [SMALL_STATE(1893)] = 144557, - [SMALL_STATE(1894)] = 144593, - [SMALL_STATE(1895)] = 144629, - [SMALL_STATE(1896)] = 144665, - [SMALL_STATE(1897)] = 144701, - [SMALL_STATE(1898)] = 144737, - [SMALL_STATE(1899)] = 144773, - [SMALL_STATE(1900)] = 144809, - [SMALL_STATE(1901)] = 144845, - [SMALL_STATE(1902)] = 144881, - [SMALL_STATE(1903)] = 144917, - [SMALL_STATE(1904)] = 144953, - [SMALL_STATE(1905)] = 144989, - [SMALL_STATE(1906)] = 145025, - [SMALL_STATE(1907)] = 145061, - [SMALL_STATE(1908)] = 145097, - [SMALL_STATE(1909)] = 145133, - [SMALL_STATE(1910)] = 145169, - [SMALL_STATE(1911)] = 145205, - [SMALL_STATE(1912)] = 145241, - [SMALL_STATE(1913)] = 145277, - [SMALL_STATE(1914)] = 145313, - [SMALL_STATE(1915)] = 145349, - [SMALL_STATE(1916)] = 145385, - [SMALL_STATE(1917)] = 145421, - [SMALL_STATE(1918)] = 145457, - [SMALL_STATE(1919)] = 145493, - [SMALL_STATE(1920)] = 145529, - [SMALL_STATE(1921)] = 145565, - [SMALL_STATE(1922)] = 145601, - [SMALL_STATE(1923)] = 145637, - [SMALL_STATE(1924)] = 145673, - [SMALL_STATE(1925)] = 145709, - [SMALL_STATE(1926)] = 145745, - [SMALL_STATE(1927)] = 145781, - [SMALL_STATE(1928)] = 145817, - [SMALL_STATE(1929)] = 145853, - [SMALL_STATE(1930)] = 145889, - [SMALL_STATE(1931)] = 145925, - [SMALL_STATE(1932)] = 145961, - [SMALL_STATE(1933)] = 145997, - [SMALL_STATE(1934)] = 146033, - [SMALL_STATE(1935)] = 146069, - [SMALL_STATE(1936)] = 146105, - [SMALL_STATE(1937)] = 146141, - [SMALL_STATE(1938)] = 146177, - [SMALL_STATE(1939)] = 146213, - [SMALL_STATE(1940)] = 146249, - [SMALL_STATE(1941)] = 146285, - [SMALL_STATE(1942)] = 146321, - [SMALL_STATE(1943)] = 146357, - [SMALL_STATE(1944)] = 146393, - [SMALL_STATE(1945)] = 146429, - [SMALL_STATE(1946)] = 146465, - [SMALL_STATE(1947)] = 146501, - [SMALL_STATE(1948)] = 146537, - [SMALL_STATE(1949)] = 146573, - [SMALL_STATE(1950)] = 146609, - [SMALL_STATE(1951)] = 146645, - [SMALL_STATE(1952)] = 146681, - [SMALL_STATE(1953)] = 146717, - [SMALL_STATE(1954)] = 146753, - [SMALL_STATE(1955)] = 146790, - [SMALL_STATE(1956)] = 146827, - [SMALL_STATE(1957)] = 146875, - [SMALL_STATE(1958)] = 146923, - [SMALL_STATE(1959)] = 146956, - [SMALL_STATE(1960)] = 146989, - [SMALL_STATE(1961)] = 147022, - [SMALL_STATE(1962)] = 147055, - [SMALL_STATE(1963)] = 147088, - [SMALL_STATE(1964)] = 147121, - [SMALL_STATE(1965)] = 147154, - [SMALL_STATE(1966)] = 147187, - [SMALL_STATE(1967)] = 147220, - [SMALL_STATE(1968)] = 147253, - [SMALL_STATE(1969)] = 147286, - [SMALL_STATE(1970)] = 147319, - [SMALL_STATE(1971)] = 147352, - [SMALL_STATE(1972)] = 147385, - [SMALL_STATE(1973)] = 147418, - [SMALL_STATE(1974)] = 147451, - [SMALL_STATE(1975)] = 147484, - [SMALL_STATE(1976)] = 147517, - [SMALL_STATE(1977)] = 147550, - [SMALL_STATE(1978)] = 147583, - [SMALL_STATE(1979)] = 147616, - [SMALL_STATE(1980)] = 147649, - [SMALL_STATE(1981)] = 147682, - [SMALL_STATE(1982)] = 147715, - [SMALL_STATE(1983)] = 147748, - [SMALL_STATE(1984)] = 147781, - [SMALL_STATE(1985)] = 147814, - [SMALL_STATE(1986)] = 147847, - [SMALL_STATE(1987)] = 147880, - [SMALL_STATE(1988)] = 147913, - [SMALL_STATE(1989)] = 147946, - [SMALL_STATE(1990)] = 147979, - [SMALL_STATE(1991)] = 148012, - [SMALL_STATE(1992)] = 148045, - [SMALL_STATE(1993)] = 148078, - [SMALL_STATE(1994)] = 148111, - [SMALL_STATE(1995)] = 148144, - [SMALL_STATE(1996)] = 148177, - [SMALL_STATE(1997)] = 148210, - [SMALL_STATE(1998)] = 148243, - [SMALL_STATE(1999)] = 148276, - [SMALL_STATE(2000)] = 148309, - [SMALL_STATE(2001)] = 148342, - [SMALL_STATE(2002)] = 148375, - [SMALL_STATE(2003)] = 148408, - [SMALL_STATE(2004)] = 148441, - [SMALL_STATE(2005)] = 148474, - [SMALL_STATE(2006)] = 148507, - [SMALL_STATE(2007)] = 148540, - [SMALL_STATE(2008)] = 148573, - [SMALL_STATE(2009)] = 148606, - [SMALL_STATE(2010)] = 148639, - [SMALL_STATE(2011)] = 148672, - [SMALL_STATE(2012)] = 148705, - [SMALL_STATE(2013)] = 148738, - [SMALL_STATE(2014)] = 148771, - [SMALL_STATE(2015)] = 148804, - [SMALL_STATE(2016)] = 148837, - [SMALL_STATE(2017)] = 148870, - [SMALL_STATE(2018)] = 148903, - [SMALL_STATE(2019)] = 148936, - [SMALL_STATE(2020)] = 148969, - [SMALL_STATE(2021)] = 149002, - [SMALL_STATE(2022)] = 149035, - [SMALL_STATE(2023)] = 149068, - [SMALL_STATE(2024)] = 149101, - [SMALL_STATE(2025)] = 149134, - [SMALL_STATE(2026)] = 149167, - [SMALL_STATE(2027)] = 149200, - [SMALL_STATE(2028)] = 149233, - [SMALL_STATE(2029)] = 149266, - [SMALL_STATE(2030)] = 149299, - [SMALL_STATE(2031)] = 149332, - [SMALL_STATE(2032)] = 149365, - [SMALL_STATE(2033)] = 149398, - [SMALL_STATE(2034)] = 149431, - [SMALL_STATE(2035)] = 149464, - [SMALL_STATE(2036)] = 149497, - [SMALL_STATE(2037)] = 149530, - [SMALL_STATE(2038)] = 149563, - [SMALL_STATE(2039)] = 149596, - [SMALL_STATE(2040)] = 149629, - [SMALL_STATE(2041)] = 149662, - [SMALL_STATE(2042)] = 149695, - [SMALL_STATE(2043)] = 149728, - [SMALL_STATE(2044)] = 149761, - [SMALL_STATE(2045)] = 149794, - [SMALL_STATE(2046)] = 149827, - [SMALL_STATE(2047)] = 149860, - [SMALL_STATE(2048)] = 149893, - [SMALL_STATE(2049)] = 149926, - [SMALL_STATE(2050)] = 149959, - [SMALL_STATE(2051)] = 149992, - [SMALL_STATE(2052)] = 150025, - [SMALL_STATE(2053)] = 150058, - [SMALL_STATE(2054)] = 150091, - [SMALL_STATE(2055)] = 150124, - [SMALL_STATE(2056)] = 150157, - [SMALL_STATE(2057)] = 150190, - [SMALL_STATE(2058)] = 150223, - [SMALL_STATE(2059)] = 150256, - [SMALL_STATE(2060)] = 150289, - [SMALL_STATE(2061)] = 150322, - [SMALL_STATE(2062)] = 150355, - [SMALL_STATE(2063)] = 150388, - [SMALL_STATE(2064)] = 150421, - [SMALL_STATE(2065)] = 150454, - [SMALL_STATE(2066)] = 150487, - [SMALL_STATE(2067)] = 150520, - [SMALL_STATE(2068)] = 150553, - [SMALL_STATE(2069)] = 150586, - [SMALL_STATE(2070)] = 150619, - [SMALL_STATE(2071)] = 150652, - [SMALL_STATE(2072)] = 150685, - [SMALL_STATE(2073)] = 150718, - [SMALL_STATE(2074)] = 150751, - [SMALL_STATE(2075)] = 150784, - [SMALL_STATE(2076)] = 150817, - [SMALL_STATE(2077)] = 150850, - [SMALL_STATE(2078)] = 150883, - [SMALL_STATE(2079)] = 150916, - [SMALL_STATE(2080)] = 150949, - [SMALL_STATE(2081)] = 150982, - [SMALL_STATE(2082)] = 151015, - [SMALL_STATE(2083)] = 151048, - [SMALL_STATE(2084)] = 151081, - [SMALL_STATE(2085)] = 151114, - [SMALL_STATE(2086)] = 151147, - [SMALL_STATE(2087)] = 151180, - [SMALL_STATE(2088)] = 151213, - [SMALL_STATE(2089)] = 151246, - [SMALL_STATE(2090)] = 151294, - [SMALL_STATE(2091)] = 151342, - [SMALL_STATE(2092)] = 151390, - [SMALL_STATE(2093)] = 151438, - [SMALL_STATE(2094)] = 151486, - [SMALL_STATE(2095)] = 151534, - [SMALL_STATE(2096)] = 151582, - [SMALL_STATE(2097)] = 151630, - [SMALL_STATE(2098)] = 151678, - [SMALL_STATE(2099)] = 151726, - [SMALL_STATE(2100)] = 151774, - [SMALL_STATE(2101)] = 151822, - [SMALL_STATE(2102)] = 151853, - [SMALL_STATE(2103)] = 151884, - [SMALL_STATE(2104)] = 151926, - [SMALL_STATE(2105)] = 151988, - [SMALL_STATE(2106)] = 152054, - [SMALL_STATE(2107)] = 152116, - [SMALL_STATE(2108)] = 152178, - [SMALL_STATE(2109)] = 152244, - [SMALL_STATE(2110)] = 152306, - [SMALL_STATE(2111)] = 152368, - [SMALL_STATE(2112)] = 152434, - [SMALL_STATE(2113)] = 152496, - [SMALL_STATE(2114)] = 152562, - [SMALL_STATE(2115)] = 152624, - [SMALL_STATE(2116)] = 152686, - [SMALL_STATE(2117)] = 152723, - [SMALL_STATE(2118)] = 152757, - [SMALL_STATE(2119)] = 152791, - [SMALL_STATE(2120)] = 152821, - [SMALL_STATE(2121)] = 152850, - [SMALL_STATE(2122)] = 152879, - [SMALL_STATE(2123)] = 152908, - [SMALL_STATE(2124)] = 152937, - [SMALL_STATE(2125)] = 152966, - [SMALL_STATE(2126)] = 153029, - [SMALL_STATE(2127)] = 153092, - [SMALL_STATE(2128)] = 153121, - [SMALL_STATE(2129)] = 153150, - [SMALL_STATE(2130)] = 153179, - [SMALL_STATE(2131)] = 153208, - [SMALL_STATE(2132)] = 153237, - [SMALL_STATE(2133)] = 153266, - [SMALL_STATE(2134)] = 153295, - [SMALL_STATE(2135)] = 153324, - [SMALL_STATE(2136)] = 153387, - [SMALL_STATE(2137)] = 153416, - [SMALL_STATE(2138)] = 153479, - [SMALL_STATE(2139)] = 153542, - [SMALL_STATE(2140)] = 153605, - [SMALL_STATE(2141)] = 153668, - [SMALL_STATE(2142)] = 153697, - [SMALL_STATE(2143)] = 153726, - [SMALL_STATE(2144)] = 153755, - [SMALL_STATE(2145)] = 153784, - [SMALL_STATE(2146)] = 153813, - [SMALL_STATE(2147)] = 153842, - [SMALL_STATE(2148)] = 153871, - [SMALL_STATE(2149)] = 153934, - [SMALL_STATE(2150)] = 153997, - [SMALL_STATE(2151)] = 154060, - [SMALL_STATE(2152)] = 154123, - [SMALL_STATE(2153)] = 154186, - [SMALL_STATE(2154)] = 154215, - [SMALL_STATE(2155)] = 154244, - [SMALL_STATE(2156)] = 154273, - [SMALL_STATE(2157)] = 154304, - [SMALL_STATE(2158)] = 154333, - [SMALL_STATE(2159)] = 154396, - [SMALL_STATE(2160)] = 154425, - [SMALL_STATE(2161)] = 154488, - [SMALL_STATE(2162)] = 154540, - [SMALL_STATE(2163)] = 154568, - [SMALL_STATE(2164)] = 154596, - [SMALL_STATE(2165)] = 154624, - [SMALL_STATE(2166)] = 154652, - [SMALL_STATE(2167)] = 154680, - [SMALL_STATE(2168)] = 154708, - [SMALL_STATE(2169)] = 154736, - [SMALL_STATE(2170)] = 154764, - [SMALL_STATE(2171)] = 154792, - [SMALL_STATE(2172)] = 154820, - [SMALL_STATE(2173)] = 154848, - [SMALL_STATE(2174)] = 154900, - [SMALL_STATE(2175)] = 154928, - [SMALL_STATE(2176)] = 154956, - [SMALL_STATE(2177)] = 154984, - [SMALL_STATE(2178)] = 155012, - [SMALL_STATE(2179)] = 155040, - [SMALL_STATE(2180)] = 155092, - [SMALL_STATE(2181)] = 155144, - [SMALL_STATE(2182)] = 155196, - [SMALL_STATE(2183)] = 155248, - [SMALL_STATE(2184)] = 155300, - [SMALL_STATE(2185)] = 155328, - [SMALL_STATE(2186)] = 155356, - [SMALL_STATE(2187)] = 155408, - [SMALL_STATE(2188)] = 155460, - [SMALL_STATE(2189)] = 155488, - [SMALL_STATE(2190)] = 155540, - [SMALL_STATE(2191)] = 155568, - [SMALL_STATE(2192)] = 155596, - [SMALL_STATE(2193)] = 155624, - [SMALL_STATE(2194)] = 155652, - [SMALL_STATE(2195)] = 155680, - [SMALL_STATE(2196)] = 155732, - [SMALL_STATE(2197)] = 155760, - [SMALL_STATE(2198)] = 155812, - [SMALL_STATE(2199)] = 155863, - [SMALL_STATE(2200)] = 155914, - [SMALL_STATE(2201)] = 155963, - [SMALL_STATE(2202)] = 156014, - [SMALL_STATE(2203)] = 156047, - [SMALL_STATE(2204)] = 156090, - [SMALL_STATE(2205)] = 156141, - [SMALL_STATE(2206)] = 156192, - [SMALL_STATE(2207)] = 156243, - [SMALL_STATE(2208)] = 156294, - [SMALL_STATE(2209)] = 156345, - [SMALL_STATE(2210)] = 156396, - [SMALL_STATE(2211)] = 156447, - [SMALL_STATE(2212)] = 156498, - [SMALL_STATE(2213)] = 156549, - [SMALL_STATE(2214)] = 156598, - [SMALL_STATE(2215)] = 156631, - [SMALL_STATE(2216)] = 156664, - [SMALL_STATE(2217)] = 156715, - [SMALL_STATE(2218)] = 156748, - [SMALL_STATE(2219)] = 156799, - [SMALL_STATE(2220)] = 156832, - [SMALL_STATE(2221)] = 156883, - [SMALL_STATE(2222)] = 156934, - [SMALL_STATE(2223)] = 156964, - [SMALL_STATE(2224)] = 156994, - [SMALL_STATE(2225)] = 157024, - [SMALL_STATE(2226)] = 157061, - [SMALL_STATE(2227)] = 157086, - [SMALL_STATE(2228)] = 157111, - [SMALL_STATE(2229)] = 157136, - [SMALL_STATE(2230)] = 157161, - [SMALL_STATE(2231)] = 157186, - [SMALL_STATE(2232)] = 157211, - [SMALL_STATE(2233)] = 157236, - [SMALL_STATE(2234)] = 157261, - [SMALL_STATE(2235)] = 157288, - [SMALL_STATE(2236)] = 157312, - [SMALL_STATE(2237)] = 157338, - [SMALL_STATE(2238)] = 157362, - [SMALL_STATE(2239)] = 157390, - [SMALL_STATE(2240)] = 157412, - [SMALL_STATE(2241)] = 157433, - [SMALL_STATE(2242)] = 157454, - [SMALL_STATE(2243)] = 157475, - [SMALL_STATE(2244)] = 157496, - [SMALL_STATE(2245)] = 157517, - [SMALL_STATE(2246)] = 157538, - [SMALL_STATE(2247)] = 157559, - [SMALL_STATE(2248)] = 157580, - [SMALL_STATE(2249)] = 157601, - [SMALL_STATE(2250)] = 157622, - [SMALL_STATE(2251)] = 157643, - [SMALL_STATE(2252)] = 157664, - [SMALL_STATE(2253)] = 157685, - [SMALL_STATE(2254)] = 157706, - [SMALL_STATE(2255)] = 157727, - [SMALL_STATE(2256)] = 157748, - [SMALL_STATE(2257)] = 157769, - [SMALL_STATE(2258)] = 157790, - [SMALL_STATE(2259)] = 157811, - [SMALL_STATE(2260)] = 157832, - [SMALL_STATE(2261)] = 157853, - [SMALL_STATE(2262)] = 157874, - [SMALL_STATE(2263)] = 157895, - [SMALL_STATE(2264)] = 157916, - [SMALL_STATE(2265)] = 157937, - [SMALL_STATE(2266)] = 157964, - [SMALL_STATE(2267)] = 157985, - [SMALL_STATE(2268)] = 158010, - [SMALL_STATE(2269)] = 158035, - [SMALL_STATE(2270)] = 158056, - [SMALL_STATE(2271)] = 158077, - [SMALL_STATE(2272)] = 158098, - [SMALL_STATE(2273)] = 158119, - [SMALL_STATE(2274)] = 158140, - [SMALL_STATE(2275)] = 158161, - [SMALL_STATE(2276)] = 158182, - [SMALL_STATE(2277)] = 158203, - [SMALL_STATE(2278)] = 158224, - [SMALL_STATE(2279)] = 158245, - [SMALL_STATE(2280)] = 158266, - [SMALL_STATE(2281)] = 158287, - [SMALL_STATE(2282)] = 158308, - [SMALL_STATE(2283)] = 158329, - [SMALL_STATE(2284)] = 158350, - [SMALL_STATE(2285)] = 158371, - [SMALL_STATE(2286)] = 158392, - [SMALL_STATE(2287)] = 158413, - [SMALL_STATE(2288)] = 158434, - [SMALL_STATE(2289)] = 158455, - [SMALL_STATE(2290)] = 158476, - [SMALL_STATE(2291)] = 158497, - [SMALL_STATE(2292)] = 158518, - [SMALL_STATE(2293)] = 158539, - [SMALL_STATE(2294)] = 158560, - [SMALL_STATE(2295)] = 158581, - [SMALL_STATE(2296)] = 158602, - [SMALL_STATE(2297)] = 158623, - [SMALL_STATE(2298)] = 158644, - [SMALL_STATE(2299)] = 158665, - [SMALL_STATE(2300)] = 158686, - [SMALL_STATE(2301)] = 158707, - [SMALL_STATE(2302)] = 158728, - [SMALL_STATE(2303)] = 158749, - [SMALL_STATE(2304)] = 158770, - [SMALL_STATE(2305)] = 158791, - [SMALL_STATE(2306)] = 158812, - [SMALL_STATE(2307)] = 158833, - [SMALL_STATE(2308)] = 158854, - [SMALL_STATE(2309)] = 158875, - [SMALL_STATE(2310)] = 158896, - [SMALL_STATE(2311)] = 158917, - [SMALL_STATE(2312)] = 158942, - [SMALL_STATE(2313)] = 158967, - [SMALL_STATE(2314)] = 158988, - [SMALL_STATE(2315)] = 159009, - [SMALL_STATE(2316)] = 159030, - [SMALL_STATE(2317)] = 159051, - [SMALL_STATE(2318)] = 159072, - [SMALL_STATE(2319)] = 159093, - [SMALL_STATE(2320)] = 159114, - [SMALL_STATE(2321)] = 159135, - [SMALL_STATE(2322)] = 159156, - [SMALL_STATE(2323)] = 159177, - [SMALL_STATE(2324)] = 159198, - [SMALL_STATE(2325)] = 159219, - [SMALL_STATE(2326)] = 159240, - [SMALL_STATE(2327)] = 159261, - [SMALL_STATE(2328)] = 159282, - [SMALL_STATE(2329)] = 159303, - [SMALL_STATE(2330)] = 159324, - [SMALL_STATE(2331)] = 159345, - [SMALL_STATE(2332)] = 159366, - [SMALL_STATE(2333)] = 159387, - [SMALL_STATE(2334)] = 159408, - [SMALL_STATE(2335)] = 159429, - [SMALL_STATE(2336)] = 159454, - [SMALL_STATE(2337)] = 159475, - [SMALL_STATE(2338)] = 159496, - [SMALL_STATE(2339)] = 159517, - [SMALL_STATE(2340)] = 159538, - [SMALL_STATE(2341)] = 159559, - [SMALL_STATE(2342)] = 159579, - [SMALL_STATE(2343)] = 159608, - [SMALL_STATE(2344)] = 159641, - [SMALL_STATE(2345)] = 159674, - [SMALL_STATE(2346)] = 159707, - [SMALL_STATE(2347)] = 159740, - [SMALL_STATE(2348)] = 159769, - [SMALL_STATE(2349)] = 159798, - [SMALL_STATE(2350)] = 159831, - [SMALL_STATE(2351)] = 159860, - [SMALL_STATE(2352)] = 159889, - [SMALL_STATE(2353)] = 159922, - [SMALL_STATE(2354)] = 159955, - [SMALL_STATE(2355)] = 159984, - [SMALL_STATE(2356)] = 160017, - [SMALL_STATE(2357)] = 160046, - [SMALL_STATE(2358)] = 160079, - [SMALL_STATE(2359)] = 160108, - [SMALL_STATE(2360)] = 160137, - [SMALL_STATE(2361)] = 160170, - [SMALL_STATE(2362)] = 160199, - [SMALL_STATE(2363)] = 160228, - [SMALL_STATE(2364)] = 160261, - [SMALL_STATE(2365)] = 160294, - [SMALL_STATE(2366)] = 160327, - [SMALL_STATE(2367)] = 160356, - [SMALL_STATE(2368)] = 160389, - [SMALL_STATE(2369)] = 160418, - [SMALL_STATE(2370)] = 160451, - [SMALL_STATE(2371)] = 160484, - [SMALL_STATE(2372)] = 160517, - [SMALL_STATE(2373)] = 160550, - [SMALL_STATE(2374)] = 160571, - [SMALL_STATE(2375)] = 160600, - [SMALL_STATE(2376)] = 160633, - [SMALL_STATE(2377)] = 160666, - [SMALL_STATE(2378)] = 160695, - [SMALL_STATE(2379)] = 160724, - [SMALL_STATE(2380)] = 160753, - [SMALL_STATE(2381)] = 160782, - [SMALL_STATE(2382)] = 160811, - [SMALL_STATE(2383)] = 160844, - [SMALL_STATE(2384)] = 160877, - [SMALL_STATE(2385)] = 160910, - [SMALL_STATE(2386)] = 160939, - [SMALL_STATE(2387)] = 160968, - [SMALL_STATE(2388)] = 161001, - [SMALL_STATE(2389)] = 161034, - [SMALL_STATE(2390)] = 161063, - [SMALL_STATE(2391)] = 161092, - [SMALL_STATE(2392)] = 161121, - [SMALL_STATE(2393)] = 161150, - [SMALL_STATE(2394)] = 161171, - [SMALL_STATE(2395)] = 161201, - [SMALL_STATE(2396)] = 161219, - [SMALL_STATE(2397)] = 161237, - [SMALL_STATE(2398)] = 161267, - [SMALL_STATE(2399)] = 161285, - [SMALL_STATE(2400)] = 161303, - [SMALL_STATE(2401)] = 161321, - [SMALL_STATE(2402)] = 161351, - [SMALL_STATE(2403)] = 161369, - [SMALL_STATE(2404)] = 161387, - [SMALL_STATE(2405)] = 161417, - [SMALL_STATE(2406)] = 161435, - [SMALL_STATE(2407)] = 161453, - [SMALL_STATE(2408)] = 161471, - [SMALL_STATE(2409)] = 161499, - [SMALL_STATE(2410)] = 161529, - [SMALL_STATE(2411)] = 161547, - [SMALL_STATE(2412)] = 161565, - [SMALL_STATE(2413)] = 161583, - [SMALL_STATE(2414)] = 161601, - [SMALL_STATE(2415)] = 161619, - [SMALL_STATE(2416)] = 161641, - [SMALL_STATE(2417)] = 161659, - [SMALL_STATE(2418)] = 161689, - [SMALL_STATE(2419)] = 161707, - [SMALL_STATE(2420)] = 161725, - [SMALL_STATE(2421)] = 161743, - [SMALL_STATE(2422)] = 161761, - [SMALL_STATE(2423)] = 161779, - [SMALL_STATE(2424)] = 161801, - [SMALL_STATE(2425)] = 161831, - [SMALL_STATE(2426)] = 161861, - [SMALL_STATE(2427)] = 161879, - [SMALL_STATE(2428)] = 161899, - [SMALL_STATE(2429)] = 161919, - [SMALL_STATE(2430)] = 161937, - [SMALL_STATE(2431)] = 161955, - [SMALL_STATE(2432)] = 161985, - [SMALL_STATE(2433)] = 162011, - [SMALL_STATE(2434)] = 162041, - [SMALL_STATE(2435)] = 162059, - [SMALL_STATE(2436)] = 162089, - [SMALL_STATE(2437)] = 162107, - [SMALL_STATE(2438)] = 162137, - [SMALL_STATE(2439)] = 162168, - [SMALL_STATE(2440)] = 162199, - [SMALL_STATE(2441)] = 162221, - [SMALL_STATE(2442)] = 162243, - [SMALL_STATE(2443)] = 162265, - [SMALL_STATE(2444)] = 162287, - [SMALL_STATE(2445)] = 162309, - [SMALL_STATE(2446)] = 162331, - [SMALL_STATE(2447)] = 162353, - [SMALL_STATE(2448)] = 162375, - [SMALL_STATE(2449)] = 162397, - [SMALL_STATE(2450)] = 162419, - [SMALL_STATE(2451)] = 162441, - [SMALL_STATE(2452)] = 162463, - [SMALL_STATE(2453)] = 162485, - [SMALL_STATE(2454)] = 162507, - [SMALL_STATE(2455)] = 162529, - [SMALL_STATE(2456)] = 162551, - [SMALL_STATE(2457)] = 162573, - [SMALL_STATE(2458)] = 162595, - [SMALL_STATE(2459)] = 162617, - [SMALL_STATE(2460)] = 162639, - [SMALL_STATE(2461)] = 162661, - [SMALL_STATE(2462)] = 162683, - [SMALL_STATE(2463)] = 162705, - [SMALL_STATE(2464)] = 162727, - [SMALL_STATE(2465)] = 162749, - [SMALL_STATE(2466)] = 162771, - [SMALL_STATE(2467)] = 162793, - [SMALL_STATE(2468)] = 162815, - [SMALL_STATE(2469)] = 162837, - [SMALL_STATE(2470)] = 162859, - [SMALL_STATE(2471)] = 162881, - [SMALL_STATE(2472)] = 162903, - [SMALL_STATE(2473)] = 162925, - [SMALL_STATE(2474)] = 162947, - [SMALL_STATE(2475)] = 162969, - [SMALL_STATE(2476)] = 162991, - [SMALL_STATE(2477)] = 163013, - [SMALL_STATE(2478)] = 163035, - [SMALL_STATE(2479)] = 163057, - [SMALL_STATE(2480)] = 163079, - [SMALL_STATE(2481)] = 163101, - [SMALL_STATE(2482)] = 163123, - [SMALL_STATE(2483)] = 163145, - [SMALL_STATE(2484)] = 163167, - [SMALL_STATE(2485)] = 163189, - [SMALL_STATE(2486)] = 163211, - [SMALL_STATE(2487)] = 163233, - [SMALL_STATE(2488)] = 163255, - [SMALL_STATE(2489)] = 163277, - [SMALL_STATE(2490)] = 163299, - [SMALL_STATE(2491)] = 163321, - [SMALL_STATE(2492)] = 163343, - [SMALL_STATE(2493)] = 163365, - [SMALL_STATE(2494)] = 163387, - [SMALL_STATE(2495)] = 163409, - [SMALL_STATE(2496)] = 163431, - [SMALL_STATE(2497)] = 163453, - [SMALL_STATE(2498)] = 163475, - [SMALL_STATE(2499)] = 163497, - [SMALL_STATE(2500)] = 163519, - [SMALL_STATE(2501)] = 163541, - [SMALL_STATE(2502)] = 163563, - [SMALL_STATE(2503)] = 163585, - [SMALL_STATE(2504)] = 163607, - [SMALL_STATE(2505)] = 163629, - [SMALL_STATE(2506)] = 163651, - [SMALL_STATE(2507)] = 163673, - [SMALL_STATE(2508)] = 163695, - [SMALL_STATE(2509)] = 163717, - [SMALL_STATE(2510)] = 163739, - [SMALL_STATE(2511)] = 163761, - [SMALL_STATE(2512)] = 163783, - [SMALL_STATE(2513)] = 163805, - [SMALL_STATE(2514)] = 163827, - [SMALL_STATE(2515)] = 163849, - [SMALL_STATE(2516)] = 163871, - [SMALL_STATE(2517)] = 163893, - [SMALL_STATE(2518)] = 163915, - [SMALL_STATE(2519)] = 163937, - [SMALL_STATE(2520)] = 163959, - [SMALL_STATE(2521)] = 163981, - [SMALL_STATE(2522)] = 164003, - [SMALL_STATE(2523)] = 164025, - [SMALL_STATE(2524)] = 164047, - [SMALL_STATE(2525)] = 164069, - [SMALL_STATE(2526)] = 164091, - [SMALL_STATE(2527)] = 164113, - [SMALL_STATE(2528)] = 164135, - [SMALL_STATE(2529)] = 164157, - [SMALL_STATE(2530)] = 164179, - [SMALL_STATE(2531)] = 164201, - [SMALL_STATE(2532)] = 164223, - [SMALL_STATE(2533)] = 164245, - [SMALL_STATE(2534)] = 164267, - [SMALL_STATE(2535)] = 164289, - [SMALL_STATE(2536)] = 164311, - [SMALL_STATE(2537)] = 164333, - [SMALL_STATE(2538)] = 164355, - [SMALL_STATE(2539)] = 164377, - [SMALL_STATE(2540)] = 164399, - [SMALL_STATE(2541)] = 164421, - [SMALL_STATE(2542)] = 164443, - [SMALL_STATE(2543)] = 164465, - [SMALL_STATE(2544)] = 164487, - [SMALL_STATE(2545)] = 164509, - [SMALL_STATE(2546)] = 164531, - [SMALL_STATE(2547)] = 164553, - [SMALL_STATE(2548)] = 164575, - [SMALL_STATE(2549)] = 164597, - [SMALL_STATE(2550)] = 164619, - [SMALL_STATE(2551)] = 164641, - [SMALL_STATE(2552)] = 164663, - [SMALL_STATE(2553)] = 164685, - [SMALL_STATE(2554)] = 164707, - [SMALL_STATE(2555)] = 164729, - [SMALL_STATE(2556)] = 164751, - [SMALL_STATE(2557)] = 164773, - [SMALL_STATE(2558)] = 164795, - [SMALL_STATE(2559)] = 164817, - [SMALL_STATE(2560)] = 164839, - [SMALL_STATE(2561)] = 164861, - [SMALL_STATE(2562)] = 164883, - [SMALL_STATE(2563)] = 164905, - [SMALL_STATE(2564)] = 164927, - [SMALL_STATE(2565)] = 164949, - [SMALL_STATE(2566)] = 164971, - [SMALL_STATE(2567)] = 164993, - [SMALL_STATE(2568)] = 165015, - [SMALL_STATE(2569)] = 165037, - [SMALL_STATE(2570)] = 165059, - [SMALL_STATE(2571)] = 165081, - [SMALL_STATE(2572)] = 165103, - [SMALL_STATE(2573)] = 165125, - [SMALL_STATE(2574)] = 165147, - [SMALL_STATE(2575)] = 165169, - [SMALL_STATE(2576)] = 165191, - [SMALL_STATE(2577)] = 165213, - [SMALL_STATE(2578)] = 165235, - [SMALL_STATE(2579)] = 165257, - [SMALL_STATE(2580)] = 165279, - [SMALL_STATE(2581)] = 165301, - [SMALL_STATE(2582)] = 165323, - [SMALL_STATE(2583)] = 165345, - [SMALL_STATE(2584)] = 165367, - [SMALL_STATE(2585)] = 165389, - [SMALL_STATE(2586)] = 165411, - [SMALL_STATE(2587)] = 165433, - [SMALL_STATE(2588)] = 165455, - [SMALL_STATE(2589)] = 165477, - [SMALL_STATE(2590)] = 165499, - [SMALL_STATE(2591)] = 165521, - [SMALL_STATE(2592)] = 165543, - [SMALL_STATE(2593)] = 165565, - [SMALL_STATE(2594)] = 165587, - [SMALL_STATE(2595)] = 165609, - [SMALL_STATE(2596)] = 165631, - [SMALL_STATE(2597)] = 165653, - [SMALL_STATE(2598)] = 165675, - [SMALL_STATE(2599)] = 165697, - [SMALL_STATE(2600)] = 165719, - [SMALL_STATE(2601)] = 165741, - [SMALL_STATE(2602)] = 165763, - [SMALL_STATE(2603)] = 165785, - [SMALL_STATE(2604)] = 165807, - [SMALL_STATE(2605)] = 165829, - [SMALL_STATE(2606)] = 165851, - [SMALL_STATE(2607)] = 165873, - [SMALL_STATE(2608)] = 165895, - [SMALL_STATE(2609)] = 165917, - [SMALL_STATE(2610)] = 165939, - [SMALL_STATE(2611)] = 165961, - [SMALL_STATE(2612)] = 165983, - [SMALL_STATE(2613)] = 166005, - [SMALL_STATE(2614)] = 166027, - [SMALL_STATE(2615)] = 166049, - [SMALL_STATE(2616)] = 166071, - [SMALL_STATE(2617)] = 166093, - [SMALL_STATE(2618)] = 166115, - [SMALL_STATE(2619)] = 166137, - [SMALL_STATE(2620)] = 166159, - [SMALL_STATE(2621)] = 166181, - [SMALL_STATE(2622)] = 166203, - [SMALL_STATE(2623)] = 166225, - [SMALL_STATE(2624)] = 166247, - [SMALL_STATE(2625)] = 166269, - [SMALL_STATE(2626)] = 166291, - [SMALL_STATE(2627)] = 166313, - [SMALL_STATE(2628)] = 166335, - [SMALL_STATE(2629)] = 166357, - [SMALL_STATE(2630)] = 166379, - [SMALL_STATE(2631)] = 166401, - [SMALL_STATE(2632)] = 166423, - [SMALL_STATE(2633)] = 166445, - [SMALL_STATE(2634)] = 166467, - [SMALL_STATE(2635)] = 166489, - [SMALL_STATE(2636)] = 166511, - [SMALL_STATE(2637)] = 166533, - [SMALL_STATE(2638)] = 166555, - [SMALL_STATE(2639)] = 166577, - [SMALL_STATE(2640)] = 166599, - [SMALL_STATE(2641)] = 166621, - [SMALL_STATE(2642)] = 166643, - [SMALL_STATE(2643)] = 166665, - [SMALL_STATE(2644)] = 166687, - [SMALL_STATE(2645)] = 166709, - [SMALL_STATE(2646)] = 166731, - [SMALL_STATE(2647)] = 166753, - [SMALL_STATE(2648)] = 166775, - [SMALL_STATE(2649)] = 166797, - [SMALL_STATE(2650)] = 166819, - [SMALL_STATE(2651)] = 166841, - [SMALL_STATE(2652)] = 166863, - [SMALL_STATE(2653)] = 166885, - [SMALL_STATE(2654)] = 166913, - [SMALL_STATE(2655)] = 166935, - [SMALL_STATE(2656)] = 166957, - [SMALL_STATE(2657)] = 166979, - [SMALL_STATE(2658)] = 167001, - [SMALL_STATE(2659)] = 167023, - [SMALL_STATE(2660)] = 167045, - [SMALL_STATE(2661)] = 167067, - [SMALL_STATE(2662)] = 167089, - [SMALL_STATE(2663)] = 167111, - [SMALL_STATE(2664)] = 167133, - [SMALL_STATE(2665)] = 167155, - [SMALL_STATE(2666)] = 167177, - [SMALL_STATE(2667)] = 167199, - [SMALL_STATE(2668)] = 167221, - [SMALL_STATE(2669)] = 167243, - [SMALL_STATE(2670)] = 167265, - [SMALL_STATE(2671)] = 167287, - [SMALL_STATE(2672)] = 167309, - [SMALL_STATE(2673)] = 167331, - [SMALL_STATE(2674)] = 167353, - [SMALL_STATE(2675)] = 167375, - [SMALL_STATE(2676)] = 167397, - [SMALL_STATE(2677)] = 167419, - [SMALL_STATE(2678)] = 167441, - [SMALL_STATE(2679)] = 167463, - [SMALL_STATE(2680)] = 167485, - [SMALL_STATE(2681)] = 167507, - [SMALL_STATE(2682)] = 167529, - [SMALL_STATE(2683)] = 167551, - [SMALL_STATE(2684)] = 167573, - [SMALL_STATE(2685)] = 167595, - [SMALL_STATE(2686)] = 167617, - [SMALL_STATE(2687)] = 167639, - [SMALL_STATE(2688)] = 167661, - [SMALL_STATE(2689)] = 167683, - [SMALL_STATE(2690)] = 167705, - [SMALL_STATE(2691)] = 167727, - [SMALL_STATE(2692)] = 167749, - [SMALL_STATE(2693)] = 167771, - [SMALL_STATE(2694)] = 167793, - [SMALL_STATE(2695)] = 167815, - [SMALL_STATE(2696)] = 167837, - [SMALL_STATE(2697)] = 167859, - [SMALL_STATE(2698)] = 167881, - [SMALL_STATE(2699)] = 167903, - [SMALL_STATE(2700)] = 167925, - [SMALL_STATE(2701)] = 167947, - [SMALL_STATE(2702)] = 167969, - [SMALL_STATE(2703)] = 167991, - [SMALL_STATE(2704)] = 168013, - [SMALL_STATE(2705)] = 168035, - [SMALL_STATE(2706)] = 168057, - [SMALL_STATE(2707)] = 168079, - [SMALL_STATE(2708)] = 168101, - [SMALL_STATE(2709)] = 168123, - [SMALL_STATE(2710)] = 168145, - [SMALL_STATE(2711)] = 168167, - [SMALL_STATE(2712)] = 168189, - [SMALL_STATE(2713)] = 168211, - [SMALL_STATE(2714)] = 168233, - [SMALL_STATE(2715)] = 168255, - [SMALL_STATE(2716)] = 168277, - [SMALL_STATE(2717)] = 168299, - [SMALL_STATE(2718)] = 168321, - [SMALL_STATE(2719)] = 168343, - [SMALL_STATE(2720)] = 168365, - [SMALL_STATE(2721)] = 168387, - [SMALL_STATE(2722)] = 168409, - [SMALL_STATE(2723)] = 168431, - [SMALL_STATE(2724)] = 168453, - [SMALL_STATE(2725)] = 168475, - [SMALL_STATE(2726)] = 168497, - [SMALL_STATE(2727)] = 168519, - [SMALL_STATE(2728)] = 168541, - [SMALL_STATE(2729)] = 168563, - [SMALL_STATE(2730)] = 168585, - [SMALL_STATE(2731)] = 168607, - [SMALL_STATE(2732)] = 168629, - [SMALL_STATE(2733)] = 168651, - [SMALL_STATE(2734)] = 168673, - [SMALL_STATE(2735)] = 168695, - [SMALL_STATE(2736)] = 168717, - [SMALL_STATE(2737)] = 168739, - [SMALL_STATE(2738)] = 168761, - [SMALL_STATE(2739)] = 168783, - [SMALL_STATE(2740)] = 168805, - [SMALL_STATE(2741)] = 168827, - [SMALL_STATE(2742)] = 168849, - [SMALL_STATE(2743)] = 168871, - [SMALL_STATE(2744)] = 168893, - [SMALL_STATE(2745)] = 168915, - [SMALL_STATE(2746)] = 168937, - [SMALL_STATE(2747)] = 168959, - [SMALL_STATE(2748)] = 168981, - [SMALL_STATE(2749)] = 169003, - [SMALL_STATE(2750)] = 169025, - [SMALL_STATE(2751)] = 169047, - [SMALL_STATE(2752)] = 169069, - [SMALL_STATE(2753)] = 169091, - [SMALL_STATE(2754)] = 169113, - [SMALL_STATE(2755)] = 169135, - [SMALL_STATE(2756)] = 169157, - [SMALL_STATE(2757)] = 169173, - [SMALL_STATE(2758)] = 169195, - [SMALL_STATE(2759)] = 169217, - [SMALL_STATE(2760)] = 169239, - [SMALL_STATE(2761)] = 169261, - [SMALL_STATE(2762)] = 169289, - [SMALL_STATE(2763)] = 169317, - [SMALL_STATE(2764)] = 169339, - [SMALL_STATE(2765)] = 169367, - [SMALL_STATE(2766)] = 169395, - [SMALL_STATE(2767)] = 169417, - [SMALL_STATE(2768)] = 169445, - [SMALL_STATE(2769)] = 169473, - [SMALL_STATE(2770)] = 169501, - [SMALL_STATE(2771)] = 169523, - [SMALL_STATE(2772)] = 169545, - [SMALL_STATE(2773)] = 169567, - [SMALL_STATE(2774)] = 169583, - [SMALL_STATE(2775)] = 169611, - [SMALL_STATE(2776)] = 169630, - [SMALL_STATE(2777)] = 169649, - [SMALL_STATE(2778)] = 169668, - [SMALL_STATE(2779)] = 169687, - [SMALL_STATE(2780)] = 169706, - [SMALL_STATE(2781)] = 169725, - [SMALL_STATE(2782)] = 169744, - [SMALL_STATE(2783)] = 169763, - [SMALL_STATE(2784)] = 169782, - [SMALL_STATE(2785)] = 169801, - [SMALL_STATE(2786)] = 169820, - [SMALL_STATE(2787)] = 169839, - [SMALL_STATE(2788)] = 169858, - [SMALL_STATE(2789)] = 169877, - [SMALL_STATE(2790)] = 169896, - [SMALL_STATE(2791)] = 169915, - [SMALL_STATE(2792)] = 169934, - [SMALL_STATE(2793)] = 169953, - [SMALL_STATE(2794)] = 169972, - [SMALL_STATE(2795)] = 169991, - [SMALL_STATE(2796)] = 170010, - [SMALL_STATE(2797)] = 170029, - [SMALL_STATE(2798)] = 170048, - [SMALL_STATE(2799)] = 170067, - [SMALL_STATE(2800)] = 170086, - [SMALL_STATE(2801)] = 170105, - [SMALL_STATE(2802)] = 170124, - [SMALL_STATE(2803)] = 170143, - [SMALL_STATE(2804)] = 170162, - [SMALL_STATE(2805)] = 170181, - [SMALL_STATE(2806)] = 170200, - [SMALL_STATE(2807)] = 170219, - [SMALL_STATE(2808)] = 170238, - [SMALL_STATE(2809)] = 170257, - [SMALL_STATE(2810)] = 170276, - [SMALL_STATE(2811)] = 170295, - [SMALL_STATE(2812)] = 170314, - [SMALL_STATE(2813)] = 170333, - [SMALL_STATE(2814)] = 170352, - [SMALL_STATE(2815)] = 170371, - [SMALL_STATE(2816)] = 170390, - [SMALL_STATE(2817)] = 170409, - [SMALL_STATE(2818)] = 170428, - [SMALL_STATE(2819)] = 170447, - [SMALL_STATE(2820)] = 170466, - [SMALL_STATE(2821)] = 170485, - [SMALL_STATE(2822)] = 170504, - [SMALL_STATE(2823)] = 170523, - [SMALL_STATE(2824)] = 170542, - [SMALL_STATE(2825)] = 170561, - [SMALL_STATE(2826)] = 170580, - [SMALL_STATE(2827)] = 170599, - [SMALL_STATE(2828)] = 170618, - [SMALL_STATE(2829)] = 170637, - [SMALL_STATE(2830)] = 170656, - [SMALL_STATE(2831)] = 170675, - [SMALL_STATE(2832)] = 170694, - [SMALL_STATE(2833)] = 170713, - [SMALL_STATE(2834)] = 170732, - [SMALL_STATE(2835)] = 170751, - [SMALL_STATE(2836)] = 170770, - [SMALL_STATE(2837)] = 170789, - [SMALL_STATE(2838)] = 170808, - [SMALL_STATE(2839)] = 170827, - [SMALL_STATE(2840)] = 170846, - [SMALL_STATE(2841)] = 170865, - [SMALL_STATE(2842)] = 170884, - [SMALL_STATE(2843)] = 170903, - [SMALL_STATE(2844)] = 170922, - [SMALL_STATE(2845)] = 170941, - [SMALL_STATE(2846)] = 170960, - [SMALL_STATE(2847)] = 170979, - [SMALL_STATE(2848)] = 170998, - [SMALL_STATE(2849)] = 171017, - [SMALL_STATE(2850)] = 171036, - [SMALL_STATE(2851)] = 171055, - [SMALL_STATE(2852)] = 171074, - [SMALL_STATE(2853)] = 171093, - [SMALL_STATE(2854)] = 171112, - [SMALL_STATE(2855)] = 171131, - [SMALL_STATE(2856)] = 171150, - [SMALL_STATE(2857)] = 171169, - [SMALL_STATE(2858)] = 171188, - [SMALL_STATE(2859)] = 171207, - [SMALL_STATE(2860)] = 171226, - [SMALL_STATE(2861)] = 171245, - [SMALL_STATE(2862)] = 171264, - [SMALL_STATE(2863)] = 171283, - [SMALL_STATE(2864)] = 171302, - [SMALL_STATE(2865)] = 171321, - [SMALL_STATE(2866)] = 171340, - [SMALL_STATE(2867)] = 171359, - [SMALL_STATE(2868)] = 171378, - [SMALL_STATE(2869)] = 171397, - [SMALL_STATE(2870)] = 171416, - [SMALL_STATE(2871)] = 171435, - [SMALL_STATE(2872)] = 171454, - [SMALL_STATE(2873)] = 171473, - [SMALL_STATE(2874)] = 171492, - [SMALL_STATE(2875)] = 171511, - [SMALL_STATE(2876)] = 171530, - [SMALL_STATE(2877)] = 171549, - [SMALL_STATE(2878)] = 171568, - [SMALL_STATE(2879)] = 171587, - [SMALL_STATE(2880)] = 171606, - [SMALL_STATE(2881)] = 171625, - [SMALL_STATE(2882)] = 171644, - [SMALL_STATE(2883)] = 171663, - [SMALL_STATE(2884)] = 171682, - [SMALL_STATE(2885)] = 171701, - [SMALL_STATE(2886)] = 171720, - [SMALL_STATE(2887)] = 171739, - [SMALL_STATE(2888)] = 171758, - [SMALL_STATE(2889)] = 171777, - [SMALL_STATE(2890)] = 171796, - [SMALL_STATE(2891)] = 171815, - [SMALL_STATE(2892)] = 171834, - [SMALL_STATE(2893)] = 171853, - [SMALL_STATE(2894)] = 171872, - [SMALL_STATE(2895)] = 171891, - [SMALL_STATE(2896)] = 171910, - [SMALL_STATE(2897)] = 171929, - [SMALL_STATE(2898)] = 171948, - [SMALL_STATE(2899)] = 171967, - [SMALL_STATE(2900)] = 171986, - [SMALL_STATE(2901)] = 172005, - [SMALL_STATE(2902)] = 172024, - [SMALL_STATE(2903)] = 172043, - [SMALL_STATE(2904)] = 172062, - [SMALL_STATE(2905)] = 172081, - [SMALL_STATE(2906)] = 172100, - [SMALL_STATE(2907)] = 172119, - [SMALL_STATE(2908)] = 172138, - [SMALL_STATE(2909)] = 172157, - [SMALL_STATE(2910)] = 172176, - [SMALL_STATE(2911)] = 172195, - [SMALL_STATE(2912)] = 172214, - [SMALL_STATE(2913)] = 172233, - [SMALL_STATE(2914)] = 172252, - [SMALL_STATE(2915)] = 172271, - [SMALL_STATE(2916)] = 172290, - [SMALL_STATE(2917)] = 172309, - [SMALL_STATE(2918)] = 172328, - [SMALL_STATE(2919)] = 172347, - [SMALL_STATE(2920)] = 172366, - [SMALL_STATE(2921)] = 172385, - [SMALL_STATE(2922)] = 172404, - [SMALL_STATE(2923)] = 172423, - [SMALL_STATE(2924)] = 172442, - [SMALL_STATE(2925)] = 172461, - [SMALL_STATE(2926)] = 172480, - [SMALL_STATE(2927)] = 172499, - [SMALL_STATE(2928)] = 172518, - [SMALL_STATE(2929)] = 172537, - [SMALL_STATE(2930)] = 172556, - [SMALL_STATE(2931)] = 172575, - [SMALL_STATE(2932)] = 172594, - [SMALL_STATE(2933)] = 172613, - [SMALL_STATE(2934)] = 172632, - [SMALL_STATE(2935)] = 172651, - [SMALL_STATE(2936)] = 172670, - [SMALL_STATE(2937)] = 172689, - [SMALL_STATE(2938)] = 172708, - [SMALL_STATE(2939)] = 172727, - [SMALL_STATE(2940)] = 172746, - [SMALL_STATE(2941)] = 172765, - [SMALL_STATE(2942)] = 172784, - [SMALL_STATE(2943)] = 172803, - [SMALL_STATE(2944)] = 172822, - [SMALL_STATE(2945)] = 172841, - [SMALL_STATE(2946)] = 172860, - [SMALL_STATE(2947)] = 172879, - [SMALL_STATE(2948)] = 172898, - [SMALL_STATE(2949)] = 172917, - [SMALL_STATE(2950)] = 172936, - [SMALL_STATE(2951)] = 172955, - [SMALL_STATE(2952)] = 172974, - [SMALL_STATE(2953)] = 172993, - [SMALL_STATE(2954)] = 173012, - [SMALL_STATE(2955)] = 173031, - [SMALL_STATE(2956)] = 173050, - [SMALL_STATE(2957)] = 173069, - [SMALL_STATE(2958)] = 173088, - [SMALL_STATE(2959)] = 173107, - [SMALL_STATE(2960)] = 173126, - [SMALL_STATE(2961)] = 173145, - [SMALL_STATE(2962)] = 173164, - [SMALL_STATE(2963)] = 173183, - [SMALL_STATE(2964)] = 173202, - [SMALL_STATE(2965)] = 173221, - [SMALL_STATE(2966)] = 173240, - [SMALL_STATE(2967)] = 173259, - [SMALL_STATE(2968)] = 173278, - [SMALL_STATE(2969)] = 173297, - [SMALL_STATE(2970)] = 173316, - [SMALL_STATE(2971)] = 173335, - [SMALL_STATE(2972)] = 173354, - [SMALL_STATE(2973)] = 173373, - [SMALL_STATE(2974)] = 173392, - [SMALL_STATE(2975)] = 173411, - [SMALL_STATE(2976)] = 173430, - [SMALL_STATE(2977)] = 173449, - [SMALL_STATE(2978)] = 173468, - [SMALL_STATE(2979)] = 173487, - [SMALL_STATE(2980)] = 173506, - [SMALL_STATE(2981)] = 173525, - [SMALL_STATE(2982)] = 173544, - [SMALL_STATE(2983)] = 173563, - [SMALL_STATE(2984)] = 173582, - [SMALL_STATE(2985)] = 173601, - [SMALL_STATE(2986)] = 173620, - [SMALL_STATE(2987)] = 173639, - [SMALL_STATE(2988)] = 173658, - [SMALL_STATE(2989)] = 173677, - [SMALL_STATE(2990)] = 173696, - [SMALL_STATE(2991)] = 173715, - [SMALL_STATE(2992)] = 173734, - [SMALL_STATE(2993)] = 173753, - [SMALL_STATE(2994)] = 173772, - [SMALL_STATE(2995)] = 173791, - [SMALL_STATE(2996)] = 173810, - [SMALL_STATE(2997)] = 173829, - [SMALL_STATE(2998)] = 173848, - [SMALL_STATE(2999)] = 173867, - [SMALL_STATE(3000)] = 173886, - [SMALL_STATE(3001)] = 173905, - [SMALL_STATE(3002)] = 173924, - [SMALL_STATE(3003)] = 173943, - [SMALL_STATE(3004)] = 173962, - [SMALL_STATE(3005)] = 173981, - [SMALL_STATE(3006)] = 174000, - [SMALL_STATE(3007)] = 174019, - [SMALL_STATE(3008)] = 174038, - [SMALL_STATE(3009)] = 174057, - [SMALL_STATE(3010)] = 174076, - [SMALL_STATE(3011)] = 174095, - [SMALL_STATE(3012)] = 174114, - [SMALL_STATE(3013)] = 174133, - [SMALL_STATE(3014)] = 174152, - [SMALL_STATE(3015)] = 174171, - [SMALL_STATE(3016)] = 174190, - [SMALL_STATE(3017)] = 174209, - [SMALL_STATE(3018)] = 174228, - [SMALL_STATE(3019)] = 174247, - [SMALL_STATE(3020)] = 174266, - [SMALL_STATE(3021)] = 174285, - [SMALL_STATE(3022)] = 174304, - [SMALL_STATE(3023)] = 174323, - [SMALL_STATE(3024)] = 174342, - [SMALL_STATE(3025)] = 174361, - [SMALL_STATE(3026)] = 174380, - [SMALL_STATE(3027)] = 174399, - [SMALL_STATE(3028)] = 174418, - [SMALL_STATE(3029)] = 174437, - [SMALL_STATE(3030)] = 174456, - [SMALL_STATE(3031)] = 174475, - [SMALL_STATE(3032)] = 174494, - [SMALL_STATE(3033)] = 174513, - [SMALL_STATE(3034)] = 174532, - [SMALL_STATE(3035)] = 174551, - [SMALL_STATE(3036)] = 174570, - [SMALL_STATE(3037)] = 174589, - [SMALL_STATE(3038)] = 174608, - [SMALL_STATE(3039)] = 174627, - [SMALL_STATE(3040)] = 174646, - [SMALL_STATE(3041)] = 174665, - [SMALL_STATE(3042)] = 174684, - [SMALL_STATE(3043)] = 174703, - [SMALL_STATE(3044)] = 174722, - [SMALL_STATE(3045)] = 174741, - [SMALL_STATE(3046)] = 174760, - [SMALL_STATE(3047)] = 174779, - [SMALL_STATE(3048)] = 174798, - [SMALL_STATE(3049)] = 174817, - [SMALL_STATE(3050)] = 174836, - [SMALL_STATE(3051)] = 174855, - [SMALL_STATE(3052)] = 174874, - [SMALL_STATE(3053)] = 174893, - [SMALL_STATE(3054)] = 174912, - [SMALL_STATE(3055)] = 174931, - [SMALL_STATE(3056)] = 174950, - [SMALL_STATE(3057)] = 174969, - [SMALL_STATE(3058)] = 174988, - [SMALL_STATE(3059)] = 175007, - [SMALL_STATE(3060)] = 175026, - [SMALL_STATE(3061)] = 175045, - [SMALL_STATE(3062)] = 175064, - [SMALL_STATE(3063)] = 175083, - [SMALL_STATE(3064)] = 175102, - [SMALL_STATE(3065)] = 175121, - [SMALL_STATE(3066)] = 175140, - [SMALL_STATE(3067)] = 175159, - [SMALL_STATE(3068)] = 175178, - [SMALL_STATE(3069)] = 175197, - [SMALL_STATE(3070)] = 175216, - [SMALL_STATE(3071)] = 175235, - [SMALL_STATE(3072)] = 175254, - [SMALL_STATE(3073)] = 175273, - [SMALL_STATE(3074)] = 175292, - [SMALL_STATE(3075)] = 175311, - [SMALL_STATE(3076)] = 175330, - [SMALL_STATE(3077)] = 175349, - [SMALL_STATE(3078)] = 175368, - [SMALL_STATE(3079)] = 175387, - [SMALL_STATE(3080)] = 175406, - [SMALL_STATE(3081)] = 175425, - [SMALL_STATE(3082)] = 175444, - [SMALL_STATE(3083)] = 175463, - [SMALL_STATE(3084)] = 175482, - [SMALL_STATE(3085)] = 175501, - [SMALL_STATE(3086)] = 175520, - [SMALL_STATE(3087)] = 175539, - [SMALL_STATE(3088)] = 175558, - [SMALL_STATE(3089)] = 175577, - [SMALL_STATE(3090)] = 175596, - [SMALL_STATE(3091)] = 175615, - [SMALL_STATE(3092)] = 175634, - [SMALL_STATE(3093)] = 175653, - [SMALL_STATE(3094)] = 175672, - [SMALL_STATE(3095)] = 175691, - [SMALL_STATE(3096)] = 175710, - [SMALL_STATE(3097)] = 175729, - [SMALL_STATE(3098)] = 175748, - [SMALL_STATE(3099)] = 175767, - [SMALL_STATE(3100)] = 175786, - [SMALL_STATE(3101)] = 175805, - [SMALL_STATE(3102)] = 175824, - [SMALL_STATE(3103)] = 175843, - [SMALL_STATE(3104)] = 175862, - [SMALL_STATE(3105)] = 175881, - [SMALL_STATE(3106)] = 175900, - [SMALL_STATE(3107)] = 175919, - [SMALL_STATE(3108)] = 175938, - [SMALL_STATE(3109)] = 175957, - [SMALL_STATE(3110)] = 175976, - [SMALL_STATE(3111)] = 175995, - [SMALL_STATE(3112)] = 176014, - [SMALL_STATE(3113)] = 176033, - [SMALL_STATE(3114)] = 176052, - [SMALL_STATE(3115)] = 176071, - [SMALL_STATE(3116)] = 176090, - [SMALL_STATE(3117)] = 176109, - [SMALL_STATE(3118)] = 176128, - [SMALL_STATE(3119)] = 176147, - [SMALL_STATE(3120)] = 176166, - [SMALL_STATE(3121)] = 176185, - [SMALL_STATE(3122)] = 176204, - [SMALL_STATE(3123)] = 176223, - [SMALL_STATE(3124)] = 176242, - [SMALL_STATE(3125)] = 176261, - [SMALL_STATE(3126)] = 176280, - [SMALL_STATE(3127)] = 176299, - [SMALL_STATE(3128)] = 176318, - [SMALL_STATE(3129)] = 176337, - [SMALL_STATE(3130)] = 176356, - [SMALL_STATE(3131)] = 176375, - [SMALL_STATE(3132)] = 176394, - [SMALL_STATE(3133)] = 176413, - [SMALL_STATE(3134)] = 176432, - [SMALL_STATE(3135)] = 176451, - [SMALL_STATE(3136)] = 176470, - [SMALL_STATE(3137)] = 176489, - [SMALL_STATE(3138)] = 176508, - [SMALL_STATE(3139)] = 176527, - [SMALL_STATE(3140)] = 176546, - [SMALL_STATE(3141)] = 176565, - [SMALL_STATE(3142)] = 176584, - [SMALL_STATE(3143)] = 176603, - [SMALL_STATE(3144)] = 176622, - [SMALL_STATE(3145)] = 176641, - [SMALL_STATE(3146)] = 176660, - [SMALL_STATE(3147)] = 176679, - [SMALL_STATE(3148)] = 176698, - [SMALL_STATE(3149)] = 176717, - [SMALL_STATE(3150)] = 176736, - [SMALL_STATE(3151)] = 176755, - [SMALL_STATE(3152)] = 176774, - [SMALL_STATE(3153)] = 176793, - [SMALL_STATE(3154)] = 176812, - [SMALL_STATE(3155)] = 176831, - [SMALL_STATE(3156)] = 176850, - [SMALL_STATE(3157)] = 176869, - [SMALL_STATE(3158)] = 176888, - [SMALL_STATE(3159)] = 176907, - [SMALL_STATE(3160)] = 176926, - [SMALL_STATE(3161)] = 176945, - [SMALL_STATE(3162)] = 176964, - [SMALL_STATE(3163)] = 176983, - [SMALL_STATE(3164)] = 177002, - [SMALL_STATE(3165)] = 177021, - [SMALL_STATE(3166)] = 177040, - [SMALL_STATE(3167)] = 177059, - [SMALL_STATE(3168)] = 177078, - [SMALL_STATE(3169)] = 177097, - [SMALL_STATE(3170)] = 177116, - [SMALL_STATE(3171)] = 177135, - [SMALL_STATE(3172)] = 177154, - [SMALL_STATE(3173)] = 177173, - [SMALL_STATE(3174)] = 177192, - [SMALL_STATE(3175)] = 177211, - [SMALL_STATE(3176)] = 177230, - [SMALL_STATE(3177)] = 177249, - [SMALL_STATE(3178)] = 177268, - [SMALL_STATE(3179)] = 177287, - [SMALL_STATE(3180)] = 177306, - [SMALL_STATE(3181)] = 177325, - [SMALL_STATE(3182)] = 177344, - [SMALL_STATE(3183)] = 177363, - [SMALL_STATE(3184)] = 177382, - [SMALL_STATE(3185)] = 177401, - [SMALL_STATE(3186)] = 177420, - [SMALL_STATE(3187)] = 177439, - [SMALL_STATE(3188)] = 177458, - [SMALL_STATE(3189)] = 177477, - [SMALL_STATE(3190)] = 177496, - [SMALL_STATE(3191)] = 177515, - [SMALL_STATE(3192)] = 177534, - [SMALL_STATE(3193)] = 177553, - [SMALL_STATE(3194)] = 177572, - [SMALL_STATE(3195)] = 177591, - [SMALL_STATE(3196)] = 177610, - [SMALL_STATE(3197)] = 177629, - [SMALL_STATE(3198)] = 177648, - [SMALL_STATE(3199)] = 177667, - [SMALL_STATE(3200)] = 177686, - [SMALL_STATE(3201)] = 177705, - [SMALL_STATE(3202)] = 177724, - [SMALL_STATE(3203)] = 177743, - [SMALL_STATE(3204)] = 177762, - [SMALL_STATE(3205)] = 177781, - [SMALL_STATE(3206)] = 177800, - [SMALL_STATE(3207)] = 177819, - [SMALL_STATE(3208)] = 177838, - [SMALL_STATE(3209)] = 177857, - [SMALL_STATE(3210)] = 177876, - [SMALL_STATE(3211)] = 177895, - [SMALL_STATE(3212)] = 177914, - [SMALL_STATE(3213)] = 177933, - [SMALL_STATE(3214)] = 177952, - [SMALL_STATE(3215)] = 177971, - [SMALL_STATE(3216)] = 177990, - [SMALL_STATE(3217)] = 178009, - [SMALL_STATE(3218)] = 178028, - [SMALL_STATE(3219)] = 178047, - [SMALL_STATE(3220)] = 178066, - [SMALL_STATE(3221)] = 178085, - [SMALL_STATE(3222)] = 178104, - [SMALL_STATE(3223)] = 178123, - [SMALL_STATE(3224)] = 178142, - [SMALL_STATE(3225)] = 178161, - [SMALL_STATE(3226)] = 178180, - [SMALL_STATE(3227)] = 178199, - [SMALL_STATE(3228)] = 178218, - [SMALL_STATE(3229)] = 178237, - [SMALL_STATE(3230)] = 178256, - [SMALL_STATE(3231)] = 178275, - [SMALL_STATE(3232)] = 178294, - [SMALL_STATE(3233)] = 178313, - [SMALL_STATE(3234)] = 178332, - [SMALL_STATE(3235)] = 178351, - [SMALL_STATE(3236)] = 178369, - [SMALL_STATE(3237)] = 178387, - [SMALL_STATE(3238)] = 178405, - [SMALL_STATE(3239)] = 178423, - [SMALL_STATE(3240)] = 178441, - [SMALL_STATE(3241)] = 178459, - [SMALL_STATE(3242)] = 178477, - [SMALL_STATE(3243)] = 178495, - [SMALL_STATE(3244)] = 178513, - [SMALL_STATE(3245)] = 178531, - [SMALL_STATE(3246)] = 178549, - [SMALL_STATE(3247)] = 178567, - [SMALL_STATE(3248)] = 178585, - [SMALL_STATE(3249)] = 178603, - [SMALL_STATE(3250)] = 178621, - [SMALL_STATE(3251)] = 178639, - [SMALL_STATE(3252)] = 178657, - [SMALL_STATE(3253)] = 178675, - [SMALL_STATE(3254)] = 178693, - [SMALL_STATE(3255)] = 178711, - [SMALL_STATE(3256)] = 178729, - [SMALL_STATE(3257)] = 178747, - [SMALL_STATE(3258)] = 178765, - [SMALL_STATE(3259)] = 178783, - [SMALL_STATE(3260)] = 178801, - [SMALL_STATE(3261)] = 178819, - [SMALL_STATE(3262)] = 178837, - [SMALL_STATE(3263)] = 178855, - [SMALL_STATE(3264)] = 178873, - [SMALL_STATE(3265)] = 178891, - [SMALL_STATE(3266)] = 178909, - [SMALL_STATE(3267)] = 178927, - [SMALL_STATE(3268)] = 178945, - [SMALL_STATE(3269)] = 178963, - [SMALL_STATE(3270)] = 178981, - [SMALL_STATE(3271)] = 178999, - [SMALL_STATE(3272)] = 179017, - [SMALL_STATE(3273)] = 179035, - [SMALL_STATE(3274)] = 179053, - [SMALL_STATE(3275)] = 179071, - [SMALL_STATE(3276)] = 179089, - [SMALL_STATE(3277)] = 179107, - [SMALL_STATE(3278)] = 179125, - [SMALL_STATE(3279)] = 179143, - [SMALL_STATE(3280)] = 179161, - [SMALL_STATE(3281)] = 179179, - [SMALL_STATE(3282)] = 179197, - [SMALL_STATE(3283)] = 179215, - [SMALL_STATE(3284)] = 179233, - [SMALL_STATE(3285)] = 179251, - [SMALL_STATE(3286)] = 179269, - [SMALL_STATE(3287)] = 179287, - [SMALL_STATE(3288)] = 179305, - [SMALL_STATE(3289)] = 179323, - [SMALL_STATE(3290)] = 179341, - [SMALL_STATE(3291)] = 179359, - [SMALL_STATE(3292)] = 179377, - [SMALL_STATE(3293)] = 179395, - [SMALL_STATE(3294)] = 179413, - [SMALL_STATE(3295)] = 179431, - [SMALL_STATE(3296)] = 179449, - [SMALL_STATE(3297)] = 179467, - [SMALL_STATE(3298)] = 179485, - [SMALL_STATE(3299)] = 179503, - [SMALL_STATE(3300)] = 179521, - [SMALL_STATE(3301)] = 179539, - [SMALL_STATE(3302)] = 179557, - [SMALL_STATE(3303)] = 179575, - [SMALL_STATE(3304)] = 179593, - [SMALL_STATE(3305)] = 179611, - [SMALL_STATE(3306)] = 179629, - [SMALL_STATE(3307)] = 179649, - [SMALL_STATE(3308)] = 179667, - [SMALL_STATE(3309)] = 179685, - [SMALL_STATE(3310)] = 179703, - [SMALL_STATE(3311)] = 179721, - [SMALL_STATE(3312)] = 179739, - [SMALL_STATE(3313)] = 179757, - [SMALL_STATE(3314)] = 179775, - [SMALL_STATE(3315)] = 179793, - [SMALL_STATE(3316)] = 179811, - [SMALL_STATE(3317)] = 179829, - [SMALL_STATE(3318)] = 179847, - [SMALL_STATE(3319)] = 179865, - [SMALL_STATE(3320)] = 179883, - [SMALL_STATE(3321)] = 179901, - [SMALL_STATE(3322)] = 179919, - [SMALL_STATE(3323)] = 179937, - [SMALL_STATE(3324)] = 179955, - [SMALL_STATE(3325)] = 179973, - [SMALL_STATE(3326)] = 179991, - [SMALL_STATE(3327)] = 180009, - [SMALL_STATE(3328)] = 180027, - [SMALL_STATE(3329)] = 180045, - [SMALL_STATE(3330)] = 180063, - [SMALL_STATE(3331)] = 180081, - [SMALL_STATE(3332)] = 180099, - [SMALL_STATE(3333)] = 180117, - [SMALL_STATE(3334)] = 180135, - [SMALL_STATE(3335)] = 180153, - [SMALL_STATE(3336)] = 180171, - [SMALL_STATE(3337)] = 180189, - [SMALL_STATE(3338)] = 180207, - [SMALL_STATE(3339)] = 180225, - [SMALL_STATE(3340)] = 180243, - [SMALL_STATE(3341)] = 180261, - [SMALL_STATE(3342)] = 180279, - [SMALL_STATE(3343)] = 180297, - [SMALL_STATE(3344)] = 180315, - [SMALL_STATE(3345)] = 180333, - [SMALL_STATE(3346)] = 180351, - [SMALL_STATE(3347)] = 180369, - [SMALL_STATE(3348)] = 180387, - [SMALL_STATE(3349)] = 180405, - [SMALL_STATE(3350)] = 180418, - [SMALL_STATE(3351)] = 180431, - [SMALL_STATE(3352)] = 180448, - [SMALL_STATE(3353)] = 180461, - [SMALL_STATE(3354)] = 180474, - [SMALL_STATE(3355)] = 180487, - [SMALL_STATE(3356)] = 180504, - [SMALL_STATE(3357)] = 180523, - [SMALL_STATE(3358)] = 180536, - [SMALL_STATE(3359)] = 180549, - [SMALL_STATE(3360)] = 180562, - [SMALL_STATE(3361)] = 180575, - [SMALL_STATE(3362)] = 180588, - [SMALL_STATE(3363)] = 180598, - [SMALL_STATE(3364)] = 180608, - [SMALL_STATE(3365)] = 180618, - [SMALL_STATE(3366)] = 180628, - [SMALL_STATE(3367)] = 180638, - [SMALL_STATE(3368)] = 180648, - [SMALL_STATE(3369)] = 180658, - [SMALL_STATE(3370)] = 180668, - [SMALL_STATE(3371)] = 180680, - [SMALL_STATE(3372)] = 180690, - [SMALL_STATE(3373)] = 180703, - [SMALL_STATE(3374)] = 180716, - [SMALL_STATE(3375)] = 180729, - [SMALL_STATE(3376)] = 180742, - [SMALL_STATE(3377)] = 180755, - [SMALL_STATE(3378)] = 180768, - [SMALL_STATE(3379)] = 180781, - [SMALL_STATE(3380)] = 180794, - [SMALL_STATE(3381)] = 180807, - [SMALL_STATE(3382)] = 180820, - [SMALL_STATE(3383)] = 180833, - [SMALL_STATE(3384)] = 180843, - [SMALL_STATE(3385)] = 180853, - [SMALL_STATE(3386)] = 180863, - [SMALL_STATE(3387)] = 180873, - [SMALL_STATE(3388)] = 180883, - [SMALL_STATE(3389)] = 180893, - [SMALL_STATE(3390)] = 180903, - [SMALL_STATE(3391)] = 180913, - [SMALL_STATE(3392)] = 180923, - [SMALL_STATE(3393)] = 180933, - [SMALL_STATE(3394)] = 180943, - [SMALL_STATE(3395)] = 180953, - [SMALL_STATE(3396)] = 180963, - [SMALL_STATE(3397)] = 180973, - [SMALL_STATE(3398)] = 180983, - [SMALL_STATE(3399)] = 180993, - [SMALL_STATE(3400)] = 181003, - [SMALL_STATE(3401)] = 181013, - [SMALL_STATE(3402)] = 181023, - [SMALL_STATE(3403)] = 181033, - [SMALL_STATE(3404)] = 181043, - [SMALL_STATE(3405)] = 181053, - [SMALL_STATE(3406)] = 181063, - [SMALL_STATE(3407)] = 181073, - [SMALL_STATE(3408)] = 181083, - [SMALL_STATE(3409)] = 181093, - [SMALL_STATE(3410)] = 181103, - [SMALL_STATE(3411)] = 181113, - [SMALL_STATE(3412)] = 181123, - [SMALL_STATE(3413)] = 181133, - [SMALL_STATE(3414)] = 181143, - [SMALL_STATE(3415)] = 181153, - [SMALL_STATE(3416)] = 181163, - [SMALL_STATE(3417)] = 181173, - [SMALL_STATE(3418)] = 181183, - [SMALL_STATE(3419)] = 181193, - [SMALL_STATE(3420)] = 181203, - [SMALL_STATE(3421)] = 181213, - [SMALL_STATE(3422)] = 181223, - [SMALL_STATE(3423)] = 181233, - [SMALL_STATE(3424)] = 181243, - [SMALL_STATE(3425)] = 181253, - [SMALL_STATE(3426)] = 181263, - [SMALL_STATE(3427)] = 181273, - [SMALL_STATE(3428)] = 181283, - [SMALL_STATE(3429)] = 181293, - [SMALL_STATE(3430)] = 181303, - [SMALL_STATE(3431)] = 181313, - [SMALL_STATE(3432)] = 181323, - [SMALL_STATE(3433)] = 181333, - [SMALL_STATE(3434)] = 181343, - [SMALL_STATE(3435)] = 181353, - [SMALL_STATE(3436)] = 181360, - [SMALL_STATE(3437)] = 181367, - [SMALL_STATE(3438)] = 181374, - [SMALL_STATE(3439)] = 181381, - [SMALL_STATE(3440)] = 181388, - [SMALL_STATE(3441)] = 181395, - [SMALL_STATE(3442)] = 181402, - [SMALL_STATE(3443)] = 181409, - [SMALL_STATE(3444)] = 181416, - [SMALL_STATE(3445)] = 181423, - [SMALL_STATE(3446)] = 181430, - [SMALL_STATE(3447)] = 181437, - [SMALL_STATE(3448)] = 181444, - [SMALL_STATE(3449)] = 181451, - [SMALL_STATE(3450)] = 181458, - [SMALL_STATE(3451)] = 181465, - [SMALL_STATE(3452)] = 181472, - [SMALL_STATE(3453)] = 181479, - [SMALL_STATE(3454)] = 181486, - [SMALL_STATE(3455)] = 181493, - [SMALL_STATE(3456)] = 181500, - [SMALL_STATE(3457)] = 181507, - [SMALL_STATE(3458)] = 181514, - [SMALL_STATE(3459)] = 181521, - [SMALL_STATE(3460)] = 181528, - [SMALL_STATE(3461)] = 181535, - [SMALL_STATE(3462)] = 181542, - [SMALL_STATE(3463)] = 181549, - [SMALL_STATE(3464)] = 181556, - [SMALL_STATE(3465)] = 181563, - [SMALL_STATE(3466)] = 181570, - [SMALL_STATE(3467)] = 181577, - [SMALL_STATE(3468)] = 181584, - [SMALL_STATE(3469)] = 181591, - [SMALL_STATE(3470)] = 181598, - [SMALL_STATE(3471)] = 181605, - [SMALL_STATE(3472)] = 181612, - [SMALL_STATE(3473)] = 181619, - [SMALL_STATE(3474)] = 181626, - [SMALL_STATE(3475)] = 181633, - [SMALL_STATE(3476)] = 181640, - [SMALL_STATE(3477)] = 181647, - [SMALL_STATE(3478)] = 181654, - [SMALL_STATE(3479)] = 181661, - [SMALL_STATE(3480)] = 181668, - [SMALL_STATE(3481)] = 181675, - [SMALL_STATE(3482)] = 181682, - [SMALL_STATE(3483)] = 181689, - [SMALL_STATE(3484)] = 181696, - [SMALL_STATE(3485)] = 181703, - [SMALL_STATE(3486)] = 181710, - [SMALL_STATE(3487)] = 181717, - [SMALL_STATE(3488)] = 181724, - [SMALL_STATE(3489)] = 181731, - [SMALL_STATE(3490)] = 181738, - [SMALL_STATE(3491)] = 181745, - [SMALL_STATE(3492)] = 181752, - [SMALL_STATE(3493)] = 181759, - [SMALL_STATE(3494)] = 181766, - [SMALL_STATE(3495)] = 181773, - [SMALL_STATE(3496)] = 181780, - [SMALL_STATE(3497)] = 181787, - [SMALL_STATE(3498)] = 181794, - [SMALL_STATE(3499)] = 181801, - [SMALL_STATE(3500)] = 181808, - [SMALL_STATE(3501)] = 181815, - [SMALL_STATE(3502)] = 181822, - [SMALL_STATE(3503)] = 181829, - [SMALL_STATE(3504)] = 181836, - [SMALL_STATE(3505)] = 181843, - [SMALL_STATE(3506)] = 181850, - [SMALL_STATE(3507)] = 181857, - [SMALL_STATE(3508)] = 181864, + [SMALL_STATE(931)] = 94477, + [SMALL_STATE(932)] = 94537, + [SMALL_STATE(933)] = 94597, + [SMALL_STATE(934)] = 94657, + [SMALL_STATE(935)] = 94717, + [SMALL_STATE(936)] = 94777, + [SMALL_STATE(937)] = 94837, + [SMALL_STATE(938)] = 94897, + [SMALL_STATE(939)] = 94957, + [SMALL_STATE(940)] = 95017, + [SMALL_STATE(941)] = 95077, + [SMALL_STATE(942)] = 95142, + [SMALL_STATE(943)] = 95217, + [SMALL_STATE(944)] = 95292, + [SMALL_STATE(945)] = 95367, + [SMALL_STATE(946)] = 95442, + [SMALL_STATE(947)] = 95517, + [SMALL_STATE(948)] = 95592, + [SMALL_STATE(949)] = 95667, + [SMALL_STATE(950)] = 95742, + [SMALL_STATE(951)] = 95817, + [SMALL_STATE(952)] = 95892, + [SMALL_STATE(953)] = 95951, + [SMALL_STATE(954)] = 96026, + [SMALL_STATE(955)] = 96101, + [SMALL_STATE(956)] = 96176, + [SMALL_STATE(957)] = 96251, + [SMALL_STATE(958)] = 96326, + [SMALL_STATE(959)] = 96401, + [SMALL_STATE(960)] = 96476, + [SMALL_STATE(961)] = 96551, + [SMALL_STATE(962)] = 96626, + [SMALL_STATE(963)] = 96682, + [SMALL_STATE(964)] = 96738, + [SMALL_STATE(965)] = 96840, + [SMALL_STATE(966)] = 96942, + [SMALL_STATE(967)] = 96998, + [SMALL_STATE(968)] = 97100, + [SMALL_STATE(969)] = 97156, + [SMALL_STATE(970)] = 97258, + [SMALL_STATE(971)] = 97360, + [SMALL_STATE(972)] = 97462, + [SMALL_STATE(973)] = 97564, + [SMALL_STATE(974)] = 97620, + [SMALL_STATE(975)] = 97676, + [SMALL_STATE(976)] = 97732, + [SMALL_STATE(977)] = 97834, + [SMALL_STATE(978)] = 97890, + [SMALL_STATE(979)] = 97946, + [SMALL_STATE(980)] = 98048, + [SMALL_STATE(981)] = 98150, + [SMALL_STATE(982)] = 98206, + [SMALL_STATE(983)] = 98308, + [SMALL_STATE(984)] = 98364, + [SMALL_STATE(985)] = 98420, + [SMALL_STATE(986)] = 98476, + [SMALL_STATE(987)] = 98532, + [SMALL_STATE(988)] = 98588, + [SMALL_STATE(989)] = 98690, + [SMALL_STATE(990)] = 98746, + [SMALL_STATE(991)] = 98802, + [SMALL_STATE(992)] = 98858, + [SMALL_STATE(993)] = 98914, + [SMALL_STATE(994)] = 99016, + [SMALL_STATE(995)] = 99118, + [SMALL_STATE(996)] = 99220, + [SMALL_STATE(997)] = 99276, + [SMALL_STATE(998)] = 99378, + [SMALL_STATE(999)] = 99434, + [SMALL_STATE(1000)] = 99536, + [SMALL_STATE(1001)] = 99592, + [SMALL_STATE(1002)] = 99694, + [SMALL_STATE(1003)] = 99796, + [SMALL_STATE(1004)] = 99852, + [SMALL_STATE(1005)] = 99954, + [SMALL_STATE(1006)] = 100010, + [SMALL_STATE(1007)] = 100112, + [SMALL_STATE(1008)] = 100168, + [SMALL_STATE(1009)] = 100224, + [SMALL_STATE(1010)] = 100326, + [SMALL_STATE(1011)] = 100428, + [SMALL_STATE(1012)] = 100484, + [SMALL_STATE(1013)] = 100540, + [SMALL_STATE(1014)] = 100642, + [SMALL_STATE(1015)] = 100698, + [SMALL_STATE(1016)] = 100754, + [SMALL_STATE(1017)] = 100810, + [SMALL_STATE(1018)] = 100866, + [SMALL_STATE(1019)] = 100922, + [SMALL_STATE(1020)] = 100978, + [SMALL_STATE(1021)] = 101034, + [SMALL_STATE(1022)] = 101136, + [SMALL_STATE(1023)] = 101192, + [SMALL_STATE(1024)] = 101248, + [SMALL_STATE(1025)] = 101304, + [SMALL_STATE(1026)] = 101360, + [SMALL_STATE(1027)] = 101416, + [SMALL_STATE(1028)] = 101472, + [SMALL_STATE(1029)] = 101528, + [SMALL_STATE(1030)] = 101584, + [SMALL_STATE(1031)] = 101640, + [SMALL_STATE(1032)] = 101696, + [SMALL_STATE(1033)] = 101752, + [SMALL_STATE(1034)] = 101808, + [SMALL_STATE(1035)] = 101864, + [SMALL_STATE(1036)] = 101920, + [SMALL_STATE(1037)] = 101976, + [SMALL_STATE(1038)] = 102032, + [SMALL_STATE(1039)] = 102088, + [SMALL_STATE(1040)] = 102144, + [SMALL_STATE(1041)] = 102200, + [SMALL_STATE(1042)] = 102256, + [SMALL_STATE(1043)] = 102312, + [SMALL_STATE(1044)] = 102368, + [SMALL_STATE(1045)] = 102424, + [SMALL_STATE(1046)] = 102526, + [SMALL_STATE(1047)] = 102628, + [SMALL_STATE(1048)] = 102730, + [SMALL_STATE(1049)] = 102786, + [SMALL_STATE(1050)] = 102842, + [SMALL_STATE(1051)] = 102944, + [SMALL_STATE(1052)] = 103046, + [SMALL_STATE(1053)] = 103102, + [SMALL_STATE(1054)] = 103158, + [SMALL_STATE(1055)] = 103214, + [SMALL_STATE(1056)] = 103270, + [SMALL_STATE(1057)] = 103372, + [SMALL_STATE(1058)] = 103428, + [SMALL_STATE(1059)] = 103530, + [SMALL_STATE(1060)] = 103632, + [SMALL_STATE(1061)] = 103688, + [SMALL_STATE(1062)] = 103744, + [SMALL_STATE(1063)] = 103800, + [SMALL_STATE(1064)] = 103856, + [SMALL_STATE(1065)] = 103912, + [SMALL_STATE(1066)] = 104014, + [SMALL_STATE(1067)] = 104070, + [SMALL_STATE(1068)] = 104126, + [SMALL_STATE(1069)] = 104186, + [SMALL_STATE(1070)] = 104242, + [SMALL_STATE(1071)] = 104298, + [SMALL_STATE(1072)] = 104354, + [SMALL_STATE(1073)] = 104410, + [SMALL_STATE(1074)] = 104466, + [SMALL_STATE(1075)] = 104526, + [SMALL_STATE(1076)] = 104586, + [SMALL_STATE(1077)] = 104642, + [SMALL_STATE(1078)] = 104698, + [SMALL_STATE(1079)] = 104754, + [SMALL_STATE(1080)] = 104810, + [SMALL_STATE(1081)] = 104866, + [SMALL_STATE(1082)] = 104922, + [SMALL_STATE(1083)] = 104978, + [SMALL_STATE(1084)] = 105034, + [SMALL_STATE(1085)] = 105090, + [SMALL_STATE(1086)] = 105146, + [SMALL_STATE(1087)] = 105202, + [SMALL_STATE(1088)] = 105258, + [SMALL_STATE(1089)] = 105314, + [SMALL_STATE(1090)] = 105370, + [SMALL_STATE(1091)] = 105472, + [SMALL_STATE(1092)] = 105574, + [SMALL_STATE(1093)] = 105676, + [SMALL_STATE(1094)] = 105732, + [SMALL_STATE(1095)] = 105788, + [SMALL_STATE(1096)] = 105844, + [SMALL_STATE(1097)] = 105900, + [SMALL_STATE(1098)] = 105956, + [SMALL_STATE(1099)] = 106012, + [SMALL_STATE(1100)] = 106068, + [SMALL_STATE(1101)] = 106124, + [SMALL_STATE(1102)] = 106180, + [SMALL_STATE(1103)] = 106236, + [SMALL_STATE(1104)] = 106292, + [SMALL_STATE(1105)] = 106348, + [SMALL_STATE(1106)] = 106404, + [SMALL_STATE(1107)] = 106460, + [SMALL_STATE(1108)] = 106516, + [SMALL_STATE(1109)] = 106618, + [SMALL_STATE(1110)] = 106720, + [SMALL_STATE(1111)] = 106776, + [SMALL_STATE(1112)] = 106832, + [SMALL_STATE(1113)] = 106888, + [SMALL_STATE(1114)] = 106944, + [SMALL_STATE(1115)] = 107000, + [SMALL_STATE(1116)] = 107056, + [SMALL_STATE(1117)] = 107112, + [SMALL_STATE(1118)] = 107168, + [SMALL_STATE(1119)] = 107270, + [SMALL_STATE(1120)] = 107326, + [SMALL_STATE(1121)] = 107428, + [SMALL_STATE(1122)] = 107530, + [SMALL_STATE(1123)] = 107632, + [SMALL_STATE(1124)] = 107734, + [SMALL_STATE(1125)] = 107836, + [SMALL_STATE(1126)] = 107938, + [SMALL_STATE(1127)] = 108040, + [SMALL_STATE(1128)] = 108142, + [SMALL_STATE(1129)] = 108244, + [SMALL_STATE(1130)] = 108346, + [SMALL_STATE(1131)] = 108448, + [SMALL_STATE(1132)] = 108550, + [SMALL_STATE(1133)] = 108652, + [SMALL_STATE(1134)] = 108754, + [SMALL_STATE(1135)] = 108810, + [SMALL_STATE(1136)] = 108912, + [SMALL_STATE(1137)] = 109014, + [SMALL_STATE(1138)] = 109116, + [SMALL_STATE(1139)] = 109218, + [SMALL_STATE(1140)] = 109320, + [SMALL_STATE(1141)] = 109422, + [SMALL_STATE(1142)] = 109524, + [SMALL_STATE(1143)] = 109626, + [SMALL_STATE(1144)] = 109728, + [SMALL_STATE(1145)] = 109784, + [SMALL_STATE(1146)] = 109886, + [SMALL_STATE(1147)] = 109988, + [SMALL_STATE(1148)] = 110090, + [SMALL_STATE(1149)] = 110146, + [SMALL_STATE(1150)] = 110202, + [SMALL_STATE(1151)] = 110304, + [SMALL_STATE(1152)] = 110406, + [SMALL_STATE(1153)] = 110508, + [SMALL_STATE(1154)] = 110610, + [SMALL_STATE(1155)] = 110712, + [SMALL_STATE(1156)] = 110814, + [SMALL_STATE(1157)] = 110916, + [SMALL_STATE(1158)] = 111018, + [SMALL_STATE(1159)] = 111120, + [SMALL_STATE(1160)] = 111222, + [SMALL_STATE(1161)] = 111324, + [SMALL_STATE(1162)] = 111426, + [SMALL_STATE(1163)] = 111528, + [SMALL_STATE(1164)] = 111630, + [SMALL_STATE(1165)] = 111732, + [SMALL_STATE(1166)] = 111785, + [SMALL_STATE(1167)] = 111842, + [SMALL_STATE(1168)] = 111899, + [SMALL_STATE(1169)] = 111956, + [SMALL_STATE(1170)] = 112010, + [SMALL_STATE(1171)] = 112061, + [SMALL_STATE(1172)] = 112112, + [SMALL_STATE(1173)] = 112163, + [SMALL_STATE(1174)] = 112214, + [SMALL_STATE(1175)] = 112265, + [SMALL_STATE(1176)] = 112316, + [SMALL_STATE(1177)] = 112367, + [SMALL_STATE(1178)] = 112418, + [SMALL_STATE(1179)] = 112469, + [SMALL_STATE(1180)] = 112520, + [SMALL_STATE(1181)] = 112571, + [SMALL_STATE(1182)] = 112622, + [SMALL_STATE(1183)] = 112673, + [SMALL_STATE(1184)] = 112724, + [SMALL_STATE(1185)] = 112775, + [SMALL_STATE(1186)] = 112826, + [SMALL_STATE(1187)] = 112877, + [SMALL_STATE(1188)] = 112928, + [SMALL_STATE(1189)] = 112979, + [SMALL_STATE(1190)] = 113030, + [SMALL_STATE(1191)] = 113081, + [SMALL_STATE(1192)] = 113132, + [SMALL_STATE(1193)] = 113183, + [SMALL_STATE(1194)] = 113234, + [SMALL_STATE(1195)] = 113285, + [SMALL_STATE(1196)] = 113336, + [SMALL_STATE(1197)] = 113387, + [SMALL_STATE(1198)] = 113438, + [SMALL_STATE(1199)] = 113489, + [SMALL_STATE(1200)] = 113540, + [SMALL_STATE(1201)] = 113591, + [SMALL_STATE(1202)] = 113642, + [SMALL_STATE(1203)] = 113693, + [SMALL_STATE(1204)] = 113744, + [SMALL_STATE(1205)] = 113795, + [SMALL_STATE(1206)] = 113846, + [SMALL_STATE(1207)] = 113897, + [SMALL_STATE(1208)] = 113948, + [SMALL_STATE(1209)] = 113999, + [SMALL_STATE(1210)] = 114050, + [SMALL_STATE(1211)] = 114101, + [SMALL_STATE(1212)] = 114152, + [SMALL_STATE(1213)] = 114203, + [SMALL_STATE(1214)] = 114254, + [SMALL_STATE(1215)] = 114305, + [SMALL_STATE(1216)] = 114356, + [SMALL_STATE(1217)] = 114407, + [SMALL_STATE(1218)] = 114458, + [SMALL_STATE(1219)] = 114509, + [SMALL_STATE(1220)] = 114560, + [SMALL_STATE(1221)] = 114611, + [SMALL_STATE(1222)] = 114662, + [SMALL_STATE(1223)] = 114713, + [SMALL_STATE(1224)] = 114764, + [SMALL_STATE(1225)] = 114815, + [SMALL_STATE(1226)] = 114866, + [SMALL_STATE(1227)] = 114917, + [SMALL_STATE(1228)] = 114968, + [SMALL_STATE(1229)] = 115019, + [SMALL_STATE(1230)] = 115070, + [SMALL_STATE(1231)] = 115121, + [SMALL_STATE(1232)] = 115172, + [SMALL_STATE(1233)] = 115223, + [SMALL_STATE(1234)] = 115274, + [SMALL_STATE(1235)] = 115325, + [SMALL_STATE(1236)] = 115376, + [SMALL_STATE(1237)] = 115427, + [SMALL_STATE(1238)] = 115478, + [SMALL_STATE(1239)] = 115529, + [SMALL_STATE(1240)] = 115580, + [SMALL_STATE(1241)] = 115631, + [SMALL_STATE(1242)] = 115682, + [SMALL_STATE(1243)] = 115733, + [SMALL_STATE(1244)] = 115784, + [SMALL_STATE(1245)] = 115835, + [SMALL_STATE(1246)] = 115886, + [SMALL_STATE(1247)] = 115937, + [SMALL_STATE(1248)] = 115988, + [SMALL_STATE(1249)] = 116039, + [SMALL_STATE(1250)] = 116090, + [SMALL_STATE(1251)] = 116141, + [SMALL_STATE(1252)] = 116192, + [SMALL_STATE(1253)] = 116243, + [SMALL_STATE(1254)] = 116294, + [SMALL_STATE(1255)] = 116345, + [SMALL_STATE(1256)] = 116396, + [SMALL_STATE(1257)] = 116447, + [SMALL_STATE(1258)] = 116498, + [SMALL_STATE(1259)] = 116549, + [SMALL_STATE(1260)] = 116600, + [SMALL_STATE(1261)] = 116651, + [SMALL_STATE(1262)] = 116702, + [SMALL_STATE(1263)] = 116753, + [SMALL_STATE(1264)] = 116804, + [SMALL_STATE(1265)] = 116855, + [SMALL_STATE(1266)] = 116906, + [SMALL_STATE(1267)] = 116957, + [SMALL_STATE(1268)] = 117008, + [SMALL_STATE(1269)] = 117059, + [SMALL_STATE(1270)] = 117110, + [SMALL_STATE(1271)] = 117161, + [SMALL_STATE(1272)] = 117212, + [SMALL_STATE(1273)] = 117263, + [SMALL_STATE(1274)] = 117314, + [SMALL_STATE(1275)] = 117365, + [SMALL_STATE(1276)] = 117416, + [SMALL_STATE(1277)] = 117467, + [SMALL_STATE(1278)] = 117518, + [SMALL_STATE(1279)] = 117569, + [SMALL_STATE(1280)] = 117620, + [SMALL_STATE(1281)] = 117671, + [SMALL_STATE(1282)] = 117722, + [SMALL_STATE(1283)] = 117773, + [SMALL_STATE(1284)] = 117824, + [SMALL_STATE(1285)] = 117875, + [SMALL_STATE(1286)] = 117926, + [SMALL_STATE(1287)] = 117977, + [SMALL_STATE(1288)] = 118028, + [SMALL_STATE(1289)] = 118079, + [SMALL_STATE(1290)] = 118130, + [SMALL_STATE(1291)] = 118181, + [SMALL_STATE(1292)] = 118242, + [SMALL_STATE(1293)] = 118303, + [SMALL_STATE(1294)] = 118364, + [SMALL_STATE(1295)] = 118425, + [SMALL_STATE(1296)] = 118486, + [SMALL_STATE(1297)] = 118547, + [SMALL_STATE(1298)] = 118608, + [SMALL_STATE(1299)] = 118669, + [SMALL_STATE(1300)] = 118730, + [SMALL_STATE(1301)] = 118791, + [SMALL_STATE(1302)] = 118841, + [SMALL_STATE(1303)] = 118888, + [SMALL_STATE(1304)] = 118935, + [SMALL_STATE(1305)] = 118982, + [SMALL_STATE(1306)] = 119029, + [SMALL_STATE(1307)] = 119076, + [SMALL_STATE(1308)] = 119123, + [SMALL_STATE(1309)] = 119170, + [SMALL_STATE(1310)] = 119217, + [SMALL_STATE(1311)] = 119264, + [SMALL_STATE(1312)] = 119311, + [SMALL_STATE(1313)] = 119358, + [SMALL_STATE(1314)] = 119405, + [SMALL_STATE(1315)] = 119452, + [SMALL_STATE(1316)] = 119499, + [SMALL_STATE(1317)] = 119546, + [SMALL_STATE(1318)] = 119593, + [SMALL_STATE(1319)] = 119640, + [SMALL_STATE(1320)] = 119687, + [SMALL_STATE(1321)] = 119734, + [SMALL_STATE(1322)] = 119781, + [SMALL_STATE(1323)] = 119828, + [SMALL_STATE(1324)] = 119875, + [SMALL_STATE(1325)] = 119922, + [SMALL_STATE(1326)] = 119969, + [SMALL_STATE(1327)] = 120016, + [SMALL_STATE(1328)] = 120063, + [SMALL_STATE(1329)] = 120110, + [SMALL_STATE(1330)] = 120157, + [SMALL_STATE(1331)] = 120204, + [SMALL_STATE(1332)] = 120251, + [SMALL_STATE(1333)] = 120298, + [SMALL_STATE(1334)] = 120345, + [SMALL_STATE(1335)] = 120392, + [SMALL_STATE(1336)] = 120439, + [SMALL_STATE(1337)] = 120486, + [SMALL_STATE(1338)] = 120533, + [SMALL_STATE(1339)] = 120580, + [SMALL_STATE(1340)] = 120627, + [SMALL_STATE(1341)] = 120674, + [SMALL_STATE(1342)] = 120721, + [SMALL_STATE(1343)] = 120768, + [SMALL_STATE(1344)] = 120815, + [SMALL_STATE(1345)] = 120862, + [SMALL_STATE(1346)] = 120909, + [SMALL_STATE(1347)] = 120956, + [SMALL_STATE(1348)] = 121003, + [SMALL_STATE(1349)] = 121050, + [SMALL_STATE(1350)] = 121097, + [SMALL_STATE(1351)] = 121144, + [SMALL_STATE(1352)] = 121191, + [SMALL_STATE(1353)] = 121238, + [SMALL_STATE(1354)] = 121285, + [SMALL_STATE(1355)] = 121332, + [SMALL_STATE(1356)] = 121379, + [SMALL_STATE(1357)] = 121426, + [SMALL_STATE(1358)] = 121473, + [SMALL_STATE(1359)] = 121520, + [SMALL_STATE(1360)] = 121567, + [SMALL_STATE(1361)] = 121614, + [SMALL_STATE(1362)] = 121661, + [SMALL_STATE(1363)] = 121708, + [SMALL_STATE(1364)] = 121755, + [SMALL_STATE(1365)] = 121802, + [SMALL_STATE(1366)] = 121849, + [SMALL_STATE(1367)] = 121896, + [SMALL_STATE(1368)] = 121943, + [SMALL_STATE(1369)] = 121990, + [SMALL_STATE(1370)] = 122037, + [SMALL_STATE(1371)] = 122084, + [SMALL_STATE(1372)] = 122131, + [SMALL_STATE(1373)] = 122178, + [SMALL_STATE(1374)] = 122225, + [SMALL_STATE(1375)] = 122272, + [SMALL_STATE(1376)] = 122319, + [SMALL_STATE(1377)] = 122366, + [SMALL_STATE(1378)] = 122413, + [SMALL_STATE(1379)] = 122460, + [SMALL_STATE(1380)] = 122507, + [SMALL_STATE(1381)] = 122554, + [SMALL_STATE(1382)] = 122605, + [SMALL_STATE(1383)] = 122652, + [SMALL_STATE(1384)] = 122699, + [SMALL_STATE(1385)] = 122746, + [SMALL_STATE(1386)] = 122793, + [SMALL_STATE(1387)] = 122840, + [SMALL_STATE(1388)] = 122887, + [SMALL_STATE(1389)] = 122938, + [SMALL_STATE(1390)] = 122989, + [SMALL_STATE(1391)] = 123036, + [SMALL_STATE(1392)] = 123083, + [SMALL_STATE(1393)] = 123130, + [SMALL_STATE(1394)] = 123177, + [SMALL_STATE(1395)] = 123224, + [SMALL_STATE(1396)] = 123271, + [SMALL_STATE(1397)] = 123318, + [SMALL_STATE(1398)] = 123365, + [SMALL_STATE(1399)] = 123412, + [SMALL_STATE(1400)] = 123459, + [SMALL_STATE(1401)] = 123506, + [SMALL_STATE(1402)] = 123553, + [SMALL_STATE(1403)] = 123600, + [SMALL_STATE(1404)] = 123647, + [SMALL_STATE(1405)] = 123694, + [SMALL_STATE(1406)] = 123741, + [SMALL_STATE(1407)] = 123788, + [SMALL_STATE(1408)] = 123835, + [SMALL_STATE(1409)] = 123882, + [SMALL_STATE(1410)] = 123929, + [SMALL_STATE(1411)] = 123976, + [SMALL_STATE(1412)] = 124023, + [SMALL_STATE(1413)] = 124070, + [SMALL_STATE(1414)] = 124117, + [SMALL_STATE(1415)] = 124164, + [SMALL_STATE(1416)] = 124211, + [SMALL_STATE(1417)] = 124258, + [SMALL_STATE(1418)] = 124305, + [SMALL_STATE(1419)] = 124352, + [SMALL_STATE(1420)] = 124399, + [SMALL_STATE(1421)] = 124446, + [SMALL_STATE(1422)] = 124493, + [SMALL_STATE(1423)] = 124540, + [SMALL_STATE(1424)] = 124587, + [SMALL_STATE(1425)] = 124659, + [SMALL_STATE(1426)] = 124731, + [SMALL_STATE(1427)] = 124803, + [SMALL_STATE(1428)] = 124875, + [SMALL_STATE(1429)] = 124947, + [SMALL_STATE(1430)] = 125019, + [SMALL_STATE(1431)] = 125091, + [SMALL_STATE(1432)] = 125163, + [SMALL_STATE(1433)] = 125235, + [SMALL_STATE(1434)] = 125307, + [SMALL_STATE(1435)] = 125379, + [SMALL_STATE(1436)] = 125451, + [SMALL_STATE(1437)] = 125523, + [SMALL_STATE(1438)] = 125595, + [SMALL_STATE(1439)] = 125667, + [SMALL_STATE(1440)] = 125739, + [SMALL_STATE(1441)] = 125811, + [SMALL_STATE(1442)] = 125883, + [SMALL_STATE(1443)] = 125955, + [SMALL_STATE(1444)] = 126027, + [SMALL_STATE(1445)] = 126096, + [SMALL_STATE(1446)] = 126140, + [SMALL_STATE(1447)] = 126184, + [SMALL_STATE(1448)] = 126234, + [SMALL_STATE(1449)] = 126278, + [SMALL_STATE(1450)] = 126326, + [SMALL_STATE(1451)] = 126374, + [SMALL_STATE(1452)] = 126418, + [SMALL_STATE(1453)] = 126462, + [SMALL_STATE(1454)] = 126506, + [SMALL_STATE(1455)] = 126550, + [SMALL_STATE(1456)] = 126594, + [SMALL_STATE(1457)] = 126642, + [SMALL_STATE(1458)] = 126686, + [SMALL_STATE(1459)] = 126730, + [SMALL_STATE(1460)] = 126774, + [SMALL_STATE(1461)] = 126818, + [SMALL_STATE(1462)] = 126862, + [SMALL_STATE(1463)] = 126906, + [SMALL_STATE(1464)] = 126950, + [SMALL_STATE(1465)] = 126994, + [SMALL_STATE(1466)] = 127038, + [SMALL_STATE(1467)] = 127082, + [SMALL_STATE(1468)] = 127126, + [SMALL_STATE(1469)] = 127170, + [SMALL_STATE(1470)] = 127214, + [SMALL_STATE(1471)] = 127258, + [SMALL_STATE(1472)] = 127302, + [SMALL_STATE(1473)] = 127346, + [SMALL_STATE(1474)] = 127390, + [SMALL_STATE(1475)] = 127434, + [SMALL_STATE(1476)] = 127478, + [SMALL_STATE(1477)] = 127522, + [SMALL_STATE(1478)] = 127566, + [SMALL_STATE(1479)] = 127610, + [SMALL_STATE(1480)] = 127654, + [SMALL_STATE(1481)] = 127698, + [SMALL_STATE(1482)] = 127742, + [SMALL_STATE(1483)] = 127788, + [SMALL_STATE(1484)] = 127832, + [SMALL_STATE(1485)] = 127876, + [SMALL_STATE(1486)] = 127920, + [SMALL_STATE(1487)] = 127964, + [SMALL_STATE(1488)] = 128008, + [SMALL_STATE(1489)] = 128052, + [SMALL_STATE(1490)] = 128096, + [SMALL_STATE(1491)] = 128140, + [SMALL_STATE(1492)] = 128184, + [SMALL_STATE(1493)] = 128228, + [SMALL_STATE(1494)] = 128272, + [SMALL_STATE(1495)] = 128316, + [SMALL_STATE(1496)] = 128360, + [SMALL_STATE(1497)] = 128404, + [SMALL_STATE(1498)] = 128448, + [SMALL_STATE(1499)] = 128492, + [SMALL_STATE(1500)] = 128536, + [SMALL_STATE(1501)] = 128580, + [SMALL_STATE(1502)] = 128624, + [SMALL_STATE(1503)] = 128668, + [SMALL_STATE(1504)] = 128712, + [SMALL_STATE(1505)] = 128756, + [SMALL_STATE(1506)] = 128800, + [SMALL_STATE(1507)] = 128844, + [SMALL_STATE(1508)] = 128888, + [SMALL_STATE(1509)] = 128932, + [SMALL_STATE(1510)] = 128976, + [SMALL_STATE(1511)] = 129020, + [SMALL_STATE(1512)] = 129064, + [SMALL_STATE(1513)] = 129108, + [SMALL_STATE(1514)] = 129152, + [SMALL_STATE(1515)] = 129196, + [SMALL_STATE(1516)] = 129240, + [SMALL_STATE(1517)] = 129284, + [SMALL_STATE(1518)] = 129328, + [SMALL_STATE(1519)] = 129372, + [SMALL_STATE(1520)] = 129416, + [SMALL_STATE(1521)] = 129460, + [SMALL_STATE(1522)] = 129504, + [SMALL_STATE(1523)] = 129548, + [SMALL_STATE(1524)] = 129592, + [SMALL_STATE(1525)] = 129636, + [SMALL_STATE(1526)] = 129680, + [SMALL_STATE(1527)] = 129724, + [SMALL_STATE(1528)] = 129768, + [SMALL_STATE(1529)] = 129812, + [SMALL_STATE(1530)] = 129856, + [SMALL_STATE(1531)] = 129900, + [SMALL_STATE(1532)] = 129944, + [SMALL_STATE(1533)] = 129988, + [SMALL_STATE(1534)] = 130032, + [SMALL_STATE(1535)] = 130076, + [SMALL_STATE(1536)] = 130120, + [SMALL_STATE(1537)] = 130164, + [SMALL_STATE(1538)] = 130208, + [SMALL_STATE(1539)] = 130252, + [SMALL_STATE(1540)] = 130296, + [SMALL_STATE(1541)] = 130340, + [SMALL_STATE(1542)] = 130384, + [SMALL_STATE(1543)] = 130428, + [SMALL_STATE(1544)] = 130472, + [SMALL_STATE(1545)] = 130516, + [SMALL_STATE(1546)] = 130560, + [SMALL_STATE(1547)] = 130604, + [SMALL_STATE(1548)] = 130648, + [SMALL_STATE(1549)] = 130692, + [SMALL_STATE(1550)] = 130736, + [SMALL_STATE(1551)] = 130780, + [SMALL_STATE(1552)] = 130824, + [SMALL_STATE(1553)] = 130868, + [SMALL_STATE(1554)] = 130912, + [SMALL_STATE(1555)] = 130956, + [SMALL_STATE(1556)] = 131000, + [SMALL_STATE(1557)] = 131044, + [SMALL_STATE(1558)] = 131088, + [SMALL_STATE(1559)] = 131132, + [SMALL_STATE(1560)] = 131176, + [SMALL_STATE(1561)] = 131220, + [SMALL_STATE(1562)] = 131264, + [SMALL_STATE(1563)] = 131308, + [SMALL_STATE(1564)] = 131352, + [SMALL_STATE(1565)] = 131396, + [SMALL_STATE(1566)] = 131440, + [SMALL_STATE(1567)] = 131484, + [SMALL_STATE(1568)] = 131528, + [SMALL_STATE(1569)] = 131572, + [SMALL_STATE(1570)] = 131621, + [SMALL_STATE(1571)] = 131665, + [SMALL_STATE(1572)] = 131707, + [SMALL_STATE(1573)] = 131748, + [SMALL_STATE(1574)] = 131789, + [SMALL_STATE(1575)] = 131830, + [SMALL_STATE(1576)] = 131871, + [SMALL_STATE(1577)] = 131912, + [SMALL_STATE(1578)] = 131953, + [SMALL_STATE(1579)] = 131994, + [SMALL_STATE(1580)] = 132035, + [SMALL_STATE(1581)] = 132076, + [SMALL_STATE(1582)] = 132117, + [SMALL_STATE(1583)] = 132158, + [SMALL_STATE(1584)] = 132199, + [SMALL_STATE(1585)] = 132240, + [SMALL_STATE(1586)] = 132281, + [SMALL_STATE(1587)] = 132322, + [SMALL_STATE(1588)] = 132363, + [SMALL_STATE(1589)] = 132404, + [SMALL_STATE(1590)] = 132445, + [SMALL_STATE(1591)] = 132486, + [SMALL_STATE(1592)] = 132527, + [SMALL_STATE(1593)] = 132568, + [SMALL_STATE(1594)] = 132609, + [SMALL_STATE(1595)] = 132650, + [SMALL_STATE(1596)] = 132691, + [SMALL_STATE(1597)] = 132732, + [SMALL_STATE(1598)] = 132773, + [SMALL_STATE(1599)] = 132814, + [SMALL_STATE(1600)] = 132855, + [SMALL_STATE(1601)] = 132896, + [SMALL_STATE(1602)] = 132937, + [SMALL_STATE(1603)] = 132978, + [SMALL_STATE(1604)] = 133019, + [SMALL_STATE(1605)] = 133060, + [SMALL_STATE(1606)] = 133101, + [SMALL_STATE(1607)] = 133142, + [SMALL_STATE(1608)] = 133183, + [SMALL_STATE(1609)] = 133224, + [SMALL_STATE(1610)] = 133265, + [SMALL_STATE(1611)] = 133306, + [SMALL_STATE(1612)] = 133347, + [SMALL_STATE(1613)] = 133388, + [SMALL_STATE(1614)] = 133429, + [SMALL_STATE(1615)] = 133470, + [SMALL_STATE(1616)] = 133511, + [SMALL_STATE(1617)] = 133552, + [SMALL_STATE(1618)] = 133593, + [SMALL_STATE(1619)] = 133634, + [SMALL_STATE(1620)] = 133675, + [SMALL_STATE(1621)] = 133716, + [SMALL_STATE(1622)] = 133757, + [SMALL_STATE(1623)] = 133798, + [SMALL_STATE(1624)] = 133839, + [SMALL_STATE(1625)] = 133880, + [SMALL_STATE(1626)] = 133921, + [SMALL_STATE(1627)] = 133962, + [SMALL_STATE(1628)] = 134003, + [SMALL_STATE(1629)] = 134044, + [SMALL_STATE(1630)] = 134085, + [SMALL_STATE(1631)] = 134126, + [SMALL_STATE(1632)] = 134167, + [SMALL_STATE(1633)] = 134208, + [SMALL_STATE(1634)] = 134249, + [SMALL_STATE(1635)] = 134290, + [SMALL_STATE(1636)] = 134331, + [SMALL_STATE(1637)] = 134372, + [SMALL_STATE(1638)] = 134413, + [SMALL_STATE(1639)] = 134454, + [SMALL_STATE(1640)] = 134495, + [SMALL_STATE(1641)] = 134536, + [SMALL_STATE(1642)] = 134577, + [SMALL_STATE(1643)] = 134618, + [SMALL_STATE(1644)] = 134659, + [SMALL_STATE(1645)] = 134700, + [SMALL_STATE(1646)] = 134741, + [SMALL_STATE(1647)] = 134782, + [SMALL_STATE(1648)] = 134823, + [SMALL_STATE(1649)] = 134864, + [SMALL_STATE(1650)] = 134905, + [SMALL_STATE(1651)] = 134946, + [SMALL_STATE(1652)] = 134987, + [SMALL_STATE(1653)] = 135028, + [SMALL_STATE(1654)] = 135069, + [SMALL_STATE(1655)] = 135110, + [SMALL_STATE(1656)] = 135151, + [SMALL_STATE(1657)] = 135192, + [SMALL_STATE(1658)] = 135233, + [SMALL_STATE(1659)] = 135274, + [SMALL_STATE(1660)] = 135315, + [SMALL_STATE(1661)] = 135356, + [SMALL_STATE(1662)] = 135397, + [SMALL_STATE(1663)] = 135438, + [SMALL_STATE(1664)] = 135479, + [SMALL_STATE(1665)] = 135520, + [SMALL_STATE(1666)] = 135561, + [SMALL_STATE(1667)] = 135602, + [SMALL_STATE(1668)] = 135643, + [SMALL_STATE(1669)] = 135684, + [SMALL_STATE(1670)] = 135725, + [SMALL_STATE(1671)] = 135766, + [SMALL_STATE(1672)] = 135807, + [SMALL_STATE(1673)] = 135848, + [SMALL_STATE(1674)] = 135889, + [SMALL_STATE(1675)] = 135930, + [SMALL_STATE(1676)] = 135971, + [SMALL_STATE(1677)] = 136012, + [SMALL_STATE(1678)] = 136053, + [SMALL_STATE(1679)] = 136094, + [SMALL_STATE(1680)] = 136135, + [SMALL_STATE(1681)] = 136176, + [SMALL_STATE(1682)] = 136217, + [SMALL_STATE(1683)] = 136262, + [SMALL_STATE(1684)] = 136307, + [SMALL_STATE(1685)] = 136348, + [SMALL_STATE(1686)] = 136393, + [SMALL_STATE(1687)] = 136438, + [SMALL_STATE(1688)] = 136483, + [SMALL_STATE(1689)] = 136524, + [SMALL_STATE(1690)] = 136569, + [SMALL_STATE(1691)] = 136614, + [SMALL_STATE(1692)] = 136659, + [SMALL_STATE(1693)] = 136700, + [SMALL_STATE(1694)] = 136741, + [SMALL_STATE(1695)] = 136786, + [SMALL_STATE(1696)] = 136827, + [SMALL_STATE(1697)] = 136868, + [SMALL_STATE(1698)] = 136909, + [SMALL_STATE(1699)] = 136950, + [SMALL_STATE(1700)] = 136991, + [SMALL_STATE(1701)] = 137032, + [SMALL_STATE(1702)] = 137073, + [SMALL_STATE(1703)] = 137114, + [SMALL_STATE(1704)] = 137155, + [SMALL_STATE(1705)] = 137196, + [SMALL_STATE(1706)] = 137237, + [SMALL_STATE(1707)] = 137278, + [SMALL_STATE(1708)] = 137323, + [SMALL_STATE(1709)] = 137364, + [SMALL_STATE(1710)] = 137405, + [SMALL_STATE(1711)] = 137446, + [SMALL_STATE(1712)] = 137487, + [SMALL_STATE(1713)] = 137528, + [SMALL_STATE(1714)] = 137569, + [SMALL_STATE(1715)] = 137610, + [SMALL_STATE(1716)] = 137651, + [SMALL_STATE(1717)] = 137692, + [SMALL_STATE(1718)] = 137733, + [SMALL_STATE(1719)] = 137774, + [SMALL_STATE(1720)] = 137815, + [SMALL_STATE(1721)] = 137856, + [SMALL_STATE(1722)] = 137897, + [SMALL_STATE(1723)] = 137938, + [SMALL_STATE(1724)] = 137979, + [SMALL_STATE(1725)] = 138020, + [SMALL_STATE(1726)] = 138061, + [SMALL_STATE(1727)] = 138102, + [SMALL_STATE(1728)] = 138143, + [SMALL_STATE(1729)] = 138184, + [SMALL_STATE(1730)] = 138225, + [SMALL_STATE(1731)] = 138284, + [SMALL_STATE(1732)] = 138325, + [SMALL_STATE(1733)] = 138366, + [SMALL_STATE(1734)] = 138407, + [SMALL_STATE(1735)] = 138448, + [SMALL_STATE(1736)] = 138489, + [SMALL_STATE(1737)] = 138530, + [SMALL_STATE(1738)] = 138571, + [SMALL_STATE(1739)] = 138612, + [SMALL_STATE(1740)] = 138653, + [SMALL_STATE(1741)] = 138694, + [SMALL_STATE(1742)] = 138735, + [SMALL_STATE(1743)] = 138776, + [SMALL_STATE(1744)] = 138817, + [SMALL_STATE(1745)] = 138862, + [SMALL_STATE(1746)] = 138907, + [SMALL_STATE(1747)] = 138948, + [SMALL_STATE(1748)] = 138989, + [SMALL_STATE(1749)] = 139030, + [SMALL_STATE(1750)] = 139071, + [SMALL_STATE(1751)] = 139112, + [SMALL_STATE(1752)] = 139153, + [SMALL_STATE(1753)] = 139198, + [SMALL_STATE(1754)] = 139239, + [SMALL_STATE(1755)] = 139280, + [SMALL_STATE(1756)] = 139321, + [SMALL_STATE(1757)] = 139362, + [SMALL_STATE(1758)] = 139403, + [SMALL_STATE(1759)] = 139444, + [SMALL_STATE(1760)] = 139485, + [SMALL_STATE(1761)] = 139526, + [SMALL_STATE(1762)] = 139567, + [SMALL_STATE(1763)] = 139608, + [SMALL_STATE(1764)] = 139649, + [SMALL_STATE(1765)] = 139690, + [SMALL_STATE(1766)] = 139731, + [SMALL_STATE(1767)] = 139772, + [SMALL_STATE(1768)] = 139813, + [SMALL_STATE(1769)] = 139854, + [SMALL_STATE(1770)] = 139895, + [SMALL_STATE(1771)] = 139936, + [SMALL_STATE(1772)] = 139977, + [SMALL_STATE(1773)] = 140018, + [SMALL_STATE(1774)] = 140059, + [SMALL_STATE(1775)] = 140100, + [SMALL_STATE(1776)] = 140141, + [SMALL_STATE(1777)] = 140182, + [SMALL_STATE(1778)] = 140223, + [SMALL_STATE(1779)] = 140264, + [SMALL_STATE(1780)] = 140305, + [SMALL_STATE(1781)] = 140346, + [SMALL_STATE(1782)] = 140387, + [SMALL_STATE(1783)] = 140428, + [SMALL_STATE(1784)] = 140469, + [SMALL_STATE(1785)] = 140510, + [SMALL_STATE(1786)] = 140551, + [SMALL_STATE(1787)] = 140592, + [SMALL_STATE(1788)] = 140633, + [SMALL_STATE(1789)] = 140674, + [SMALL_STATE(1790)] = 140715, + [SMALL_STATE(1791)] = 140756, + [SMALL_STATE(1792)] = 140797, + [SMALL_STATE(1793)] = 140838, + [SMALL_STATE(1794)] = 140879, + [SMALL_STATE(1795)] = 140920, + [SMALL_STATE(1796)] = 140961, + [SMALL_STATE(1797)] = 141002, + [SMALL_STATE(1798)] = 141043, + [SMALL_STATE(1799)] = 141084, + [SMALL_STATE(1800)] = 141125, + [SMALL_STATE(1801)] = 141166, + [SMALL_STATE(1802)] = 141207, + [SMALL_STATE(1803)] = 141248, + [SMALL_STATE(1804)] = 141289, + [SMALL_STATE(1805)] = 141330, + [SMALL_STATE(1806)] = 141371, + [SMALL_STATE(1807)] = 141412, + [SMALL_STATE(1808)] = 141453, + [SMALL_STATE(1809)] = 141494, + [SMALL_STATE(1810)] = 141535, + [SMALL_STATE(1811)] = 141576, + [SMALL_STATE(1812)] = 141617, + [SMALL_STATE(1813)] = 141658, + [SMALL_STATE(1814)] = 141699, + [SMALL_STATE(1815)] = 141740, + [SMALL_STATE(1816)] = 141781, + [SMALL_STATE(1817)] = 141822, + [SMALL_STATE(1818)] = 141863, + [SMALL_STATE(1819)] = 141904, + [SMALL_STATE(1820)] = 141945, + [SMALL_STATE(1821)] = 141986, + [SMALL_STATE(1822)] = 142027, + [SMALL_STATE(1823)] = 142068, + [SMALL_STATE(1824)] = 142109, + [SMALL_STATE(1825)] = 142150, + [SMALL_STATE(1826)] = 142191, + [SMALL_STATE(1827)] = 142232, + [SMALL_STATE(1828)] = 142273, + [SMALL_STATE(1829)] = 142314, + [SMALL_STATE(1830)] = 142355, + [SMALL_STATE(1831)] = 142396, + [SMALL_STATE(1832)] = 142437, + [SMALL_STATE(1833)] = 142478, + [SMALL_STATE(1834)] = 142519, + [SMALL_STATE(1835)] = 142560, + [SMALL_STATE(1836)] = 142601, + [SMALL_STATE(1837)] = 142642, + [SMALL_STATE(1838)] = 142683, + [SMALL_STATE(1839)] = 142724, + [SMALL_STATE(1840)] = 142765, + [SMALL_STATE(1841)] = 142806, + [SMALL_STATE(1842)] = 142846, + [SMALL_STATE(1843)] = 142886, + [SMALL_STATE(1844)] = 142926, + [SMALL_STATE(1845)] = 142966, + [SMALL_STATE(1846)] = 143006, + [SMALL_STATE(1847)] = 143048, + [SMALL_STATE(1848)] = 143088, + [SMALL_STATE(1849)] = 143130, + [SMALL_STATE(1850)] = 143170, + [SMALL_STATE(1851)] = 143212, + [SMALL_STATE(1852)] = 143249, + [SMALL_STATE(1853)] = 143286, + [SMALL_STATE(1854)] = 143323, + [SMALL_STATE(1855)] = 143360, + [SMALL_STATE(1856)] = 143397, + [SMALL_STATE(1857)] = 143434, + [SMALL_STATE(1858)] = 143471, + [SMALL_STATE(1859)] = 143508, + [SMALL_STATE(1860)] = 143545, + [SMALL_STATE(1861)] = 143592, + [SMALL_STATE(1862)] = 143629, + [SMALL_STATE(1863)] = 143666, + [SMALL_STATE(1864)] = 143713, + [SMALL_STATE(1865)] = 143750, + [SMALL_STATE(1866)] = 143787, + [SMALL_STATE(1867)] = 143824, + [SMALL_STATE(1868)] = 143861, + [SMALL_STATE(1869)] = 143898, + [SMALL_STATE(1870)] = 143934, + [SMALL_STATE(1871)] = 143970, + [SMALL_STATE(1872)] = 144006, + [SMALL_STATE(1873)] = 144042, + [SMALL_STATE(1874)] = 144078, + [SMALL_STATE(1875)] = 144114, + [SMALL_STATE(1876)] = 144150, + [SMALL_STATE(1877)] = 144186, + [SMALL_STATE(1878)] = 144222, + [SMALL_STATE(1879)] = 144258, + [SMALL_STATE(1880)] = 144294, + [SMALL_STATE(1881)] = 144330, + [SMALL_STATE(1882)] = 144366, + [SMALL_STATE(1883)] = 144402, + [SMALL_STATE(1884)] = 144438, + [SMALL_STATE(1885)] = 144474, + [SMALL_STATE(1886)] = 144510, + [SMALL_STATE(1887)] = 144546, + [SMALL_STATE(1888)] = 144582, + [SMALL_STATE(1889)] = 144618, + [SMALL_STATE(1890)] = 144654, + [SMALL_STATE(1891)] = 144690, + [SMALL_STATE(1892)] = 144726, + [SMALL_STATE(1893)] = 144762, + [SMALL_STATE(1894)] = 144798, + [SMALL_STATE(1895)] = 144834, + [SMALL_STATE(1896)] = 144870, + [SMALL_STATE(1897)] = 144906, + [SMALL_STATE(1898)] = 144942, + [SMALL_STATE(1899)] = 144978, + [SMALL_STATE(1900)] = 145014, + [SMALL_STATE(1901)] = 145050, + [SMALL_STATE(1902)] = 145086, + [SMALL_STATE(1903)] = 145122, + [SMALL_STATE(1904)] = 145158, + [SMALL_STATE(1905)] = 145194, + [SMALL_STATE(1906)] = 145230, + [SMALL_STATE(1907)] = 145266, + [SMALL_STATE(1908)] = 145302, + [SMALL_STATE(1909)] = 145338, + [SMALL_STATE(1910)] = 145374, + [SMALL_STATE(1911)] = 145410, + [SMALL_STATE(1912)] = 145446, + [SMALL_STATE(1913)] = 145482, + [SMALL_STATE(1914)] = 145518, + [SMALL_STATE(1915)] = 145554, + [SMALL_STATE(1916)] = 145590, + [SMALL_STATE(1917)] = 145626, + [SMALL_STATE(1918)] = 145662, + [SMALL_STATE(1919)] = 145698, + [SMALL_STATE(1920)] = 145734, + [SMALL_STATE(1921)] = 145770, + [SMALL_STATE(1922)] = 145806, + [SMALL_STATE(1923)] = 145842, + [SMALL_STATE(1924)] = 145878, + [SMALL_STATE(1925)] = 145914, + [SMALL_STATE(1926)] = 145950, + [SMALL_STATE(1927)] = 145986, + [SMALL_STATE(1928)] = 146022, + [SMALL_STATE(1929)] = 146058, + [SMALL_STATE(1930)] = 146094, + [SMALL_STATE(1931)] = 146130, + [SMALL_STATE(1932)] = 146166, + [SMALL_STATE(1933)] = 146202, + [SMALL_STATE(1934)] = 146238, + [SMALL_STATE(1935)] = 146274, + [SMALL_STATE(1936)] = 146310, + [SMALL_STATE(1937)] = 146346, + [SMALL_STATE(1938)] = 146382, + [SMALL_STATE(1939)] = 146418, + [SMALL_STATE(1940)] = 146454, + [SMALL_STATE(1941)] = 146490, + [SMALL_STATE(1942)] = 146526, + [SMALL_STATE(1943)] = 146562, + [SMALL_STATE(1944)] = 146598, + [SMALL_STATE(1945)] = 146634, + [SMALL_STATE(1946)] = 146670, + [SMALL_STATE(1947)] = 146706, + [SMALL_STATE(1948)] = 146742, + [SMALL_STATE(1949)] = 146778, + [SMALL_STATE(1950)] = 146814, + [SMALL_STATE(1951)] = 146850, + [SMALL_STATE(1952)] = 146886, + [SMALL_STATE(1953)] = 146922, + [SMALL_STATE(1954)] = 146958, + [SMALL_STATE(1955)] = 146994, + [SMALL_STATE(1956)] = 147030, + [SMALL_STATE(1957)] = 147066, + [SMALL_STATE(1958)] = 147102, + [SMALL_STATE(1959)] = 147138, + [SMALL_STATE(1960)] = 147174, + [SMALL_STATE(1961)] = 147210, + [SMALL_STATE(1962)] = 147246, + [SMALL_STATE(1963)] = 147282, + [SMALL_STATE(1964)] = 147318, + [SMALL_STATE(1965)] = 147354, + [SMALL_STATE(1966)] = 147390, + [SMALL_STATE(1967)] = 147426, + [SMALL_STATE(1968)] = 147462, + [SMALL_STATE(1969)] = 147498, + [SMALL_STATE(1970)] = 147534, + [SMALL_STATE(1971)] = 147570, + [SMALL_STATE(1972)] = 147607, + [SMALL_STATE(1973)] = 147644, + [SMALL_STATE(1974)] = 147692, + [SMALL_STATE(1975)] = 147740, + [SMALL_STATE(1976)] = 147773, + [SMALL_STATE(1977)] = 147806, + [SMALL_STATE(1978)] = 147839, + [SMALL_STATE(1979)] = 147872, + [SMALL_STATE(1980)] = 147905, + [SMALL_STATE(1981)] = 147938, + [SMALL_STATE(1982)] = 147971, + [SMALL_STATE(1983)] = 148004, + [SMALL_STATE(1984)] = 148037, + [SMALL_STATE(1985)] = 148070, + [SMALL_STATE(1986)] = 148103, + [SMALL_STATE(1987)] = 148136, + [SMALL_STATE(1988)] = 148169, + [SMALL_STATE(1989)] = 148202, + [SMALL_STATE(1990)] = 148235, + [SMALL_STATE(1991)] = 148268, + [SMALL_STATE(1992)] = 148301, + [SMALL_STATE(1993)] = 148334, + [SMALL_STATE(1994)] = 148367, + [SMALL_STATE(1995)] = 148400, + [SMALL_STATE(1996)] = 148433, + [SMALL_STATE(1997)] = 148466, + [SMALL_STATE(1998)] = 148499, + [SMALL_STATE(1999)] = 148532, + [SMALL_STATE(2000)] = 148565, + [SMALL_STATE(2001)] = 148598, + [SMALL_STATE(2002)] = 148631, + [SMALL_STATE(2003)] = 148664, + [SMALL_STATE(2004)] = 148697, + [SMALL_STATE(2005)] = 148730, + [SMALL_STATE(2006)] = 148763, + [SMALL_STATE(2007)] = 148796, + [SMALL_STATE(2008)] = 148829, + [SMALL_STATE(2009)] = 148862, + [SMALL_STATE(2010)] = 148895, + [SMALL_STATE(2011)] = 148928, + [SMALL_STATE(2012)] = 148961, + [SMALL_STATE(2013)] = 148994, + [SMALL_STATE(2014)] = 149027, + [SMALL_STATE(2015)] = 149060, + [SMALL_STATE(2016)] = 149093, + [SMALL_STATE(2017)] = 149126, + [SMALL_STATE(2018)] = 149159, + [SMALL_STATE(2019)] = 149192, + [SMALL_STATE(2020)] = 149225, + [SMALL_STATE(2021)] = 149258, + [SMALL_STATE(2022)] = 149291, + [SMALL_STATE(2023)] = 149324, + [SMALL_STATE(2024)] = 149357, + [SMALL_STATE(2025)] = 149390, + [SMALL_STATE(2026)] = 149423, + [SMALL_STATE(2027)] = 149456, + [SMALL_STATE(2028)] = 149489, + [SMALL_STATE(2029)] = 149522, + [SMALL_STATE(2030)] = 149555, + [SMALL_STATE(2031)] = 149588, + [SMALL_STATE(2032)] = 149621, + [SMALL_STATE(2033)] = 149654, + [SMALL_STATE(2034)] = 149687, + [SMALL_STATE(2035)] = 149720, + [SMALL_STATE(2036)] = 149753, + [SMALL_STATE(2037)] = 149786, + [SMALL_STATE(2038)] = 149819, + [SMALL_STATE(2039)] = 149852, + [SMALL_STATE(2040)] = 149885, + [SMALL_STATE(2041)] = 149918, + [SMALL_STATE(2042)] = 149951, + [SMALL_STATE(2043)] = 149984, + [SMALL_STATE(2044)] = 150017, + [SMALL_STATE(2045)] = 150050, + [SMALL_STATE(2046)] = 150083, + [SMALL_STATE(2047)] = 150116, + [SMALL_STATE(2048)] = 150149, + [SMALL_STATE(2049)] = 150182, + [SMALL_STATE(2050)] = 150215, + [SMALL_STATE(2051)] = 150248, + [SMALL_STATE(2052)] = 150281, + [SMALL_STATE(2053)] = 150314, + [SMALL_STATE(2054)] = 150347, + [SMALL_STATE(2055)] = 150380, + [SMALL_STATE(2056)] = 150413, + [SMALL_STATE(2057)] = 150446, + [SMALL_STATE(2058)] = 150479, + [SMALL_STATE(2059)] = 150512, + [SMALL_STATE(2060)] = 150545, + [SMALL_STATE(2061)] = 150578, + [SMALL_STATE(2062)] = 150611, + [SMALL_STATE(2063)] = 150644, + [SMALL_STATE(2064)] = 150677, + [SMALL_STATE(2065)] = 150710, + [SMALL_STATE(2066)] = 150743, + [SMALL_STATE(2067)] = 150776, + [SMALL_STATE(2068)] = 150809, + [SMALL_STATE(2069)] = 150842, + [SMALL_STATE(2070)] = 150875, + [SMALL_STATE(2071)] = 150908, + [SMALL_STATE(2072)] = 150941, + [SMALL_STATE(2073)] = 150974, + [SMALL_STATE(2074)] = 151007, + [SMALL_STATE(2075)] = 151040, + [SMALL_STATE(2076)] = 151073, + [SMALL_STATE(2077)] = 151106, + [SMALL_STATE(2078)] = 151139, + [SMALL_STATE(2079)] = 151172, + [SMALL_STATE(2080)] = 151205, + [SMALL_STATE(2081)] = 151238, + [SMALL_STATE(2082)] = 151271, + [SMALL_STATE(2083)] = 151304, + [SMALL_STATE(2084)] = 151337, + [SMALL_STATE(2085)] = 151370, + [SMALL_STATE(2086)] = 151403, + [SMALL_STATE(2087)] = 151436, + [SMALL_STATE(2088)] = 151469, + [SMALL_STATE(2089)] = 151502, + [SMALL_STATE(2090)] = 151535, + [SMALL_STATE(2091)] = 151568, + [SMALL_STATE(2092)] = 151601, + [SMALL_STATE(2093)] = 151634, + [SMALL_STATE(2094)] = 151667, + [SMALL_STATE(2095)] = 151700, + [SMALL_STATE(2096)] = 151733, + [SMALL_STATE(2097)] = 151766, + [SMALL_STATE(2098)] = 151799, + [SMALL_STATE(2099)] = 151832, + [SMALL_STATE(2100)] = 151865, + [SMALL_STATE(2101)] = 151898, + [SMALL_STATE(2102)] = 151931, + [SMALL_STATE(2103)] = 151964, + [SMALL_STATE(2104)] = 151997, + [SMALL_STATE(2105)] = 152030, + [SMALL_STATE(2106)] = 152063, + [SMALL_STATE(2107)] = 152111, + [SMALL_STATE(2108)] = 152159, + [SMALL_STATE(2109)] = 152207, + [SMALL_STATE(2110)] = 152255, + [SMALL_STATE(2111)] = 152303, + [SMALL_STATE(2112)] = 152351, + [SMALL_STATE(2113)] = 152399, + [SMALL_STATE(2114)] = 152447, + [SMALL_STATE(2115)] = 152495, + [SMALL_STATE(2116)] = 152543, + [SMALL_STATE(2117)] = 152591, + [SMALL_STATE(2118)] = 152639, + [SMALL_STATE(2119)] = 152670, + [SMALL_STATE(2120)] = 152701, + [SMALL_STATE(2121)] = 152763, + [SMALL_STATE(2122)] = 152829, + [SMALL_STATE(2123)] = 152891, + [SMALL_STATE(2124)] = 152957, + [SMALL_STATE(2125)] = 153019, + [SMALL_STATE(2126)] = 153081, + [SMALL_STATE(2127)] = 153143, + [SMALL_STATE(2128)] = 153209, + [SMALL_STATE(2129)] = 153251, + [SMALL_STATE(2130)] = 153313, + [SMALL_STATE(2131)] = 153375, + [SMALL_STATE(2132)] = 153441, + [SMALL_STATE(2133)] = 153503, + [SMALL_STATE(2134)] = 153540, + [SMALL_STATE(2135)] = 153574, + [SMALL_STATE(2136)] = 153608, + [SMALL_STATE(2137)] = 153642, + [SMALL_STATE(2138)] = 153676, + [SMALL_STATE(2139)] = 153706, + [SMALL_STATE(2140)] = 153735, + [SMALL_STATE(2141)] = 153764, + [SMALL_STATE(2142)] = 153793, + [SMALL_STATE(2143)] = 153856, + [SMALL_STATE(2144)] = 153885, + [SMALL_STATE(2145)] = 153914, + [SMALL_STATE(2146)] = 153943, + [SMALL_STATE(2147)] = 154006, + [SMALL_STATE(2148)] = 154035, + [SMALL_STATE(2149)] = 154064, + [SMALL_STATE(2150)] = 154127, + [SMALL_STATE(2151)] = 154156, + [SMALL_STATE(2152)] = 154219, + [SMALL_STATE(2153)] = 154248, + [SMALL_STATE(2154)] = 154277, + [SMALL_STATE(2155)] = 154340, + [SMALL_STATE(2156)] = 154369, + [SMALL_STATE(2157)] = 154398, + [SMALL_STATE(2158)] = 154427, + [SMALL_STATE(2159)] = 154456, + [SMALL_STATE(2160)] = 154485, + [SMALL_STATE(2161)] = 154548, + [SMALL_STATE(2162)] = 154577, + [SMALL_STATE(2163)] = 154606, + [SMALL_STATE(2164)] = 154635, + [SMALL_STATE(2165)] = 154664, + [SMALL_STATE(2166)] = 154727, + [SMALL_STATE(2167)] = 154756, + [SMALL_STATE(2168)] = 154819, + [SMALL_STATE(2169)] = 154882, + [SMALL_STATE(2170)] = 154945, + [SMALL_STATE(2171)] = 154974, + [SMALL_STATE(2172)] = 155037, + [SMALL_STATE(2173)] = 155100, + [SMALL_STATE(2174)] = 155129, + [SMALL_STATE(2175)] = 155158, + [SMALL_STATE(2176)] = 155187, + [SMALL_STATE(2177)] = 155218, + [SMALL_STATE(2178)] = 155281, + [SMALL_STATE(2179)] = 155344, + [SMALL_STATE(2180)] = 155373, + [SMALL_STATE(2181)] = 155401, + [SMALL_STATE(2182)] = 155453, + [SMALL_STATE(2183)] = 155481, + [SMALL_STATE(2184)] = 155509, + [SMALL_STATE(2185)] = 155537, + [SMALL_STATE(2186)] = 155565, + [SMALL_STATE(2187)] = 155593, + [SMALL_STATE(2188)] = 155621, + [SMALL_STATE(2189)] = 155649, + [SMALL_STATE(2190)] = 155677, + [SMALL_STATE(2191)] = 155705, + [SMALL_STATE(2192)] = 155733, + [SMALL_STATE(2193)] = 155785, + [SMALL_STATE(2194)] = 155837, + [SMALL_STATE(2195)] = 155889, + [SMALL_STATE(2196)] = 155941, + [SMALL_STATE(2197)] = 155969, + [SMALL_STATE(2198)] = 155997, + [SMALL_STATE(2199)] = 156025, + [SMALL_STATE(2200)] = 156077, + [SMALL_STATE(2201)] = 156129, + [SMALL_STATE(2202)] = 156181, + [SMALL_STATE(2203)] = 156209, + [SMALL_STATE(2204)] = 156261, + [SMALL_STATE(2205)] = 156289, + [SMALL_STATE(2206)] = 156317, + [SMALL_STATE(2207)] = 156345, + [SMALL_STATE(2208)] = 156373, + [SMALL_STATE(2209)] = 156425, + [SMALL_STATE(2210)] = 156453, + [SMALL_STATE(2211)] = 156481, + [SMALL_STATE(2212)] = 156533, + [SMALL_STATE(2213)] = 156561, + [SMALL_STATE(2214)] = 156613, + [SMALL_STATE(2215)] = 156641, + [SMALL_STATE(2216)] = 156669, + [SMALL_STATE(2217)] = 156697, + [SMALL_STATE(2218)] = 156730, + [SMALL_STATE(2219)] = 156773, + [SMALL_STATE(2220)] = 156824, + [SMALL_STATE(2221)] = 156875, + [SMALL_STATE(2222)] = 156908, + [SMALL_STATE(2223)] = 156959, + [SMALL_STATE(2224)] = 157010, + [SMALL_STATE(2225)] = 157061, + [SMALL_STATE(2226)] = 157112, + [SMALL_STATE(2227)] = 157163, + [SMALL_STATE(2228)] = 157214, + [SMALL_STATE(2229)] = 157265, + [SMALL_STATE(2230)] = 157316, + [SMALL_STATE(2231)] = 157367, + [SMALL_STATE(2232)] = 157418, + [SMALL_STATE(2233)] = 157469, + [SMALL_STATE(2234)] = 157520, + [SMALL_STATE(2235)] = 157553, + [SMALL_STATE(2236)] = 157586, + [SMALL_STATE(2237)] = 157619, + [SMALL_STATE(2238)] = 157668, + [SMALL_STATE(2239)] = 157719, + [SMALL_STATE(2240)] = 157770, + [SMALL_STATE(2241)] = 157819, + [SMALL_STATE(2242)] = 157849, + [SMALL_STATE(2243)] = 157879, + [SMALL_STATE(2244)] = 157909, + [SMALL_STATE(2245)] = 157939, + [SMALL_STATE(2246)] = 157964, + [SMALL_STATE(2247)] = 158001, + [SMALL_STATE(2248)] = 158026, + [SMALL_STATE(2249)] = 158051, + [SMALL_STATE(2250)] = 158076, + [SMALL_STATE(2251)] = 158101, + [SMALL_STATE(2252)] = 158126, + [SMALL_STATE(2253)] = 158151, + [SMALL_STATE(2254)] = 158178, + [SMALL_STATE(2255)] = 158203, + [SMALL_STATE(2256)] = 158227, + [SMALL_STATE(2257)] = 158253, + [SMALL_STATE(2258)] = 158281, + [SMALL_STATE(2259)] = 158303, + [SMALL_STATE(2260)] = 158327, + [SMALL_STATE(2261)] = 158348, + [SMALL_STATE(2262)] = 158369, + [SMALL_STATE(2263)] = 158390, + [SMALL_STATE(2264)] = 158411, + [SMALL_STATE(2265)] = 158432, + [SMALL_STATE(2266)] = 158453, + [SMALL_STATE(2267)] = 158474, + [SMALL_STATE(2268)] = 158495, + [SMALL_STATE(2269)] = 158516, + [SMALL_STATE(2270)] = 158537, + [SMALL_STATE(2271)] = 158558, + [SMALL_STATE(2272)] = 158579, + [SMALL_STATE(2273)] = 158600, + [SMALL_STATE(2274)] = 158625, + [SMALL_STATE(2275)] = 158646, + [SMALL_STATE(2276)] = 158667, + [SMALL_STATE(2277)] = 158688, + [SMALL_STATE(2278)] = 158713, + [SMALL_STATE(2279)] = 158734, + [SMALL_STATE(2280)] = 158755, + [SMALL_STATE(2281)] = 158776, + [SMALL_STATE(2282)] = 158797, + [SMALL_STATE(2283)] = 158818, + [SMALL_STATE(2284)] = 158839, + [SMALL_STATE(2285)] = 158866, + [SMALL_STATE(2286)] = 158887, + [SMALL_STATE(2287)] = 158908, + [SMALL_STATE(2288)] = 158929, + [SMALL_STATE(2289)] = 158950, + [SMALL_STATE(2290)] = 158971, + [SMALL_STATE(2291)] = 158992, + [SMALL_STATE(2292)] = 159013, + [SMALL_STATE(2293)] = 159034, + [SMALL_STATE(2294)] = 159055, + [SMALL_STATE(2295)] = 159076, + [SMALL_STATE(2296)] = 159097, + [SMALL_STATE(2297)] = 159118, + [SMALL_STATE(2298)] = 159139, + [SMALL_STATE(2299)] = 159160, + [SMALL_STATE(2300)] = 159181, + [SMALL_STATE(2301)] = 159202, + [SMALL_STATE(2302)] = 159223, + [SMALL_STATE(2303)] = 159244, + [SMALL_STATE(2304)] = 159265, + [SMALL_STATE(2305)] = 159286, + [SMALL_STATE(2306)] = 159307, + [SMALL_STATE(2307)] = 159328, + [SMALL_STATE(2308)] = 159349, + [SMALL_STATE(2309)] = 159370, + [SMALL_STATE(2310)] = 159391, + [SMALL_STATE(2311)] = 159412, + [SMALL_STATE(2312)] = 159433, + [SMALL_STATE(2313)] = 159454, + [SMALL_STATE(2314)] = 159475, + [SMALL_STATE(2315)] = 159496, + [SMALL_STATE(2316)] = 159517, + [SMALL_STATE(2317)] = 159538, + [SMALL_STATE(2318)] = 159559, + [SMALL_STATE(2319)] = 159580, + [SMALL_STATE(2320)] = 159601, + [SMALL_STATE(2321)] = 159622, + [SMALL_STATE(2322)] = 159643, + [SMALL_STATE(2323)] = 159664, + [SMALL_STATE(2324)] = 159685, + [SMALL_STATE(2325)] = 159706, + [SMALL_STATE(2326)] = 159727, + [SMALL_STATE(2327)] = 159748, + [SMALL_STATE(2328)] = 159769, + [SMALL_STATE(2329)] = 159790, + [SMALL_STATE(2330)] = 159811, + [SMALL_STATE(2331)] = 159832, + [SMALL_STATE(2332)] = 159853, + [SMALL_STATE(2333)] = 159874, + [SMALL_STATE(2334)] = 159899, + [SMALL_STATE(2335)] = 159920, + [SMALL_STATE(2336)] = 159945, + [SMALL_STATE(2337)] = 159970, + [SMALL_STATE(2338)] = 159991, + [SMALL_STATE(2339)] = 160012, + [SMALL_STATE(2340)] = 160033, + [SMALL_STATE(2341)] = 160054, + [SMALL_STATE(2342)] = 160075, + [SMALL_STATE(2343)] = 160096, + [SMALL_STATE(2344)] = 160117, + [SMALL_STATE(2345)] = 160138, + [SMALL_STATE(2346)] = 160159, + [SMALL_STATE(2347)] = 160180, + [SMALL_STATE(2348)] = 160201, + [SMALL_STATE(2349)] = 160222, + [SMALL_STATE(2350)] = 160243, + [SMALL_STATE(2351)] = 160264, + [SMALL_STATE(2352)] = 160285, + [SMALL_STATE(2353)] = 160306, + [SMALL_STATE(2354)] = 160327, + [SMALL_STATE(2355)] = 160348, + [SMALL_STATE(2356)] = 160369, + [SMALL_STATE(2357)] = 160390, + [SMALL_STATE(2358)] = 160411, + [SMALL_STATE(2359)] = 160432, + [SMALL_STATE(2360)] = 160453, + [SMALL_STATE(2361)] = 160474, + [SMALL_STATE(2362)] = 160494, + [SMALL_STATE(2363)] = 160523, + [SMALL_STATE(2364)] = 160552, + [SMALL_STATE(2365)] = 160585, + [SMALL_STATE(2366)] = 160618, + [SMALL_STATE(2367)] = 160647, + [SMALL_STATE(2368)] = 160668, + [SMALL_STATE(2369)] = 160697, + [SMALL_STATE(2370)] = 160726, + [SMALL_STATE(2371)] = 160755, + [SMALL_STATE(2372)] = 160784, + [SMALL_STATE(2373)] = 160817, + [SMALL_STATE(2374)] = 160850, + [SMALL_STATE(2375)] = 160879, + [SMALL_STATE(2376)] = 160912, + [SMALL_STATE(2377)] = 160945, + [SMALL_STATE(2378)] = 160978, + [SMALL_STATE(2379)] = 161007, + [SMALL_STATE(2380)] = 161036, + [SMALL_STATE(2381)] = 161057, + [SMALL_STATE(2382)] = 161090, + [SMALL_STATE(2383)] = 161119, + [SMALL_STATE(2384)] = 161152, + [SMALL_STATE(2385)] = 161185, + [SMALL_STATE(2386)] = 161214, + [SMALL_STATE(2387)] = 161243, + [SMALL_STATE(2388)] = 161264, + [SMALL_STATE(2389)] = 161297, + [SMALL_STATE(2390)] = 161326, + [SMALL_STATE(2391)] = 161359, + [SMALL_STATE(2392)] = 161392, + [SMALL_STATE(2393)] = 161421, + [SMALL_STATE(2394)] = 161450, + [SMALL_STATE(2395)] = 161479, + [SMALL_STATE(2396)] = 161512, + [SMALL_STATE(2397)] = 161541, + [SMALL_STATE(2398)] = 161574, + [SMALL_STATE(2399)] = 161603, + [SMALL_STATE(2400)] = 161632, + [SMALL_STATE(2401)] = 161665, + [SMALL_STATE(2402)] = 161694, + [SMALL_STATE(2403)] = 161727, + [SMALL_STATE(2404)] = 161760, + [SMALL_STATE(2405)] = 161789, + [SMALL_STATE(2406)] = 161822, + [SMALL_STATE(2407)] = 161851, + [SMALL_STATE(2408)] = 161884, + [SMALL_STATE(2409)] = 161913, + [SMALL_STATE(2410)] = 161946, + [SMALL_STATE(2411)] = 161979, + [SMALL_STATE(2412)] = 162012, + [SMALL_STATE(2413)] = 162045, + [SMALL_STATE(2414)] = 162074, + [SMALL_STATE(2415)] = 162107, + [SMALL_STATE(2416)] = 162125, + [SMALL_STATE(2417)] = 162143, + [SMALL_STATE(2418)] = 162161, + [SMALL_STATE(2419)] = 162179, + [SMALL_STATE(2420)] = 162201, + [SMALL_STATE(2421)] = 162231, + [SMALL_STATE(2422)] = 162261, + [SMALL_STATE(2423)] = 162291, + [SMALL_STATE(2424)] = 162309, + [SMALL_STATE(2425)] = 162327, + [SMALL_STATE(2426)] = 162345, + [SMALL_STATE(2427)] = 162363, + [SMALL_STATE(2428)] = 162381, + [SMALL_STATE(2429)] = 162399, + [SMALL_STATE(2430)] = 162417, + [SMALL_STATE(2431)] = 162447, + [SMALL_STATE(2432)] = 162465, + [SMALL_STATE(2433)] = 162495, + [SMALL_STATE(2434)] = 162513, + [SMALL_STATE(2435)] = 162543, + [SMALL_STATE(2436)] = 162561, + [SMALL_STATE(2437)] = 162591, + [SMALL_STATE(2438)] = 162619, + [SMALL_STATE(2439)] = 162637, + [SMALL_STATE(2440)] = 162655, + [SMALL_STATE(2441)] = 162685, + [SMALL_STATE(2442)] = 162715, + [SMALL_STATE(2443)] = 162733, + [SMALL_STATE(2444)] = 162751, + [SMALL_STATE(2445)] = 162769, + [SMALL_STATE(2446)] = 162787, + [SMALL_STATE(2447)] = 162805, + [SMALL_STATE(2448)] = 162835, + [SMALL_STATE(2449)] = 162853, + [SMALL_STATE(2450)] = 162871, + [SMALL_STATE(2451)] = 162893, + [SMALL_STATE(2452)] = 162923, + [SMALL_STATE(2453)] = 162943, + [SMALL_STATE(2454)] = 162973, + [SMALL_STATE(2455)] = 162993, + [SMALL_STATE(2456)] = 163011, + [SMALL_STATE(2457)] = 163029, + [SMALL_STATE(2458)] = 163047, + [SMALL_STATE(2459)] = 163067, + [SMALL_STATE(2460)] = 163093, + [SMALL_STATE(2461)] = 163124, + [SMALL_STATE(2462)] = 163155, + [SMALL_STATE(2463)] = 163177, + [SMALL_STATE(2464)] = 163199, + [SMALL_STATE(2465)] = 163227, + [SMALL_STATE(2466)] = 163255, + [SMALL_STATE(2467)] = 163283, + [SMALL_STATE(2468)] = 163311, + [SMALL_STATE(2469)] = 163339, + [SMALL_STATE(2470)] = 163367, + [SMALL_STATE(2471)] = 163395, + [SMALL_STATE(2472)] = 163423, + [SMALL_STATE(2473)] = 163445, + [SMALL_STATE(2474)] = 163467, + [SMALL_STATE(2475)] = 163489, + [SMALL_STATE(2476)] = 163511, + [SMALL_STATE(2477)] = 163533, + [SMALL_STATE(2478)] = 163555, + [SMALL_STATE(2479)] = 163577, + [SMALL_STATE(2480)] = 163599, + [SMALL_STATE(2481)] = 163621, + [SMALL_STATE(2482)] = 163643, + [SMALL_STATE(2483)] = 163665, + [SMALL_STATE(2484)] = 163687, + [SMALL_STATE(2485)] = 163709, + [SMALL_STATE(2486)] = 163731, + [SMALL_STATE(2487)] = 163753, + [SMALL_STATE(2488)] = 163775, + [SMALL_STATE(2489)] = 163797, + [SMALL_STATE(2490)] = 163819, + [SMALL_STATE(2491)] = 163841, + [SMALL_STATE(2492)] = 163863, + [SMALL_STATE(2493)] = 163885, + [SMALL_STATE(2494)] = 163907, + [SMALL_STATE(2495)] = 163929, + [SMALL_STATE(2496)] = 163951, + [SMALL_STATE(2497)] = 163973, + [SMALL_STATE(2498)] = 163995, + [SMALL_STATE(2499)] = 164017, + [SMALL_STATE(2500)] = 164039, + [SMALL_STATE(2501)] = 164061, + [SMALL_STATE(2502)] = 164083, + [SMALL_STATE(2503)] = 164105, + [SMALL_STATE(2504)] = 164127, + [SMALL_STATE(2505)] = 164149, + [SMALL_STATE(2506)] = 164171, + [SMALL_STATE(2507)] = 164193, + [SMALL_STATE(2508)] = 164215, + [SMALL_STATE(2509)] = 164237, + [SMALL_STATE(2510)] = 164259, + [SMALL_STATE(2511)] = 164281, + [SMALL_STATE(2512)] = 164303, + [SMALL_STATE(2513)] = 164325, + [SMALL_STATE(2514)] = 164347, + [SMALL_STATE(2515)] = 164369, + [SMALL_STATE(2516)] = 164391, + [SMALL_STATE(2517)] = 164413, + [SMALL_STATE(2518)] = 164435, + [SMALL_STATE(2519)] = 164457, + [SMALL_STATE(2520)] = 164479, + [SMALL_STATE(2521)] = 164501, + [SMALL_STATE(2522)] = 164523, + [SMALL_STATE(2523)] = 164545, + [SMALL_STATE(2524)] = 164567, + [SMALL_STATE(2525)] = 164589, + [SMALL_STATE(2526)] = 164611, + [SMALL_STATE(2527)] = 164633, + [SMALL_STATE(2528)] = 164655, + [SMALL_STATE(2529)] = 164677, + [SMALL_STATE(2530)] = 164699, + [SMALL_STATE(2531)] = 164721, + [SMALL_STATE(2532)] = 164743, + [SMALL_STATE(2533)] = 164765, + [SMALL_STATE(2534)] = 164787, + [SMALL_STATE(2535)] = 164809, + [SMALL_STATE(2536)] = 164831, + [SMALL_STATE(2537)] = 164853, + [SMALL_STATE(2538)] = 164875, + [SMALL_STATE(2539)] = 164897, + [SMALL_STATE(2540)] = 164919, + [SMALL_STATE(2541)] = 164941, + [SMALL_STATE(2542)] = 164963, + [SMALL_STATE(2543)] = 164985, + [SMALL_STATE(2544)] = 165007, + [SMALL_STATE(2545)] = 165029, + [SMALL_STATE(2546)] = 165051, + [SMALL_STATE(2547)] = 165073, + [SMALL_STATE(2548)] = 165095, + [SMALL_STATE(2549)] = 165117, + [SMALL_STATE(2550)] = 165139, + [SMALL_STATE(2551)] = 165161, + [SMALL_STATE(2552)] = 165183, + [SMALL_STATE(2553)] = 165205, + [SMALL_STATE(2554)] = 165227, + [SMALL_STATE(2555)] = 165249, + [SMALL_STATE(2556)] = 165271, + [SMALL_STATE(2557)] = 165293, + [SMALL_STATE(2558)] = 165315, + [SMALL_STATE(2559)] = 165331, + [SMALL_STATE(2560)] = 165353, + [SMALL_STATE(2561)] = 165375, + [SMALL_STATE(2562)] = 165397, + [SMALL_STATE(2563)] = 165419, + [SMALL_STATE(2564)] = 165441, + [SMALL_STATE(2565)] = 165463, + [SMALL_STATE(2566)] = 165485, + [SMALL_STATE(2567)] = 165507, + [SMALL_STATE(2568)] = 165529, + [SMALL_STATE(2569)] = 165551, + [SMALL_STATE(2570)] = 165573, + [SMALL_STATE(2571)] = 165595, + [SMALL_STATE(2572)] = 165617, + [SMALL_STATE(2573)] = 165639, + [SMALL_STATE(2574)] = 165661, + [SMALL_STATE(2575)] = 165683, + [SMALL_STATE(2576)] = 165705, + [SMALL_STATE(2577)] = 165727, + [SMALL_STATE(2578)] = 165749, + [SMALL_STATE(2579)] = 165771, + [SMALL_STATE(2580)] = 165793, + [SMALL_STATE(2581)] = 165815, + [SMALL_STATE(2582)] = 165837, + [SMALL_STATE(2583)] = 165859, + [SMALL_STATE(2584)] = 165881, + [SMALL_STATE(2585)] = 165903, + [SMALL_STATE(2586)] = 165925, + [SMALL_STATE(2587)] = 165947, + [SMALL_STATE(2588)] = 165969, + [SMALL_STATE(2589)] = 165991, + [SMALL_STATE(2590)] = 166013, + [SMALL_STATE(2591)] = 166035, + [SMALL_STATE(2592)] = 166057, + [SMALL_STATE(2593)] = 166079, + [SMALL_STATE(2594)] = 166101, + [SMALL_STATE(2595)] = 166123, + [SMALL_STATE(2596)] = 166139, + [SMALL_STATE(2597)] = 166161, + [SMALL_STATE(2598)] = 166183, + [SMALL_STATE(2599)] = 166205, + [SMALL_STATE(2600)] = 166227, + [SMALL_STATE(2601)] = 166249, + [SMALL_STATE(2602)] = 166271, + [SMALL_STATE(2603)] = 166293, + [SMALL_STATE(2604)] = 166315, + [SMALL_STATE(2605)] = 166337, + [SMALL_STATE(2606)] = 166359, + [SMALL_STATE(2607)] = 166381, + [SMALL_STATE(2608)] = 166403, + [SMALL_STATE(2609)] = 166425, + [SMALL_STATE(2610)] = 166447, + [SMALL_STATE(2611)] = 166469, + [SMALL_STATE(2612)] = 166491, + [SMALL_STATE(2613)] = 166513, + [SMALL_STATE(2614)] = 166535, + [SMALL_STATE(2615)] = 166557, + [SMALL_STATE(2616)] = 166579, + [SMALL_STATE(2617)] = 166601, + [SMALL_STATE(2618)] = 166623, + [SMALL_STATE(2619)] = 166645, + [SMALL_STATE(2620)] = 166667, + [SMALL_STATE(2621)] = 166689, + [SMALL_STATE(2622)] = 166711, + [SMALL_STATE(2623)] = 166733, + [SMALL_STATE(2624)] = 166755, + [SMALL_STATE(2625)] = 166777, + [SMALL_STATE(2626)] = 166799, + [SMALL_STATE(2627)] = 166821, + [SMALL_STATE(2628)] = 166843, + [SMALL_STATE(2629)] = 166865, + [SMALL_STATE(2630)] = 166887, + [SMALL_STATE(2631)] = 166909, + [SMALL_STATE(2632)] = 166931, + [SMALL_STATE(2633)] = 166953, + [SMALL_STATE(2634)] = 166975, + [SMALL_STATE(2635)] = 166997, + [SMALL_STATE(2636)] = 167019, + [SMALL_STATE(2637)] = 167041, + [SMALL_STATE(2638)] = 167063, + [SMALL_STATE(2639)] = 167085, + [SMALL_STATE(2640)] = 167107, + [SMALL_STATE(2641)] = 167129, + [SMALL_STATE(2642)] = 167151, + [SMALL_STATE(2643)] = 167173, + [SMALL_STATE(2644)] = 167195, + [SMALL_STATE(2645)] = 167217, + [SMALL_STATE(2646)] = 167239, + [SMALL_STATE(2647)] = 167261, + [SMALL_STATE(2648)] = 167283, + [SMALL_STATE(2649)] = 167305, + [SMALL_STATE(2650)] = 167327, + [SMALL_STATE(2651)] = 167349, + [SMALL_STATE(2652)] = 167371, + [SMALL_STATE(2653)] = 167393, + [SMALL_STATE(2654)] = 167415, + [SMALL_STATE(2655)] = 167437, + [SMALL_STATE(2656)] = 167459, + [SMALL_STATE(2657)] = 167481, + [SMALL_STATE(2658)] = 167503, + [SMALL_STATE(2659)] = 167525, + [SMALL_STATE(2660)] = 167547, + [SMALL_STATE(2661)] = 167569, + [SMALL_STATE(2662)] = 167591, + [SMALL_STATE(2663)] = 167613, + [SMALL_STATE(2664)] = 167635, + [SMALL_STATE(2665)] = 167657, + [SMALL_STATE(2666)] = 167679, + [SMALL_STATE(2667)] = 167701, + [SMALL_STATE(2668)] = 167723, + [SMALL_STATE(2669)] = 167745, + [SMALL_STATE(2670)] = 167767, + [SMALL_STATE(2671)] = 167789, + [SMALL_STATE(2672)] = 167811, + [SMALL_STATE(2673)] = 167833, + [SMALL_STATE(2674)] = 167855, + [SMALL_STATE(2675)] = 167877, + [SMALL_STATE(2676)] = 167899, + [SMALL_STATE(2677)] = 167921, + [SMALL_STATE(2678)] = 167943, + [SMALL_STATE(2679)] = 167965, + [SMALL_STATE(2680)] = 167987, + [SMALL_STATE(2681)] = 168009, + [SMALL_STATE(2682)] = 168031, + [SMALL_STATE(2683)] = 168053, + [SMALL_STATE(2684)] = 168075, + [SMALL_STATE(2685)] = 168097, + [SMALL_STATE(2686)] = 168119, + [SMALL_STATE(2687)] = 168141, + [SMALL_STATE(2688)] = 168163, + [SMALL_STATE(2689)] = 168185, + [SMALL_STATE(2690)] = 168207, + [SMALL_STATE(2691)] = 168229, + [SMALL_STATE(2692)] = 168251, + [SMALL_STATE(2693)] = 168273, + [SMALL_STATE(2694)] = 168295, + [SMALL_STATE(2695)] = 168317, + [SMALL_STATE(2696)] = 168339, + [SMALL_STATE(2697)] = 168361, + [SMALL_STATE(2698)] = 168383, + [SMALL_STATE(2699)] = 168405, + [SMALL_STATE(2700)] = 168427, + [SMALL_STATE(2701)] = 168449, + [SMALL_STATE(2702)] = 168471, + [SMALL_STATE(2703)] = 168493, + [SMALL_STATE(2704)] = 168515, + [SMALL_STATE(2705)] = 168537, + [SMALL_STATE(2706)] = 168559, + [SMALL_STATE(2707)] = 168581, + [SMALL_STATE(2708)] = 168603, + [SMALL_STATE(2709)] = 168625, + [SMALL_STATE(2710)] = 168647, + [SMALL_STATE(2711)] = 168669, + [SMALL_STATE(2712)] = 168691, + [SMALL_STATE(2713)] = 168713, + [SMALL_STATE(2714)] = 168735, + [SMALL_STATE(2715)] = 168757, + [SMALL_STATE(2716)] = 168779, + [SMALL_STATE(2717)] = 168801, + [SMALL_STATE(2718)] = 168823, + [SMALL_STATE(2719)] = 168845, + [SMALL_STATE(2720)] = 168867, + [SMALL_STATE(2721)] = 168889, + [SMALL_STATE(2722)] = 168911, + [SMALL_STATE(2723)] = 168933, + [SMALL_STATE(2724)] = 168955, + [SMALL_STATE(2725)] = 168977, + [SMALL_STATE(2726)] = 168999, + [SMALL_STATE(2727)] = 169021, + [SMALL_STATE(2728)] = 169043, + [SMALL_STATE(2729)] = 169065, + [SMALL_STATE(2730)] = 169087, + [SMALL_STATE(2731)] = 169109, + [SMALL_STATE(2732)] = 169131, + [SMALL_STATE(2733)] = 169153, + [SMALL_STATE(2734)] = 169175, + [SMALL_STATE(2735)] = 169197, + [SMALL_STATE(2736)] = 169219, + [SMALL_STATE(2737)] = 169241, + [SMALL_STATE(2738)] = 169263, + [SMALL_STATE(2739)] = 169285, + [SMALL_STATE(2740)] = 169307, + [SMALL_STATE(2741)] = 169329, + [SMALL_STATE(2742)] = 169351, + [SMALL_STATE(2743)] = 169373, + [SMALL_STATE(2744)] = 169395, + [SMALL_STATE(2745)] = 169417, + [SMALL_STATE(2746)] = 169439, + [SMALL_STATE(2747)] = 169461, + [SMALL_STATE(2748)] = 169483, + [SMALL_STATE(2749)] = 169505, + [SMALL_STATE(2750)] = 169527, + [SMALL_STATE(2751)] = 169549, + [SMALL_STATE(2752)] = 169571, + [SMALL_STATE(2753)] = 169593, + [SMALL_STATE(2754)] = 169615, + [SMALL_STATE(2755)] = 169637, + [SMALL_STATE(2756)] = 169659, + [SMALL_STATE(2757)] = 169681, + [SMALL_STATE(2758)] = 169703, + [SMALL_STATE(2759)] = 169731, + [SMALL_STATE(2760)] = 169753, + [SMALL_STATE(2761)] = 169775, + [SMALL_STATE(2762)] = 169797, + [SMALL_STATE(2763)] = 169819, + [SMALL_STATE(2764)] = 169841, + [SMALL_STATE(2765)] = 169863, + [SMALL_STATE(2766)] = 169885, + [SMALL_STATE(2767)] = 169907, + [SMALL_STATE(2768)] = 169929, + [SMALL_STATE(2769)] = 169951, + [SMALL_STATE(2770)] = 169973, + [SMALL_STATE(2771)] = 169995, + [SMALL_STATE(2772)] = 170017, + [SMALL_STATE(2773)] = 170039, + [SMALL_STATE(2774)] = 170061, + [SMALL_STATE(2775)] = 170083, + [SMALL_STATE(2776)] = 170105, + [SMALL_STATE(2777)] = 170127, + [SMALL_STATE(2778)] = 170149, + [SMALL_STATE(2779)] = 170171, + [SMALL_STATE(2780)] = 170193, + [SMALL_STATE(2781)] = 170215, + [SMALL_STATE(2782)] = 170237, + [SMALL_STATE(2783)] = 170259, + [SMALL_STATE(2784)] = 170281, + [SMALL_STATE(2785)] = 170303, + [SMALL_STATE(2786)] = 170325, + [SMALL_STATE(2787)] = 170347, + [SMALL_STATE(2788)] = 170369, + [SMALL_STATE(2789)] = 170391, + [SMALL_STATE(2790)] = 170413, + [SMALL_STATE(2791)] = 170435, + [SMALL_STATE(2792)] = 170457, + [SMALL_STATE(2793)] = 170479, + [SMALL_STATE(2794)] = 170501, + [SMALL_STATE(2795)] = 170523, + [SMALL_STATE(2796)] = 170545, + [SMALL_STATE(2797)] = 170567, + [SMALL_STATE(2798)] = 170586, + [SMALL_STATE(2799)] = 170605, + [SMALL_STATE(2800)] = 170624, + [SMALL_STATE(2801)] = 170643, + [SMALL_STATE(2802)] = 170662, + [SMALL_STATE(2803)] = 170681, + [SMALL_STATE(2804)] = 170700, + [SMALL_STATE(2805)] = 170719, + [SMALL_STATE(2806)] = 170738, + [SMALL_STATE(2807)] = 170757, + [SMALL_STATE(2808)] = 170776, + [SMALL_STATE(2809)] = 170795, + [SMALL_STATE(2810)] = 170814, + [SMALL_STATE(2811)] = 170833, + [SMALL_STATE(2812)] = 170852, + [SMALL_STATE(2813)] = 170871, + [SMALL_STATE(2814)] = 170890, + [SMALL_STATE(2815)] = 170909, + [SMALL_STATE(2816)] = 170928, + [SMALL_STATE(2817)] = 170947, + [SMALL_STATE(2818)] = 170966, + [SMALL_STATE(2819)] = 170985, + [SMALL_STATE(2820)] = 171004, + [SMALL_STATE(2821)] = 171023, + [SMALL_STATE(2822)] = 171042, + [SMALL_STATE(2823)] = 171061, + [SMALL_STATE(2824)] = 171080, + [SMALL_STATE(2825)] = 171099, + [SMALL_STATE(2826)] = 171118, + [SMALL_STATE(2827)] = 171137, + [SMALL_STATE(2828)] = 171156, + [SMALL_STATE(2829)] = 171175, + [SMALL_STATE(2830)] = 171194, + [SMALL_STATE(2831)] = 171213, + [SMALL_STATE(2832)] = 171232, + [SMALL_STATE(2833)] = 171251, + [SMALL_STATE(2834)] = 171270, + [SMALL_STATE(2835)] = 171289, + [SMALL_STATE(2836)] = 171308, + [SMALL_STATE(2837)] = 171327, + [SMALL_STATE(2838)] = 171346, + [SMALL_STATE(2839)] = 171365, + [SMALL_STATE(2840)] = 171384, + [SMALL_STATE(2841)] = 171403, + [SMALL_STATE(2842)] = 171422, + [SMALL_STATE(2843)] = 171441, + [SMALL_STATE(2844)] = 171460, + [SMALL_STATE(2845)] = 171479, + [SMALL_STATE(2846)] = 171498, + [SMALL_STATE(2847)] = 171517, + [SMALL_STATE(2848)] = 171536, + [SMALL_STATE(2849)] = 171555, + [SMALL_STATE(2850)] = 171574, + [SMALL_STATE(2851)] = 171593, + [SMALL_STATE(2852)] = 171612, + [SMALL_STATE(2853)] = 171631, + [SMALL_STATE(2854)] = 171650, + [SMALL_STATE(2855)] = 171669, + [SMALL_STATE(2856)] = 171688, + [SMALL_STATE(2857)] = 171707, + [SMALL_STATE(2858)] = 171726, + [SMALL_STATE(2859)] = 171745, + [SMALL_STATE(2860)] = 171764, + [SMALL_STATE(2861)] = 171783, + [SMALL_STATE(2862)] = 171802, + [SMALL_STATE(2863)] = 171821, + [SMALL_STATE(2864)] = 171840, + [SMALL_STATE(2865)] = 171859, + [SMALL_STATE(2866)] = 171876, + [SMALL_STATE(2867)] = 171895, + [SMALL_STATE(2868)] = 171914, + [SMALL_STATE(2869)] = 171933, + [SMALL_STATE(2870)] = 171952, + [SMALL_STATE(2871)] = 171969, + [SMALL_STATE(2872)] = 171988, + [SMALL_STATE(2873)] = 172007, + [SMALL_STATE(2874)] = 172026, + [SMALL_STATE(2875)] = 172045, + [SMALL_STATE(2876)] = 172064, + [SMALL_STATE(2877)] = 172083, + [SMALL_STATE(2878)] = 172102, + [SMALL_STATE(2879)] = 172121, + [SMALL_STATE(2880)] = 172140, + [SMALL_STATE(2881)] = 172159, + [SMALL_STATE(2882)] = 172178, + [SMALL_STATE(2883)] = 172197, + [SMALL_STATE(2884)] = 172216, + [SMALL_STATE(2885)] = 172235, + [SMALL_STATE(2886)] = 172254, + [SMALL_STATE(2887)] = 172273, + [SMALL_STATE(2888)] = 172292, + [SMALL_STATE(2889)] = 172311, + [SMALL_STATE(2890)] = 172330, + [SMALL_STATE(2891)] = 172349, + [SMALL_STATE(2892)] = 172368, + [SMALL_STATE(2893)] = 172387, + [SMALL_STATE(2894)] = 172406, + [SMALL_STATE(2895)] = 172425, + [SMALL_STATE(2896)] = 172444, + [SMALL_STATE(2897)] = 172463, + [SMALL_STATE(2898)] = 172482, + [SMALL_STATE(2899)] = 172501, + [SMALL_STATE(2900)] = 172520, + [SMALL_STATE(2901)] = 172539, + [SMALL_STATE(2902)] = 172558, + [SMALL_STATE(2903)] = 172577, + [SMALL_STATE(2904)] = 172596, + [SMALL_STATE(2905)] = 172615, + [SMALL_STATE(2906)] = 172634, + [SMALL_STATE(2907)] = 172653, + [SMALL_STATE(2908)] = 172672, + [SMALL_STATE(2909)] = 172691, + [SMALL_STATE(2910)] = 172710, + [SMALL_STATE(2911)] = 172729, + [SMALL_STATE(2912)] = 172748, + [SMALL_STATE(2913)] = 172767, + [SMALL_STATE(2914)] = 172786, + [SMALL_STATE(2915)] = 172805, + [SMALL_STATE(2916)] = 172824, + [SMALL_STATE(2917)] = 172843, + [SMALL_STATE(2918)] = 172862, + [SMALL_STATE(2919)] = 172881, + [SMALL_STATE(2920)] = 172900, + [SMALL_STATE(2921)] = 172919, + [SMALL_STATE(2922)] = 172938, + [SMALL_STATE(2923)] = 172957, + [SMALL_STATE(2924)] = 172976, + [SMALL_STATE(2925)] = 172995, + [SMALL_STATE(2926)] = 173014, + [SMALL_STATE(2927)] = 173033, + [SMALL_STATE(2928)] = 173052, + [SMALL_STATE(2929)] = 173071, + [SMALL_STATE(2930)] = 173090, + [SMALL_STATE(2931)] = 173109, + [SMALL_STATE(2932)] = 173128, + [SMALL_STATE(2933)] = 173147, + [SMALL_STATE(2934)] = 173166, + [SMALL_STATE(2935)] = 173185, + [SMALL_STATE(2936)] = 173204, + [SMALL_STATE(2937)] = 173223, + [SMALL_STATE(2938)] = 173242, + [SMALL_STATE(2939)] = 173261, + [SMALL_STATE(2940)] = 173280, + [SMALL_STATE(2941)] = 173299, + [SMALL_STATE(2942)] = 173318, + [SMALL_STATE(2943)] = 173337, + [SMALL_STATE(2944)] = 173356, + [SMALL_STATE(2945)] = 173375, + [SMALL_STATE(2946)] = 173394, + [SMALL_STATE(2947)] = 173413, + [SMALL_STATE(2948)] = 173432, + [SMALL_STATE(2949)] = 173451, + [SMALL_STATE(2950)] = 173470, + [SMALL_STATE(2951)] = 173489, + [SMALL_STATE(2952)] = 173508, + [SMALL_STATE(2953)] = 173527, + [SMALL_STATE(2954)] = 173546, + [SMALL_STATE(2955)] = 173565, + [SMALL_STATE(2956)] = 173584, + [SMALL_STATE(2957)] = 173603, + [SMALL_STATE(2958)] = 173622, + [SMALL_STATE(2959)] = 173641, + [SMALL_STATE(2960)] = 173660, + [SMALL_STATE(2961)] = 173679, + [SMALL_STATE(2962)] = 173698, + [SMALL_STATE(2963)] = 173717, + [SMALL_STATE(2964)] = 173736, + [SMALL_STATE(2965)] = 173755, + [SMALL_STATE(2966)] = 173774, + [SMALL_STATE(2967)] = 173793, + [SMALL_STATE(2968)] = 173810, + [SMALL_STATE(2969)] = 173829, + [SMALL_STATE(2970)] = 173848, + [SMALL_STATE(2971)] = 173867, + [SMALL_STATE(2972)] = 173886, + [SMALL_STATE(2973)] = 173905, + [SMALL_STATE(2974)] = 173924, + [SMALL_STATE(2975)] = 173943, + [SMALL_STATE(2976)] = 173962, + [SMALL_STATE(2977)] = 173981, + [SMALL_STATE(2978)] = 174000, + [SMALL_STATE(2979)] = 174019, + [SMALL_STATE(2980)] = 174038, + [SMALL_STATE(2981)] = 174057, + [SMALL_STATE(2982)] = 174074, + [SMALL_STATE(2983)] = 174091, + [SMALL_STATE(2984)] = 174110, + [SMALL_STATE(2985)] = 174129, + [SMALL_STATE(2986)] = 174148, + [SMALL_STATE(2987)] = 174167, + [SMALL_STATE(2988)] = 174186, + [SMALL_STATE(2989)] = 174205, + [SMALL_STATE(2990)] = 174224, + [SMALL_STATE(2991)] = 174243, + [SMALL_STATE(2992)] = 174262, + [SMALL_STATE(2993)] = 174281, + [SMALL_STATE(2994)] = 174300, + [SMALL_STATE(2995)] = 174319, + [SMALL_STATE(2996)] = 174338, + [SMALL_STATE(2997)] = 174357, + [SMALL_STATE(2998)] = 174376, + [SMALL_STATE(2999)] = 174395, + [SMALL_STATE(3000)] = 174414, + [SMALL_STATE(3001)] = 174433, + [SMALL_STATE(3002)] = 174452, + [SMALL_STATE(3003)] = 174471, + [SMALL_STATE(3004)] = 174490, + [SMALL_STATE(3005)] = 174509, + [SMALL_STATE(3006)] = 174528, + [SMALL_STATE(3007)] = 174547, + [SMALL_STATE(3008)] = 174566, + [SMALL_STATE(3009)] = 174585, + [SMALL_STATE(3010)] = 174604, + [SMALL_STATE(3011)] = 174623, + [SMALL_STATE(3012)] = 174642, + [SMALL_STATE(3013)] = 174661, + [SMALL_STATE(3014)] = 174680, + [SMALL_STATE(3015)] = 174699, + [SMALL_STATE(3016)] = 174718, + [SMALL_STATE(3017)] = 174737, + [SMALL_STATE(3018)] = 174756, + [SMALL_STATE(3019)] = 174775, + [SMALL_STATE(3020)] = 174794, + [SMALL_STATE(3021)] = 174813, + [SMALL_STATE(3022)] = 174832, + [SMALL_STATE(3023)] = 174851, + [SMALL_STATE(3024)] = 174870, + [SMALL_STATE(3025)] = 174889, + [SMALL_STATE(3026)] = 174908, + [SMALL_STATE(3027)] = 174927, + [SMALL_STATE(3028)] = 174946, + [SMALL_STATE(3029)] = 174965, + [SMALL_STATE(3030)] = 174984, + [SMALL_STATE(3031)] = 175003, + [SMALL_STATE(3032)] = 175022, + [SMALL_STATE(3033)] = 175041, + [SMALL_STATE(3034)] = 175060, + [SMALL_STATE(3035)] = 175079, + [SMALL_STATE(3036)] = 175098, + [SMALL_STATE(3037)] = 175117, + [SMALL_STATE(3038)] = 175136, + [SMALL_STATE(3039)] = 175155, + [SMALL_STATE(3040)] = 175174, + [SMALL_STATE(3041)] = 175193, + [SMALL_STATE(3042)] = 175212, + [SMALL_STATE(3043)] = 175231, + [SMALL_STATE(3044)] = 175250, + [SMALL_STATE(3045)] = 175269, + [SMALL_STATE(3046)] = 175288, + [SMALL_STATE(3047)] = 175307, + [SMALL_STATE(3048)] = 175326, + [SMALL_STATE(3049)] = 175345, + [SMALL_STATE(3050)] = 175364, + [SMALL_STATE(3051)] = 175383, + [SMALL_STATE(3052)] = 175402, + [SMALL_STATE(3053)] = 175421, + [SMALL_STATE(3054)] = 175440, + [SMALL_STATE(3055)] = 175459, + [SMALL_STATE(3056)] = 175478, + [SMALL_STATE(3057)] = 175497, + [SMALL_STATE(3058)] = 175516, + [SMALL_STATE(3059)] = 175535, + [SMALL_STATE(3060)] = 175554, + [SMALL_STATE(3061)] = 175573, + [SMALL_STATE(3062)] = 175592, + [SMALL_STATE(3063)] = 175611, + [SMALL_STATE(3064)] = 175630, + [SMALL_STATE(3065)] = 175649, + [SMALL_STATE(3066)] = 175668, + [SMALL_STATE(3067)] = 175687, + [SMALL_STATE(3068)] = 175706, + [SMALL_STATE(3069)] = 175725, + [SMALL_STATE(3070)] = 175744, + [SMALL_STATE(3071)] = 175763, + [SMALL_STATE(3072)] = 175782, + [SMALL_STATE(3073)] = 175801, + [SMALL_STATE(3074)] = 175820, + [SMALL_STATE(3075)] = 175839, + [SMALL_STATE(3076)] = 175858, + [SMALL_STATE(3077)] = 175877, + [SMALL_STATE(3078)] = 175896, + [SMALL_STATE(3079)] = 175915, + [SMALL_STATE(3080)] = 175934, + [SMALL_STATE(3081)] = 175953, + [SMALL_STATE(3082)] = 175972, + [SMALL_STATE(3083)] = 175991, + [SMALL_STATE(3084)] = 176010, + [SMALL_STATE(3085)] = 176029, + [SMALL_STATE(3086)] = 176048, + [SMALL_STATE(3087)] = 176067, + [SMALL_STATE(3088)] = 176086, + [SMALL_STATE(3089)] = 176105, + [SMALL_STATE(3090)] = 176124, + [SMALL_STATE(3091)] = 176143, + [SMALL_STATE(3092)] = 176162, + [SMALL_STATE(3093)] = 176181, + [SMALL_STATE(3094)] = 176200, + [SMALL_STATE(3095)] = 176219, + [SMALL_STATE(3096)] = 176238, + [SMALL_STATE(3097)] = 176257, + [SMALL_STATE(3098)] = 176276, + [SMALL_STATE(3099)] = 176295, + [SMALL_STATE(3100)] = 176314, + [SMALL_STATE(3101)] = 176333, + [SMALL_STATE(3102)] = 176352, + [SMALL_STATE(3103)] = 176371, + [SMALL_STATE(3104)] = 176390, + [SMALL_STATE(3105)] = 176409, + [SMALL_STATE(3106)] = 176428, + [SMALL_STATE(3107)] = 176447, + [SMALL_STATE(3108)] = 176466, + [SMALL_STATE(3109)] = 176485, + [SMALL_STATE(3110)] = 176504, + [SMALL_STATE(3111)] = 176523, + [SMALL_STATE(3112)] = 176542, + [SMALL_STATE(3113)] = 176561, + [SMALL_STATE(3114)] = 176580, + [SMALL_STATE(3115)] = 176599, + [SMALL_STATE(3116)] = 176618, + [SMALL_STATE(3117)] = 176637, + [SMALL_STATE(3118)] = 176656, + [SMALL_STATE(3119)] = 176675, + [SMALL_STATE(3120)] = 176694, + [SMALL_STATE(3121)] = 176713, + [SMALL_STATE(3122)] = 176732, + [SMALL_STATE(3123)] = 176751, + [SMALL_STATE(3124)] = 176770, + [SMALL_STATE(3125)] = 176789, + [SMALL_STATE(3126)] = 176808, + [SMALL_STATE(3127)] = 176827, + [SMALL_STATE(3128)] = 176846, + [SMALL_STATE(3129)] = 176865, + [SMALL_STATE(3130)] = 176884, + [SMALL_STATE(3131)] = 176903, + [SMALL_STATE(3132)] = 176922, + [SMALL_STATE(3133)] = 176941, + [SMALL_STATE(3134)] = 176960, + [SMALL_STATE(3135)] = 176979, + [SMALL_STATE(3136)] = 176998, + [SMALL_STATE(3137)] = 177017, + [SMALL_STATE(3138)] = 177036, + [SMALL_STATE(3139)] = 177055, + [SMALL_STATE(3140)] = 177074, + [SMALL_STATE(3141)] = 177093, + [SMALL_STATE(3142)] = 177112, + [SMALL_STATE(3143)] = 177131, + [SMALL_STATE(3144)] = 177150, + [SMALL_STATE(3145)] = 177169, + [SMALL_STATE(3146)] = 177188, + [SMALL_STATE(3147)] = 177207, + [SMALL_STATE(3148)] = 177226, + [SMALL_STATE(3149)] = 177245, + [SMALL_STATE(3150)] = 177264, + [SMALL_STATE(3151)] = 177283, + [SMALL_STATE(3152)] = 177302, + [SMALL_STATE(3153)] = 177321, + [SMALL_STATE(3154)] = 177340, + [SMALL_STATE(3155)] = 177359, + [SMALL_STATE(3156)] = 177378, + [SMALL_STATE(3157)] = 177397, + [SMALL_STATE(3158)] = 177416, + [SMALL_STATE(3159)] = 177435, + [SMALL_STATE(3160)] = 177452, + [SMALL_STATE(3161)] = 177471, + [SMALL_STATE(3162)] = 177490, + [SMALL_STATE(3163)] = 177509, + [SMALL_STATE(3164)] = 177528, + [SMALL_STATE(3165)] = 177547, + [SMALL_STATE(3166)] = 177566, + [SMALL_STATE(3167)] = 177585, + [SMALL_STATE(3168)] = 177604, + [SMALL_STATE(3169)] = 177623, + [SMALL_STATE(3170)] = 177642, + [SMALL_STATE(3171)] = 177661, + [SMALL_STATE(3172)] = 177680, + [SMALL_STATE(3173)] = 177699, + [SMALL_STATE(3174)] = 177718, + [SMALL_STATE(3175)] = 177737, + [SMALL_STATE(3176)] = 177756, + [SMALL_STATE(3177)] = 177775, + [SMALL_STATE(3178)] = 177794, + [SMALL_STATE(3179)] = 177813, + [SMALL_STATE(3180)] = 177832, + [SMALL_STATE(3181)] = 177851, + [SMALL_STATE(3182)] = 177870, + [SMALL_STATE(3183)] = 177889, + [SMALL_STATE(3184)] = 177908, + [SMALL_STATE(3185)] = 177927, + [SMALL_STATE(3186)] = 177946, + [SMALL_STATE(3187)] = 177965, + [SMALL_STATE(3188)] = 177984, + [SMALL_STATE(3189)] = 178003, + [SMALL_STATE(3190)] = 178022, + [SMALL_STATE(3191)] = 178041, + [SMALL_STATE(3192)] = 178060, + [SMALL_STATE(3193)] = 178079, + [SMALL_STATE(3194)] = 178098, + [SMALL_STATE(3195)] = 178117, + [SMALL_STATE(3196)] = 178136, + [SMALL_STATE(3197)] = 178155, + [SMALL_STATE(3198)] = 178174, + [SMALL_STATE(3199)] = 178193, + [SMALL_STATE(3200)] = 178210, + [SMALL_STATE(3201)] = 178229, + [SMALL_STATE(3202)] = 178248, + [SMALL_STATE(3203)] = 178267, + [SMALL_STATE(3204)] = 178286, + [SMALL_STATE(3205)] = 178305, + [SMALL_STATE(3206)] = 178324, + [SMALL_STATE(3207)] = 178343, + [SMALL_STATE(3208)] = 178362, + [SMALL_STATE(3209)] = 178381, + [SMALL_STATE(3210)] = 178400, + [SMALL_STATE(3211)] = 178419, + [SMALL_STATE(3212)] = 178438, + [SMALL_STATE(3213)] = 178457, + [SMALL_STATE(3214)] = 178476, + [SMALL_STATE(3215)] = 178495, + [SMALL_STATE(3216)] = 178514, + [SMALL_STATE(3217)] = 178533, + [SMALL_STATE(3218)] = 178552, + [SMALL_STATE(3219)] = 178571, + [SMALL_STATE(3220)] = 178590, + [SMALL_STATE(3221)] = 178609, + [SMALL_STATE(3222)] = 178628, + [SMALL_STATE(3223)] = 178647, + [SMALL_STATE(3224)] = 178666, + [SMALL_STATE(3225)] = 178685, + [SMALL_STATE(3226)] = 178704, + [SMALL_STATE(3227)] = 178723, + [SMALL_STATE(3228)] = 178742, + [SMALL_STATE(3229)] = 178761, + [SMALL_STATE(3230)] = 178780, + [SMALL_STATE(3231)] = 178799, + [SMALL_STATE(3232)] = 178818, + [SMALL_STATE(3233)] = 178837, + [SMALL_STATE(3234)] = 178856, + [SMALL_STATE(3235)] = 178875, + [SMALL_STATE(3236)] = 178894, + [SMALL_STATE(3237)] = 178913, + [SMALL_STATE(3238)] = 178932, + [SMALL_STATE(3239)] = 178951, + [SMALL_STATE(3240)] = 178970, + [SMALL_STATE(3241)] = 178989, + [SMALL_STATE(3242)] = 179008, + [SMALL_STATE(3243)] = 179027, + [SMALL_STATE(3244)] = 179046, + [SMALL_STATE(3245)] = 179065, + [SMALL_STATE(3246)] = 179084, + [SMALL_STATE(3247)] = 179103, + [SMALL_STATE(3248)] = 179122, + [SMALL_STATE(3249)] = 179139, + [SMALL_STATE(3250)] = 179158, + [SMALL_STATE(3251)] = 179177, + [SMALL_STATE(3252)] = 179196, + [SMALL_STATE(3253)] = 179215, + [SMALL_STATE(3254)] = 179234, + [SMALL_STATE(3255)] = 179253, + [SMALL_STATE(3256)] = 179272, + [SMALL_STATE(3257)] = 179291, + [SMALL_STATE(3258)] = 179310, + [SMALL_STATE(3259)] = 179329, + [SMALL_STATE(3260)] = 179348, + [SMALL_STATE(3261)] = 179367, + [SMALL_STATE(3262)] = 179386, + [SMALL_STATE(3263)] = 179405, + [SMALL_STATE(3264)] = 179424, + [SMALL_STATE(3265)] = 179443, + [SMALL_STATE(3266)] = 179461, + [SMALL_STATE(3267)] = 179479, + [SMALL_STATE(3268)] = 179497, + [SMALL_STATE(3269)] = 179515, + [SMALL_STATE(3270)] = 179533, + [SMALL_STATE(3271)] = 179551, + [SMALL_STATE(3272)] = 179569, + [SMALL_STATE(3273)] = 179587, + [SMALL_STATE(3274)] = 179605, + [SMALL_STATE(3275)] = 179623, + [SMALL_STATE(3276)] = 179641, + [SMALL_STATE(3277)] = 179659, + [SMALL_STATE(3278)] = 179677, + [SMALL_STATE(3279)] = 179695, + [SMALL_STATE(3280)] = 179713, + [SMALL_STATE(3281)] = 179731, + [SMALL_STATE(3282)] = 179749, + [SMALL_STATE(3283)] = 179767, + [SMALL_STATE(3284)] = 179785, + [SMALL_STATE(3285)] = 179803, + [SMALL_STATE(3286)] = 179821, + [SMALL_STATE(3287)] = 179839, + [SMALL_STATE(3288)] = 179857, + [SMALL_STATE(3289)] = 179875, + [SMALL_STATE(3290)] = 179893, + [SMALL_STATE(3291)] = 179911, + [SMALL_STATE(3292)] = 179929, + [SMALL_STATE(3293)] = 179947, + [SMALL_STATE(3294)] = 179965, + [SMALL_STATE(3295)] = 179983, + [SMALL_STATE(3296)] = 180001, + [SMALL_STATE(3297)] = 180019, + [SMALL_STATE(3298)] = 180037, + [SMALL_STATE(3299)] = 180055, + [SMALL_STATE(3300)] = 180073, + [SMALL_STATE(3301)] = 180091, + [SMALL_STATE(3302)] = 180109, + [SMALL_STATE(3303)] = 180127, + [SMALL_STATE(3304)] = 180145, + [SMALL_STATE(3305)] = 180163, + [SMALL_STATE(3306)] = 180181, + [SMALL_STATE(3307)] = 180199, + [SMALL_STATE(3308)] = 180217, + [SMALL_STATE(3309)] = 180235, + [SMALL_STATE(3310)] = 180253, + [SMALL_STATE(3311)] = 180271, + [SMALL_STATE(3312)] = 180289, + [SMALL_STATE(3313)] = 180307, + [SMALL_STATE(3314)] = 180325, + [SMALL_STATE(3315)] = 180343, + [SMALL_STATE(3316)] = 180361, + [SMALL_STATE(3317)] = 180379, + [SMALL_STATE(3318)] = 180397, + [SMALL_STATE(3319)] = 180415, + [SMALL_STATE(3320)] = 180433, + [SMALL_STATE(3321)] = 180451, + [SMALL_STATE(3322)] = 180469, + [SMALL_STATE(3323)] = 180487, + [SMALL_STATE(3324)] = 180505, + [SMALL_STATE(3325)] = 180523, + [SMALL_STATE(3326)] = 180541, + [SMALL_STATE(3327)] = 180559, + [SMALL_STATE(3328)] = 180577, + [SMALL_STATE(3329)] = 180595, + [SMALL_STATE(3330)] = 180613, + [SMALL_STATE(3331)] = 180631, + [SMALL_STATE(3332)] = 180649, + [SMALL_STATE(3333)] = 180667, + [SMALL_STATE(3334)] = 180685, + [SMALL_STATE(3335)] = 180703, + [SMALL_STATE(3336)] = 180721, + [SMALL_STATE(3337)] = 180739, + [SMALL_STATE(3338)] = 180757, + [SMALL_STATE(3339)] = 180775, + [SMALL_STATE(3340)] = 180793, + [SMALL_STATE(3341)] = 180811, + [SMALL_STATE(3342)] = 180829, + [SMALL_STATE(3343)] = 180847, + [SMALL_STATE(3344)] = 180865, + [SMALL_STATE(3345)] = 180883, + [SMALL_STATE(3346)] = 180901, + [SMALL_STATE(3347)] = 180919, + [SMALL_STATE(3348)] = 180937, + [SMALL_STATE(3349)] = 180955, + [SMALL_STATE(3350)] = 180973, + [SMALL_STATE(3351)] = 180991, + [SMALL_STATE(3352)] = 181009, + [SMALL_STATE(3353)] = 181027, + [SMALL_STATE(3354)] = 181045, + [SMALL_STATE(3355)] = 181063, + [SMALL_STATE(3356)] = 181081, + [SMALL_STATE(3357)] = 181099, + [SMALL_STATE(3358)] = 181117, + [SMALL_STATE(3359)] = 181135, + [SMALL_STATE(3360)] = 181153, + [SMALL_STATE(3361)] = 181173, + [SMALL_STATE(3362)] = 181191, + [SMALL_STATE(3363)] = 181209, + [SMALL_STATE(3364)] = 181227, + [SMALL_STATE(3365)] = 181245, + [SMALL_STATE(3366)] = 181263, + [SMALL_STATE(3367)] = 181281, + [SMALL_STATE(3368)] = 181299, + [SMALL_STATE(3369)] = 181317, + [SMALL_STATE(3370)] = 181335, + [SMALL_STATE(3371)] = 181353, + [SMALL_STATE(3372)] = 181371, + [SMALL_STATE(3373)] = 181389, + [SMALL_STATE(3374)] = 181407, + [SMALL_STATE(3375)] = 181425, + [SMALL_STATE(3376)] = 181443, + [SMALL_STATE(3377)] = 181461, + [SMALL_STATE(3378)] = 181479, + [SMALL_STATE(3379)] = 181497, + [SMALL_STATE(3380)] = 181516, + [SMALL_STATE(3381)] = 181529, + [SMALL_STATE(3382)] = 181542, + [SMALL_STATE(3383)] = 181555, + [SMALL_STATE(3384)] = 181568, + [SMALL_STATE(3385)] = 181581, + [SMALL_STATE(3386)] = 181594, + [SMALL_STATE(3387)] = 181607, + [SMALL_STATE(3388)] = 181620, + [SMALL_STATE(3389)] = 181633, + [SMALL_STATE(3390)] = 181650, + [SMALL_STATE(3391)] = 181667, + [SMALL_STATE(3392)] = 181680, + [SMALL_STATE(3393)] = 181690, + [SMALL_STATE(3394)] = 181700, + [SMALL_STATE(3395)] = 181710, + [SMALL_STATE(3396)] = 181720, + [SMALL_STATE(3397)] = 181730, + [SMALL_STATE(3398)] = 181740, + [SMALL_STATE(3399)] = 181750, + [SMALL_STATE(3400)] = 181760, + [SMALL_STATE(3401)] = 181770, + [SMALL_STATE(3402)] = 181782, + [SMALL_STATE(3403)] = 181795, + [SMALL_STATE(3404)] = 181808, + [SMALL_STATE(3405)] = 181821, + [SMALL_STATE(3406)] = 181834, + [SMALL_STATE(3407)] = 181847, + [SMALL_STATE(3408)] = 181860, + [SMALL_STATE(3409)] = 181873, + [SMALL_STATE(3410)] = 181886, + [SMALL_STATE(3411)] = 181899, + [SMALL_STATE(3412)] = 181912, + [SMALL_STATE(3413)] = 181925, + [SMALL_STATE(3414)] = 181935, + [SMALL_STATE(3415)] = 181945, + [SMALL_STATE(3416)] = 181955, + [SMALL_STATE(3417)] = 181965, + [SMALL_STATE(3418)] = 181975, + [SMALL_STATE(3419)] = 181985, + [SMALL_STATE(3420)] = 181995, + [SMALL_STATE(3421)] = 182005, + [SMALL_STATE(3422)] = 182015, + [SMALL_STATE(3423)] = 182025, + [SMALL_STATE(3424)] = 182035, + [SMALL_STATE(3425)] = 182045, + [SMALL_STATE(3426)] = 182055, + [SMALL_STATE(3427)] = 182065, + [SMALL_STATE(3428)] = 182075, + [SMALL_STATE(3429)] = 182085, + [SMALL_STATE(3430)] = 182095, + [SMALL_STATE(3431)] = 182105, + [SMALL_STATE(3432)] = 182115, + [SMALL_STATE(3433)] = 182125, + [SMALL_STATE(3434)] = 182135, + [SMALL_STATE(3435)] = 182145, + [SMALL_STATE(3436)] = 182152, + [SMALL_STATE(3437)] = 182159, + [SMALL_STATE(3438)] = 182166, + [SMALL_STATE(3439)] = 182173, + [SMALL_STATE(3440)] = 182180, + [SMALL_STATE(3441)] = 182187, + [SMALL_STATE(3442)] = 182194, + [SMALL_STATE(3443)] = 182201, + [SMALL_STATE(3444)] = 182208, + [SMALL_STATE(3445)] = 182215, + [SMALL_STATE(3446)] = 182222, + [SMALL_STATE(3447)] = 182229, + [SMALL_STATE(3448)] = 182236, + [SMALL_STATE(3449)] = 182243, + [SMALL_STATE(3450)] = 182250, + [SMALL_STATE(3451)] = 182257, + [SMALL_STATE(3452)] = 182264, + [SMALL_STATE(3453)] = 182271, + [SMALL_STATE(3454)] = 182278, + [SMALL_STATE(3455)] = 182285, + [SMALL_STATE(3456)] = 182292, + [SMALL_STATE(3457)] = 182299, + [SMALL_STATE(3458)] = 182306, + [SMALL_STATE(3459)] = 182313, + [SMALL_STATE(3460)] = 182320, + [SMALL_STATE(3461)] = 182327, + [SMALL_STATE(3462)] = 182334, + [SMALL_STATE(3463)] = 182341, + [SMALL_STATE(3464)] = 182348, + [SMALL_STATE(3465)] = 182355, + [SMALL_STATE(3466)] = 182362, + [SMALL_STATE(3467)] = 182369, + [SMALL_STATE(3468)] = 182376, + [SMALL_STATE(3469)] = 182383, + [SMALL_STATE(3470)] = 182390, + [SMALL_STATE(3471)] = 182397, + [SMALL_STATE(3472)] = 182404, + [SMALL_STATE(3473)] = 182411, + [SMALL_STATE(3474)] = 182418, + [SMALL_STATE(3475)] = 182425, + [SMALL_STATE(3476)] = 182432, + [SMALL_STATE(3477)] = 182439, + [SMALL_STATE(3478)] = 182446, + [SMALL_STATE(3479)] = 182453, + [SMALL_STATE(3480)] = 182460, + [SMALL_STATE(3481)] = 182467, + [SMALL_STATE(3482)] = 182474, + [SMALL_STATE(3483)] = 182481, + [SMALL_STATE(3484)] = 182488, + [SMALL_STATE(3485)] = 182495, + [SMALL_STATE(3486)] = 182502, + [SMALL_STATE(3487)] = 182509, + [SMALL_STATE(3488)] = 182516, + [SMALL_STATE(3489)] = 182523, + [SMALL_STATE(3490)] = 182530, + [SMALL_STATE(3491)] = 182537, + [SMALL_STATE(3492)] = 182544, + [SMALL_STATE(3493)] = 182551, + [SMALL_STATE(3494)] = 182558, + [SMALL_STATE(3495)] = 182565, + [SMALL_STATE(3496)] = 182572, + [SMALL_STATE(3497)] = 182579, + [SMALL_STATE(3498)] = 182586, + [SMALL_STATE(3499)] = 182593, + [SMALL_STATE(3500)] = 182600, + [SMALL_STATE(3501)] = 182607, + [SMALL_STATE(3502)] = 182614, + [SMALL_STATE(3503)] = 182621, + [SMALL_STATE(3504)] = 182628, + [SMALL_STATE(3505)] = 182635, + [SMALL_STATE(3506)] = 182642, + [SMALL_STATE(3507)] = 182649, + [SMALL_STATE(3508)] = 182656, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -170314,4031 +171051,4033 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source, 0), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), - [59] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_clause, 2, .production_id = 39), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [59] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_clause, 4, .production_id = 62), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3395), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3255), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [91] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_clause, 2, .production_id = 39), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), - [101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_clause, 4, .production_id = 62), - [103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_clause, 4, .production_id = 62), - [105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(227), - [108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(714), - [111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(34), - [114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(816), - [117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(818), - [120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3395), - [123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3395), - [126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3299), - [129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(821), - [132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2106), - [135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2115), - [138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(26), - [141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), - [143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2369), - [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3255), - [149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3279), - [152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(286), - [155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(278), - [158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(246), - [161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(245), - [164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(244), - [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3426), - [170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), - [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3480), - [175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(816), - [178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(209), - [181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2800), - [184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3), SHIFT(362), - [187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3), SHIFT(714), - [190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), - [192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), - [194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), - [196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), - [198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), - [200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), - [202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3), SHIFT(2106), - [207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3), SHIFT(2115), - [210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3), SHIFT(21), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [91] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_clause, 4, .production_id = 62), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), + [101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(221), + [104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(688), + [107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(39), + [110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(817), + [113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(818), + [116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3415), + [119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3415), + [122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3267), + [125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(936), + [128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2122), + [131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2129), + [134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(28), + [137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), + [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2395), + [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3270), + [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3305), + [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(487), + [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(495), + [154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(506), + [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(512), + [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(538), + [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(930), + [166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), + [168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3502), + [171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(817), + [174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(207), + [177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2866), + [180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_clause, 2, .production_id = 39), + [182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_clause, 2, .production_id = 39), + [184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3), SHIFT(363), + [187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3), SHIFT(688), + [190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), + [192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), + [194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), + [196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), + [198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), + [200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), + [202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), + [204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3), SHIFT(2122), + [207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3), SHIFT(2129), + [210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3), SHIFT(24), [213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3319), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), - [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_clause, 3), SHIFT(3397), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3273), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_clause, 3), SHIFT(1075), [234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 3), - [236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), - [238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 1), SHIFT(225), - [247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 1), SHIFT(714), - [250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), - [252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 1), SHIFT(2106), - [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 1), SHIFT(2115), - [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 1), SHIFT(21), + [236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), + [238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), + [244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 1), SHIFT(216), + [247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 1), SHIFT(688), + [250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), + [252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 1), SHIFT(2122), + [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 1), SHIFT(2129), + [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 1), SHIFT(24), [261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 1), - [263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_clause, 1), SHIFT(3397), + [263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_clause, 1), SHIFT(1075), [266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 1), - [268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), - [278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), - [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), - [282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), - [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), - [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3310), - [294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), - [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), - [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), - [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), - [314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), - [320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), - [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), - [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), - [336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), - [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), - [348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), - [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), - [358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), - [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), - [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), - [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), - [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), - [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3434), - [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), - [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), - [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), - [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), - [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), - [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3398), + [268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), + [278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), + [282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), + [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), + [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), + [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), + [294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), + [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), + [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), + [314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), + [320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), + [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), + [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), + [336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), + [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), + [348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), + [358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), + [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), + [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), + [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), + [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), + [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), + [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), + [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), [408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3401), - [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), - [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3387), - [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), - [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), - [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), - [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), - [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), - [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3423), - [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), - [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), - [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), - [464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), - [468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), - [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), - [472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), - [474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3390), - [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), - [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), - [480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), - [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), - [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), - [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), - [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3386), - [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), - [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), - [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), - [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), - [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), - [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3393), - [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), - [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), - [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), - [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), - [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), - [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), - [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), - [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), - [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), - [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), - [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), - [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), - [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), - [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), - [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), - [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), - [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), - [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), - [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), - [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), - [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3305), - [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), - [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), - [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), - [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), - [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), - [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), - [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3397), - [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), - [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), - [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3426), - [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), - [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), - [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), - [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(37), - [709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(714), - [712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(31), - [715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(1566), - [718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(1464), - [721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(3403), - [724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(3403), - [727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(3336), - [730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(1476), - [733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(2106), - [736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(2115), - [739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(25), - [742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), - [744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(2345), - [747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(3286), - [750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(3258), - [753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(649), - [756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(652), - [759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(653), - [762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(660), - [765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(671), - [768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(3408), - [771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(3436), - [774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(1566), - [777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(684), - [780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(3186), - [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), - [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), - [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), - [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), - [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), - [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), - [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), - [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), - [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), - [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), - [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), - [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), - [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), - [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), - [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), - [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), - [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), - [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), - [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), - [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), - [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), - [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), - [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), - [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), - [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), - [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), - [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), - [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3402), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), - [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), - [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), - [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), - [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), - [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), - [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), - [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), - [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3399), - [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), - [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400), - [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), - [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [1123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source, 1, .production_id = 1), - [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), + [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), + [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), + [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), + [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), + [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), + [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), + [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), + [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), + [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), + [464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), + [466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), + [468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), + [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), + [472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), + [474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), + [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), + [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), + [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), + [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3304), + [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), + [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), + [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), + [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), + [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), + [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), + [536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), + [538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), + [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), + [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), + [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), + [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), + [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), + [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), + [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), + [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), + [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), + [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), + [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), + [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), + [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), + [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), + [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), + [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), + [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), + [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), + [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), + [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), + [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), + [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), + [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), + [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), + [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), + [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), + [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), + [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), + [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), + [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), + [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), + [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), + [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), + [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), + [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3347), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), + [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), + [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), + [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), + [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), + [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), + [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), + [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), + [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), + [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), + [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), + [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), + [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), + [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), + [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), + [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), + [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), + [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(42), + [873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(688), + [876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(36), + [879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(1571), + [882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(1482), + [885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(3414), + [888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(3414), + [891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(3320), + [894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(1448), + [897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(2122), + [900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(2129), + [903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(19), + [906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), + [908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(2400), + [911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(3344), + [914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(3351), + [917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(748), + [920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(746), + [923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(742), + [926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(740), + [929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(739), + [932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(1449), + [935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(3470), + [938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(1571), + [941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(734), + [944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(3064), + [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), + [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), + [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), + [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), + [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), + [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), + [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2981), + [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2608), + [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), + [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), [1127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), [1129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(90), - [1132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(714), - [1135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(31), - [1138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1633), - [1141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1464), - [1144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3403), - [1147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3403), - [1150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3336), - [1153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1476), - [1156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2106), - [1159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2115), - [1162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(25), - [1165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2345), - [1168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3286), - [1171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3258), - [1174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(649), - [1177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(652), - [1180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(653), - [1183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(660), - [1186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(671), - [1189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3408), - [1192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3436), - [1195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1633), - [1198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(684), - [1201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3186), - [1204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [1206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [1216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), - [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), - [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), - [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), - [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [1300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), - [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), - [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), - [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), - [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3388), - [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), - [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), - [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3406), - [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), - [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), - [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), - [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), - [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [1448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), - [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), - [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), - [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), - [1468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), - [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [1474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [1478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), - [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), - [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [1492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), - [1494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), - [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), - [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [1504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), - [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), - [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), - [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), - [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), - [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), - [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), - [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), - [1546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), - [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [1554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), - [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), - [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), - [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [1572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), - [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), - [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), - [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), - [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), - [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), - [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), - [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), - [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [1630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), - [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), - [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [1644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [1648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), - [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [1652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), - [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [1662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), - [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [1668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), - [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), - [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), - [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), - [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), - [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [1698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), - [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), - [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), - [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), - [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), - [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [1736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), - [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), - [1742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), - [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [1754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), - [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [1758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), - [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [1762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), - [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), - [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [1770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), - [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [1776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), - [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), - [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [1784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), - [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [1788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), - [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [1794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), - [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), - [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), - [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [1814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), - [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), - [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [1842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), - [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [1848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), - [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [1852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), - [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), - [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [1864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), - [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [1868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [1870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), - [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), - [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [1878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), - [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [1882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [1884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), - [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [1888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [1892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [1898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), - [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [1902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), - [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [1908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), - [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), - [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [1922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [1928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [1932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [1940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), - [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), - [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), - [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [1974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), - [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [1986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), - [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), - [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), - [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), - [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), - [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), - [2036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), - [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [2040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), - [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [2044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [2050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [2056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), - [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [2062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), - [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [2070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), - [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [2076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), - [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), - [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [2088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), - [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [2094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), - [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), - [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), - [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), - [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), - [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [2118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), - [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), - [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), - [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), - [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), - [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), - [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), - [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), - [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), - [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), - [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [2176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), - [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), - [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), - [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), - [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), - [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), - [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), - [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), - [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), - [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [2228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), - [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), - [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), - [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [2242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), - [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), - [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), - [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [2254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), - [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), - [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [2270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), - [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [2288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [2292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [2298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), - [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [2302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), - [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [2306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), - [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [2314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), - [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [2318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), - [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [2322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), - [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [2328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [2334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [2342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [2346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), - [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [2352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), - [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [2356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), - [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [2362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), - [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [2366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), - [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [2372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), - [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [2376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), - [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [2382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [2386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), - [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [2392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), - [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [2398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), - [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [2402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [2406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), - [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [2412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), - [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [2416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), - [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [2422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [2426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), - [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [2432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [2436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), - [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [2442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [2448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), - [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [2454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), - [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [2460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), - [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [2466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), - [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [2472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), - [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [2478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), - [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [2484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), - [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [2488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [2494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), - [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [2500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [2506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [2512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [2516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), - [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [2524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), - [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [2530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [2534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), - [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), - [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), - [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), - [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [2570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [2576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [2580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [2586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [2592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [2604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), - [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [2610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [2614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), - [2616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [2620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [2626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [2630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), - [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [2636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), - [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [2640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), - [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [2644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [2650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [2656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [2660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [2666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), - [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [2672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [2676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [2682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [2688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [2692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [2696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [2700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [2706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [2710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [2716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [2720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [2728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [2734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), - [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [2742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [2748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [2754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [2760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [2766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [2772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [2778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), - [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [2782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), - [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [2786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), - [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [2790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [2794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), - [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [2798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [2804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), - [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [2810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), - [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [2816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), - [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [2822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), - [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [2828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), - [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [2832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), - [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [2842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), - [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [2848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), - [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [2852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), - [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [2858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), - [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [2862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [2866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [2872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), - [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [2880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [2886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), - [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [2892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), - [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [2900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), - [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [2904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), - [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [2910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [2916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [2920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), - [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [2926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [2932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), - [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [2946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [2952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [2956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [2962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), - [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [2966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [2970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [2974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [2978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [2990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [2998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), - [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [3018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), - [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [3024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), - [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), - [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [3042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [3046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [3050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [3054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [3060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [3064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), - [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [3068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [3072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), - [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [3076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), - [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [3080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [3086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), - [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [3090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), - [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [3096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [3102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), - [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [3106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), - [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [3110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), - [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [3116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [3122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [3126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [3132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [3138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), - [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [3144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), - [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [3150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [3156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [3160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), - [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [3164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), - [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [3170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), - [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [3176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [3180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), - [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [3186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [3192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), - [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [3198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [3202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), - [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [3208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [3214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), - [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [3222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [3238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), - [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [3242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [3252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), - [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [3256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), - [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), - [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [3270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), - [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [3280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), - [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [3286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), - [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [3292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), - [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [3296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), - [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [3302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), - [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), - [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), - [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), - [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), - [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [3324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [3340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), - [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [3346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), - [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [3366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [3378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [3386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [3392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), - [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [3398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [3404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [3410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [3414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [3418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [3426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), - [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [3438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), - [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [3446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), - [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [3454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), - [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [3462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [3468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [3474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [3478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [3488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), - [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [3494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), - [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [3500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), - [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [3508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [3516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [3522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), - [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [3526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [3532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [3538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [3542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), - [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [3548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [3552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [3558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), - [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [3562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [3568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), - [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [3574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), - [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [3578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), - [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [3584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), - [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [3590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [3596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), - [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), - [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), - [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [3630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), - [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), - [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [3658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [3664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [3672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), - [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [3678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), - [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [3682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), - [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [3686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), - [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [3692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), - [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [3698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), - [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [3706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), - [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [3712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), - [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), - [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [3722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [3726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [3730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [3736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [3742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), - [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), - [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [3752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), - [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), - [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), - [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [3766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), - [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [3770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), - [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [3776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), - [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [3780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), - [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [3790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [3808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [3814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [3818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [3824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [3830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [3834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [3840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [3844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), - [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [3850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), - [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [3854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), - [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [3858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), - [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [3864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), - [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [3868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [3872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [3876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), - [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [3882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [3890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [3894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), - [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [3898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), - [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [3902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), - [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [3908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), - [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [3912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), - [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [3916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [3920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), - [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [3924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [3928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), - [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [3934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), - [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [3940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), - [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [3944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), - [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), - [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), - [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [3966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), - [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [3972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), - [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [3982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), - [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), - [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [3992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), - [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [3998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [4002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [4008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), - [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [4014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), - [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [4018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), - [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [4022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), - [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [4028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), - [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [4032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), - [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [4038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), - [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [4042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), - [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [4048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), - [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [4054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), - [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), - [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [4072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), - [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [4076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), - [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), - [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [4088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), - [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), - [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [4096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 3, .production_id = 39), - [4098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 3, .production_id = 39), - [4100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 39), SHIFT_REPEAT(813), - [4103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 39), SHIFT_REPEAT(445), - [4106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 39), - [4108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 39), - [4110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 1), - [4112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 1), - [4114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 1, .production_id = 1), SHIFT_REPEAT(815), - [4117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 1, .production_id = 1), SHIFT_REPEAT(445), - [4120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 1, .production_id = 1), - [4122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 1, .production_id = 1), - [4124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(817), - [4127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(445), - [4130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dis_expr_repeat1, 2), - [4132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), + [1132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(688), + [1135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(36), + [1138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1692), + [1141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1482), + [1144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3414), + [1147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3414), + [1150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3320), + [1153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1448), + [1156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2122), + [1159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2129), + [1162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(19), + [1165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2400), + [1168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3344), + [1171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3351), + [1174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(748), + [1177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(746), + [1180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(742), + [1183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(740), + [1186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(739), + [1189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1449), + [1192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3470), + [1195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1692), + [1198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(734), + [1201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3064), + [1204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [1206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [1216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source, 1, .production_id = 1), + [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [1224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), + [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), + [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), + [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2982), + [1256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), + [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2865), + [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), + [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), + [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), + [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2967), + [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), + [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), + [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), + [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), + [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), + [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), + [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), + [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [1470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), + [1472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), + [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [1476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), + [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), + [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), + [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), + [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [1504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), + [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), + [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), + [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), + [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [1546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [1548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [1550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [1552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [1556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), + [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), + [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), + [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), + [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), + [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), + [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [1610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), + [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), + [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [1630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), + [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), + [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [1644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), + [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [1650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [1654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), + [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), + [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [1664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), + [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), + [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), + [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), + [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), + [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), + [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [1698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), + [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), + [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), + [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), + [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [1722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), + [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [1726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), + [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), + [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [1736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), + [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), + [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [1744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), + [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), + [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [1754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), + [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [1758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), + [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [1762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), + [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), + [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [1774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), + [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), + [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [1786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), + [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [1790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), + [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [1794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), + [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), + [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), + [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), + [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), + [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [1814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), + [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), + [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), + [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [1840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), + [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [1846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), + [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [1852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), + [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [1862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), + [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [1868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), + [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), + [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [1880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), + [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [1884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), + [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [1888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), + [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [1892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), + [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [1896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), + [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [1900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), + [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [1906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), + [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [1910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), + [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), + [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), + [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [1924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [1930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), + [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [1938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), + [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [1942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), + [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), + [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [1968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), + [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [1974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), + [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [1984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), + [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), + [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), + [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), + [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), + [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [2026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), + [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [2036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), + [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), + [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [2046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), + [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [2054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), + [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [2062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), + [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [2070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [2076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), + [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [2096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), + [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), + [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), + [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), + [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), + [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), + [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), + [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), + [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), + [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), + [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), + [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), + [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), + [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), + [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [2230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [2240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [2254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), + [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), + [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [2268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [2272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [2278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [2288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [2292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [2298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), + [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [2302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), + [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [2308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), + [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [2312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), + [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [2316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [2322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), + [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [2328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), + [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [2332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [2336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [2340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [2344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [2348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [2354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [2360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [2364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [2370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [2374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), + [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [2380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [2386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [2390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [2396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [2402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [2406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), + [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [2410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [2414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), + [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [2418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), + [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [2422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), + [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [2428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [2432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [2438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [2444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), + [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [2450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [2454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), + [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [2458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), + [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [2462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), + [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [2466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [2472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), + [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [2476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), + [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [2480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [2486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [2490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), + [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [2494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [2500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [2506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), + [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [2514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), + [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [2520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [2526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [2532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), + [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [2556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [2570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [2576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [2580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), + [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [2590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [2596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [2602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [2612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), + [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [2618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [2622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [2626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [2642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [2648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [2654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [2660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [2666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [2672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [2680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [2686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [2690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [2694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [2700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [2706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [2712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), + [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [2716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [2720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [2726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [2730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [2736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [2742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [2746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [2758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [2764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [2770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [2774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [2780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [2784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [2788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [2794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [2798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [2804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [2810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), + [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [2814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [2818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [2832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [2840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), + [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [2848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [2854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), + [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [2858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), + [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [2864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [2870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), + [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [2874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [2880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [2886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [2892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), + [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [2900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [2906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), + [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [2910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [2916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [2922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [2926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [2932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [2938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [2944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [2948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [2952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [2956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), + [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [2962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [2966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [2970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [2974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [2980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [2986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [2992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), + [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [2998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [3022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [3046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [3050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [3056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [3060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [3066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [3074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [3080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), + [3082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [3088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [3094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [3098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [3104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [3110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [3114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [3120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [3124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [3128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [3132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [3140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [3148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [3152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [3156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [3162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [3170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [3176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [3180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [3186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [3194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [3200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [3206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [3212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), + [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [3216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [3222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), + [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [3236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [3240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [3250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [3256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), + [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), + [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [3270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), + [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [3282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), + [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [3286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [3292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [3298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), + [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [3302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), + [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), + [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), + [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [3326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [3340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [3344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [3366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), + [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [3376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), + [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [3388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [3392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [3396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [3400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [3404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), + [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [3408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), + [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [3412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [3424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), + [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [3436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [3442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [3446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [3452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [3458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [3462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), + [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [3468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [3472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), + [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [3478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [3484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [3488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [3492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [3500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [3508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [3518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [3522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [3526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [3532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [3538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [3544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [3550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [3556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), + [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [3562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [3568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [3574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), + [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [3588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), + [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), + [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), + [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [3672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [3676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), + [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [3682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), + [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [3688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [3692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), + [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [3698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), + [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [3708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), + [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [3724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [3732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [3742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [3746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [3754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [3760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [3764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [3770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [3774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [3780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [3784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [3788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), + [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [3792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [3804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), + [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [3810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [3814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [3818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [3824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), + [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [3832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), + [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [3840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), + [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [3844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [3848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [3854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), + [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [3860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [3864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [3870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [3876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [3880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [3884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), + [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [3890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), + [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [3896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), + [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [3902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), + [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [3908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), + [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [3912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [3932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [3944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), + [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), + [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [3960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), + [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [3966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), + [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), + [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [3990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), + [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [3998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [4002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), + [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [4008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), + [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [4012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [4018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [4022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), + [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [4026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), + [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [4030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), + [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [4036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [4040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), + [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [4044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [4048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), + [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [4054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [4058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), + [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [4062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [4068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), + [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [4076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), + [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), + [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), + [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [4096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(813), + [4099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(342), + [4102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dis_expr_repeat1, 2), + [4104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), + [4106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 3, .production_id = 39), + [4108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 3, .production_id = 39), + [4110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 39), SHIFT_REPEAT(814), + [4113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 39), SHIFT_REPEAT(342), + [4116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 39), + [4118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 39), + [4120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 1), + [4122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 1), + [4124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 1, .production_id = 1), SHIFT_REPEAT(816), + [4127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 1, .production_id = 1), SHIFT_REPEAT(342), + [4130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 1, .production_id = 1), + [4132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 1, .production_id = 1), [4134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_num_lit, 1), [4136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_num_lit, 1), - [4138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), - [4140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 9, .production_id = 114), - [4142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 9, .production_id = 114), - [4144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 5, .production_id = 53), - [4146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 5, .production_id = 53), - [4148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sym_lit, 1), - [4150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sym_lit, 1), - [4152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__form, 1), - [4154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__form, 1), - [4156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3410), - [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), - [4160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_lit, 1, .production_id = 5), - [4162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_lit, 1, .production_id = 5), - [4164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_lit, 1, .production_id = 6), - [4166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_lit, 1, .production_id = 6), - [4168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dis_expr, 2, .production_id = 7), - [4170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dis_expr, 2, .production_id = 7), - [4172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_lit, 2), - [4174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_lit, 2), - [4176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__form, 2), - [4178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__form, 2), - [4180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_vec_lit, 2, .production_id = 9), - [4182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_vec_lit, 2, .production_id = 9), - [4184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_num_lit, 2), - [4186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_num_lit, 2), - [4188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kwd_symbol, 1), - [4190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kwd_symbol, 1), - [4192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kwd_lit, 2), - [4194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kwd_lit, 2), - [4196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_str_lit, 2), - [4198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_str_lit, 2), - [4200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_list_lit, 2, .production_id = 11), - [4202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_list_lit, 2, .production_id = 11), - [4204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_cond_lit, 2, .production_id = 13), - [4206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_cond_lit, 2, .production_id = 13), - [4208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splicing_read_cond_lit, 2, .production_id = 13), - [4210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splicing_read_cond_lit, 2, .production_id = 13), - [4212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_quoting_lit, 2, .production_id = 7), - [4214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_quoting_lit, 2, .production_id = 7), - [4216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoting_lit, 2, .production_id = 7), - [4218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoting_lit, 2, .production_id = 7), - [4220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syn_quoting_lit, 2, .production_id = 7), - [4222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_syn_quoting_lit, 2, .production_id = 7), - [4224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquote_splicing_lit, 2, .production_id = 7), - [4226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquote_splicing_lit, 2, .production_id = 7), - [4228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoting_lit, 2, .production_id = 7), - [4230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoting_lit, 2, .production_id = 7), - [4232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_lit, 2, .production_id = 14), - [4234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path_lit, 2, .production_id = 14), - [4236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_lit, 2, .production_id = 16), - [4238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_lit, 2, .production_id = 16), - [4240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_lit, 2, .production_id = 17), - [4242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_lit, 2, .production_id = 17), + [4138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [4140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 87), + [4142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 87), + [4144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_vec_lit, 2, .production_id = 9), + [4146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_vec_lit, 2, .production_id = 9), + [4148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 4, .production_id = 40), + [4150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 4, .production_id = 40), + [4152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquote_splicing_lit, 3, .production_id = 33), + [4154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquote_splicing_lit, 3, .production_id = 33), + [4156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_macro, 4, .production_id = 40), + [4158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_macro, 4, .production_id = 40), + [4160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_str_lit, 4), + [4162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_str_lit, 4), + [4164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_quoting_lit, 4, .production_id = 47), + [4166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_quoting_lit, 4, .production_id = 47), + [4168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoting_lit, 3, .production_id = 33), + [4170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoting_lit, 3, .production_id = 33), + [4172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_set_lit, 4, .production_id = 35), + [4174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_set_lit, 4, .production_id = 35), + [4176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__form, 4, .production_id = 34), + [4178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__form, 4, .production_id = 34), + [4180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splicing_read_cond_lit, 4, .production_id = 46), + [4182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splicing_read_cond_lit, 4, .production_id = 46), + [4184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_quoting_lit, 3, .production_id = 33), + [4186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_quoting_lit, 3, .production_id = 33), + [4188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splicing_read_cond_lit, 3, .production_id = 32), + [4190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splicing_read_cond_lit, 3, .production_id = 32), + [4192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_cond_lit, 3, .production_id = 32), + [4194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_cond_lit, 3, .production_id = 32), + [4196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 4, .production_id = 45), + [4198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 4, .production_id = 45), + [4200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 4, .production_id = 44), + [4202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 4, .production_id = 44), + [4204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoting_lit, 4, .production_id = 47), + [4206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoting_lit, 4, .production_id = 47), + [4208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 3, .production_id = 31), + [4210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 3, .production_id = 31), + [4212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_lit, 3, .production_id = 30), + [4214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_lit, 3, .production_id = 30), + [4216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_cond_lit, 4, .production_id = 46), + [4218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_cond_lit, 4, .production_id = 46), + [4220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoting_lit, 3, .production_id = 19), + [4222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoting_lit, 3, .production_id = 19), + [4224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquote_splicing_lit, 3, .production_id = 19), + [4226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquote_splicing_lit, 3, .production_id = 19), + [4228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 4, .production_id = 48), + [4230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 4, .production_id = 48), + [4232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syn_quoting_lit, 3, .production_id = 19), + [4234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_syn_quoting_lit, 3, .production_id = 19), + [4236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoting_lit, 3, .production_id = 19), + [4238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoting_lit, 3, .production_id = 19), + [4240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquote_splicing_lit, 4, .production_id = 47), + [4242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquote_splicing_lit, 4, .production_id = 47), [4244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dis_expr, 3, .production_id = 19), [4246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dis_expr, 3, .production_id = 19), - [4248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__form, 3, .production_id = 21), - [4250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__form, 3, .production_id = 21), - [4252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_set_lit, 3, .production_id = 22), - [4254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_set_lit, 3, .production_id = 22), - [4256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_vec_lit, 3, .production_id = 9), - [4258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_vec_lit, 3, .production_id = 9), - [4260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_str_lit, 3), - [4262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_str_lit, 3), - [4264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_macro, 3, .production_id = 25), - [4266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_macro, 3, .production_id = 25), - [4268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 3, .production_id = 25), - [4270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 3, .production_id = 25), - [4272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_list_lit, 3, .production_id = 27), - [4274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_list_lit, 3, .production_id = 27), - [4276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 10, .production_id = 114), - [4278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 10, .production_id = 114), - [4280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_cond_lit, 3, .production_id = 29), - [4282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_cond_lit, 3, .production_id = 29), - [4284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splicing_read_cond_lit, 3, .production_id = 29), - [4286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splicing_read_cond_lit, 3, .production_id = 29), - [4288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_quoting_lit, 3, .production_id = 19), - [4290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_quoting_lit, 3, .production_id = 19), - [4292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoting_lit, 3, .production_id = 19), - [4294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoting_lit, 3, .production_id = 19), - [4296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syn_quoting_lit, 3, .production_id = 19), - [4298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_syn_quoting_lit, 3, .production_id = 19), - [4300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquote_splicing_lit, 3, .production_id = 19), - [4302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquote_splicing_lit, 3, .production_id = 19), - [4304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoting_lit, 3, .production_id = 19), - [4306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoting_lit, 3, .production_id = 19), - [4308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_lit, 3, .production_id = 30), - [4310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_lit, 3, .production_id = 30), - [4312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 3, .production_id = 31), - [4314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 3, .production_id = 31), - [4316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_cond_lit, 3, .production_id = 32), - [4318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_cond_lit, 3, .production_id = 32), - [4320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splicing_read_cond_lit, 3, .production_id = 32), - [4322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splicing_read_cond_lit, 3, .production_id = 32), - [4324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_quoting_lit, 3, .production_id = 33), - [4326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_quoting_lit, 3, .production_id = 33), - [4328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoting_lit, 3, .production_id = 33), - [4330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoting_lit, 3, .production_id = 33), - [4332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquote_splicing_lit, 3, .production_id = 33), - [4334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquote_splicing_lit, 3, .production_id = 33), - [4336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__form, 4, .production_id = 34), - [4338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__form, 4, .production_id = 34), - [4340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_set_lit, 4, .production_id = 35), - [4342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_set_lit, 4, .production_id = 35), - [4344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_str_lit, 4), - [4346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_str_lit, 4), - [4348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_macro, 4, .production_id = 40), - [4350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_macro, 4, .production_id = 40), - [4352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 4, .production_id = 40), - [4354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 4, .production_id = 40), - [4356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 4, .production_id = 43), - [4358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 4, .production_id = 43), - [4360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 4, .production_id = 44), - [4362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 4, .production_id = 44), - [4364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 4, .production_id = 45), - [4366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 4, .production_id = 45), - [4368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_cond_lit, 4, .production_id = 46), - [4370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_cond_lit, 4, .production_id = 46), - [4372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splicing_read_cond_lit, 4, .production_id = 46), - [4374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splicing_read_cond_lit, 4, .production_id = 46), - [4376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_quoting_lit, 4, .production_id = 47), - [4378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_quoting_lit, 4, .production_id = 47), - [4380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoting_lit, 4, .production_id = 47), - [4382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoting_lit, 4, .production_id = 47), - [4384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquote_splicing_lit, 4, .production_id = 47), - [4386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquote_splicing_lit, 4, .production_id = 47), - [4388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 4, .production_id = 48), - [4390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 4, .production_id = 48), - [4392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_macro, 5, .production_id = 50), - [4394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_macro, 5, .production_id = 50), - [4396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 5, .production_id = 50), - [4398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 5, .production_id = 50), - [4400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 9, .production_id = 102), - [4402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 9, .production_id = 102), - [4404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 5, .production_id = 57), - [4406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 5, .production_id = 57), - [4408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 5, .production_id = 58), - [4410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 5, .production_id = 58), - [4412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 5, .production_id = 59), - [4414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 5, .production_id = 59), - [4416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 5, .production_id = 60), - [4418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 5, .production_id = 60), - [4420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_macro, 6, .production_id = 61), - [4422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_macro, 6, .production_id = 61), - [4424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 6, .production_id = 66), - [4426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 6, .production_id = 66), - [4428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 6, .production_id = 58), - [4430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 6, .production_id = 58), - [4432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 6, .production_id = 71), - [4434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 6, .production_id = 71), - [4436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 6, .production_id = 72), - [4438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 6, .production_id = 72), - [4440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 6, .production_id = 73), - [4442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 6, .production_id = 73), - [4444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 6, .production_id = 74), - [4446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 6, .production_id = 74), - [4448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_macro, 7, .production_id = 82), - [4450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_macro, 7, .production_id = 82), - [4452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 71), - [4454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 71), - [4456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 72), - [4458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 72), - [4460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 9, .production_id = 101), - [4462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 9, .production_id = 101), - [4464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 86), - [4466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 86), - [4468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 87), - [4470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 87), - [4472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 74), - [4474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 74), - [4476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 88), - [4478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 88), - [4480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 89), - [4482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 89), - [4484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 86), - [4486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 86), - [4488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 87), - [4490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 87), - [4492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 100), - [4494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 100), - [4496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 88), - [4498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 88), - [4500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 89), - [4502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 89), - [4504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 101), - [4506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 101), - [4508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 102), - [4510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 102), - [4512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 9, .production_id = 100), - [4514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 9, .production_id = 100), - [4516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(940), - [4519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(211), - [4522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [4524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 104), SHIFT(2103), - [4527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 104), SHIFT(545), - [4530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 104), - [4532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 104), SHIFT(3479), - [4535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 7, .production_id = 104), - [4537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 103), SHIFT(2103), - [4540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 103), SHIFT(545), - [4543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 103), - [4545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 103), SHIFT(3479), - [4548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 7, .production_id = 103), - [4550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 78), SHIFT(2103), - [4553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 78), SHIFT(545), - [4556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 78), - [4558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 78), SHIFT(3479), - [4561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 5, .production_id = 78), - [4563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 51), SHIFT(2103), - [4566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 51), SHIFT(545), - [4569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 51), - [4571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 51), SHIFT(3479), - [4574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 3, .production_id = 51), - [4576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 63), SHIFT(2103), - [4579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 63), SHIFT(545), - [4582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 63), - [4584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 63), SHIFT(3479), - [4587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 4, .production_id = 63), - [4589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 8, .production_id = 115), SHIFT(2103), - [4592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 8, .production_id = 115), SHIFT(545), - [4595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 8, .production_id = 115), - [4597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 8, .production_id = 115), SHIFT(3479), - [4600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 8, .production_id = 115), - [4602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2103), - [4605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(545), - [4608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), - [4610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3479), - [4613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1831), - [4616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1831), - [4619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), - [4621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 64), SHIFT(2103), - [4624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 64), SHIFT(545), - [4627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 64), - [4629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 64), SHIFT(3479), - [4632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 4, .production_id = 64), - [4634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 90), SHIFT(2103), - [4637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 90), SHIFT(545), - [4640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 90), - [4642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 90), SHIFT(3479), - [4645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 6, .production_id = 90), - [4647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 77), SHIFT(2103), - [4650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 77), SHIFT(545), - [4653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 77), - [4655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 77), SHIFT(3479), - [4658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 5, .production_id = 77), - [4660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 75), SHIFT(2103), - [4663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 75), SHIFT(545), - [4666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 75), - [4668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 75), SHIFT(3479), - [4671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 5, .production_id = 75), - [4673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 93), SHIFT(2103), - [4676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 93), SHIFT(545), - [4679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 93), - [4681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 93), SHIFT(3479), - [4684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 6, .production_id = 93), - [4686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 91), SHIFT(2103), - [4689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 91), SHIFT(545), - [4692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 91), - [4694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 91), SHIFT(3479), - [4697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 6, .production_id = 91), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [4839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [4869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(1036), - [4872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(546), - [4875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(2107), - [4878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(2114), - [4881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(24), - [4884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), - [4886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(3451), - [4889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(1829), - [4892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(280), - [4895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(6), - [4898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(275), - [4901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(139), - [4904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(274), - [4907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(272), - [4910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(269), - [4913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(2081), - [4916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(168), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [4963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), - [4967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), - [4969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 1, .production_id = 1), - [4971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_clause_repeat1, 1, .production_id = 1), - [4973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_part, 2, .production_id = 39), - [4975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_part, 2, .production_id = 39), + [4248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_quoting_lit, 3, .production_id = 19), + [4250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_quoting_lit, 3, .production_id = 19), + [4252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splicing_read_cond_lit, 3, .production_id = 29), + [4254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splicing_read_cond_lit, 3, .production_id = 29), + [4256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_cond_lit, 3, .production_id = 29), + [4258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_cond_lit, 3, .production_id = 29), + [4260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_list_lit, 3, .production_id = 27), + [4262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_list_lit, 3, .production_id = 27), + [4264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 3, .production_id = 25), + [4266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 3, .production_id = 25), + [4268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_macro, 3, .production_id = 25), + [4270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_macro, 3, .production_id = 25), + [4272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_str_lit, 3), + [4274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_str_lit, 3), + [4276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_macro, 5, .production_id = 50), + [4278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_macro, 5, .production_id = 50), + [4280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_lit, 2, .production_id = 17), + [4282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_lit, 2, .production_id = 17), + [4284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_vec_lit, 3, .production_id = 9), + [4286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_vec_lit, 3, .production_id = 9), + [4288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_set_lit, 3, .production_id = 22), + [4290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_set_lit, 3, .production_id = 22), + [4292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 10, .production_id = 114), + [4294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 10, .production_id = 114), + [4296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 5, .production_id = 50), + [4298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 5, .production_id = 50), + [4300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 5, .production_id = 53), + [4302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 5, .production_id = 53), + [4304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 5, .production_id = 57), + [4306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 5, .production_id = 57), + [4308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 5, .production_id = 58), + [4310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 5, .production_id = 58), + [4312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 5, .production_id = 59), + [4314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 5, .production_id = 59), + [4316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 5, .production_id = 60), + [4318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 5, .production_id = 60), + [4320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_lit, 2, .production_id = 16), + [4322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_lit, 2, .production_id = 16), + [4324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_lit, 2, .production_id = 14), + [4326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path_lit, 2, .production_id = 14), + [4328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_macro, 6, .production_id = 61), + [4330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_macro, 6, .production_id = 61), + [4332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 6, .production_id = 66), + [4334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 6, .production_id = 66), + [4336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoting_lit, 2, .production_id = 7), + [4338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoting_lit, 2, .production_id = 7), + [4340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquote_splicing_lit, 2, .production_id = 7), + [4342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquote_splicing_lit, 2, .production_id = 7), + [4344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 6, .production_id = 58), + [4346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 6, .production_id = 58), + [4348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 6, .production_id = 71), + [4350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 6, .production_id = 71), + [4352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 6, .production_id = 72), + [4354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 6, .production_id = 72), + [4356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syn_quoting_lit, 2, .production_id = 7), + [4358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_syn_quoting_lit, 2, .production_id = 7), + [4360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 6, .production_id = 73), + [4362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 6, .production_id = 73), + [4364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoting_lit, 2, .production_id = 7), + [4366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoting_lit, 2, .production_id = 7), + [4368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__form, 3, .production_id = 21), + [4370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__form, 3, .production_id = 21), + [4372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 6, .production_id = 74), + [4374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 6, .production_id = 74), + [4376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_quoting_lit, 2, .production_id = 7), + [4378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_quoting_lit, 2, .production_id = 7), + [4380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splicing_read_cond_lit, 2, .production_id = 13), + [4382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splicing_read_cond_lit, 2, .production_id = 13), + [4384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_macro, 7, .production_id = 82), + [4386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_macro, 7, .production_id = 82), + [4388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_cond_lit, 2, .production_id = 13), + [4390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_cond_lit, 2, .production_id = 13), + [4392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 71), + [4394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 71), + [4396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 72), + [4398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 72), + [4400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 9, .production_id = 114), + [4402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 9, .production_id = 114), + [4404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 86), + [4406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 86), + [4408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_list_lit, 2, .production_id = 11), + [4410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_list_lit, 2, .production_id = 11), + [4412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_str_lit, 2), + [4414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_str_lit, 2), + [4416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 74), + [4418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 74), + [4420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 88), + [4422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 88), + [4424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 9, .production_id = 102), + [4426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 9, .production_id = 102), + [4428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kwd_lit, 2), + [4430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kwd_lit, 2), + [4432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 89), + [4434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 89), + [4436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kwd_symbol, 1), + [4438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kwd_symbol, 1), + [4440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_num_lit, 2), + [4442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_num_lit, 2), + [4444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 86), + [4446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 86), + [4448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 87), + [4450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 87), + [4452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 100), + [4454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 100), + [4456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 88), + [4458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 88), + [4460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 89), + [4462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 89), + [4464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__form, 2), + [4466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__form, 2), + [4468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [4472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_lit, 2), + [4474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_lit, 2), + [4476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 101), + [4478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 101), + [4480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dis_expr, 2, .production_id = 7), + [4482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dis_expr, 2, .production_id = 7), + [4484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 102), + [4486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 102), + [4488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_lit, 1, .production_id = 6), + [4490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_lit, 1, .production_id = 6), + [4492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_lit, 1, .production_id = 5), + [4494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_lit, 1, .production_id = 5), + [4496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__form, 1), + [4498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__form, 1), + [4500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_lit, 1), + [4502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_lit, 1), + [4504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 9, .production_id = 100), + [4506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 9, .production_id = 100), + [4508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 9, .production_id = 101), + [4510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 9, .production_id = 101), + [4512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sym_lit, 1), + [4514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sym_lit, 1), + [4516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 4, .production_id = 43), + [4518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 4, .production_id = 43), + [4520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(941), + [4523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(214), + [4526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 51), SHIFT(2128), + [4529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 51), SHIFT(423), + [4532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 51), + [4534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 51), SHIFT(3483), + [4537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 3, .production_id = 51), + [4539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2128), + [4542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(423), + [4545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), + [4547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3483), + [4550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1844), + [4553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1844), + [4556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), + [4558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 63), SHIFT(2128), + [4561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 63), SHIFT(423), + [4564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 63), + [4566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 63), SHIFT(3483), + [4569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 4, .production_id = 63), + [4571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 103), SHIFT(2128), + [4574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 103), SHIFT(423), + [4577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 103), + [4579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 103), SHIFT(3483), + [4582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 7, .production_id = 103), + [4584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 8, .production_id = 115), SHIFT(2128), + [4587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 8, .production_id = 115), SHIFT(423), + [4590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 8, .production_id = 115), + [4592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 8, .production_id = 115), SHIFT(3483), + [4595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 8, .production_id = 115), + [4597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 104), SHIFT(2128), + [4600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 104), SHIFT(423), + [4603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 104), + [4605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 104), SHIFT(3483), + [4608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 7, .production_id = 104), + [4610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 90), SHIFT(2128), + [4613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 90), SHIFT(423), + [4616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 90), + [4618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 90), SHIFT(3483), + [4621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 6, .production_id = 90), + [4623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 64), SHIFT(2128), + [4626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 64), SHIFT(423), + [4629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 64), + [4631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 64), SHIFT(3483), + [4634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 4, .production_id = 64), + [4636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), + [4638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 75), SHIFT(2128), + [4641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 75), SHIFT(423), + [4644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 75), + [4646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 75), SHIFT(3483), + [4649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 5, .production_id = 75), + [4651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 77), SHIFT(2128), + [4654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 77), SHIFT(423), + [4657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 77), + [4659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 77), SHIFT(3483), + [4662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 5, .production_id = 77), + [4664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 78), SHIFT(2128), + [4667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 78), SHIFT(423), + [4670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 78), + [4672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 78), SHIFT(3483), + [4675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 5, .production_id = 78), + [4677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 93), SHIFT(2128), + [4680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 93), SHIFT(423), + [4683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 93), + [4685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 93), SHIFT(3483), + [4688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 6, .production_id = 93), + [4690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 91), SHIFT(2128), + [4693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 91), SHIFT(423), + [4696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 91), + [4698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 91), SHIFT(3483), + [4701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 6, .production_id = 91), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [4819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [4861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(1130), + [4864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(573), + [4867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(2120), + [4870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(2130), + [4873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(25), + [4876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), + [4878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(3446), + [4881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(1841), + [4884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(282), + [4887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(6), + [4890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(277), + [4893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(139), + [4896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(273), + [4899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(272), + [4902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(271), + [4905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(2082), + [4908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(254), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [4967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), + [4971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [4973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_part, 4, .production_id = 62), + [4975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_part, 4, .production_id = 62), [4977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_part, 3, .production_id = 52), [4979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_part, 3, .production_id = 52), - [4981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_part, 4, .production_id = 62), - [4983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_part, 4, .production_id = 62), - [4985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 1), - [4987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 1), - [4989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3489), - [4991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [4993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), - [4995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), - [4997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3476), - [4999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), - [5001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3462), - [5003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [5005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), - [5007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), - [5009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), - [5011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), - [5013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), - [5015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), - [5017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), - [5019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), - [5021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3502), - [5023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), - [5025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), - [5027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), - [5029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [5031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [5035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [5039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), - [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [5093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(1444), - [5096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(341), - [5099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), - [5101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), - [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), - [5105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(1564), - [5108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(714), - [5111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), - [5113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 1, .production_id = 12), - [5115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 1, .production_id = 12), - [5117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 6, .production_id = 85), - [5119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 6, .production_id = 85), + [4981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 1, .production_id = 1), + [4983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_clause_repeat1, 1, .production_id = 1), + [4985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_part, 2, .production_id = 39), + [4987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_part, 2, .production_id = 39), + [4989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 1), + [4991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 1), + [4993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3498), + [4995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), + [4997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), + [4999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [5001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), + [5003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [5005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), + [5007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [5009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), + [5011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), + [5013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), + [5015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [5017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), + [5019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [5021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), + [5023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [5025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), + [5027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [5029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), + [5031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), + [5033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [5035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), + [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [5039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), + [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [5043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), + [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), + [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [5097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(1447), + [5100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(190), + [5103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), + [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), + [5107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [5109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(1569), + [5112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(688), + [5115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), + [5117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 1, .production_id = 12), + [5119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 1, .production_id = 12), [5121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 5, .production_id = 67), [5123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 5, .production_id = 67), - [5125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 1, .production_id = 1), - [5127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 1, .production_id = 1), - [5129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3392), - [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), - [5133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 2, .production_id = 26), - [5135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 2, .production_id = 26), - [5137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 3, .production_id = 41), - [5139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 3, .production_id = 41), - [5141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 3, .production_id = 42), - [5143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 3, .production_id = 42), - [5145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 4, .production_id = 54), - [5147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 4, .production_id = 54), - [5149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 4, .production_id = 55), - [5151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 4, .production_id = 55), - [5153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 4, .production_id = 56), - [5155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 4, .production_id = 56), - [5157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 5, .production_id = 68), - [5159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 5, .production_id = 68), - [5161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 5, .production_id = 69), - [5163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 5, .production_id = 69), - [5165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 5, .production_id = 70), - [5167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 5, .production_id = 70), - [5169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 6, .production_id = 83), - [5171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 6, .production_id = 83), - [5173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 6, .production_id = 84), - [5175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 6, .production_id = 84), - [5177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 7, .production_id = 99), - [5179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 7, .production_id = 99), - [5181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), - [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [5185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_keyword, 1), - [5187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_keyword, 1), - [5189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_verb, 1), - [5191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulation_verb, 1), - [5193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_keyword, 3), - [5195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_keyword, 3), - [5197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause_word, 1), - [5199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause_word, 1), - [5201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_verb, 3), - [5203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulation_verb, 3), - [5205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause_word, 3), - [5207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause_word, 3), - [5209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 3, .production_id = 52), SHIFT(2766), - [5212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 3, .production_id = 52), SHIFT(392), - [5215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 3, .production_id = 52), - [5217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 3, .production_id = 52), SHIFT(3493), - [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [5222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 2, .production_id = 39), SHIFT(2728), - [5225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 2, .production_id = 39), SHIFT(392), - [5228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 2, .production_id = 39), - [5230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 2, .production_id = 39), SHIFT(3463), - [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [5235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), - [5237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_prefix_parameters, 1), - [5239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_prefix_parameters, 1), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), - [5243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 79), - [5245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 142), - [5247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 128), - [5249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 127), - [5251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 8, .production_id = 124), - [5253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 8, .production_id = 122), - [5255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 126), - [5257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 124), - [5259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 125), - [5261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 123), - [5263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 122), - [5265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 121), - [5267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 119), - [5269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 120), - [5271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 118), - [5273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 116), - [5275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 117), - [5277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 7, .production_id = 111), - [5279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 7, .production_id = 108), - [5281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 113), - [5283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 111), - [5285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 112), - [5287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 110), - [5289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 108), - [5291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 109), - [5293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 107), - [5295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 105), - [5297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 106), - [5299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 131), - [5301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 130), - [5303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 132), - [5305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 133), - [5307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 6, .production_id = 97), - [5309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 6, .production_id = 94), - [5311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 97), - [5313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 98), - [5315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 96), - [5317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 94), - [5319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 95), - [5321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 92), - [5323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 134), - [5325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 154), - [5327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 135), - [5329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 136), - [5331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 137), - [5333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 9, .production_id = 136), - [5335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 4, .production_id = 65), - [5337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 153), - [5339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 138), - [5341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 5, .production_id = 81), - [5343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 5, .production_id = 79), - [5345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 81), - [5347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 80), - [5349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 152), - [5351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 139), - [5353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_termination_clause, 5, .production_id = 76), - [5355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 5, .production_id = 76), - [5357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_clause, 5, .production_id = 76), - [5359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_clause, 5, .production_id = 76), - [5361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 129), - [5363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 151), - [5365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_clause, 1), - [5367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 140), - [5369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 141), - [5371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 150), - [5373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 148), - [5375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_clause, 2, .production_id = 39), - [5377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_clause, 2, .production_id = 39), - [5379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 2, .production_id = 39), - [5381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 143), - [5383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 65), - [5385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_termination_clause, 2, .production_id = 39), - [5387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 149), - [5389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 155), - [5391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_termination_clause, 4, .production_id = 62), - [5393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 4, .production_id = 62), - [5395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_clause, 4, .production_id = 62), - [5397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_clause, 4, .production_id = 62), - [5399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 144), - [5401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 145), - [5403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 146), - [5405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 147), - [5407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 1), - [5409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 3), - [5411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 13, .production_id = 156), - [5413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_termination_clause, 3, .production_id = 52), - [5415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 3, .production_id = 52), - [5417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_clause, 3, .production_id = 52), - [5419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_clause, 3, .production_id = 52), - [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), - [5427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_modifiers, 2), - [5429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_modifiers, 1), - [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), - [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [5467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(2116), - [5470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(545), - [5473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), - [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), - [5477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), - [5479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3297), - [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), - [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), - [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), - [5497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), - [5499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3328), - [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), - [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [5517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), - [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [5541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3495), - [5543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), - [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), - [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [5561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), - [5563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), - [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [5581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), - [5583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3334), - [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [5601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3498), - [5603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3245), - [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), - [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [5621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), - [5623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), - [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [5641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), - [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [5665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), - [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), - [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [5683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), - [5685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), - [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), - [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [5699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), - [5701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3280), - [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), - [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), - [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), - [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [5749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(2202), - [5752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(635), - [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [5793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__metadata_lit, 2, .production_id = 3), - [5795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__metadata_lit, 2, .production_id = 3), - [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [5799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__metadata_lit, 1, .production_id = 3), - [5801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__metadata_lit, 1, .production_id = 3), - [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [5807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__metadata_lit, 1, .production_id = 4), - [5809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__metadata_lit, 1, .production_id = 4), - [5811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__metadata_lit, 2, .production_id = 4), - [5813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__metadata_lit, 2, .production_id = 4), - [5815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), - [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [5819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3383), - [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), - [5823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_lit_repeat1, 2, .production_id = 18), - [5825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_lit_repeat1, 2, .production_id = 18), SHIFT_REPEAT(2106), - [5828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_lit_repeat1, 2, .production_id = 18), SHIFT_REPEAT(2115), - [5831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_lit_repeat1, 2, .production_id = 18), - [5833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_lit, 2, .production_id = 10), - [5835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_lit, 2, .production_id = 10), - [5837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_lit, 1, .production_id = 5), - [5839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_lit, 1, .production_id = 5), - [5841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_map_lit, 2, .production_id = 11), - [5843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_map_lit, 2, .production_id = 11), - [5845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_old_meta_lit, 3, .production_id = 24), - [5847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_old_meta_lit, 3, .production_id = 24), - [5849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_lit, 3, .production_id = 24), - [5851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_lit, 3, .production_id = 24), - [5853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_lit, 2, .production_id = 16), - [5855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_lit, 2, .production_id = 16), - [5857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_old_meta_lit, 2, .production_id = 10), - [5859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_old_meta_lit, 2, .production_id = 10), - [5861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_map_lit, 3, .production_id = 27), - [5863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_map_lit, 3, .production_id = 27), - [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [5867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(2236), - [5870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(779), - [5873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), - [5875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(2238), - [5878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(637), - [5881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_lit_repeat1, 1, .production_id = 2), - [5883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_lit_repeat1, 1, .production_id = 2), - [5885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(2265), - [5888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(288), - [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), - [5899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__format_token, 2), - [5901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__format_token, 2), - [5903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__format_token, 1, .production_id = 23), - [5905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__format_token, 1, .production_id = 23), - [5907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_modifiers_repeat1, 1), - [5909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_modifiers_repeat1, 1), - [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), - [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), - [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [5917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_dimension, 1), - [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [5939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3391), - [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), - [5943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_lit_repeat1, 2, .production_id = 18), SHIFT_REPEAT(2107), - [5946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_lit_repeat1, 2, .production_id = 18), SHIFT_REPEAT(2114), - [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [5955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), - [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), - [5963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(2415), - [5966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(454), - [5969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(2423), - [5972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(392), - [5975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), - [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), - [5979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_modifiers_repeat1, 2), SHIFT_REPEAT(2334), - [5982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_modifiers_repeat1, 2), - [5984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_modifiers_repeat1, 2), SHIFT_REPEAT(3501), - [5987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_modifiers_repeat1, 2), SHIFT_REPEAT(2432), - [5990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_modifiers_repeat1, 2), - [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), - [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), - [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), - [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), - [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), - [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), - [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), - [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), - [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), - [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), - [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), - [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), - [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), - [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), - [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [5125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 5, .production_id = 68), + [5127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 5, .production_id = 68), + [5129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 5, .production_id = 69), + [5131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 5, .production_id = 69), + [5133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 5, .production_id = 70), + [5135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 5, .production_id = 70), + [5137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 6, .production_id = 83), + [5139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 6, .production_id = 83), + [5141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 6, .production_id = 84), + [5143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 6, .production_id = 84), + [5145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 6, .production_id = 85), + [5147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 6, .production_id = 85), + [5149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), + [5151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3143), + [5153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), + [5155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), + [5157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), + [5159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), + [5161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), + [5163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), + [5165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 1, .production_id = 1), + [5167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 1, .production_id = 1), + [5169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3135), + [5171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), + [5173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 2, .production_id = 26), + [5175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 2, .production_id = 26), + [5177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3426), + [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), + [5181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 3, .production_id = 41), + [5183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 3, .production_id = 41), + [5185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 3, .production_id = 42), + [5187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 3, .production_id = 42), + [5189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 4, .production_id = 54), + [5191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 4, .production_id = 54), + [5193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 4, .production_id = 56), + [5195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 4, .production_id = 56), + [5197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 7, .production_id = 99), + [5199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 7, .production_id = 99), + [5201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 4, .production_id = 55), + [5203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 4, .production_id = 55), + [5205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_verb, 1), + [5207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulation_verb, 1), + [5209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_keyword, 3), + [5211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_keyword, 3), + [5213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_verb, 3), + [5215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulation_verb, 3), + [5217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause_word, 1), + [5219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause_word, 1), + [5221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_keyword, 1), + [5223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_keyword, 1), + [5225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3434), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), + [5229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause_word, 3), + [5231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause_word, 3), + [5233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 3, .production_id = 52), SHIFT(2463), + [5236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 3, .production_id = 52), SHIFT(426), + [5239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 3, .production_id = 52), + [5241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 3, .production_id = 52), SHIFT(3496), + [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [5246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 2, .production_id = 39), SHIFT(2777), + [5249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 2, .production_id = 39), SHIFT(426), + [5252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 2, .production_id = 39), + [5254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 2, .production_id = 39), SHIFT(3460), + [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [5259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), + [5261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_prefix_parameters, 1), + [5263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_prefix_parameters, 1), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), + [5267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 138), + [5269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_clause, 2, .production_id = 39), + [5271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 79), + [5273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 80), + [5275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_termination_clause, 5, .production_id = 76), + [5277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 5, .production_id = 76), + [5279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_clause, 5, .production_id = 76), + [5281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_clause, 5, .production_id = 76), + [5283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 5, .production_id = 81), + [5285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 5, .production_id = 79), + [5287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 13, .production_id = 156), + [5289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 97), + [5291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 155), + [5293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 154), + [5295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 153), + [5297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 4, .production_id = 65), + [5299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 65), + [5301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 152), + [5303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 151), + [5305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 150), + [5307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_termination_clause, 4, .production_id = 62), + [5309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 4, .production_id = 62), + [5311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_clause, 4, .production_id = 62), + [5313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_clause, 4, .production_id = 62), + [5315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 149), + [5317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 92), + [5319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 94), + [5321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 95), + [5323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 96), + [5325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 6, .production_id = 97), + [5327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 98), + [5329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 6, .production_id = 94), + [5331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 148), + [5333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 128), + [5335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 147), + [5337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 146), + [5339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 145), + [5341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_termination_clause, 3, .production_id = 52), + [5343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 3, .production_id = 52), + [5345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_clause, 3, .production_id = 52), + [5347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_clause, 3, .production_id = 52), + [5349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 144), + [5351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 143), + [5353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 105), + [5355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 3), + [5357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 106), + [5359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 107), + [5361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 108), + [5363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 109), + [5365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 110), + [5367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 111), + [5369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 112), + [5371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 141), + [5373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 142), + [5375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 113), + [5377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 7, .production_id = 108), + [5379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 7, .production_id = 111), + [5381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_termination_clause, 2, .production_id = 39), + [5383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 2, .production_id = 39), + [5385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_clause, 2, .production_id = 39), + [5387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 81), + [5389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 116), + [5391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 117), + [5393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 119), + [5395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 120), + [5397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 121), + [5399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 122), + [5401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 123), + [5403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 124), + [5405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 125), + [5407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 126), + [5409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 8, .production_id = 122), + [5411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 8, .production_id = 124), + [5413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 127), + [5415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_clause, 1), + [5417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 1), + [5419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 118), + [5421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 129), + [5423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 140), + [5425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 130), + [5427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 131), + [5429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 132), + [5431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 133), + [5433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 134), + [5435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 135), + [5437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 136), + [5439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 137), + [5441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 9, .production_id = 136), + [5443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 139), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), + [5451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_modifiers, 1), + [5453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_modifiers, 2), + [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [5491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(2133), + [5494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(423), + [5497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), + [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), + [5501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), + [5503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), + [5505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3341), + [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), + [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), + [5523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), + [5525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), + [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), + [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), + [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [5543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3438), + [5545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3323), + [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), + [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [5575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), + [5577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), + [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), + [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [5595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3462), + [5597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3370), + [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [5615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), + [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [5639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), + [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), + [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [5653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3490), + [5655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), + [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [5673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), + [5675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), + [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [5693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), + [5695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), + [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), + [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), + [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [5713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), + [5715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3495), + [5717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3283), + [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), + [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [5773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__metadata_lit, 2, .production_id = 3), + [5775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__metadata_lit, 2, .production_id = 3), + [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [5805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__metadata_lit, 1, .production_id = 4), + [5807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__metadata_lit, 1, .production_id = 4), + [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [5825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__metadata_lit, 1, .production_id = 3), + [5827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__metadata_lit, 1, .production_id = 3), + [5829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__metadata_lit, 2, .production_id = 4), + [5831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__metadata_lit, 2, .production_id = 4), + [5833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(2236), + [5836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(669), + [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [5841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), + [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), + [5845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), + [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [5849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_old_meta_lit, 2, .production_id = 10), + [5851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_old_meta_lit, 2, .production_id = 10), + [5853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_lit_repeat1, 2, .production_id = 18), + [5855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_lit_repeat1, 2, .production_id = 18), SHIFT_REPEAT(2122), + [5858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_lit_repeat1, 2, .production_id = 18), SHIFT_REPEAT(2129), + [5861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_lit_repeat1, 2, .production_id = 18), + [5863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_map_lit, 2, .production_id = 11), + [5865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_map_lit, 2, .production_id = 11), + [5867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_lit, 3, .production_id = 24), + [5869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_lit, 3, .production_id = 24), + [5871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_lit, 2, .production_id = 16), + [5873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_lit, 2, .production_id = 16), + [5875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_lit, 1, .production_id = 5), + [5877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_lit, 1, .production_id = 5), + [5879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_lit, 2, .production_id = 10), + [5881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_lit, 2, .production_id = 10), + [5883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_old_meta_lit, 3, .production_id = 24), + [5885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_old_meta_lit, 3, .production_id = 24), + [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [5889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_map_lit, 3, .production_id = 27), + [5891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_map_lit, 3, .production_id = 27), + [5893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(2256), + [5896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(757), + [5899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(2257), + [5902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(642), + [5905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_lit_repeat1, 1, .production_id = 2), + [5907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_lit_repeat1, 1, .production_id = 2), + [5909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), + [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [5917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(2284), + [5920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(340), + [5923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__format_token, 1, .production_id = 23), + [5925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__format_token, 1, .production_id = 23), + [5927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_modifiers_repeat1, 1), + [5929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_modifiers_repeat1, 1), + [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), + [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [5937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__format_token, 2), + [5939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__format_token, 2), + [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [5943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_lit_repeat1, 2, .production_id = 18), SHIFT_REPEAT(2120), + [5946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_lit_repeat1, 2, .production_id = 18), SHIFT_REPEAT(2130), + [5949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_dimension, 1), + [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [5953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), + [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), + [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [5981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(2419), + [5984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(426), + [5987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), + [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), + [5995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(2450), + [5998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(497), + [6001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3423), + [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), + [6005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_modifiers_repeat1, 2), SHIFT_REPEAT(2328), + [6008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_modifiers_repeat1, 2), + [6010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_modifiers_repeat1, 2), SHIFT_REPEAT(3459), + [6013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_modifiers_repeat1, 2), SHIFT_REPEAT(2459), + [6016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_modifiers_repeat1, 2), + [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), + [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), + [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), + [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), + [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), + [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), + [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), - [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), - [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), - [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), - [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), - [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), - [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), - [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), - [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), - [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), - [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), - [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), - [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), - [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), - [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), - [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), - [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), - [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), - [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), - [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), - [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), - [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), - [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), - [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), - [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), - [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), - [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), - [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), - [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), - [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), - [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), - [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), - [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), - [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), - [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), - [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), - [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), - [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), - [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), - [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), - [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), - [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), - [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), - [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), - [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), - [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), - [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), - [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), - [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), - [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), - [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), - [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), - [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), - [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), - [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), - [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), - [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), - [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), - [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), - [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), - [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), - [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), - [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), - [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), - [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), - [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), - [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), - [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), - [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), - [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), - [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), - [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), - [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), - [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), - [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), - [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), - [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), - [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), - [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), - [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), - [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), - [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), - [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), - [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), - [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), - [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), - [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), - [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), - [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), - [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), - [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), - [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), - [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), - [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), - [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), - [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), - [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), - [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), - [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), - [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), - [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), - [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), - [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), - [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), - [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), - [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), - [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), - [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), - [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), - [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), - [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), - [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), - [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), - [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), - [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), - [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), - [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), - [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), - [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), - [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), - [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), - [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), - [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), - [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), - [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), - [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), - [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), - [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), - [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), - [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), - [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), - [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), - [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), - [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), - [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), - [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), - [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), - [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), - [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), - [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), - [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), - [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), - [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), - [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), - [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), - [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [7272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), - [7274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), - [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), - [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [7342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), - [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), - [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), - [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), - [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [7432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), - [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), - [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), - [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [7444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [7472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), - [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), - [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), - [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), - [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [7554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [7574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [7576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [7580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [7582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [7584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [7586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [7592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [7594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), - [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [7598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [7600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [7606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [7612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [7614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), - [7618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [7620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [7622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [7628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), - [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), - [7634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), - [7636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), - [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [7652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [7658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [7664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [7674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), - [7676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [7680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [7682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [7686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [7688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [7690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), - [7692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [7694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [7696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [7698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), - [7702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [7706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), - [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [7712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), + [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), + [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), + [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), + [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), + [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), + [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), + [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), + [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), + [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), + [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), + [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), + [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), + [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), + [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), + [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), + [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), + [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), + [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), + [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), + [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), + [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), + [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), + [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), + [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), + [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), + [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), + [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), + [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), + [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), + [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), + [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), + [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [6620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3402), + [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), + [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [6634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), + [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), + [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), + [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), + [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), + [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), + [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), + [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), + [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), + [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), + [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), + [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), + [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), + [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), + [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), + [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), + [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), + [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), + [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), + [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), + [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), + [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), + [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), + [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), + [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), + [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), + [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), + [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), + [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), + [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), + [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), + [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [6930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3406), + [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), + [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), + [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), + [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), + [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), + [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [6970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), + [6972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), + [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), + [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), + [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), + [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), + [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), + [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), + [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), + [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), + [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), + [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), + [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), + [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), + [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), + [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), + [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), + [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), + [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), + [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), + [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), + [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), + [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), + [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [7260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), + [7262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), + [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), + [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), + [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), + [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), + [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), + [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), + [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), + [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), + [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [7418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), + [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), + [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [7438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), + [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [7456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), + [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), + [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [7500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), + [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [7508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [7574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [7576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [7580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [7582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [7584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [7586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [7592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [7594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), + [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [7598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [7600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [7606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [7612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), + [7614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), + [7618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [7620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [7622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), + [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [7628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), + [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [7636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), + [7652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [7654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), + [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [7658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), + [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [7664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), + [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [7674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [7676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [7680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [7682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [7686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [7688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [7690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [7692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [7694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [7696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [7698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), + [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [7702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), + [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), + [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [7712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [7720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), - [7722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [7724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), - [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [7728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [7736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), - [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), - [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), - [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), - [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), - [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), - [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), - [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), - [7788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), - [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [7794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), - [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), - [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), - [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), - [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [7814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_str_lit_repeat1, 2), - [7816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_str_lit_repeat1, 2), SHIFT_REPEAT(3262), - [7819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_str_lit_repeat1, 2), SHIFT_REPEAT(1440), - [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), - [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), - [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), - [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), - [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), - [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), - [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), - [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), - [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), - [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), - [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), - [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), - [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), - [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), - [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), - [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), - [7920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), - [7922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), - [7924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), - [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), - [7928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), - [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), - [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), - [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), - [7942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), - [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), - [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), - [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [7952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), - [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [7960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__sym_lit_without_slash, 1, .production_id = 36), - [7962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sym_lit_without_slash, 1, .production_id = 36), - [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), - [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [7968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [7972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__sym_lit_without_slash_repeat1, 2), - [7974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sym_lit_without_slash_repeat1, 2), - [7976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sym_lit_without_slash_repeat1, 2), SHIFT_REPEAT(3370), - [7979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), - [7981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3370), - [7983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [7985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [7991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [7993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_directive_type, 3, .production_id = 49), - [7995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_directive_type, 1), - [7997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_directive_type, 3), - [7999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_directive_type, 2), - [8001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 3), - [8003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_directive_type, 2, .production_id = 38), - [8005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_directive_type, 2, .production_id = 37), - [8007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 4), - [8009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__sym_lit_without_slash_repeat1, 1), - [8011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sym_lit_without_slash_repeat1, 1), - [8013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 2), - [8015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), - [8017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), - [8019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), - [8021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [8023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), - [8025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [8027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [8029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [8031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [8033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [8035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [8037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_read_cond_lit_repeat1, 2), SHIFT_REPEAT(3382), - [8040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_read_cond_lit_repeat1, 2), - [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [8044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), - [8046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), - [8048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3378), - [8050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [8052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [8056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3380), - [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [8060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214), - [8062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3376), - [8064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3381), - [8066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3135), - [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [8070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [8072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3373), - [8074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), - [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [8078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), - [8080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [8084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), - [8086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3377), - [8088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), - [8090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [8094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), - [8096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [8098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3123), - [8100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), - [8102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3086), - [8104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [8106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [8108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [8110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [8112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), - [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [8118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), - [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), - [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), - [8126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [8130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [8132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), - [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), - [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [8140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), - [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [8150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [8152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [8154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), - [8156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), - [8158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), - [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [8162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), - [8164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), - [8166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), - [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), - [8174] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [8180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), - [8182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__package_lit_without_slash, 3, .production_id = 30), - [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), - [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), - [8188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), - [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [8192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [8194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), - [8198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), - [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [8206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), - [8208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), - [8210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), - [8212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), - [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), - [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), - [8220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), - [8222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), - [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [8230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), - [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), - [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), - [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [7720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [7722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [7724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [7728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [7736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [7740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [7770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), + [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), + [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [7788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [7794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [7800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), + [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), + [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), + [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), + [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), + [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), + [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), + [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), + [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), + [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), + [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), + [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), + [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), + [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), + [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), + [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), + [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), + [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), + [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), + [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), + [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), + [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), + [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), + [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), + [7920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [7922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [7924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [7928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), + [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), + [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [7942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [7952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), + [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), + [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), + [7962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), + [7968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), + [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [7972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [7974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_str_lit_repeat1, 2), + [7976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_str_lit_repeat1, 2), SHIFT_REPEAT(3366), + [7979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_str_lit_repeat1, 2), SHIFT_REPEAT(1444), + [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), + [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), + [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [7992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), + [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [7998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3401), + [8000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [8004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [8012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [8018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [8020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__sym_lit_without_slash_repeat1, 2), + [8022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sym_lit_without_slash_repeat1, 2), + [8024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sym_lit_without_slash_repeat1, 2), SHIFT_REPEAT(3401), + [8027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__sym_lit_without_slash, 1, .production_id = 36), + [8029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sym_lit_without_slash, 1, .production_id = 36), + [8031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), + [8033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [8035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_directive_type, 3), + [8037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 2), + [8039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_directive_type, 2, .production_id = 37), + [8041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 4), + [8043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_directive_type, 2, .production_id = 38), + [8045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 3), + [8047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_directive_type, 1), + [8049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_directive_type, 2), + [8051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_directive_type, 3, .production_id = 49), + [8053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__sym_lit_without_slash_repeat1, 1), + [8055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sym_lit_without_slash_repeat1, 1), + [8057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [8059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [8061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [8063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3410), + [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [8067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), + [8069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [8071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [8073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_read_cond_lit_repeat1, 2), SHIFT_REPEAT(3408), + [8076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_read_cond_lit_repeat1, 2), + [8078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [8080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [8082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), + [8084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [8086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [8088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [8090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [8094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [8096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [8104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [8106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [8108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [8110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [8118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), + [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), + [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [8126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [8130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), + [8132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), + [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [8140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), + [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), + [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [8150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [8152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [8154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), + [8156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), + [8158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), + [8162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), + [8164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [8166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), + [8174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), + [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), + [8180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), + [8182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [8188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [8192] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [8194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [8198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__package_lit_without_slash, 3, .production_id = 30), + [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), + [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), + [8206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [8208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [8210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [8212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [8220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [8222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), + [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), + [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), + [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), + [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), + [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [8244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [8246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), }; #ifdef __cplusplus diff --git a/test/corpus/basic.txt b/test/corpus/basic.txt index 0c955e085..a2d6a3190 100644 --- a/test/corpus/basic.txt +++ b/test/corpus/basic.txt @@ -1109,3 +1109,19 @@ Self-references (sym_lit))) (list_lit (sym_lit))))) + +================================================================================ +Issue #5 (defpackage) +================================================================================ +(defpackage foo-bar + (:use cl)) +-------------------------------------------------------------------------------- + +(source + (list_lit + (sym_lit) + (sym_lit) + (list_lit + (kwd_lit + (kwd_symbol)) + (package_lit))))